diff --git a/bindings/rust/build.rs b/bindings/rust/build.rs index 0a878ba69..b7af96ba1 100644 --- a/bindings/rust/build.rs +++ b/bindings/rust/build.rs @@ -7,6 +7,9 @@ fn main() { .flag_if_supported("-Wno-unused-parameter") .flag_if_supported("-Wno-unused-but-set-variable") .flag_if_supported("-Wno-trigraphs"); + #[cfg(target_env = "msvc")] + c_config.flag("-utf-8"); + let parser_path = src_dir.join("parser.c"); c_config.file(&parser_path); diff --git a/package-lock.json b/package-lock.json index a41610ba2..362b858f0 100644 --- a/package-lock.json +++ b/package-lock.json @@ -15,11 +15,11 @@ }, "devDependencies": { "prebuildify": "^6.0.0", - "tree-sitter-cli": "^0.20.8", + "tree-sitter-cli": "^0.24.4", "tree-sitter-clojure": "git@github.com:theHamsta/tree-sitter-clojure.git#commonlisp" }, "peerDependencies": { - "tree-sitter": "^0.21.0" + "tree-sitter": "^0.21.1" }, "peerDependenciesMeta": { "tree_sitter": { @@ -357,13 +357,16 @@ } }, "node_modules/tree-sitter-cli": { - "version": "0.20.8", - "resolved": "https://registry.npmjs.org/tree-sitter-cli/-/tree-sitter-cli-0.20.8.tgz", - "integrity": "sha512-XjTcS3wdTy/2cc/ptMLc/WRyOLECRYcMTrSWyhZnj1oGSOWbHLTklgsgRICU3cPfb0vy+oZCC33M43u6R1HSCA==", + "version": "0.24.7", + "resolved": "https://registry.npmjs.org/tree-sitter-cli/-/tree-sitter-cli-0.24.7.tgz", + "integrity": "sha512-o4gnE82pVmMMhJbWwD6+I9yr4lXii5Ci5qEQ2pFpUbVy1YiD8cizTJaqdcznA0qEbo7l2OneI1GocChPrI4YGQ==", "dev": true, "hasInstallScript": true, "bin": { "tree-sitter": "cli.js" + }, + "engines": { + "node": ">=12.0.0" } }, "node_modules/tree-sitter-clojure": { diff --git a/package.json b/package.json index dd6498144..e51099c6f 100644 --- a/package.json +++ b/package.json @@ -24,7 +24,7 @@ "node-gyp-build": "^4.8.0" }, "peerDependencies": { - "tree-sitter": "^0.21.0" + "tree-sitter": "^0.21.1" }, "peerDependenciesMeta": { "tree_sitter": { @@ -36,7 +36,7 @@ "url": "git://github.com/theHamsta/tree-sitter-commonlisp" }, "devDependencies": { - "tree-sitter-cli": "^0.20.8", + "tree-sitter-cli": "^0.24.4", "tree-sitter-clojure": "git@github.com:theHamsta/tree-sitter-clojure.git#commonlisp", "prebuildify": "^6.0.0" }, diff --git a/src/grammar.json b/src/grammar.json index 7b3776454..f42917beb 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -1,5 +1,7 @@ { + "$schema": "https://tree-sitter.github.io/tree-sitter/assets/schemas/grammar.schema.json", "name": "commonlisp", + "inherits": "clojure", "rules": { "source": { "type": "REPEAT", @@ -4468,4 +4470,3 @@ "inline": [], "supertypes": [] } - diff --git a/src/node-types.json b/src/node-types.json index 02e321c76..e1d2051b2 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -131,11 +131,6 @@ "named": true, "fields": {} }, - { - "type": "auto_res_mark", - "named": true, - "fields": {} - }, { "type": "char_lit", "named": true, @@ -2923,6 +2918,7 @@ { "type": "source", "named": true, + "root": true, "fields": { "open": { "multiple": true, @@ -4524,10 +4520,6 @@ "type": "#", "named": false }, - { - "type": "##", - "named": false - }, { "type": "#'", "named": false @@ -4548,10 +4540,6 @@ "type": "#0a", "named": false }, - { - "type": "#=", - "named": false - }, { "type": "#?", "named": false @@ -4664,14 +4652,6 @@ "type": "V", "named": false }, - { - "type": "[", - "named": false - }, - { - "type": "]", - "named": false - }, { "type": "^", "named": false diff --git a/src/parser.c b/src/parser.c index 07bd4bf44..5c77ec728 100644 --- a/src/parser.c +++ b/src/parser.c @@ -1,7 +1,6 @@ -#include +#include "tree_sitter/parser.h" #if defined(__GNUC__) || defined(__clang__) -#pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wmissing-field-initializers" #endif @@ -16,15 +15,15 @@ #define LANGUAGE_VERSION 14 #define STATE_COUNT 4165 #define LARGE_STATE_COUNT 405 -#define SYMBOL_COUNT 184 +#define SYMBOL_COUNT 182 #define ALIAS_COUNT 0 -#define TOKEN_COUNT 118 +#define TOKEN_COUNT 116 #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 20 #define MAX_ALIAS_SEQUENCE_LENGTH 14 -#define PRODUCTION_ID_COUNT 178 +#define PRODUCTION_ID_COUNT 177 -enum { +enum ts_symbol_identifiers { sym__ws = 1, sym_comment = 2, anon_sym_POUND_ = 3, @@ -50,164 +49,162 @@ enum { anon_sym_RBRACE = 23, anon_sym_POUND0A = 24, anon_sym_POUND0a = 25, - anon_sym_LBRACK = 26, - anon_sym_RBRACK = 27, - aux_sym_regex_lit_token1 = 28, - anon_sym_POUND_QMARK = 29, - anon_sym_POUND_QMARK_AT = 30, - anon_sym_POUND_SQUOTE = 31, - anon_sym_AT = 32, - anon_sym_SQUOTE = 33, - anon_sym_BQUOTE = 34, - anon_sym_COMMA_AT = 35, - anon_sym_COMMA = 36, - sym_block_comment = 37, - sym_fancy_literal = 38, - aux_sym__format_token_token1 = 39, - anon_sym_v = 40, - anon_sym_V = 41, - anon_sym_AT_COLON = 42, - anon_sym_COLON_AT = 43, - anon_sym_PERCENT = 44, - anon_sym_AMP = 45, - anon_sym_PIPE = 46, - aux_sym_format_directive_type_token1 = 47, - aux_sym_format_directive_type_token2 = 48, - anon_sym_LF = 49, - anon_sym_CR = 50, - aux_sym_format_directive_type_token3 = 51, - aux_sym_format_directive_type_token4 = 52, - aux_sym_format_directive_type_token5 = 53, - aux_sym_format_directive_type_token6 = 54, - anon_sym__ = 55, - aux_sym_format_directive_type_token7 = 56, - aux_sym_format_directive_type_token8 = 57, - aux_sym_format_directive_type_token9 = 58, - aux_sym_format_directive_type_token10 = 59, - anon_sym_SEMI = 60, - anon_sym_STAR = 61, - anon_sym_SLASH = 62, - anon_sym_QMARK = 63, - anon_sym_Newline = 64, - aux_sym_format_directive_type_token11 = 65, - anon_sym_cl = 66, - anon_sym_in = 67, - anon_sym_across = 68, - anon_sym_being = 69, - anon_sym_using = 70, - aux_sym_for_clause_word_token1 = 71, - anon_sym_below = 72, - anon_sym_above = 73, - anon_sym_from = 74, - anon_sym_to = 75, - anon_sym_upto = 76, - anon_sym_upfrom = 77, - anon_sym_downto = 78, - anon_sym_downfrom = 79, - anon_sym_on = 80, - anon_sym_by = 81, - anon_sym_then = 82, - anon_sym_EQ = 83, - aux_sym_accumulation_verb_token1 = 84, - anon_sym_for = 85, - anon_sym_and = 86, - anon_sym_as = 87, - anon_sym_with = 88, - anon_sym_do = 89, - anon_sym_while = 90, - anon_sym_until = 91, - anon_sym_repeat = 92, - anon_sym_when = 93, - anon_sym_if = 94, - anon_sym_unless = 95, - anon_sym_always = 96, - anon_sym_thereis = 97, - anon_sym_never = 98, - anon_sym_else = 99, - anon_sym_into = 100, - anon_sym_finally = 101, - anon_sym_return = 102, - anon_sym_initially = 103, - anon_sym_loop = 104, - anon_sym_defun = 105, - anon_sym_defmacro = 106, - anon_sym_defgeneric = 107, - anon_sym_defmethod = 108, - anon_sym_lambda = 109, - anon_sym_POUNDP = 110, - anon_sym_POUNDp = 111, - aux_sym__sym_lit_without_slash_token1 = 112, - sym_self_referential_reader_macro = 113, - anon_sym_POUND_PLUS = 114, - anon_sym_POUND_DASH = 115, - anon_sym_POUNDC = 116, - anon_sym_POUNDc = 117, - sym_source = 118, - sym__gap = 119, - sym_dis_expr = 120, - sym__form = 121, - sym_num_lit = 122, - sym_kwd_lit = 123, - sym_str_lit = 124, - sym_char_lit = 125, - sym_sym_lit = 126, - sym__metadata_lit = 127, - sym_meta_lit = 128, - sym_old_meta_lit = 129, - sym_list_lit = 130, - sym__bare_list_lit = 131, - sym_map_lit = 132, - sym__bare_map_lit = 133, - sym_vec_lit = 134, - sym_set_lit = 135, - sym__bare_set_lit = 136, - sym_read_cond_lit = 137, - sym_splicing_read_cond_lit = 138, - sym_var_quoting_lit = 139, - sym_quoting_lit = 140, - sym_syn_quoting_lit = 141, - sym_unquote_splicing_lit = 142, - sym_unquoting_lit = 143, - sym_defun = 144, - sym__format_token = 145, - sym_format_prefix_parameters = 146, - sym_format_modifiers = 147, - sym_format_directive_type = 148, - sym_format_specifier = 149, - sym_for_clause_word = 150, - sym__for_part = 151, - sym_accumulation_verb = 152, - sym_for_clause = 153, - sym_with_clause = 154, - sym_do_clause = 155, - sym_while_clause = 156, - sym_repeat_clause = 157, - sym_condition_clause = 158, - sym_accumulation_clause = 159, - sym_termination_clause = 160, - sym_loop_clause = 161, - sym_loop_macro = 162, - sym_defun_keyword = 163, - sym_defun_header = 164, - sym_array_dimension = 165, - sym_path_lit = 166, - sym_package_lit = 167, - sym__package_lit_without_slash = 168, - sym__sym_lit_without_slash = 169, - sym_kwd_symbol = 170, - sym_include_reader_macro = 171, - sym_complex_num_lit = 172, - aux_sym_source_repeat1 = 173, - aux_sym_dis_expr_repeat1 = 174, - aux_sym_str_lit_repeat1 = 175, - aux_sym_list_lit_repeat1 = 176, - aux_sym__bare_list_lit_repeat1 = 177, - aux_sym_read_cond_lit_repeat1 = 178, - aux_sym_format_modifiers_repeat1 = 179, - aux_sym_for_clause_repeat1 = 180, - aux_sym_do_clause_repeat1 = 181, - aux_sym_loop_macro_repeat1 = 182, - aux_sym__sym_lit_without_slash_repeat1 = 183, + anon_sym_POUND_QMARK = 26, + anon_sym_POUND_QMARK_AT = 27, + anon_sym_POUND_SQUOTE = 28, + anon_sym_SQUOTE = 29, + anon_sym_BQUOTE = 30, + anon_sym_COMMA_AT = 31, + anon_sym_COMMA = 32, + sym_block_comment = 33, + sym_fancy_literal = 34, + aux_sym__format_token_token1 = 35, + anon_sym_v = 36, + anon_sym_V = 37, + anon_sym_AT = 38, + anon_sym_AT_COLON = 39, + anon_sym_COLON_AT = 40, + anon_sym_PERCENT = 41, + anon_sym_AMP = 42, + anon_sym_PIPE = 43, + aux_sym_format_directive_type_token1 = 44, + aux_sym_format_directive_type_token2 = 45, + anon_sym_LF = 46, + anon_sym_CR = 47, + aux_sym_format_directive_type_token3 = 48, + aux_sym_format_directive_type_token4 = 49, + aux_sym_format_directive_type_token5 = 50, + aux_sym_format_directive_type_token6 = 51, + anon_sym__ = 52, + aux_sym_format_directive_type_token7 = 53, + aux_sym_format_directive_type_token8 = 54, + aux_sym_format_directive_type_token9 = 55, + aux_sym_format_directive_type_token10 = 56, + anon_sym_SEMI = 57, + anon_sym_STAR = 58, + anon_sym_SLASH = 59, + anon_sym_QMARK = 60, + anon_sym_Newline = 61, + aux_sym_format_directive_type_token11 = 62, + anon_sym_cl = 63, + anon_sym_in = 64, + anon_sym_across = 65, + anon_sym_being = 66, + anon_sym_using = 67, + aux_sym_for_clause_word_token1 = 68, + anon_sym_below = 69, + anon_sym_above = 70, + anon_sym_from = 71, + anon_sym_to = 72, + anon_sym_upto = 73, + anon_sym_upfrom = 74, + anon_sym_downto = 75, + anon_sym_downfrom = 76, + anon_sym_on = 77, + anon_sym_by = 78, + anon_sym_then = 79, + anon_sym_EQ = 80, + aux_sym_accumulation_verb_token1 = 81, + anon_sym_for = 82, + anon_sym_and = 83, + anon_sym_as = 84, + anon_sym_with = 85, + anon_sym_do = 86, + anon_sym_while = 87, + anon_sym_until = 88, + anon_sym_repeat = 89, + anon_sym_when = 90, + anon_sym_if = 91, + anon_sym_unless = 92, + anon_sym_always = 93, + anon_sym_thereis = 94, + anon_sym_never = 95, + anon_sym_else = 96, + anon_sym_into = 97, + anon_sym_finally = 98, + anon_sym_return = 99, + anon_sym_initially = 100, + anon_sym_loop = 101, + anon_sym_defun = 102, + anon_sym_defmacro = 103, + anon_sym_defgeneric = 104, + anon_sym_defmethod = 105, + anon_sym_lambda = 106, + anon_sym_POUNDP = 107, + anon_sym_POUNDp = 108, + aux_sym_path_lit_token1 = 109, + aux_sym__sym_lit_without_slash_token1 = 110, + sym_self_referential_reader_macro = 111, + anon_sym_POUND_PLUS = 112, + anon_sym_POUND_DASH = 113, + anon_sym_POUNDC = 114, + anon_sym_POUNDc = 115, + sym_source = 116, + sym__gap = 117, + sym_dis_expr = 118, + sym__form = 119, + sym_num_lit = 120, + sym_kwd_lit = 121, + sym_str_lit = 122, + sym_char_lit = 123, + sym_sym_lit = 124, + sym__metadata_lit = 125, + sym_meta_lit = 126, + sym_old_meta_lit = 127, + sym_list_lit = 128, + sym__bare_list_lit = 129, + sym_map_lit = 130, + sym__bare_map_lit = 131, + sym_vec_lit = 132, + sym_set_lit = 133, + sym__bare_set_lit = 134, + sym_read_cond_lit = 135, + sym_splicing_read_cond_lit = 136, + sym_var_quoting_lit = 137, + sym_quoting_lit = 138, + sym_syn_quoting_lit = 139, + sym_unquote_splicing_lit = 140, + sym_unquoting_lit = 141, + sym_defun = 142, + sym__format_token = 143, + sym_format_prefix_parameters = 144, + sym_format_modifiers = 145, + sym_format_directive_type = 146, + sym_format_specifier = 147, + sym_for_clause_word = 148, + sym__for_part = 149, + sym_accumulation_verb = 150, + sym_for_clause = 151, + sym_with_clause = 152, + sym_do_clause = 153, + sym_while_clause = 154, + sym_repeat_clause = 155, + sym_condition_clause = 156, + sym_accumulation_clause = 157, + sym_termination_clause = 158, + sym_loop_clause = 159, + sym_loop_macro = 160, + sym_defun_keyword = 161, + sym_defun_header = 162, + sym_array_dimension = 163, + sym_path_lit = 164, + sym_package_lit = 165, + sym__package_lit_without_slash = 166, + sym__sym_lit_without_slash = 167, + sym_kwd_symbol = 168, + sym_include_reader_macro = 169, + sym_complex_num_lit = 170, + aux_sym_source_repeat1 = 171, + aux_sym_dis_expr_repeat1 = 172, + aux_sym_str_lit_repeat1 = 173, + aux_sym_list_lit_repeat1 = 174, + aux_sym__bare_list_lit_repeat1 = 175, + aux_sym_read_cond_lit_repeat1 = 176, + aux_sym_format_modifiers_repeat1 = 177, + aux_sym_for_clause_repeat1 = 178, + aux_sym_do_clause_repeat1 = 179, + aux_sym_loop_macro_repeat1 = 180, + aux_sym__sym_lit_without_slash_repeat1 = 181, }; static const char * const ts_symbol_names[] = { @@ -237,13 +234,9 @@ static const char * const ts_symbol_names[] = { [anon_sym_RBRACE] = "}", [anon_sym_POUND0A] = "#0A", [anon_sym_POUND0a] = "#0a", - [anon_sym_LBRACK] = "[", - [anon_sym_RBRACK] = "]", - [aux_sym_regex_lit_token1] = "regex_lit_token1", [anon_sym_POUND_QMARK] = "#\?", [anon_sym_POUND_QMARK_AT] = "#\?@", [anon_sym_POUND_SQUOTE] = "#'", - [anon_sym_AT] = "@", [anon_sym_SQUOTE] = "'", [anon_sym_BQUOTE] = "`", [anon_sym_COMMA_AT] = ",@", @@ -253,6 +246,7 @@ static const char * const ts_symbol_names[] = { [aux_sym__format_token_token1] = "char_lit", [anon_sym_v] = "v", [anon_sym_V] = "V", + [anon_sym_AT] = "@", [anon_sym_AT_COLON] = "@:", [anon_sym_COLON_AT] = ":@", [anon_sym_PERCENT] = "%", @@ -323,6 +317,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_lambda] = "defun_keyword", [anon_sym_POUNDP] = "#P", [anon_sym_POUNDp] = "#p", + [aux_sym_path_lit_token1] = "str_lit", [aux_sym__sym_lit_without_slash_token1] = "_sym_lit_without_slash_token1", [sym_self_referential_reader_macro] = "self_referential_reader_macro", [anon_sym_POUND_PLUS] = "#+", @@ -424,13 +419,9 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_RBRACE] = anon_sym_RBRACE, [anon_sym_POUND0A] = anon_sym_POUND0A, [anon_sym_POUND0a] = anon_sym_POUND0a, - [anon_sym_LBRACK] = anon_sym_LBRACK, - [anon_sym_RBRACK] = anon_sym_RBRACK, - [aux_sym_regex_lit_token1] = aux_sym_regex_lit_token1, [anon_sym_POUND_QMARK] = anon_sym_POUND_QMARK, [anon_sym_POUND_QMARK_AT] = anon_sym_POUND_QMARK_AT, [anon_sym_POUND_SQUOTE] = anon_sym_POUND_SQUOTE, - [anon_sym_AT] = anon_sym_AT, [anon_sym_SQUOTE] = anon_sym_SQUOTE, [anon_sym_BQUOTE] = anon_sym_BQUOTE, [anon_sym_COMMA_AT] = anon_sym_COMMA_AT, @@ -440,6 +431,7 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym__format_token_token1] = sym_char_lit, [anon_sym_v] = anon_sym_v, [anon_sym_V] = anon_sym_V, + [anon_sym_AT] = anon_sym_AT, [anon_sym_AT_COLON] = anon_sym_AT_COLON, [anon_sym_COLON_AT] = anon_sym_COLON_AT, [anon_sym_PERCENT] = anon_sym_PERCENT, @@ -510,6 +502,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_lambda] = sym_defun_keyword, [anon_sym_POUNDP] = anon_sym_POUNDP, [anon_sym_POUNDp] = anon_sym_POUNDp, + [aux_sym_path_lit_token1] = sym_str_lit, [aux_sym__sym_lit_without_slash_token1] = aux_sym__sym_lit_without_slash_token1, [sym_self_referential_reader_macro] = sym_self_referential_reader_macro, [anon_sym_POUND_PLUS] = anon_sym_POUND_PLUS, @@ -689,18 +682,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_LBRACK] = { - .visible = true, - .named = false, - }, - [anon_sym_RBRACK] = { - .visible = true, - .named = false, - }, - [aux_sym_regex_lit_token1] = { - .visible = false, - .named = false, - }, [anon_sym_POUND_QMARK] = { .visible = true, .named = false, @@ -713,10 +694,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_AT] = { - .visible = true, - .named = false, - }, [anon_sym_SQUOTE] = { .visible = true, .named = false, @@ -753,6 +730,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_AT] = { + .visible = true, + .named = false, + }, [anon_sym_AT_COLON] = { .visible = true, .named = false, @@ -1033,6 +1014,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [aux_sym_path_lit_token1] = { + .visible = true, + .named = true, + }, [aux_sym__sym_lit_without_slash_token1] = { .visible = false, .named = false, @@ -1323,7 +1308,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { }, }; -enum { +enum ts_field_identifiers { field_close = 1, field_condition = 2, field_function_name = 3, @@ -1384,168 +1369,167 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [11] = {.index = 18, .length = 2}, [12] = {.index = 20, .length = 2}, [13] = {.index = 22, .length = 4}, - [14] = {.index = 15, .length = 1}, - [15] = {.index = 26, .length = 2}, - [16] = {.index = 28, .length = 5}, - [17] = {.index = 33, .length = 6}, - [18] = {.index = 39, .length = 4}, - [19] = {.index = 43, .length = 3}, - [20] = {.index = 46, .length = 1}, - [21] = {.index = 15, .length = 1}, - [22] = {.index = 47, .length = 3}, - [24] = {.index = 50, .length = 2}, - [25] = {.index = 52, .length = 2}, - [26] = {.index = 54, .length = 2}, - [27] = {.index = 56, .length = 1}, - [28] = {.index = 57, .length = 4}, - [29] = {.index = 61, .length = 4}, - [30] = {.index = 65, .length = 4}, - [31] = {.index = 69, .length = 2}, - [32] = {.index = 71, .length = 5}, - [33] = {.index = 76, .length = 6}, - [34] = {.index = 82, .length = 5}, - [35] = {.index = 46, .length = 1}, - [36] = {.index = 87, .length = 5}, - [38] = {.index = 92, .length = 1}, - [39] = {.index = 93, .length = 1}, - [40] = {.index = 94, .length = 1}, - [41] = {.index = 95, .length = 2}, - [42] = {.index = 97, .length = 2}, - [43] = {.index = 99, .length = 4}, - [44] = {.index = 103, .length = 4}, - [45] = {.index = 107, .length = 5}, - [46] = {.index = 112, .length = 5}, - [47] = {.index = 117, .length = 6}, - [48] = {.index = 123, .length = 5}, - [49] = {.index = 128, .length = 7}, - [50] = {.index = 135, .length = 2}, - [51] = {.index = 137, .length = 2}, - [52] = {.index = 139, .length = 1}, - [53] = {.index = 140, .length = 3}, - [54] = {.index = 143, .length = 2}, - [55] = {.index = 145, .length = 3}, - [56] = {.index = 148, .length = 4}, - [57] = {.index = 152, .length = 5}, - [58] = {.index = 157, .length = 4}, - [59] = {.index = 161, .length = 4}, - [60] = {.index = 165, .length = 5}, - [61] = {.index = 170, .length = 3}, - [62] = {.index = 173, .length = 7}, - [63] = {.index = 180, .length = 7}, - [64] = {.index = 187, .length = 2}, - [65] = {.index = 189, .length = 3}, - [66] = {.index = 192, .length = 2}, - [67] = {.index = 194, .length = 3}, - [68] = {.index = 197, .length = 1}, - [69] = {.index = 198, .length = 5}, - [70] = {.index = 203, .length = 2}, - [71] = {.index = 205, .length = 4}, - [72] = {.index = 209, .length = 3}, - [73] = {.index = 212, .length = 4}, - [74] = {.index = 216, .length = 5}, - [75] = {.index = 221, .length = 6}, - [76] = {.index = 227, .length = 5}, - [77] = {.index = 232, .length = 4}, - [78] = {.index = 236, .length = 3}, - [79] = {.index = 239, .length = 3}, - [80] = {.index = 242, .length = 7}, - [81] = {.index = 249, .length = 5}, - [82] = {.index = 254, .length = 5}, - [83] = {.index = 259, .length = 3}, - [84] = {.index = 262, .length = 2}, - [85] = {.index = 264, .length = 4}, - [86] = {.index = 268, .length = 3}, - [87] = {.index = 271, .length = 2}, - [88] = {.index = 273, .length = 3}, - [89] = {.index = 276, .length = 1}, - [90] = {.index = 277, .length = 6}, - [91] = {.index = 283, .length = 2}, - [92] = {.index = 285, .length = 4}, - [93] = {.index = 289, .length = 4}, - [94] = {.index = 293, .length = 2}, - [95] = {.index = 295, .length = 6}, - [96] = {.index = 301, .length = 5}, - [97] = {.index = 306, .length = 6}, - [98] = {.index = 312, .length = 3}, - [99] = {.index = 315, .length = 3}, - [100] = {.index = 318, .length = 5}, - [101] = {.index = 323, .length = 5}, - [102] = {.index = 328, .length = 6}, - [103] = {.index = 334, .length = 5}, - [104] = {.index = 339, .length = 2}, - [105] = {.index = 341, .length = 4}, - [106] = {.index = 345, .length = 4}, - [107] = {.index = 349, .length = 2}, - [108] = {.index = 351, .length = 4}, - [109] = {.index = 355, .length = 3}, - [110] = {.index = 358, .length = 3}, - [111] = {.index = 361, .length = 2}, - [112] = {.index = 363, .length = 3}, - [113] = {.index = 366, .length = 2}, - [114] = {.index = 368, .length = 4}, - [115] = {.index = 372, .length = 4}, - [116] = {.index = 376, .length = 6}, - [117] = {.index = 382, .length = 3}, - [118] = {.index = 385, .length = 5}, - [119] = {.index = 390, .length = 5}, - [120] = {.index = 395, .length = 6}, - [121] = {.index = 401, .length = 2}, - [122] = {.index = 403, .length = 4}, - [123] = {.index = 407, .length = 4}, - [124] = {.index = 411, .length = 2}, - [125] = {.index = 413, .length = 4}, - [126] = {.index = 417, .length = 4}, - [127] = {.index = 421, .length = 5}, - [128] = {.index = 426, .length = 2}, - [129] = {.index = 428, .length = 4}, - [130] = {.index = 432, .length = 3}, - [131] = {.index = 435, .length = 2}, - [132] = {.index = 437, .length = 4}, - [133] = {.index = 441, .length = 4}, - [134] = {.index = 445, .length = 5}, - [135] = {.index = 450, .length = 2}, - [136] = {.index = 452, .length = 4}, - [137] = {.index = 456, .length = 4}, - [138] = {.index = 460, .length = 2}, - [139] = {.index = 462, .length = 4}, - [140] = {.index = 466, .length = 4}, - [141] = {.index = 470, .length = 6}, - [142] = {.index = 476, .length = 2}, - [143] = {.index = 478, .length = 4}, - [144] = {.index = 482, .length = 4}, - [145] = {.index = 486, .length = 4}, - [146] = {.index = 490, .length = 2}, - [147] = {.index = 492, .length = 4}, - [148] = {.index = 496, .length = 4}, - [149] = {.index = 500, .length = 2}, - [150] = {.index = 502, .length = 4}, - [151] = {.index = 506, .length = 2}, - [152] = {.index = 508, .length = 4}, - [153] = {.index = 512, .length = 4}, - [154] = {.index = 516, .length = 2}, - [155] = {.index = 518, .length = 4}, - [156] = {.index = 522, .length = 4}, - [157] = {.index = 526, .length = 4}, - [158] = {.index = 530, .length = 4}, - [159] = {.index = 534, .length = 4}, - [160] = {.index = 538, .length = 4}, - [161] = {.index = 542, .length = 4}, - [162] = {.index = 546, .length = 2}, - [163] = {.index = 548, .length = 4}, - [164] = {.index = 552, .length = 2}, - [165] = {.index = 554, .length = 4}, - [166] = {.index = 558, .length = 4}, - [167] = {.index = 562, .length = 4}, - [168] = {.index = 566, .length = 4}, - [169] = {.index = 570, .length = 4}, - [170] = {.index = 574, .length = 4}, - [171] = {.index = 578, .length = 4}, - [172] = {.index = 582, .length = 2}, - [173] = {.index = 584, .length = 4}, - [174] = {.index = 588, .length = 4}, - [175] = {.index = 592, .length = 4}, - [176] = {.index = 596, .length = 4}, - [177] = {.index = 600, .length = 4}, + [14] = {.index = 26, .length = 2}, + [15] = {.index = 28, .length = 5}, + [16] = {.index = 33, .length = 6}, + [17] = {.index = 39, .length = 4}, + [18] = {.index = 43, .length = 3}, + [19] = {.index = 46, .length = 1}, + [20] = {.index = 15, .length = 1}, + [21] = {.index = 47, .length = 3}, + [23] = {.index = 50, .length = 2}, + [24] = {.index = 52, .length = 2}, + [25] = {.index = 54, .length = 2}, + [26] = {.index = 56, .length = 1}, + [27] = {.index = 57, .length = 4}, + [28] = {.index = 61, .length = 4}, + [29] = {.index = 65, .length = 4}, + [30] = {.index = 69, .length = 2}, + [31] = {.index = 71, .length = 5}, + [32] = {.index = 76, .length = 6}, + [33] = {.index = 82, .length = 5}, + [34] = {.index = 46, .length = 1}, + [35] = {.index = 87, .length = 5}, + [37] = {.index = 92, .length = 1}, + [38] = {.index = 93, .length = 1}, + [39] = {.index = 94, .length = 1}, + [40] = {.index = 95, .length = 2}, + [41] = {.index = 97, .length = 2}, + [42] = {.index = 99, .length = 4}, + [43] = {.index = 103, .length = 4}, + [44] = {.index = 107, .length = 5}, + [45] = {.index = 112, .length = 5}, + [46] = {.index = 117, .length = 6}, + [47] = {.index = 123, .length = 5}, + [48] = {.index = 128, .length = 7}, + [49] = {.index = 135, .length = 2}, + [50] = {.index = 137, .length = 2}, + [51] = {.index = 139, .length = 1}, + [52] = {.index = 140, .length = 3}, + [53] = {.index = 143, .length = 2}, + [54] = {.index = 145, .length = 3}, + [55] = {.index = 148, .length = 4}, + [56] = {.index = 152, .length = 5}, + [57] = {.index = 157, .length = 4}, + [58] = {.index = 161, .length = 4}, + [59] = {.index = 165, .length = 5}, + [60] = {.index = 170, .length = 3}, + [61] = {.index = 173, .length = 7}, + [62] = {.index = 180, .length = 7}, + [63] = {.index = 187, .length = 2}, + [64] = {.index = 189, .length = 3}, + [65] = {.index = 192, .length = 2}, + [66] = {.index = 194, .length = 3}, + [67] = {.index = 197, .length = 1}, + [68] = {.index = 198, .length = 5}, + [69] = {.index = 203, .length = 2}, + [70] = {.index = 205, .length = 4}, + [71] = {.index = 209, .length = 3}, + [72] = {.index = 212, .length = 4}, + [73] = {.index = 216, .length = 5}, + [74] = {.index = 221, .length = 6}, + [75] = {.index = 227, .length = 5}, + [76] = {.index = 232, .length = 4}, + [77] = {.index = 236, .length = 3}, + [78] = {.index = 239, .length = 3}, + [79] = {.index = 242, .length = 7}, + [80] = {.index = 249, .length = 5}, + [81] = {.index = 254, .length = 5}, + [82] = {.index = 259, .length = 3}, + [83] = {.index = 262, .length = 2}, + [84] = {.index = 264, .length = 4}, + [85] = {.index = 268, .length = 3}, + [86] = {.index = 271, .length = 2}, + [87] = {.index = 273, .length = 3}, + [88] = {.index = 276, .length = 1}, + [89] = {.index = 277, .length = 6}, + [90] = {.index = 283, .length = 2}, + [91] = {.index = 285, .length = 4}, + [92] = {.index = 289, .length = 4}, + [93] = {.index = 293, .length = 2}, + [94] = {.index = 295, .length = 6}, + [95] = {.index = 301, .length = 5}, + [96] = {.index = 306, .length = 6}, + [97] = {.index = 312, .length = 3}, + [98] = {.index = 315, .length = 3}, + [99] = {.index = 318, .length = 5}, + [100] = {.index = 323, .length = 5}, + [101] = {.index = 328, .length = 6}, + [102] = {.index = 334, .length = 5}, + [103] = {.index = 339, .length = 2}, + [104] = {.index = 341, .length = 4}, + [105] = {.index = 345, .length = 4}, + [106] = {.index = 349, .length = 2}, + [107] = {.index = 351, .length = 4}, + [108] = {.index = 355, .length = 3}, + [109] = {.index = 358, .length = 3}, + [110] = {.index = 361, .length = 2}, + [111] = {.index = 363, .length = 3}, + [112] = {.index = 366, .length = 2}, + [113] = {.index = 368, .length = 4}, + [114] = {.index = 372, .length = 4}, + [115] = {.index = 376, .length = 6}, + [116] = {.index = 382, .length = 3}, + [117] = {.index = 385, .length = 5}, + [118] = {.index = 390, .length = 5}, + [119] = {.index = 395, .length = 6}, + [120] = {.index = 401, .length = 2}, + [121] = {.index = 403, .length = 4}, + [122] = {.index = 407, .length = 4}, + [123] = {.index = 411, .length = 2}, + [124] = {.index = 413, .length = 4}, + [125] = {.index = 417, .length = 4}, + [126] = {.index = 421, .length = 5}, + [127] = {.index = 426, .length = 2}, + [128] = {.index = 428, .length = 4}, + [129] = {.index = 432, .length = 3}, + [130] = {.index = 435, .length = 2}, + [131] = {.index = 437, .length = 4}, + [132] = {.index = 441, .length = 4}, + [133] = {.index = 445, .length = 5}, + [134] = {.index = 450, .length = 2}, + [135] = {.index = 452, .length = 4}, + [136] = {.index = 456, .length = 4}, + [137] = {.index = 460, .length = 2}, + [138] = {.index = 462, .length = 4}, + [139] = {.index = 466, .length = 4}, + [140] = {.index = 470, .length = 6}, + [141] = {.index = 476, .length = 2}, + [142] = {.index = 478, .length = 4}, + [143] = {.index = 482, .length = 4}, + [144] = {.index = 486, .length = 4}, + [145] = {.index = 490, .length = 2}, + [146] = {.index = 492, .length = 4}, + [147] = {.index = 496, .length = 4}, + [148] = {.index = 500, .length = 2}, + [149] = {.index = 502, .length = 4}, + [150] = {.index = 506, .length = 2}, + [151] = {.index = 508, .length = 4}, + [152] = {.index = 512, .length = 4}, + [153] = {.index = 516, .length = 2}, + [154] = {.index = 518, .length = 4}, + [155] = {.index = 522, .length = 4}, + [156] = {.index = 526, .length = 4}, + [157] = {.index = 530, .length = 4}, + [158] = {.index = 534, .length = 4}, + [159] = {.index = 538, .length = 4}, + [160] = {.index = 542, .length = 4}, + [161] = {.index = 546, .length = 2}, + [162] = {.index = 548, .length = 4}, + [163] = {.index = 552, .length = 2}, + [164] = {.index = 554, .length = 4}, + [165] = {.index = 558, .length = 4}, + [166] = {.index = 562, .length = 4}, + [167] = {.index = 566, .length = 4}, + [168] = {.index = 570, .length = 4}, + [169] = {.index = 574, .length = 4}, + [170] = {.index = 578, .length = 4}, + [171] = {.index = 582, .length = 2}, + [172] = {.index = 584, .length = 4}, + [173] = {.index = 588, .length = 4}, + [174] = {.index = 592, .length = 4}, + [175] = {.index = 596, .length = 4}, + [176] = {.index = 600, .length = 4}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -2332,27 +2316,24 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [0] = sym_vec_lit, [1] = sym_vec_lit, }, - [14] = { - [1] = sym_str_lit, - }, - [20] = { + [19] = { [1] = sym_vec_lit, [2] = sym_vec_lit, }, - [21] = { + [20] = { [0] = sym_vec_lit, [1] = sym_vec_lit, [2] = sym_vec_lit, }, - [23] = { + [22] = { [0] = sym_num_lit, }, - [35] = { + [34] = { [1] = sym_vec_lit, [2] = sym_vec_lit, [3] = sym_vec_lit, }, - [37] = { + [36] = { [0] = sym_sym_lit, }, }; @@ -2662,117 +2643,117 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [291] = 291, [292] = 292, [293] = 293, - [294] = 291, + [294] = 294, [295] = 295, [296] = 296, [297] = 297, - [298] = 297, - [299] = 296, + [298] = 298, + [299] = 299, [300] = 300, - [301] = 301, - [302] = 295, - [303] = 291, - [304] = 295, - [305] = 293, - [306] = 293, - [307] = 307, - [308] = 308, - [309] = 309, - [310] = 290, - [311] = 292, - [312] = 297, - [313] = 296, - [314] = 300, - [315] = 315, - [316] = 301, - [317] = 295, - [318] = 291, - [319] = 293, - [320] = 308, - [321] = 321, - [322] = 309, - [323] = 290, - [324] = 292, - [325] = 297, - [326] = 296, - [327] = 300, - [328] = 301, - [329] = 295, - [330] = 291, - [331] = 308, - [332] = 309, - [333] = 290, + [301] = 290, + [302] = 302, + [303] = 303, + [304] = 298, + [305] = 299, + [306] = 306, + [307] = 291, + [308] = 293, + [309] = 294, + [310] = 292, + [311] = 306, + [312] = 300, + [313] = 290, + [314] = 302, + [315] = 303, + [316] = 298, + [317] = 299, + [318] = 306, + [319] = 291, + [320] = 293, + [321] = 294, + [322] = 292, + [323] = 323, + [324] = 300, + [325] = 290, + [326] = 302, + [327] = 303, + [328] = 298, + [329] = 299, + [330] = 306, + [331] = 291, + [332] = 293, + [333] = 294, [334] = 292, - [335] = 296, - [336] = 301, + [335] = 300, + [336] = 300, [337] = 290, - [338] = 300, - [339] = 297, - [340] = 309, - [341] = 309, - [342] = 300, - [343] = 301, - [344] = 308, - [345] = 295, - [346] = 346, - [347] = 292, - [348] = 293, - [349] = 301, - [350] = 308, - [351] = 309, - [352] = 290, - [353] = 353, - [354] = 292, - [355] = 297, - [356] = 296, - [357] = 300, - [358] = 301, - [359] = 309, - [360] = 295, - [361] = 291, - [362] = 293, - [363] = 308, - [364] = 308, - [365] = 309, - [366] = 290, - [367] = 292, - [368] = 297, - [369] = 296, - [370] = 300, - [371] = 301, - [372] = 290, + [338] = 302, + [339] = 303, + [340] = 298, + [341] = 299, + [342] = 306, + [343] = 291, + [344] = 293, + [345] = 294, + [346] = 292, + [347] = 347, + [348] = 300, + [349] = 290, + [350] = 303, + [351] = 303, + [352] = 298, + [353] = 299, + [354] = 306, + [355] = 291, + [356] = 293, + [357] = 294, + [358] = 292, + [359] = 359, + [360] = 300, + [361] = 290, + [362] = 302, + [363] = 303, + [364] = 298, + [365] = 299, + [366] = 306, + [367] = 291, + [368] = 293, + [369] = 294, + [370] = 292, + [371] = 290, + [372] = 300, [373] = 292, - [374] = 308, - [375] = 375, - [376] = 295, - [377] = 291, - [378] = 293, - [379] = 308, - [380] = 309, - [381] = 290, + [374] = 302, + [375] = 303, + [376] = 298, + [377] = 299, + [378] = 306, + [379] = 291, + [380] = 293, + [381] = 294, [382] = 292, - [383] = 297, + [383] = 302, [384] = 300, - [385] = 293, - [386] = 296, - [387] = 300, - [388] = 291, - [389] = 301, - [390] = 295, - [391] = 293, - [392] = 291, - [393] = 297, - [394] = 291, - [395] = 293, - [396] = 309, - [397] = 290, - [398] = 292, - [399] = 296, - [400] = 400, - [401] = 297, - [402] = 296, - [403] = 300, - [404] = 301, + [385] = 290, + [386] = 302, + [387] = 303, + [388] = 298, + [389] = 299, + [390] = 306, + [391] = 291, + [392] = 293, + [393] = 294, + [394] = 292, + [395] = 395, + [396] = 290, + [397] = 302, + [398] = 298, + [399] = 299, + [400] = 306, + [401] = 291, + [402] = 293, + [403] = 294, + [404] = 302, [405] = 405, [406] = 406, [407] = 407, @@ -2806,544 +2787,544 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [435] = 435, [436] = 436, [437] = 437, - [438] = 406, + [438] = 438, [439] = 439, [440] = 440, [441] = 441, - [442] = 442, - [443] = 443, + [442] = 424, + [443] = 441, [444] = 444, [445] = 445, [446] = 446, - [447] = 447, - [448] = 447, - [449] = 414, - [450] = 428, + [447] = 422, + [448] = 448, + [449] = 449, + [450] = 450, [451] = 451, - [452] = 409, - [453] = 444, - [454] = 444, - [455] = 446, - [456] = 443, - [457] = 443, + [452] = 452, + [453] = 453, + [454] = 454, + [455] = 406, + [456] = 412, + [457] = 457, [458] = 458, - [459] = 412, - [460] = 442, + [459] = 459, + [460] = 460, [461] = 461, - [462] = 445, - [463] = 411, + [462] = 462, + [463] = 463, [464] = 464, - [465] = 435, - [466] = 451, + [465] = 465, + [466] = 466, [467] = 467, [468] = 468, - [469] = 407, - [470] = 408, - [471] = 415, - [472] = 417, - [473] = 419, - [474] = 421, - [475] = 423, - [476] = 424, - [477] = 425, - [478] = 426, - [479] = 427, - [480] = 429, - [481] = 431, - [482] = 434, - [483] = 406, - [484] = 440, - [485] = 441, - [486] = 443, - [487] = 444, - [488] = 446, - [489] = 447, - [490] = 409, - [491] = 412, - [492] = 442, - [493] = 445, - [494] = 411, - [495] = 435, - [496] = 451, + [469] = 428, + [470] = 429, + [471] = 424, + [472] = 441, + [473] = 444, + [474] = 445, + [475] = 446, + [476] = 422, + [477] = 448, + [478] = 449, + [479] = 450, + [480] = 451, + [481] = 452, + [482] = 453, + [483] = 454, + [484] = 406, + [485] = 412, + [486] = 457, + [487] = 458, + [488] = 459, + [489] = 460, + [490] = 461, + [491] = 462, + [492] = 463, + [493] = 464, + [494] = 494, + [495] = 466, + [496] = 467, [497] = 468, - [498] = 407, - [499] = 408, - [500] = 415, - [501] = 417, - [502] = 419, - [503] = 421, - [504] = 423, - [505] = 424, - [506] = 425, - [507] = 426, - [508] = 427, - [509] = 429, - [510] = 431, - [511] = 434, - [512] = 406, - [513] = 440, - [514] = 441, - [515] = 443, - [516] = 444, - [517] = 441, - [518] = 440, - [519] = 446, - [520] = 441, - [521] = 406, - [522] = 433, - [523] = 447, - [524] = 441, - [525] = 409, - [526] = 412, - [527] = 440, - [528] = 442, - [529] = 445, - [530] = 406, - [531] = 411, - [532] = 434, - [533] = 435, - [534] = 436, - [535] = 431, - [536] = 446, - [537] = 451, - [538] = 439, - [539] = 429, - [540] = 427, - [541] = 447, - [542] = 468, - [543] = 426, - [544] = 437, - [545] = 425, - [546] = 407, - [547] = 424, - [548] = 439, - [549] = 408, - [550] = 550, - [551] = 423, - [552] = 421, - [553] = 419, - [554] = 417, - [555] = 415, - [556] = 417, - [557] = 419, - [558] = 421, - [559] = 423, - [560] = 424, - [561] = 425, - [562] = 414, - [563] = 426, - [564] = 564, - [565] = 428, - [566] = 427, - [567] = 433, - [568] = 429, - [569] = 415, - [570] = 408, - [571] = 431, - [572] = 434, - [573] = 407, - [574] = 406, - [575] = 440, - [576] = 468, - [577] = 441, - [578] = 443, - [579] = 444, - [580] = 451, - [581] = 436, - [582] = 435, - [583] = 446, - [584] = 447, - [585] = 411, - [586] = 409, - [587] = 412, - [588] = 445, - [589] = 442, - [590] = 442, - [591] = 412, - [592] = 445, - [593] = 411, - [594] = 409, - [595] = 435, + [498] = 428, + [499] = 429, + [500] = 424, + [501] = 441, + [502] = 444, + [503] = 445, + [504] = 446, + [505] = 422, + [506] = 448, + [507] = 449, + [508] = 450, + [509] = 451, + [510] = 452, + [511] = 453, + [512] = 454, + [513] = 406, + [514] = 412, + [515] = 457, + [516] = 458, + [517] = 459, + [518] = 460, + [519] = 461, + [520] = 462, + [521] = 463, + [522] = 464, + [523] = 494, + [524] = 466, + [525] = 467, + [526] = 468, + [527] = 428, + [528] = 429, + [529] = 424, + [530] = 441, + [531] = 444, + [532] = 445, + [533] = 446, + [534] = 422, + [535] = 448, + [536] = 449, + [537] = 450, + [538] = 451, + [539] = 452, + [540] = 453, + [541] = 454, + [542] = 406, + [543] = 412, + [544] = 457, + [545] = 458, + [546] = 459, + [547] = 460, + [548] = 461, + [549] = 462, + [550] = 463, + [551] = 464, + [552] = 494, + [553] = 466, + [554] = 467, + [555] = 468, + [556] = 428, + [557] = 429, + [558] = 424, + [559] = 441, + [560] = 444, + [561] = 445, + [562] = 446, + [563] = 422, + [564] = 448, + [565] = 449, + [566] = 450, + [567] = 451, + [568] = 452, + [569] = 453, + [570] = 454, + [571] = 406, + [572] = 412, + [573] = 457, + [574] = 458, + [575] = 459, + [576] = 460, + [577] = 461, + [578] = 462, + [579] = 463, + [580] = 464, + [581] = 494, + [582] = 466, + [583] = 467, + [584] = 468, + [585] = 428, + [586] = 429, + [587] = 424, + [588] = 441, + [589] = 444, + [590] = 445, + [591] = 446, + [592] = 422, + [593] = 448, + [594] = 449, + [595] = 450, [596] = 451, - [597] = 447, - [598] = 468, - [599] = 446, - [600] = 407, - [601] = 437, - [602] = 444, - [603] = 443, - [604] = 408, - [605] = 605, - [606] = 606, - [607] = 415, - [608] = 608, - [609] = 417, - [610] = 419, - [611] = 611, - [612] = 612, - [613] = 421, - [614] = 423, - [615] = 615, + [597] = 452, + [598] = 453, + [599] = 454, + [600] = 406, + [601] = 412, + [602] = 457, + [603] = 458, + [604] = 459, + [605] = 460, + [606] = 461, + [607] = 462, + [608] = 463, + [609] = 464, + [610] = 494, + [611] = 466, + [612] = 467, + [613] = 468, + [614] = 428, + [615] = 429, [616] = 424, - [617] = 425, - [618] = 618, - [619] = 426, - [620] = 427, - [621] = 429, - [622] = 431, - [623] = 434, - [624] = 406, - [625] = 440, - [626] = 441, - [627] = 443, - [628] = 444, - [629] = 439, - [630] = 434, - [631] = 550, - [632] = 414, - [633] = 428, - [634] = 433, - [635] = 436, - [636] = 437, - [637] = 439, - [638] = 550, - [639] = 444, - [640] = 443, - [641] = 441, - [642] = 440, - [643] = 414, - [644] = 406, - [645] = 434, - [646] = 428, - [647] = 431, - [648] = 429, - [649] = 433, - [650] = 436, - [651] = 427, - [652] = 426, - [653] = 437, - [654] = 425, - [655] = 424, - [656] = 423, - [657] = 421, - [658] = 419, - [659] = 439, - [660] = 417, - [661] = 415, - [662] = 662, - [663] = 408, - [664] = 407, - [665] = 468, - [666] = 451, - [667] = 435, - [668] = 446, - [669] = 440, - [670] = 411, - [671] = 445, - [672] = 406, - [673] = 550, - [674] = 442, - [675] = 431, - [676] = 412, - [677] = 414, - [678] = 409, - [679] = 429, - [680] = 447, - [681] = 427, - [682] = 428, - [683] = 431, - [684] = 426, - [685] = 446, - [686] = 444, - [687] = 425, - [688] = 429, - [689] = 689, - [690] = 424, - [691] = 446, - [692] = 443, - [693] = 423, - [694] = 441, - [695] = 447, - [696] = 421, - [697] = 440, - [698] = 419, - [699] = 406, - [700] = 434, - [701] = 417, - [702] = 415, - [703] = 427, - [704] = 426, - [705] = 431, - [706] = 429, - [707] = 425, - [708] = 427, - [709] = 426, - [710] = 425, - [711] = 424, - [712] = 423, - [713] = 421, - [714] = 419, - [715] = 409, - [716] = 408, + [617] = 441, + [618] = 444, + [619] = 445, + [620] = 446, + [621] = 422, + [622] = 448, + [623] = 449, + [624] = 450, + [625] = 451, + [626] = 452, + [627] = 453, + [628] = 454, + [629] = 406, + [630] = 412, + [631] = 457, + [632] = 458, + [633] = 459, + [634] = 460, + [635] = 461, + [636] = 462, + [637] = 463, + [638] = 464, + [639] = 494, + [640] = 466, + [641] = 467, + [642] = 468, + [643] = 428, + [644] = 429, + [645] = 424, + [646] = 441, + [647] = 444, + [648] = 445, + [649] = 446, + [650] = 422, + [651] = 448, + [652] = 449, + [653] = 450, + [654] = 451, + [655] = 452, + [656] = 453, + [657] = 454, + [658] = 406, + [659] = 412, + [660] = 457, + [661] = 458, + [662] = 459, + [663] = 460, + [664] = 461, + [665] = 462, + [666] = 463, + [667] = 464, + [668] = 494, + [669] = 466, + [670] = 467, + [671] = 468, + [672] = 428, + [673] = 429, + [674] = 424, + [675] = 441, + [676] = 444, + [677] = 445, + [678] = 446, + [679] = 422, + [680] = 448, + [681] = 449, + [682] = 450, + [683] = 451, + [684] = 452, + [685] = 453, + [686] = 454, + [687] = 406, + [688] = 412, + [689] = 457, + [690] = 458, + [691] = 459, + [692] = 460, + [693] = 461, + [694] = 462, + [695] = 463, + [696] = 464, + [697] = 494, + [698] = 466, + [699] = 467, + [700] = 468, + [701] = 428, + [702] = 429, + [703] = 424, + [704] = 441, + [705] = 444, + [706] = 445, + [707] = 446, + [708] = 422, + [709] = 448, + [710] = 449, + [711] = 450, + [712] = 451, + [713] = 452, + [714] = 453, + [715] = 454, + [716] = 406, [717] = 412, - [718] = 417, - [719] = 433, - [720] = 436, - [721] = 407, - [722] = 415, - [723] = 442, - [724] = 408, - [725] = 468, - [726] = 451, - [727] = 435, - [728] = 445, - [729] = 424, - [730] = 407, - [731] = 468, - [732] = 451, - [733] = 411, - [734] = 435, - [735] = 411, - [736] = 445, - [737] = 737, - [738] = 445, - [739] = 411, - [740] = 442, - [741] = 442, - [742] = 550, - [743] = 743, - [744] = 412, - [745] = 409, - [746] = 746, - [747] = 747, - [748] = 447, - [749] = 446, - [750] = 750, - [751] = 444, - [752] = 443, - [753] = 753, - [754] = 435, - [755] = 451, - [756] = 468, - [757] = 412, - [758] = 441, - [759] = 407, - [760] = 760, - [761] = 409, - [762] = 440, - [763] = 408, - [764] = 764, - [765] = 406, - [766] = 766, - [767] = 447, - [768] = 434, - [769] = 415, - [770] = 417, - [771] = 771, - [772] = 431, - [773] = 433, - [774] = 429, - [775] = 427, - [776] = 776, - [777] = 426, - [778] = 437, - [779] = 550, - [780] = 425, - [781] = 781, - [782] = 424, - [783] = 439, - [784] = 784, - [785] = 423, - [786] = 786, - [787] = 787, - [788] = 421, - [789] = 423, - [790] = 790, - [791] = 791, - [792] = 419, - [793] = 793, - [794] = 421, - [795] = 417, - [796] = 796, - [797] = 415, - [798] = 408, - [799] = 407, - [800] = 468, - [801] = 419, - [802] = 436, - [803] = 419, - [804] = 421, - [805] = 423, - [806] = 424, - [807] = 451, - [808] = 425, - [809] = 435, - [810] = 426, - [811] = 433, - [812] = 427, - [813] = 411, - [814] = 429, - [815] = 445, - [816] = 431, - [817] = 442, - [818] = 412, - [819] = 409, - [820] = 447, - [821] = 446, - [822] = 444, - [823] = 550, + [718] = 457, + [719] = 458, + [720] = 459, + [721] = 460, + [722] = 461, + [723] = 462, + [724] = 463, + [725] = 464, + [726] = 494, + [727] = 466, + [728] = 467, + [729] = 468, + [730] = 428, + [731] = 429, + [732] = 424, + [733] = 441, + [734] = 444, + [735] = 445, + [736] = 446, + [737] = 422, + [738] = 448, + [739] = 449, + [740] = 450, + [741] = 451, + [742] = 452, + [743] = 453, + [744] = 454, + [745] = 406, + [746] = 412, + [747] = 457, + [748] = 458, + [749] = 459, + [750] = 460, + [751] = 461, + [752] = 462, + [753] = 463, + [754] = 464, + [755] = 494, + [756] = 466, + [757] = 467, + [758] = 468, + [759] = 428, + [760] = 429, + [761] = 424, + [762] = 441, + [763] = 444, + [764] = 445, + [765] = 446, + [766] = 422, + [767] = 448, + [768] = 449, + [769] = 450, + [770] = 451, + [771] = 452, + [772] = 453, + [773] = 454, + [774] = 406, + [775] = 412, + [776] = 457, + [777] = 458, + [778] = 459, + [779] = 460, + [780] = 461, + [781] = 462, + [782] = 463, + [783] = 464, + [784] = 494, + [785] = 466, + [786] = 467, + [787] = 468, + [788] = 428, + [789] = 429, + [790] = 424, + [791] = 441, + [792] = 444, + [793] = 445, + [794] = 446, + [795] = 448, + [796] = 449, + [797] = 450, + [798] = 451, + [799] = 452, + [800] = 453, + [801] = 454, + [802] = 406, + [803] = 412, + [804] = 457, + [805] = 458, + [806] = 459, + [807] = 460, + [808] = 461, + [809] = 462, + [810] = 463, + [811] = 464, + [812] = 494, + [813] = 466, + [814] = 467, + [815] = 468, + [816] = 428, + [817] = 429, + [818] = 465, + [819] = 819, + [820] = 420, + [821] = 821, + [822] = 822, + [823] = 413, [824] = 414, - [825] = 443, - [826] = 441, - [827] = 428, - [828] = 440, + [825] = 457, + [826] = 826, + [827] = 827, + [828] = 828, [829] = 829, - [830] = 406, - [831] = 434, - [832] = 431, - [833] = 439, - [834] = 434, - [835] = 429, - [836] = 437, - [837] = 427, - [838] = 426, - [839] = 436, - [840] = 433, - [841] = 425, - [842] = 433, - [843] = 409, - [844] = 468, - [845] = 440, - [846] = 412, - [847] = 441, - [848] = 443, - [849] = 428, - [850] = 444, - [851] = 424, - [852] = 423, - [853] = 442, - [854] = 421, - [855] = 419, - [856] = 445, - [857] = 414, - [858] = 417, - [859] = 436, - [860] = 550, - [861] = 415, - [862] = 437, - [863] = 408, - [864] = 407, - [865] = 439, - [866] = 468, - [867] = 439, - [868] = 451, - [869] = 411, - [870] = 435, - [871] = 550, - [872] = 437, - [873] = 411, - [874] = 445, - [875] = 436, - [876] = 442, - [877] = 439, - [878] = 414, - [879] = 412, - [880] = 409, - [881] = 428, - [882] = 447, - [883] = 428, - [884] = 414, - [885] = 437, - [886] = 436, - [887] = 550, - [888] = 437, - [889] = 446, - [890] = 890, + [830] = 830, + [831] = 831, + [832] = 832, + [833] = 465, + [834] = 834, + [835] = 420, + [836] = 822, + [837] = 413, + [838] = 414, + [839] = 458, + [840] = 829, + [841] = 830, + [842] = 459, + [843] = 460, + [844] = 461, + [845] = 462, + [846] = 465, + [847] = 420, + [848] = 829, + [849] = 463, + [850] = 822, + [851] = 413, + [852] = 414, + [853] = 830, + [854] = 829, + [855] = 830, + [856] = 856, + [857] = 857, + [858] = 858, + [859] = 465, + [860] = 860, + [861] = 420, + [862] = 862, + [863] = 822, + [864] = 413, + [865] = 414, + [866] = 866, + [867] = 867, + [868] = 829, + [869] = 830, + [870] = 444, + [871] = 871, + [872] = 872, + [873] = 465, + [874] = 874, + [875] = 420, + [876] = 876, + [877] = 877, + [878] = 822, + [879] = 413, + [880] = 414, + [881] = 881, + [882] = 882, + [883] = 883, + [884] = 445, + [885] = 829, + [886] = 830, + [887] = 887, + [888] = 448, + [889] = 449, + [890] = 465, [891] = 891, - [892] = 444, - [893] = 443, - [894] = 441, - [895] = 895, + [892] = 420, + [893] = 822, + [894] = 413, + [895] = 414, [896] = 896, - [897] = 440, - [898] = 406, - [899] = 899, - [900] = 900, + [897] = 450, + [898] = 898, + [899] = 829, + [900] = 830, [901] = 901, - [902] = 902, - [903] = 903, + [902] = 465, + [903] = 420, [904] = 904, [905] = 905, - [906] = 434, - [907] = 439, - [908] = 908, + [906] = 822, + [907] = 413, + [908] = 414, [909] = 909, - [910] = 550, - [911] = 911, - [912] = 414, - [913] = 913, - [914] = 428, - [915] = 431, - [916] = 916, - [917] = 917, - [918] = 433, - [919] = 436, - [920] = 429, - [921] = 437, - [922] = 427, - [923] = 417, - [924] = 437, - [925] = 426, - [926] = 415, + [910] = 910, + [911] = 829, + [912] = 830, + [913] = 451, + [914] = 452, + [915] = 453, + [916] = 464, + [917] = 465, + [918] = 494, + [919] = 420, + [920] = 466, + [921] = 467, + [922] = 822, + [923] = 413, + [924] = 414, + [925] = 468, + [926] = 926, [927] = 927, - [928] = 928, - [929] = 439, - [930] = 425, - [931] = 433, - [932] = 446, - [933] = 424, - [934] = 934, - [935] = 423, - [936] = 447, - [937] = 937, - [938] = 938, - [939] = 421, - [940] = 419, - [941] = 436, - [942] = 550, - [943] = 408, - [944] = 433, - [945] = 414, - [946] = 407, - [947] = 428, - [948] = 468, - [949] = 428, - [950] = 409, - [951] = 412, + [928] = 829, + [929] = 830, + [930] = 930, + [931] = 931, + [932] = 932, + [933] = 933, + [934] = 465, + [935] = 935, + [936] = 420, + [937] = 822, + [938] = 413, + [939] = 414, + [940] = 822, + [941] = 941, + [942] = 829, + [943] = 830, + [944] = 446, + [945] = 454, + [946] = 946, + [947] = 947, + [948] = 465, + [949] = 420, + [950] = 822, + [951] = 413, [952] = 414, - [953] = 550, - [954] = 451, - [955] = 442, - [956] = 428, - [957] = 445, - [958] = 417, - [959] = 439, - [960] = 415, - [961] = 408, - [962] = 437, - [963] = 436, - [964] = 407, - [965] = 468, - [966] = 433, - [967] = 967, - [968] = 411, - [969] = 414, - [970] = 970, - [971] = 451, - [972] = 972, - [973] = 435, - [974] = 435, - [975] = 975, + [953] = 829, + [954] = 830, + [955] = 465, + [956] = 420, + [957] = 822, + [958] = 413, + [959] = 414, + [960] = 829, + [961] = 830, + [962] = 465, + [963] = 420, + [964] = 822, + [965] = 413, + [966] = 414, + [967] = 829, + [968] = 830, + [969] = 420, + [970] = 822, + [971] = 413, + [972] = 414, + [973] = 829, + [974] = 830, + [975] = 494, [976] = 976, [977] = 976, [978] = 976, @@ -3362,8 +3343,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [991] = 991, [992] = 992, [993] = 993, - [994] = 994, - [995] = 990, + [994] = 990, + [995] = 995, [996] = 996, [997] = 997, [998] = 998, @@ -3384,7 +3365,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1013] = 1013, [1014] = 1014, [1015] = 1015, - [1016] = 1016, + [1016] = 996, [1017] = 1017, [1018] = 1018, [1019] = 1019, @@ -3482,7 +3463,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1111] = 1111, [1112] = 1112, [1113] = 1113, - [1114] = 996, + [1114] = 1114, [1115] = 1115, [1116] = 1116, [1117] = 1117, @@ -3500,129 +3481,129 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1129] = 1129, [1130] = 1130, [1131] = 1131, - [1132] = 1049, - [1133] = 1035, - [1134] = 1043, - [1135] = 1039, - [1136] = 1036, - [1137] = 1033, - [1138] = 1029, - [1139] = 1022, - [1140] = 1021, - [1141] = 1019, - [1142] = 1016, - [1143] = 1015, - [1144] = 1013, - [1145] = 1012, - [1146] = 1011, - [1147] = 990, - [1148] = 1010, - [1149] = 1009, - [1150] = 1006, - [1151] = 1005, - [1152] = 1004, - [1153] = 1003, - [1154] = 1002, - [1155] = 1001, - [1156] = 1000, - [1157] = 999, - [1158] = 1064, - [1159] = 1053, - [1160] = 1071, - [1161] = 1079, - [1162] = 1091, - [1163] = 1103, - [1164] = 1113, - [1165] = 1126, - [1166] = 1052, - [1167] = 1130, - [1168] = 1127, - [1169] = 1124, - [1170] = 1123, - [1171] = 1122, - [1172] = 1120, - [1173] = 1118, - [1174] = 1117, - [1175] = 1108, - [1176] = 1098, - [1177] = 1061, - [1178] = 1054, - [1179] = 1047, - [1180] = 1007, - [1181] = 1008, - [1182] = 1050, - [1183] = 1014, - [1184] = 1083, - [1185] = 1074, - [1186] = 1073, - [1187] = 1070, - [1188] = 1017, - [1189] = 1051, - [1190] = 1018, - [1191] = 1069, - [1192] = 1067, - [1193] = 997, - [1194] = 1020, - [1195] = 1023, - [1196] = 998, - [1197] = 1055, - [1198] = 1024, - [1199] = 1025, - [1200] = 1026, - [1201] = 1027, - [1202] = 1028, - [1203] = 1030, - [1204] = 1031, - [1205] = 1032, - [1206] = 1034, - [1207] = 1046, - [1208] = 1037, - [1209] = 1038, - [1210] = 1040, - [1211] = 1041, - [1212] = 1042, - [1213] = 1045, - [1214] = 1048, - [1215] = 1058, - [1216] = 1063, - [1217] = 1062, - [1218] = 1060, - [1219] = 1059, - [1220] = 1065, - [1221] = 1066, - [1222] = 1068, - [1223] = 1056, - [1224] = 1072, - [1225] = 1075, - [1226] = 1076, - [1227] = 1077, - [1228] = 1078, - [1229] = 1080, - [1230] = 1081, - [1231] = 1082, - [1232] = 1084, - [1233] = 1085, - [1234] = 1086, - [1235] = 1087, - [1236] = 1088, - [1237] = 1090, - [1238] = 1093, - [1239] = 1094, - [1240] = 1095, - [1241] = 1096, - [1242] = 1097, - [1243] = 1099, - [1244] = 1100, - [1245] = 1101, - [1246] = 1057, - [1247] = 1102, - [1248] = 1104, - [1249] = 1105, - [1250] = 1106, - [1251] = 1107, - [1252] = 1109, - [1253] = 1110, - [1254] = 1111, + [1132] = 1066, + [1133] = 1025, + [1134] = 990, + [1135] = 1086, + [1136] = 1101, + [1137] = 1109, + [1138] = 1117, + [1139] = 1124, + [1140] = 998, + [1141] = 999, + [1142] = 1000, + [1143] = 1001, + [1144] = 1002, + [1145] = 1003, + [1146] = 1006, + [1147] = 1007, + [1148] = 1008, + [1149] = 1010, + [1150] = 1011, + [1151] = 1012, + [1152] = 1013, + [1153] = 1015, + [1154] = 1017, + [1155] = 1018, + [1156] = 1020, + [1157] = 1021, + [1158] = 1022, + [1159] = 1023, + [1160] = 1024, + [1161] = 1027, + [1162] = 1028, + [1163] = 1030, + [1164] = 1031, + [1165] = 1033, + [1166] = 1034, + [1167] = 1035, + [1168] = 1036, + [1169] = 1037, + [1170] = 1038, + [1171] = 1039, + [1172] = 1040, + [1173] = 1041, + [1174] = 1042, + [1175] = 1043, + [1176] = 1044, + [1177] = 1045, + [1178] = 1047, + [1179] = 1048, + [1180] = 1051, + [1181] = 1053, + [1182] = 1054, + [1183] = 1055, + [1184] = 1056, + [1185] = 1058, + [1186] = 997, + [1187] = 1060, + [1188] = 1061, + [1189] = 1029, + [1190] = 1063, + [1191] = 1064, + [1192] = 1065, + [1193] = 1050, + [1194] = 1067, + [1195] = 1068, + [1196] = 1131, + [1197] = 1071, + [1198] = 1072, + [1199] = 1074, + [1200] = 1075, + [1201] = 1076, + [1202] = 1077, + [1203] = 1078, + [1204] = 1079, + [1205] = 1080, + [1206] = 1081, + [1207] = 1082, + [1208] = 1084, + [1209] = 1085, + [1210] = 1087, + [1211] = 1088, + [1212] = 1089, + [1213] = 1090, + [1214] = 1091, + [1215] = 1092, + [1216] = 1093, + [1217] = 1094, + [1218] = 1095, + [1219] = 1096, + [1220] = 1097, + [1221] = 1098, + [1222] = 1099, + [1223] = 1100, + [1224] = 1102, + [1225] = 1103, + [1226] = 1104, + [1227] = 1105, + [1228] = 1106, + [1229] = 1107, + [1230] = 1108, + [1231] = 1110, + [1232] = 1111, + [1233] = 1112, + [1234] = 1113, + [1235] = 1114, + [1236] = 1115, + [1237] = 1116, + [1238] = 1118, + [1239] = 1119, + [1240] = 1120, + [1241] = 1121, + [1242] = 1122, + [1243] = 1123, + [1244] = 1125, + [1245] = 1126, + [1246] = 1127, + [1247] = 1128, + [1248] = 1129, + [1249] = 1130, + [1250] = 1046, + [1251] = 1059, + [1252] = 1069, + [1253] = 1057, + [1254] = 1062, [1255] = 1255, [1256] = 1256, [1257] = 1257, @@ -3652,335 +3633,335 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1281] = 1281, [1282] = 1282, [1283] = 996, - [1284] = 1027, + [1284] = 1284, [1285] = 1285, - [1286] = 1286, - [1287] = 1287, - [1288] = 1288, - [1289] = 1285, - [1290] = 1290, - [1291] = 1291, + [1286] = 1050, + [1287] = 1086, + [1288] = 1101, + [1289] = 1109, + [1290] = 1117, + [1291] = 1124, [1292] = 1292, - [1293] = 1293, - [1294] = 1293, - [1295] = 1286, - [1296] = 1287, - [1297] = 1288, - [1298] = 1285, - [1299] = 1290, - [1300] = 1291, - [1301] = 1292, - [1302] = 1293, - [1303] = 1286, - [1304] = 1287, - [1305] = 1288, - [1306] = 1285, - [1307] = 1290, - [1308] = 1291, - [1309] = 1292, - [1310] = 1293, - [1311] = 1286, - [1312] = 1287, - [1313] = 1288, - [1314] = 1290, - [1315] = 1291, - [1316] = 1292, - [1317] = 1293, - [1318] = 1292, - [1319] = 1286, - [1320] = 1291, - [1321] = 1287, - [1322] = 1288, - [1323] = 1285, - [1324] = 1290, - [1325] = 1291, - [1326] = 1292, - [1327] = 1293, - [1328] = 1286, - [1329] = 1287, - [1330] = 1288, - [1331] = 1285, - [1332] = 1290, - [1333] = 1291, - [1334] = 1292, - [1335] = 1293, - [1336] = 1286, - [1337] = 1287, - [1338] = 1288, - [1339] = 1285, - [1340] = 1290, - [1341] = 1290, - [1342] = 1291, - [1343] = 1292, - [1344] = 1293, - [1345] = 1345, - [1346] = 1286, - [1347] = 1287, - [1348] = 1288, - [1349] = 1285, - [1350] = 1285, - [1351] = 1290, - [1352] = 1291, - [1353] = 1292, - [1354] = 1293, - [1355] = 1286, - [1356] = 1287, - [1357] = 1288, - [1358] = 1285, - [1359] = 1290, - [1360] = 1291, - [1361] = 1292, - [1362] = 1293, - [1363] = 1288, - [1364] = 1287, - [1365] = 1286, - [1366] = 1111, - [1367] = 1110, - [1368] = 1109, - [1369] = 1107, - [1370] = 1106, - [1371] = 1105, - [1372] = 1104, - [1373] = 1102, - [1374] = 1101, - [1375] = 1100, + [1293] = 998, + [1294] = 999, + [1295] = 1000, + [1296] = 1001, + [1297] = 1002, + [1298] = 1003, + [1299] = 1006, + [1300] = 1007, + [1301] = 1008, + [1302] = 1010, + [1303] = 1011, + [1304] = 1012, + [1305] = 1013, + [1306] = 1015, + [1307] = 1017, + [1308] = 1018, + [1309] = 1020, + [1310] = 1021, + [1311] = 1022, + [1312] = 1023, + [1313] = 1024, + [1314] = 1027, + [1315] = 1028, + [1316] = 1030, + [1317] = 1031, + [1318] = 1033, + [1319] = 1034, + [1320] = 1035, + [1321] = 1036, + [1322] = 1037, + [1323] = 1038, + [1324] = 1039, + [1325] = 1040, + [1326] = 1041, + [1327] = 1042, + [1328] = 1043, + [1329] = 1044, + [1330] = 1045, + [1331] = 1047, + [1332] = 1048, + [1333] = 1051, + [1334] = 1053, + [1335] = 1054, + [1336] = 1055, + [1337] = 1056, + [1338] = 1058, + [1339] = 997, + [1340] = 1060, + [1341] = 1061, + [1342] = 1062, + [1343] = 1063, + [1344] = 1064, + [1345] = 1065, + [1346] = 1066, + [1347] = 1067, + [1348] = 1068, + [1349] = 1131, + [1350] = 1071, + [1351] = 1351, + [1352] = 1072, + [1353] = 1074, + [1354] = 1075, + [1355] = 1076, + [1356] = 1077, + [1357] = 1078, + [1358] = 1079, + [1359] = 1080, + [1360] = 1081, + [1361] = 1082, + [1362] = 1084, + [1363] = 1085, + [1364] = 1087, + [1365] = 1088, + [1366] = 1089, + [1367] = 1090, + [1368] = 1091, + [1369] = 1092, + [1370] = 1093, + [1371] = 1094, + [1372] = 1095, + [1373] = 1096, + [1374] = 1097, + [1375] = 1098, [1376] = 1099, - [1377] = 1097, - [1378] = 1096, - [1379] = 1095, - [1380] = 1094, - [1381] = 1093, - [1382] = 1090, - [1383] = 1088, - [1384] = 1087, - [1385] = 1086, - [1386] = 1085, - [1387] = 1084, - [1388] = 1082, - [1389] = 1081, - [1390] = 1080, - [1391] = 1078, - [1392] = 1077, - [1393] = 1076, - [1394] = 1075, - [1395] = 1072, - [1396] = 1068, - [1397] = 1066, - [1398] = 1065, - [1399] = 1062, - [1400] = 1058, - [1401] = 1048, - [1402] = 1045, - [1403] = 1042, - [1404] = 1041, - [1405] = 1040, - [1406] = 1038, - [1407] = 1037, - [1408] = 1035, - [1409] = 1034, - [1410] = 1032, - [1411] = 1031, - [1412] = 1030, - [1413] = 1028, - [1414] = 1026, - [1415] = 1025, - [1416] = 1024, - [1417] = 1023, - [1418] = 1020, - [1419] = 1018, - [1420] = 1017, - [1421] = 1014, - [1422] = 1008, - [1423] = 1007, - [1424] = 1054, - [1425] = 1061, - [1426] = 1098, - [1427] = 1108, - [1428] = 1117, - [1429] = 1118, - [1430] = 1120, - [1431] = 1122, - [1432] = 1123, - [1433] = 1124, - [1434] = 1127, - [1435] = 1130, - [1436] = 1052, - [1437] = 1126, - [1438] = 1113, - [1439] = 1103, - [1440] = 1091, - [1441] = 1079, - [1442] = 1071, - [1443] = 1053, - [1444] = 1064, - [1445] = 999, - [1446] = 1000, - [1447] = 1001, - [1448] = 1002, - [1449] = 1003, - [1450] = 1004, - [1451] = 1005, - [1452] = 1006, - [1453] = 1009, - [1454] = 1010, - [1455] = 1011, - [1456] = 1012, - [1457] = 1013, - [1458] = 1015, - [1459] = 1016, - [1460] = 1019, - [1461] = 1021, - [1462] = 1022, - [1463] = 1029, - [1464] = 1033, - [1465] = 1036, - [1466] = 1039, - [1467] = 1043, - [1468] = 1046, - [1469] = 1047, - [1470] = 1049, - [1471] = 1050, - [1472] = 1051, - [1473] = 997, - [1474] = 1055, - [1475] = 1056, - [1476] = 1057, - [1477] = 1059, - [1478] = 1060, - [1479] = 1063, - [1480] = 998, - [1481] = 1067, - [1482] = 1069, - [1483] = 1070, - [1484] = 1073, - [1485] = 1074, - [1486] = 1083, - [1487] = 996, - [1488] = 1074, - [1489] = 1073, - [1490] = 1060, - [1491] = 1083, - [1492] = 1017, - [1493] = 1018, - [1494] = 998, - [1495] = 1063, - [1496] = 1059, - [1497] = 1057, - [1498] = 1051, - [1499] = 1499, - [1500] = 1118, - [1501] = 1130, - [1502] = 1071, - [1503] = 1005, - [1504] = 1011, - [1505] = 1049, - [1506] = 997, - [1507] = 1055, - [1508] = 1050, - [1509] = 1047, - [1510] = 1046, - [1511] = 1043, - [1512] = 1039, - [1513] = 1036, - [1514] = 1033, - [1515] = 1515, - [1516] = 1029, - [1517] = 1517, - [1518] = 1022, - [1519] = 1021, - [1520] = 1016, + [1377] = 1100, + [1378] = 1102, + [1379] = 1103, + [1380] = 1104, + [1381] = 1105, + [1382] = 1106, + [1383] = 1107, + [1384] = 1108, + [1385] = 1110, + [1386] = 1111, + [1387] = 1112, + [1388] = 1113, + [1389] = 1114, + [1390] = 1115, + [1391] = 1116, + [1392] = 1118, + [1393] = 1119, + [1394] = 1120, + [1395] = 1395, + [1396] = 1122, + [1397] = 1123, + [1398] = 1125, + [1399] = 1126, + [1400] = 1127, + [1401] = 1128, + [1402] = 1402, + [1403] = 1402, + [1404] = 1129, + [1405] = 1130, + [1406] = 1046, + [1407] = 1059, + [1408] = 1069, + [1409] = 1292, + [1410] = 1351, + [1411] = 1057, + [1412] = 1025, + [1413] = 1029, + [1414] = 1414, + [1415] = 1415, + [1416] = 1285, + [1417] = 1395, + [1418] = 1402, + [1419] = 1292, + [1420] = 1351, + [1421] = 1414, + [1422] = 1415, + [1423] = 1284, + [1424] = 1285, + [1425] = 1395, + [1426] = 1402, + [1427] = 1292, + [1428] = 1351, + [1429] = 1414, + [1430] = 1414, + [1431] = 1415, + [1432] = 1285, + [1433] = 1284, + [1434] = 1285, + [1435] = 1395, + [1436] = 1395, + [1437] = 1402, + [1438] = 1292, + [1439] = 1351, + [1440] = 1414, + [1441] = 1415, + [1442] = 1284, + [1443] = 1285, + [1444] = 1395, + [1445] = 1402, + [1446] = 1292, + [1447] = 1351, + [1448] = 1414, + [1449] = 1415, + [1450] = 1284, + [1451] = 1285, + [1452] = 1395, + [1453] = 1402, + [1454] = 1292, + [1455] = 1351, + [1456] = 1414, + [1457] = 1415, + [1458] = 1284, + [1459] = 1285, + [1460] = 1395, + [1461] = 1402, + [1462] = 1292, + [1463] = 1351, + [1464] = 1464, + [1465] = 1415, + [1466] = 1414, + [1467] = 1415, + [1468] = 1284, + [1469] = 1285, + [1470] = 1395, + [1471] = 1402, + [1472] = 1292, + [1473] = 1351, + [1474] = 1284, + [1475] = 1414, + [1476] = 1415, + [1477] = 1284, + [1478] = 1285, + [1479] = 1395, + [1480] = 1402, + [1481] = 1292, + [1482] = 1351, + [1483] = 1414, + [1484] = 1415, + [1485] = 1284, + [1486] = 1121, + [1487] = 1050, + [1488] = 1000, + [1489] = 996, + [1490] = 1086, + [1491] = 1101, + [1492] = 1091, + [1493] = 1126, + [1494] = 1127, + [1495] = 1128, + [1496] = 1033, + [1497] = 1037, + [1498] = 1129, + [1499] = 1130, + [1500] = 1500, + [1501] = 1047, + [1502] = 1046, + [1503] = 1059, + [1504] = 1109, + [1505] = 1069, + [1506] = 1057, + [1507] = 1117, + [1508] = 998, + [1509] = 1025, + [1510] = 1058, + [1511] = 1029, + [1512] = 999, + [1513] = 1064, + [1514] = 1001, + [1515] = 1002, + [1516] = 1008, + [1517] = 1010, + [1518] = 1012, + [1519] = 1013, + [1520] = 1120, [1521] = 1015, - [1522] = 1013, - [1523] = 1012, - [1524] = 1010, - [1525] = 1009, - [1526] = 1006, - [1527] = 1056, - [1528] = 1004, - [1529] = 1003, - [1530] = 1002, - [1531] = 1001, - [1532] = 1000, - [1533] = 999, - [1534] = 1064, - [1535] = 1053, - [1536] = 1079, - [1537] = 1091, - [1538] = 1103, - [1539] = 1113, - [1540] = 1023, - [1541] = 1052, - [1542] = 1127, - [1543] = 1124, - [1544] = 1123, - [1545] = 1122, - [1546] = 1120, - [1547] = 1117, - [1548] = 1108, - [1549] = 1098, - [1550] = 1061, - [1551] = 1054, - [1552] = 1007, - [1553] = 1008, - [1554] = 1014, + [1522] = 1017, + [1523] = 1018, + [1524] = 1020, + [1525] = 1021, + [1526] = 1121, + [1527] = 1022, + [1528] = 1023, + [1529] = 1027, + [1530] = 1028, + [1531] = 1030, + [1532] = 1031, + [1533] = 1034, + [1534] = 1003, + [1535] = 1035, + [1536] = 1036, + [1537] = 1038, + [1538] = 1039, + [1539] = 1040, + [1540] = 1006, + [1541] = 1041, + [1542] = 1542, + [1543] = 1042, + [1544] = 1544, + [1545] = 1043, + [1546] = 1044, + [1547] = 1045, + [1548] = 1048, + [1549] = 1051, + [1550] = 1119, + [1551] = 1053, + [1552] = 1054, + [1553] = 1007, + [1554] = 1011, [1555] = 1555, - [1556] = 1024, - [1557] = 1069, - [1558] = 1126, - [1559] = 1020, - [1560] = 1025, - [1561] = 1026, - [1562] = 1027, - [1563] = 1028, - [1564] = 1030, - [1565] = 1031, - [1566] = 1032, - [1567] = 1034, - [1568] = 1035, - [1569] = 1037, - [1570] = 1038, - [1571] = 1040, - [1572] = 1041, - [1573] = 1042, - [1574] = 1045, - [1575] = 1048, - [1576] = 1058, - [1577] = 1062, - [1578] = 1065, - [1579] = 1066, - [1580] = 1068, - [1581] = 1072, - [1582] = 1075, - [1583] = 1076, - [1584] = 1077, - [1585] = 1078, - [1586] = 1080, - [1587] = 1081, - [1588] = 1082, - [1589] = 1084, - [1590] = 1085, - [1591] = 1086, - [1592] = 1087, - [1593] = 1088, - [1594] = 1090, - [1595] = 1093, - [1596] = 1094, - [1597] = 1095, - [1598] = 1096, - [1599] = 1097, - [1600] = 1099, - [1601] = 1100, - [1602] = 1101, - [1603] = 1102, - [1604] = 1104, - [1605] = 1105, - [1606] = 1106, - [1607] = 1107, - [1608] = 1109, - [1609] = 1110, - [1610] = 1111, - [1611] = 1611, - [1612] = 1070, + [1556] = 1055, + [1557] = 1056, + [1558] = 997, + [1559] = 1060, + [1560] = 1061, + [1561] = 1062, + [1562] = 1122, + [1563] = 1065, + [1564] = 1066, + [1565] = 1067, + [1566] = 1566, + [1567] = 1068, + [1568] = 1131, + [1569] = 1071, + [1570] = 1123, + [1571] = 1072, + [1572] = 1074, + [1573] = 1075, + [1574] = 1125, + [1575] = 1076, + [1576] = 1077, + [1577] = 1078, + [1578] = 1079, + [1579] = 1080, + [1580] = 1081, + [1581] = 1082, + [1582] = 1084, + [1583] = 1085, + [1584] = 1087, + [1585] = 1088, + [1586] = 1089, + [1587] = 1090, + [1588] = 1092, + [1589] = 1093, + [1590] = 1094, + [1591] = 1095, + [1592] = 1096, + [1593] = 1097, + [1594] = 1098, + [1595] = 1099, + [1596] = 1100, + [1597] = 1102, + [1598] = 1103, + [1599] = 1104, + [1600] = 1105, + [1601] = 1106, + [1602] = 1107, + [1603] = 1108, + [1604] = 1110, + [1605] = 1111, + [1606] = 1112, + [1607] = 1113, + [1608] = 1114, + [1609] = 1115, + [1610] = 1116, + [1611] = 1118, + [1612] = 1063, [1613] = 1613, [1614] = 1613, [1615] = 1613, @@ -3992,360 +3973,360 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1621] = 1613, [1622] = 1613, [1623] = 996, - [1624] = 1020, - [1625] = 1058, - [1626] = 1025, - [1627] = 1024, - [1628] = 1023, - [1629] = 1018, - [1630] = 1017, - [1631] = 1014, - [1632] = 1008, - [1633] = 1007, - [1634] = 1054, - [1635] = 1061, - [1636] = 1098, - [1637] = 1108, - [1638] = 1117, - [1639] = 1111, - [1640] = 1110, - [1641] = 1109, - [1642] = 1107, - [1643] = 1106, + [1624] = 1031, + [1625] = 1065, + [1626] = 1085, + [1627] = 1066, + [1628] = 1067, + [1629] = 1030, + [1630] = 1043, + [1631] = 1057, + [1632] = 1037, + [1633] = 1072, + [1634] = 1044, + [1635] = 1126, + [1636] = 1087, + [1637] = 1038, + [1638] = 1003, + [1639] = 1006, + [1640] = 1055, + [1641] = 1127, + [1642] = 1076, + [1643] = 1095, [1644] = 1105, - [1645] = 1104, - [1646] = 1102, - [1647] = 1101, - [1648] = 1100, - [1649] = 1099, - [1650] = 1097, - [1651] = 1096, - [1652] = 1095, - [1653] = 1094, - [1654] = 1093, - [1655] = 1090, - [1656] = 1088, - [1657] = 1087, - [1658] = 1086, - [1659] = 1085, - [1660] = 1084, - [1661] = 1082, - [1662] = 1081, - [1663] = 1080, - [1664] = 1078, - [1665] = 1077, - [1666] = 1076, - [1667] = 1083, - [1668] = 1075, - [1669] = 1072, - [1670] = 1068, - [1671] = 1066, - [1672] = 1065, - [1673] = 1118, - [1674] = 1074, - [1675] = 1073, - [1676] = 1070, - [1677] = 1069, - [1678] = 1067, - [1679] = 1027, - [1680] = 998, - [1681] = 1063, - [1682] = 1060, - [1683] = 1059, - [1684] = 1057, - [1685] = 1056, - [1686] = 1055, - [1687] = 997, - [1688] = 1051, - [1689] = 1050, - [1690] = 1049, - [1691] = 1047, - [1692] = 1046, - [1693] = 1062, - [1694] = 1043, - [1695] = 1026, - [1696] = 1039, - [1697] = 1048, - [1698] = 1036, - [1699] = 1045, - [1700] = 1033, - [1701] = 1042, - [1702] = 1041, - [1703] = 1029, - [1704] = 1040, - [1705] = 1120, - [1706] = 1038, - [1707] = 1037, - [1708] = 1022, - [1709] = 1021, - [1710] = 1019, - [1711] = 1035, - [1712] = 1016, - [1713] = 1015, - [1714] = 1013, - [1715] = 1012, - [1716] = 1011, - [1717] = 1010, - [1718] = 1009, - [1719] = 1006, - [1720] = 1005, - [1721] = 1004, - [1722] = 1003, - [1723] = 1002, - [1724] = 1001, - [1725] = 1000, - [1726] = 999, - [1727] = 1064, - [1728] = 1053, - [1729] = 1034, - [1730] = 1122, - [1731] = 1071, - [1732] = 1079, - [1733] = 1091, - [1734] = 1032, - [1735] = 1103, - [1736] = 1031, - [1737] = 1113, - [1738] = 1030, - [1739] = 1028, - [1740] = 1123, - [1741] = 1126, - [1742] = 1052, - [1743] = 1130, - [1744] = 1127, - [1745] = 1124, + [1645] = 1007, + [1646] = 1039, + [1647] = 1068, + [1648] = 1045, + [1649] = 1033, + [1650] = 1008, + [1651] = 1034, + [1652] = 1025, + [1653] = 1010, + [1654] = 1096, + [1655] = 1056, + [1656] = 1097, + [1657] = 1011, + [1658] = 1098, + [1659] = 1128, + [1660] = 1112, + [1661] = 1131, + [1662] = 1110, + [1663] = 1099, + [1664] = 1058, + [1665] = 997, + [1666] = 1071, + [1667] = 1111, + [1668] = 1029, + [1669] = 1040, + [1670] = 1041, + [1671] = 1060, + [1672] = 1114, + [1673] = 1048, + [1674] = 1061, + [1675] = 1012, + [1676] = 1100, + [1677] = 1079, + [1678] = 1050, + [1679] = 1051, + [1680] = 1109, + [1681] = 1102, + [1682] = 1104, + [1683] = 1115, + [1684] = 1018, + [1685] = 1080, + [1686] = 1116, + [1687] = 1117, + [1688] = 1013, + [1689] = 1077, + [1690] = 1015, + [1691] = 1075, + [1692] = 1020, + [1693] = 1124, + [1694] = 1022, + [1695] = 1118, + [1696] = 1047, + [1697] = 1074, + [1698] = 1086, + [1699] = 998, + [1700] = 1122, + [1701] = 1053, + [1702] = 1078, + [1703] = 1017, + [1704] = 1129, + [1705] = 999, + [1706] = 1119, + [1707] = 1120, + [1708] = 1107, + [1709] = 1121, + [1710] = 1000, + [1711] = 1001, + [1712] = 1002, + [1713] = 1081, + [1714] = 1130, + [1715] = 1103, + [1716] = 1023, + [1717] = 1108, + [1718] = 1088, + [1719] = 1089, + [1720] = 1082, + [1721] = 1046, + [1722] = 1042, + [1723] = 1024, + [1724] = 1090, + [1725] = 1054, + [1726] = 1021, + [1727] = 1027, + [1728] = 1062, + [1729] = 1059, + [1730] = 1063, + [1731] = 1091, + [1732] = 1035, + [1733] = 1092, + [1734] = 1101, + [1735] = 1028, + [1736] = 1093, + [1737] = 1094, + [1738] = 1123, + [1739] = 1036, + [1740] = 1125, + [1741] = 1064, + [1742] = 1113, + [1743] = 1084, + [1744] = 1069, + [1745] = 1106, [1746] = 1746, [1747] = 1747, - [1748] = 1746, - [1749] = 1747, - [1750] = 1746, + [1748] = 1747, + [1749] = 1746, + [1750] = 1747, [1751] = 1747, [1752] = 1746, - [1753] = 1747, + [1753] = 1746, [1754] = 1746, - [1755] = 1747, + [1755] = 1746, [1756] = 1746, - [1757] = 1747, + [1757] = 1746, [1758] = 1747, - [1759] = 1746, + [1759] = 1747, [1760] = 1747, - [1761] = 1746, - [1762] = 1747, - [1763] = 1746, - [1764] = 1747, - [1765] = 1746, + [1761] = 1747, + [1762] = 1746, + [1763] = 1747, + [1764] = 1746, + [1765] = 1747, [1766] = 1766, - [1767] = 1000, - [1768] = 1074, - [1769] = 998, - [1770] = 1109, - [1771] = 1020, - [1772] = 1107, - [1773] = 1127, - [1774] = 1106, - [1775] = 1124, - [1776] = 1105, - [1777] = 1104, - [1778] = 1102, - [1779] = 1101, - [1780] = 1122, - [1781] = 1120, - [1782] = 1118, - [1783] = 1123, - [1784] = 1108, - [1785] = 1098, - [1786] = 1061, - [1787] = 1054, - [1788] = 1007, - [1789] = 1008, - [1790] = 1100, - [1791] = 1099, - [1792] = 1097, - [1793] = 1014, - [1794] = 1017, - [1795] = 1096, - [1796] = 1130, - [1797] = 1095, - [1798] = 1094, - [1799] = 1040, - [1800] = 1093, - [1801] = 1090, - [1802] = 1038, - [1803] = 1117, - [1804] = 1037, - [1805] = 1035, - [1806] = 1088, - [1807] = 1087, - [1808] = 1034, - [1809] = 1032, - [1810] = 1031, - [1811] = 1086, - [1812] = 1085, - [1813] = 1084, - [1814] = 1082, - [1815] = 1081, - [1816] = 1080, - [1817] = 1078, - [1818] = 1066, - [1819] = 1077, - [1820] = 1076, - [1821] = 1052, - [1822] = 1126, - [1823] = 1075, - [1824] = 1113, - [1825] = 1103, - [1826] = 1091, - [1827] = 1079, - [1828] = 1111, - [1829] = 1071, - [1830] = 1072, - [1831] = 1053, - [1832] = 1064, - [1833] = 999, - [1834] = 1110, - [1835] = 1018, - [1836] = 1001, - [1837] = 1002, - [1838] = 1068, - [1839] = 1003, - [1840] = 1004, - [1841] = 1005, - [1842] = 1006, - [1843] = 1009, - [1844] = 1065, - [1845] = 1062, - [1846] = 1058, - [1847] = 1048, - [1848] = 1010, - [1849] = 1015, - [1850] = 1030, - [1851] = 1045, - [1852] = 1042, - [1853] = 1041, - [1854] = 1011, - [1855] = 1012, - [1856] = 1013, - [1857] = 1028, - [1858] = 1016, - [1859] = 1067, - [1860] = 1019, - [1861] = 1021, - [1862] = 1022, - [1863] = 1027, - [1864] = 1029, - [1865] = 1026, - [1866] = 1033, - [1867] = 1036, - [1868] = 1039, - [1869] = 1043, - [1870] = 1046, - [1871] = 1047, - [1872] = 1049, - [1873] = 996, - [1874] = 1050, - [1875] = 1069, - [1876] = 1025, - [1877] = 1070, - [1878] = 1073, + [1767] = 1050, + [1768] = 1015, + [1769] = 1017, + [1770] = 1018, + [1771] = 1101, + [1772] = 1094, + [1773] = 1095, + [1774] = 1096, + [1775] = 1097, + [1776] = 1098, + [1777] = 1099, + [1778] = 1100, + [1779] = 1102, + [1780] = 1103, + [1781] = 1104, + [1782] = 1105, + [1783] = 1106, + [1784] = 1107, + [1785] = 1020, + [1786] = 1021, + [1787] = 1012, + [1788] = 997, + [1789] = 1060, + [1790] = 1109, + [1791] = 1061, + [1792] = 1062, + [1793] = 1063, + [1794] = 1064, + [1795] = 1065, + [1796] = 1066, + [1797] = 1067, + [1798] = 1068, + [1799] = 1131, + [1800] = 1071, + [1801] = 1117, + [1802] = 1072, + [1803] = 1124, + [1804] = 1108, + [1805] = 1110, + [1806] = 1111, + [1807] = 1112, + [1808] = 1113, + [1809] = 1114, + [1810] = 1115, + [1811] = 1116, + [1812] = 1118, + [1813] = 1119, + [1814] = 1120, + [1815] = 1121, + [1816] = 1122, + [1817] = 1123, + [1818] = 1125, + [1819] = 1022, + [1820] = 1023, + [1821] = 1024, + [1822] = 1027, + [1823] = 1028, + [1824] = 1030, + [1825] = 1031, + [1826] = 1033, + [1827] = 998, + [1828] = 1074, + [1829] = 1075, + [1830] = 1126, + [1831] = 1127, + [1832] = 1128, + [1833] = 1129, + [1834] = 1130, + [1835] = 1046, + [1836] = 1059, + [1837] = 1069, + [1838] = 1057, + [1839] = 1076, + [1840] = 1077, + [1841] = 1078, + [1842] = 1079, + [1843] = 1080, + [1844] = 1081, + [1845] = 1082, + [1846] = 1034, + [1847] = 1084, + [1848] = 999, + [1849] = 1000, + [1850] = 1001, + [1851] = 1002, + [1852] = 1003, + [1853] = 1025, + [1854] = 1029, + [1855] = 1006, + [1856] = 1007, + [1857] = 996, + [1858] = 1035, + [1859] = 1036, + [1860] = 1037, + [1861] = 1038, + [1862] = 1039, + [1863] = 1040, + [1864] = 1041, + [1865] = 1042, + [1866] = 1043, + [1867] = 1044, + [1868] = 1045, + [1869] = 1047, + [1870] = 1048, + [1871] = 1085, + [1872] = 1087, + [1873] = 1088, + [1874] = 1089, + [1875] = 1090, + [1876] = 1091, + [1877] = 1092, + [1878] = 1093, [1879] = 1051, - [1880] = 1024, - [1881] = 1023, - [1882] = 997, + [1880] = 1008, + [1881] = 1053, + [1882] = 1054, [1883] = 1055, - [1884] = 1083, - [1885] = 1056, - [1886] = 1057, - [1887] = 1059, - [1888] = 1060, - [1889] = 1063, - [1890] = 1110, - [1891] = 1079, - [1892] = 1070, - [1893] = 1069, - [1894] = 998, - [1895] = 1063, - [1896] = 1059, - [1897] = 1057, - [1898] = 1050, - [1899] = 1047, - [1900] = 1046, - [1901] = 1043, - [1902] = 1039, - [1903] = 1029, - [1904] = 1022, - [1905] = 1111, - [1906] = 1021, - [1907] = 1109, - [1908] = 1107, - [1909] = 1106, - [1910] = 1105, - [1911] = 1104, - [1912] = 1102, - [1913] = 1101, - [1914] = 1100, - [1915] = 1099, - [1916] = 1097, - [1917] = 1096, - [1918] = 1095, - [1919] = 1094, - [1920] = 1093, - [1921] = 1090, - [1922] = 1088, - [1923] = 1087, - [1924] = 1086, - [1925] = 1085, - [1926] = 1084, - [1927] = 1082, - [1928] = 1081, - [1929] = 1080, - [1930] = 1078, - [1931] = 1077, - [1932] = 1076, - [1933] = 1075, - [1934] = 1072, - [1935] = 1068, - [1936] = 1066, - [1937] = 1065, - [1938] = 1062, - [1939] = 1058, - [1940] = 1048, - [1941] = 1045, - [1942] = 1042, - [1943] = 1040, - [1944] = 1038, - [1945] = 1037, - [1946] = 1035, - [1947] = 1034, - [1948] = 1032, - [1949] = 1031, - [1950] = 1027, - [1951] = 1026, - [1952] = 1025, - [1953] = 1024, - [1954] = 1023, - [1955] = 1020, - [1956] = 1007, - [1957] = 1054, - [1958] = 1098, - [1959] = 1108, - [1960] = 1117, - [1961] = 1120, - [1962] = 1122, - [1963] = 1052, - [1964] = 1126, - [1965] = 1103, - [1966] = 1091, - [1967] = 990, - [1968] = 1053, - [1969] = 1064, - [1970] = 1001, - [1971] = 1002, - [1972] = 1003, - [1973] = 1004, - [1974] = 1012, - [1975] = 1013, - [1976] = 1015, - [1977] = 1016, + [1884] = 1056, + [1885] = 1058, + [1886] = 1086, + [1887] = 1010, + [1888] = 1011, + [1889] = 1013, + [1890] = 1017, + [1891] = 1001, + [1892] = 1002, + [1893] = 1010, + [1894] = 1012, + [1895] = 1013, + [1896] = 1015, + [1897] = 998, + [1898] = 1021, + [1899] = 1022, + [1900] = 1023, + [1901] = 1027, + [1902] = 1028, + [1903] = 1030, + [1904] = 1031, + [1905] = 1038, + [1906] = 1039, + [1907] = 1040, + [1908] = 1041, + [1909] = 1044, + [1910] = 1045, + [1911] = 1048, + [1912] = 1051, + [1913] = 1053, + [1914] = 1055, + [1915] = 1056, + [1916] = 1062, + [1917] = 1063, + [1918] = 1065, + [1919] = 1066, + [1920] = 1067, + [1921] = 1131, + [1922] = 1071, + [1923] = 1077, + [1924] = 1078, + [1925] = 1079, + [1926] = 1080, + [1927] = 1081, + [1928] = 1082, + [1929] = 1087, + [1930] = 1088, + [1931] = 1089, + [1932] = 1090, + [1933] = 1091, + [1934] = 1092, + [1935] = 1093, + [1936] = 1095, + [1937] = 1096, + [1938] = 1097, + [1939] = 1098, + [1940] = 1099, + [1941] = 1100, + [1942] = 1102, + [1943] = 1103, + [1944] = 1104, + [1945] = 1105, + [1946] = 1106, + [1947] = 1107, + [1948] = 1108, + [1949] = 1110, + [1950] = 1111, + [1951] = 1112, + [1952] = 1113, + [1953] = 1114, + [1954] = 1115, + [1955] = 1116, + [1956] = 1118, + [1957] = 1119, + [1958] = 1120, + [1959] = 1121, + [1960] = 1122, + [1961] = 1123, + [1962] = 1125, + [1963] = 1126, + [1964] = 1127, + [1965] = 1128, + [1966] = 1129, + [1967] = 1130, + [1968] = 1046, + [1969] = 1059, + [1970] = 1069, + [1971] = 1057, + [1972] = 1025, + [1973] = 1029, + [1974] = 990, + [1975] = 1109, + [1976] = 1117, + [1977] = 999, [1978] = 1978, [1979] = 1979, [1980] = 1980, @@ -4354,18 +4335,18 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1983] = 1983, [1984] = 1984, [1985] = 1985, - [1986] = 1984, + [1986] = 1986, [1987] = 1987, - [1988] = 1984, - [1989] = 1984, - [1990] = 1984, + [1988] = 1988, + [1989] = 1989, + [1990] = 1990, [1991] = 1991, - [1992] = 1984, + [1992] = 1992, [1993] = 1993, - [1994] = 1984, + [1994] = 1994, [1995] = 1995, [1996] = 1996, - [1997] = 1984, + [1997] = 1997, [1998] = 1998, [1999] = 1999, [2000] = 2000, @@ -4381,11 +4362,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2010] = 2010, [2011] = 2011, [2012] = 2012, - [2013] = 1984, + [2013] = 2013, [2014] = 2014, [2015] = 2015, [2016] = 2016, - [2017] = 1984, + [2017] = 2017, [2018] = 2018, [2019] = 2019, [2020] = 2020, @@ -4393,15 +4374,15 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2022] = 2022, [2023] = 2023, [2024] = 2024, - [2025] = 2025, - [2026] = 2026, - [2027] = 2027, - [2028] = 2028, - [2029] = 2029, - [2030] = 2030, - [2031] = 2031, - [2032] = 2032, - [2033] = 2033, + [2025] = 2019, + [2026] = 2019, + [2027] = 2019, + [2028] = 2019, + [2029] = 2019, + [2030] = 2019, + [2031] = 2019, + [2032] = 2019, + [2033] = 2019, [2034] = 2034, [2035] = 2035, [2036] = 2036, @@ -4414,11 +4395,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2043] = 2043, [2044] = 2044, [2045] = 2045, - [2046] = 1041, + [2046] = 2046, [2047] = 2047, [2048] = 2048, [2049] = 2049, - [2050] = 2050, + [2050] = 1000, [2051] = 2051, [2052] = 2052, [2053] = 2053, @@ -4436,7 +4417,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2065] = 2065, [2066] = 2066, [2067] = 2067, - [2068] = 2068, + [2068] = 1072, [2069] = 2069, [2070] = 2070, [2071] = 2071, @@ -4444,7 +4425,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2073] = 2073, [2074] = 2074, [2075] = 2075, - [2076] = 2076, + [2076] = 1074, [2077] = 2077, [2078] = 2078, [2079] = 2079, @@ -4454,7 +4435,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2083] = 2083, [2084] = 2084, [2085] = 2085, - [2086] = 2086, + [2086] = 1075, [2087] = 2087, [2088] = 2088, [2089] = 2089, @@ -4463,35 +4444,35 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2092] = 2092, [2093] = 2093, [2094] = 2094, - [2095] = 2095, + [2095] = 1050, [2096] = 2096, [2097] = 2097, - [2098] = 2098, - [2099] = 2099, - [2100] = 2100, + [2098] = 1076, + [2099] = 1084, + [2100] = 1085, [2101] = 2101, - [2102] = 2102, - [2103] = 2103, + [2102] = 1094, + [2103] = 1008, [2104] = 2104, [2105] = 2105, - [2106] = 2106, + [2106] = 1086, [2107] = 2107, - [2108] = 2108, + [2108] = 1018, [2109] = 2109, [2110] = 2110, [2111] = 2111, - [2112] = 2112, + [2112] = 1101, [2113] = 2113, [2114] = 2114, [2115] = 2115, - [2116] = 2116, + [2116] = 1020, [2117] = 2117, [2118] = 2118, - [2119] = 2119, + [2119] = 1124, [2120] = 2120, [2121] = 2121, [2122] = 2122, - [2123] = 2123, + [2123] = 1024, [2124] = 2124, [2125] = 2125, [2126] = 2126, @@ -4502,7 +4483,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2131] = 2131, [2132] = 2132, [2133] = 2133, - [2134] = 2134, + [2134] = 1034, [2135] = 2135, [2136] = 2136, [2137] = 2137, @@ -4512,14 +4493,14 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2141] = 2141, [2142] = 2142, [2143] = 2143, - [2144] = 2144, - [2145] = 990, + [2144] = 1035, + [2145] = 1036, [2146] = 2146, [2147] = 2147, [2148] = 2148, - [2149] = 2149, + [2149] = 1042, [2150] = 2150, - [2151] = 2151, + [2151] = 1043, [2152] = 2152, [2153] = 2153, [2154] = 2154, @@ -4545,7 +4526,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2174] = 2174, [2175] = 2175, [2176] = 2176, - [2177] = 2177, + [2177] = 1054, [2178] = 2178, [2179] = 2179, [2180] = 2180, @@ -4678,7 +4659,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2307] = 2307, [2308] = 2308, [2309] = 2309, - [2310] = 2310, + [2310] = 997, [2311] = 2311, [2312] = 2312, [2313] = 2313, @@ -4711,7 +4692,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2340] = 2340, [2341] = 2341, [2342] = 2342, - [2343] = 2343, + [2343] = 1060, [2344] = 2344, [2345] = 2345, [2346] = 2346, @@ -4744,7 +4725,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2373] = 2373, [2374] = 2374, [2375] = 2375, - [2376] = 2376, + [2376] = 1061, [2377] = 2377, [2378] = 2378, [2379] = 2379, @@ -4808,7 +4789,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2437] = 2437, [2438] = 2438, [2439] = 2439, - [2440] = 1083, + [2440] = 2440, [2441] = 2441, [2442] = 2442, [2443] = 2443, @@ -4859,164 +4840,164 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2488] = 2488, [2489] = 2489, [2490] = 2490, - [2491] = 2491, + [2491] = 1068, [2492] = 2492, [2493] = 2493, [2494] = 2494, [2495] = 2495, - [2496] = 1074, - [2497] = 1073, - [2498] = 1067, + [2496] = 2496, + [2497] = 2497, + [2498] = 2498, [2499] = 2499, - [2500] = 1060, - [2501] = 1051, + [2500] = 2500, + [2501] = 2501, [2502] = 2502, [2503] = 2503, - [2504] = 1036, - [2505] = 1033, + [2504] = 2504, + [2505] = 2505, [2506] = 2506, [2507] = 2507, [2508] = 2508, [2509] = 2509, [2510] = 2510, - [2511] = 1019, + [2511] = 2511, [2512] = 2512, - [2513] = 1009, - [2514] = 1006, - [2515] = 1000, - [2516] = 999, + [2513] = 2513, + [2514] = 2514, + [2515] = 2515, + [2516] = 2516, [2517] = 2517, [2518] = 2518, [2519] = 2519, [2520] = 2520, [2521] = 2521, [2522] = 2522, - [2523] = 1113, + [2523] = 2523, [2524] = 2524, [2525] = 2525, [2526] = 2526, [2527] = 2527, [2528] = 2528, - [2529] = 1127, + [2529] = 2529, [2530] = 2530, - [2531] = 1124, - [2532] = 1123, + [2531] = 2531, + [2532] = 2532, [2533] = 2533, [2534] = 2534, [2535] = 2535, [2536] = 2536, - [2537] = 1061, - [2538] = 2538, + [2537] = 2537, + [2538] = 990, [2539] = 2539, [2540] = 2540, [2541] = 2541, - [2542] = 1008, + [2542] = 2542, [2543] = 2543, - [2544] = 1014, - [2545] = 1017, - [2546] = 1018, + [2544] = 2544, + [2545] = 2545, + [2546] = 2546, [2547] = 2547, - [2548] = 1010, + [2548] = 2548, [2549] = 2549, - [2550] = 1028, - [2551] = 1030, - [2552] = 1024, - [2553] = 1087, - [2554] = 1065, - [2555] = 1062, - [2556] = 1058, - [2557] = 1048, - [2558] = 1045, - [2559] = 1042, - [2560] = 1075, - [2561] = 1040, - [2562] = 1038, - [2563] = 1037, - [2564] = 1035, - [2565] = 1034, - [2566] = 1032, - [2567] = 1031, - [2568] = 1066, - [2569] = 1068, - [2570] = 1072, - [2571] = 1027, - [2572] = 1046, - [2573] = 1076, - [2574] = 1025, - [2575] = 1043, - [2576] = 1023, - [2577] = 1020, - [2578] = 1077, - [2579] = 1078, - [2580] = 1102, - [2581] = 996, - [2582] = 1080, - [2583] = 1081, - [2584] = 1007, - [2585] = 1039, - [2586] = 1082, - [2587] = 1054, - [2588] = 1084, - [2589] = 1098, - [2590] = 1108, - [2591] = 1117, - [2592] = 1101, - [2593] = 1100, - [2594] = 1085, - [2595] = 1029, - [2596] = 1022, - [2597] = 1086, - [2598] = 1050, - [2599] = 1026, - [2600] = 1071, - [2601] = 1120, - [2602] = 1122, - [2603] = 1057, - [2604] = 1021, - [2605] = 1099, - [2606] = 1056, - [2607] = 1059, - [2608] = 1055, - [2609] = 1052, - [2610] = 997, - [2611] = 1049, - [2612] = 1097, - [2613] = 1126, - [2614] = 1047, - [2615] = 1016, - [2616] = 998, - [2617] = 1088, - [2618] = 1104, - [2619] = 1090, - [2620] = 1093, - [2621] = 1094, - [2622] = 1118, - [2623] = 1103, - [2624] = 1111, - [2625] = 1069, - [2626] = 1091, - [2627] = 1079, - [2628] = 1015, - [2629] = 1011, - [2630] = 1095, - [2631] = 1013, - [2632] = 1096, - [2633] = 1053, - [2634] = 1005, - [2635] = 1064, - [2636] = 1110, - [2637] = 1109, - [2638] = 1001, + [2550] = 2550, + [2551] = 2551, + [2552] = 1104, + [2553] = 1121, + [2554] = 1122, + [2555] = 1123, + [2556] = 1125, + [2557] = 1126, + [2558] = 1127, + [2559] = 1128, + [2560] = 1129, + [2561] = 1130, + [2562] = 1046, + [2563] = 1059, + [2564] = 1069, + [2565] = 1057, + [2566] = 1025, + [2567] = 1003, + [2568] = 1006, + [2569] = 1007, + [2570] = 1029, + [2571] = 1011, + [2572] = 1021, + [2573] = 1022, + [2574] = 1023, + [2575] = 1027, + [2576] = 1033, + [2577] = 1037, + [2578] = 1028, + [2579] = 1030, + [2580] = 1047, + [2581] = 1031, + [2582] = 1058, + [2583] = 1064, + [2584] = 1109, + [2585] = 1038, + [2586] = 1039, + [2587] = 1040, + [2588] = 1041, + [2589] = 1117, + [2590] = 1044, + [2591] = 1045, + [2592] = 1048, + [2593] = 1051, + [2594] = 996, + [2595] = 998, + [2596] = 1053, + [2597] = 999, + [2598] = 1001, + [2599] = 1055, + [2600] = 1056, + [2601] = 1002, + [2602] = 1062, + [2603] = 1063, + [2604] = 1118, + [2605] = 1066, + [2606] = 1067, + [2607] = 1131, + [2608] = 1119, + [2609] = 1071, + [2610] = 1010, + [2611] = 1012, + [2612] = 1013, + [2613] = 1015, + [2614] = 1077, + [2615] = 1078, + [2616] = 1079, + [2617] = 1080, + [2618] = 1081, + [2619] = 1082, + [2620] = 1017, + [2621] = 1087, + [2622] = 1088, + [2623] = 1089, + [2624] = 1090, + [2625] = 1091, + [2626] = 1092, + [2627] = 1093, + [2628] = 1095, + [2629] = 1096, + [2630] = 1097, + [2631] = 1098, + [2632] = 1099, + [2633] = 1100, + [2634] = 1102, + [2635] = 1103, + [2636] = 1120, + [2637] = 1105, + [2638] = 1106, [2639] = 1107, - [2640] = 1002, - [2641] = 1003, - [2642] = 1004, - [2643] = 1106, - [2644] = 1012, - [2645] = 1105, - [2646] = 1130, - [2647] = 1063, - [2648] = 1070, + [2640] = 1108, + [2641] = 1110, + [2642] = 1111, + [2643] = 1112, + [2644] = 1113, + [2645] = 1114, + [2646] = 1115, + [2647] = 1116, + [2648] = 1065, [2649] = 2649, [2650] = 2650, [2651] = 2651, @@ -5119,101 +5100,101 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2748] = 2748, [2749] = 2749, [2750] = 2750, - [2751] = 2751, + [2751] = 2750, [2752] = 2752, [2753] = 2753, [2754] = 2754, [2755] = 2755, - [2756] = 2750, + [2756] = 2756, [2757] = 2757, - [2758] = 2755, - [2759] = 2757, - [2760] = 2760, - [2761] = 2752, - [2762] = 1073, - [2763] = 1060, - [2764] = 1083, - [2765] = 2765, - [2766] = 996, - [2767] = 1074, - [2768] = 1123, - [2769] = 1005, - [2770] = 1071, - [2771] = 1130, - [2772] = 1113, - [2773] = 1118, - [2774] = 999, - [2775] = 1000, - [2776] = 1030, - [2777] = 1028, - [2778] = 1006, - [2779] = 1009, - [2780] = 1010, - [2781] = 1018, - [2782] = 1019, - [2783] = 1127, - [2784] = 1017, - [2785] = 1011, - [2786] = 1124, - [2787] = 1033, + [2758] = 2758, + [2759] = 2753, + [2760] = 2757, + [2761] = 2755, + [2762] = 2762, + [2763] = 996, + [2764] = 1086, + [2765] = 1000, + [2766] = 1101, + [2767] = 1050, + [2768] = 1042, + [2769] = 1054, + [2770] = 1072, + [2771] = 1074, + [2772] = 1037, + [2773] = 1075, + [2774] = 1011, + [2775] = 1008, + [2776] = 1076, + [2777] = 1043, + [2778] = 1058, + [2779] = 997, + [2780] = 1018, + [2781] = 1020, + [2782] = 1003, + [2783] = 1060, + [2784] = 1061, + [2785] = 1035, + [2786] = 1006, + [2787] = 1064, [2788] = 1036, - [2789] = 1061, - [2790] = 1049, - [2791] = 1051, - [2792] = 997, - [2793] = 1055, - [2794] = 1056, - [2795] = 1008, - [2796] = 1067, - [2797] = 1041, - [2798] = 1014, - [2799] = 1113, - [2800] = 1036, - [2801] = 1033, - [2802] = 1127, - [2803] = 997, - [2804] = 2804, - [2805] = 1008, - [2806] = 1071, - [2807] = 1056, - [2808] = 2804, - [2809] = 1041, - [2810] = 2804, - [2811] = 2804, - [2812] = 1030, - [2813] = 2804, - [2814] = 1017, - [2815] = 2804, - [2816] = 1130, - [2817] = 1018, - [2818] = 1049, - [2819] = 1118, - [2820] = 1051, - [2821] = 1055, - [2822] = 1000, - [2823] = 2804, - [2824] = 1028, - [2825] = 1123, - [2826] = 1014, - [2827] = 2804, - [2828] = 2804, - [2829] = 1019, - [2830] = 999, - [2831] = 1067, - [2832] = 2804, - [2833] = 2804, - [2834] = 2804, - [2835] = 1124, - [2836] = 1083, - [2837] = 1061, - [2838] = 1011, - [2839] = 2804, - [2840] = 2804, - [2841] = 2804, - [2842] = 1010, - [2843] = 1009, - [2844] = 1006, - [2845] = 1005, + [2789] = 1047, + [2790] = 1124, + [2791] = 1034, + [2792] = 1084, + [2793] = 1085, + [2794] = 1068, + [2795] = 1024, + [2796] = 1094, + [2797] = 1007, + [2798] = 1033, + [2799] = 2799, + [2800] = 1074, + [2801] = 1075, + [2802] = 1076, + [2803] = 2799, + [2804] = 2799, + [2805] = 1084, + [2806] = 1085, + [2807] = 1094, + [2808] = 2799, + [2809] = 997, + [2810] = 2799, + [2811] = 1064, + [2812] = 2799, + [2813] = 1008, + [2814] = 2799, + [2815] = 1024, + [2816] = 1033, + [2817] = 2799, + [2818] = 2799, + [2819] = 1058, + [2820] = 1018, + [2821] = 1034, + [2822] = 1035, + [2823] = 1011, + [2824] = 2799, + [2825] = 1050, + [2826] = 1036, + [2827] = 1037, + [2828] = 1042, + [2829] = 1043, + [2830] = 2799, + [2831] = 1020, + [2832] = 2799, + [2833] = 1060, + [2834] = 2799, + [2835] = 1047, + [2836] = 1061, + [2837] = 1054, + [2838] = 1124, + [2839] = 1072, + [2840] = 2799, + [2841] = 1003, + [2842] = 2799, + [2843] = 1006, + [2844] = 1007, + [2845] = 1068, [2846] = 2846, [2847] = 2847, [2848] = 2848, @@ -5221,7 +5202,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2850] = 2850, [2851] = 2851, [2852] = 2852, - [2853] = 990, + [2853] = 2853, [2854] = 2854, [2855] = 2855, [2856] = 2856, @@ -5236,15 +5217,15 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2865] = 2865, [2866] = 2866, [2867] = 2867, - [2868] = 2868, + [2868] = 990, [2869] = 2869, [2870] = 2870, [2871] = 2871, [2872] = 2872, - [2873] = 1074, - [2874] = 1073, - [2875] = 1060, - [2876] = 2876, + [2873] = 1000, + [2874] = 1086, + [2875] = 1101, + [2876] = 996, [2877] = 2877, [2878] = 2878, [2879] = 2879, @@ -5254,7 +5235,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2883] = 2883, [2884] = 2884, [2885] = 2885, - [2886] = 996, + [2886] = 2886, [2887] = 2887, [2888] = 2888, [2889] = 2888, @@ -5268,228 +5249,228 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2897] = 2888, [2898] = 2888, [2899] = 2888, - [2900] = 996, - [2901] = 2901, - [2902] = 990, - [2903] = 990, - [2904] = 1100, - [2905] = 1120, - [2906] = 1052, - [2907] = 1034, - [2908] = 1026, - [2909] = 1065, - [2910] = 1025, - [2911] = 1126, - [2912] = 1104, - [2913] = 1057, - [2914] = 1040, - [2915] = 1032, - [2916] = 1062, - [2917] = 1004, - [2918] = 1066, - [2919] = 1027, - [2920] = 1024, - [2921] = 1063, - [2922] = 1023, - [2923] = 998, - [2924] = 1072, - [2925] = 1020, - [2926] = 1075, - [2927] = 1076, - [2928] = 1077, - [2929] = 1016, - [2930] = 1078, - [2931] = 1080, - [2932] = 1050, - [2933] = 1081, - [2934] = 1047, - [2935] = 1046, - [2936] = 1043, - [2937] = 1082, - [2938] = 1084, + [2900] = 990, + [2901] = 990, + [2902] = 996, + [2903] = 2903, + [2904] = 1001, + [2905] = 2850, + [2906] = 2853, + [2907] = 1015, + [2908] = 1077, + [2909] = 1078, + [2910] = 1079, + [2911] = 1080, + [2912] = 1038, + [2913] = 1081, + [2914] = 1082, + [2915] = 1087, + [2916] = 1088, + [2917] = 1089, + [2918] = 1090, + [2919] = 1091, + [2920] = 1092, + [2921] = 1093, + [2922] = 1039, + [2923] = 1095, + [2924] = 1096, + [2925] = 1097, + [2926] = 1098, + [2927] = 1099, + [2928] = 1100, + [2929] = 1102, + [2930] = 1103, + [2931] = 1104, + [2932] = 1105, + [2933] = 1106, + [2934] = 1107, + [2935] = 1108, + [2936] = 1110, + [2937] = 1111, + [2938] = 1112, [2939] = 2939, - [2940] = 1039, - [2941] = 1068, - [2942] = 1085, - [2943] = 1086, - [2944] = 1103, - [2945] = 1031, - [2946] = 1087, - [2947] = 1088, - [2948] = 1091, - [2949] = 1079, - [2950] = 1122, - [2951] = 1101, - [2952] = 1111, - [2953] = 1110, - [2954] = 1109, - [2955] = 1117, - [2956] = 1058, - [2957] = 1090, - [2958] = 1107, - [2959] = 1093, - [2960] = 1108, - [2961] = 1098, - [2962] = 1048, - [2963] = 1053, - [2964] = 1029, - [2965] = 1045, - [2966] = 1094, - [2967] = 1095, - [2968] = 1042, - [2969] = 2868, - [2970] = 2869, - [2971] = 1007, - [2972] = 1064, - [2973] = 2858, - [2974] = 2859, - [2975] = 1096, - [2976] = 2976, - [2977] = 1001, - [2978] = 1097, - [2979] = 1002, - [2980] = 1054, - [2981] = 1003, - [2982] = 2982, - [2983] = 1022, - [2984] = 1106, - [2985] = 1105, - [2986] = 990, - [2987] = 1021, - [2988] = 1012, - [2989] = 1099, - [2990] = 1069, - [2991] = 1070, - [2992] = 1013, - [2993] = 1015, - [2994] = 1059, - [2995] = 1102, - [2996] = 1038, - [2997] = 1037, - [2998] = 1035, + [2940] = 1040, + [2941] = 1113, + [2942] = 1114, + [2943] = 1115, + [2944] = 1116, + [2945] = 1118, + [2946] = 1119, + [2947] = 1120, + [2948] = 1121, + [2949] = 1122, + [2950] = 1123, + [2951] = 1125, + [2952] = 1071, + [2953] = 1127, + [2954] = 1128, + [2955] = 1129, + [2956] = 1130, + [2957] = 1046, + [2958] = 1059, + [2959] = 1069, + [2960] = 1057, + [2961] = 1025, + [2962] = 1029, + [2963] = 1041, + [2964] = 1017, + [2965] = 1044, + [2966] = 1045, + [2967] = 1010, + [2968] = 2968, + [2969] = 1048, + [2970] = 1051, + [2971] = 1053, + [2972] = 1022, + [2973] = 2973, + [2974] = 1023, + [2975] = 1012, + [2976] = 1013, + [2977] = 1027, + [2978] = 1055, + [2979] = 1056, + [2980] = 1028, + [2981] = 990, + [2982] = 1030, + [2983] = 2871, + [2984] = 2860, + [2985] = 1109, + [2986] = 1117, + [2987] = 1062, + [2988] = 998, + [2989] = 1063, + [2990] = 1065, + [2991] = 999, + [2992] = 1066, + [2993] = 1067, + [2994] = 1031, + [2995] = 1002, + [2996] = 1131, + [2997] = 1021, + [2998] = 1126, [2999] = 996, [3000] = 3000, [3001] = 3001, - [3002] = 3000, - [3003] = 3001, - [3004] = 3004, - [3005] = 3000, - [3006] = 3004, - [3007] = 3001, - [3008] = 3004, - [3009] = 3009, - [3010] = 3009, - [3011] = 3004, - [3012] = 3009, - [3013] = 3009, + [3002] = 3002, + [3003] = 3003, + [3004] = 2878, + [3005] = 3001, + [3006] = 3003, + [3007] = 3000, + [3008] = 3000, + [3009] = 3002, + [3010] = 3002, + [3011] = 3003, + [3012] = 3001, + [3013] = 3002, [3014] = 3000, - [3015] = 3001, - [3016] = 3009, - [3017] = 3009, - [3018] = 3000, - [3019] = 2876, - [3020] = 3000, + [3015] = 3002, + [3016] = 3003, + [3017] = 3000, + [3018] = 3001, + [3019] = 3003, + [3020] = 3001, [3021] = 3001, - [3022] = 3009, - [3023] = 3009, + [3022] = 3000, + [3023] = 3002, [3024] = 3000, - [3025] = 3004, - [3026] = 3009, - [3027] = 3004, - [3028] = 3001, - [3029] = 3000, - [3030] = 3004, + [3025] = 3003, + [3026] = 3002, + [3027] = 3000, + [3028] = 3000, + [3029] = 3003, + [3030] = 3001, [3031] = 3000, - [3032] = 3004, - [3033] = 3001, - [3034] = 3009, - [3035] = 3001, + [3032] = 3002, + [3033] = 3002, + [3034] = 3000, + [3035] = 3003, [3036] = 3001, - [3037] = 3004, - [3038] = 3000, - [3039] = 1073, - [3040] = 3000, - [3041] = 3001, - [3042] = 3004, - [3043] = 1074, - [3044] = 1060, - [3045] = 3000, - [3046] = 3001, - [3047] = 3009, - [3048] = 3009, - [3049] = 3009, - [3050] = 3004, + [3037] = 3002, + [3038] = 3003, + [3039] = 1086, + [3040] = 1101, + [3041] = 3000, + [3042] = 3001, + [3043] = 3002, + [3044] = 3000, + [3045] = 3003, + [3046] = 3003, + [3047] = 1000, + [3048] = 3002, + [3049] = 3003, + [3050] = 3001, [3051] = 3001, - [3052] = 3004, - [3053] = 1074, - [3054] = 1071, - [3055] = 1051, - [3056] = 1028, - [3057] = 1030, - [3058] = 1018, - [3059] = 1017, - [3060] = 1083, - [3061] = 1036, - [3062] = 1033, - [3063] = 1014, - [3064] = 1008, - [3065] = 1041, - [3066] = 3066, - [3067] = 3066, - [3068] = 1118, - [3069] = 3066, - [3070] = 1061, - [3071] = 3066, - [3072] = 990, - [3073] = 3066, - [3074] = 3066, - [3075] = 1123, + [3052] = 3001, + [3053] = 1043, + [3054] = 1061, + [3055] = 3055, + [3056] = 1035, + [3057] = 1008, + [3058] = 3058, + [3059] = 1011, + [3060] = 3058, + [3061] = 3058, + [3062] = 1072, + [3063] = 1033, + [3064] = 3058, + [3065] = 3058, + [3066] = 1034, + [3067] = 1094, + [3068] = 3068, + [3069] = 1058, + [3070] = 1018, + [3071] = 3058, + [3072] = 1074, + [3073] = 1003, + [3074] = 1006, + [3075] = 1042, [3076] = 1060, - [3077] = 3066, - [3078] = 1073, - [3079] = 3066, - [3080] = 3066, - [3081] = 1113, - [3082] = 1010, - [3083] = 1009, - [3084] = 1056, - [3085] = 3085, - [3086] = 1055, - [3087] = 997, - [3088] = 1049, - [3089] = 1067, - [3090] = 3066, - [3091] = 1006, - [3092] = 3092, - [3093] = 1127, - [3094] = 990, - [3095] = 1011, - [3096] = 1005, - [3097] = 1000, - [3098] = 1019, - [3099] = 1124, - [3100] = 999, - [3101] = 3066, - [3102] = 1130, - [3103] = 3066, + [3077] = 997, + [3078] = 1086, + [3079] = 3058, + [3080] = 1050, + [3081] = 1007, + [3082] = 1124, + [3083] = 1075, + [3084] = 990, + [3085] = 1068, + [3086] = 1036, + [3087] = 1047, + [3088] = 990, + [3089] = 1085, + [3090] = 1020, + [3091] = 1084, + [3092] = 1024, + [3093] = 3058, + [3094] = 1101, + [3095] = 1000, + [3096] = 1037, + [3097] = 3058, + [3098] = 1076, + [3099] = 3058, + [3100] = 3058, + [3101] = 1064, + [3102] = 1054, + [3103] = 3058, [3104] = 3104, [3105] = 3105, - [3106] = 3105, - [3107] = 3107, + [3106] = 3106, + [3107] = 3104, [3108] = 3108, [3109] = 3109, [3110] = 3110, - [3111] = 3110, - [3112] = 3110, - [3113] = 3110, - [3114] = 3110, - [3115] = 3110, - [3116] = 3110, - [3117] = 3110, - [3118] = 3118, + [3111] = 3111, + [3112] = 3112, + [3113] = 3113, + [3114] = 3114, + [3115] = 3115, + [3116] = 3116, + [3117] = 3117, + [3118] = 996, [3119] = 3119, [3120] = 3120, - [3121] = 3108, + [3121] = 3121, [3122] = 3122, [3123] = 3123, [3124] = 3124, @@ -5498,301 +5479,301 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3127] = 3127, [3128] = 3128, [3129] = 3129, - [3130] = 3118, - [3131] = 3119, - [3132] = 3120, - [3133] = 3108, - [3134] = 3122, - [3135] = 3123, - [3136] = 3124, - [3137] = 3125, - [3138] = 3126, - [3139] = 3127, - [3140] = 3128, - [3141] = 3129, - [3142] = 3118, - [3143] = 3119, - [3144] = 3120, - [3145] = 3108, - [3146] = 3122, - [3147] = 3123, - [3148] = 3124, - [3149] = 3125, - [3150] = 3126, - [3151] = 3127, - [3152] = 3128, - [3153] = 3129, - [3154] = 3118, - [3155] = 3119, - [3156] = 3120, - [3157] = 3108, - [3158] = 3122, - [3159] = 3123, - [3160] = 3124, - [3161] = 3125, - [3162] = 3126, - [3163] = 3127, - [3164] = 3128, - [3165] = 3129, - [3166] = 3118, - [3167] = 3119, + [3130] = 3130, + [3131] = 3131, + [3132] = 3132, + [3133] = 3133, + [3134] = 996, + [3135] = 3135, + [3136] = 3136, + [3137] = 3137, + [3138] = 3138, + [3139] = 3108, + [3140] = 3140, + [3141] = 3141, + [3142] = 3142, + [3143] = 3143, + [3144] = 3144, + [3145] = 3114, + [3146] = 3120, + [3147] = 3121, + [3148] = 3137, + [3149] = 3144, + [3150] = 3125, + [3151] = 3126, + [3152] = 3108, + [3153] = 3140, + [3154] = 3142, + [3155] = 3109, + [3156] = 3110, + [3157] = 3111, + [3158] = 3127, + [3159] = 3128, + [3160] = 3129, + [3161] = 3130, + [3162] = 3131, + [3163] = 3132, + [3164] = 3133, + [3165] = 3123, + [3166] = 3117, + [3167] = 3114, [3168] = 3120, - [3169] = 3108, - [3170] = 3122, - [3171] = 3123, - [3172] = 3124, - [3173] = 3125, - [3174] = 3126, - [3175] = 3127, - [3176] = 3128, - [3177] = 3129, - [3178] = 3118, - [3179] = 3119, - [3180] = 3120, - [3181] = 3108, - [3182] = 3122, - [3183] = 3123, - [3184] = 3124, - [3185] = 3125, - [3186] = 3126, - [3187] = 3127, - [3188] = 3128, - [3189] = 3129, - [3190] = 3118, - [3191] = 3119, - [3192] = 3120, - [3193] = 3108, - [3194] = 3122, - [3195] = 3123, - [3196] = 3124, - [3197] = 3125, - [3198] = 3126, - [3199] = 3127, - [3200] = 3128, - [3201] = 3129, - [3202] = 3118, - [3203] = 3119, - [3204] = 3120, - [3205] = 3108, - [3206] = 3122, - [3207] = 3123, - [3208] = 3124, - [3209] = 3125, - [3210] = 3126, - [3211] = 3127, - [3212] = 3128, - [3213] = 3213, - [3214] = 3129, - [3215] = 3215, - [3216] = 3109, - [3217] = 3217, - [3218] = 3218, - [3219] = 3219, - [3220] = 3220, - [3221] = 3221, - [3222] = 3222, - [3223] = 3223, - [3224] = 3224, - [3225] = 3225, - [3226] = 3226, - [3227] = 3227, - [3228] = 3228, - [3229] = 3229, - [3230] = 3230, - [3231] = 3231, - [3232] = 3232, - [3233] = 3233, - [3234] = 3234, - [3235] = 3213, - [3236] = 3236, - [3237] = 3215, - [3238] = 3109, - [3239] = 3217, - [3240] = 3218, - [3241] = 3219, - [3242] = 3220, - [3243] = 3221, - [3244] = 3222, - [3245] = 3223, - [3246] = 3224, - [3247] = 3225, - [3248] = 3226, - [3249] = 3125, - [3250] = 3227, - [3251] = 3228, - [3252] = 3229, - [3253] = 3126, - [3254] = 3230, - [3255] = 3231, - [3256] = 3232, - [3257] = 3233, - [3258] = 3234, - [3259] = 3213, - [3260] = 3236, - [3261] = 3215, - [3262] = 3109, - [3263] = 3215, - [3264] = 3217, - [3265] = 3218, - [3266] = 3219, - [3267] = 3220, - [3268] = 3221, - [3269] = 3222, - [3270] = 3223, - [3271] = 3224, - [3272] = 3225, - [3273] = 3226, - [3274] = 3227, - [3275] = 3228, - [3276] = 3229, - [3277] = 3230, - [3278] = 3231, - [3279] = 3232, - [3280] = 3233, - [3281] = 3234, - [3282] = 3213, - [3283] = 3236, - [3284] = 3215, - [3285] = 3109, - [3286] = 3217, - [3287] = 3218, - [3288] = 3219, - [3289] = 3220, - [3290] = 3221, - [3291] = 3222, - [3292] = 3223, - [3293] = 3224, - [3294] = 3225, - [3295] = 3226, - [3296] = 3227, - [3297] = 3228, - [3298] = 3229, - [3299] = 3230, - [3300] = 3231, - [3301] = 3232, - [3302] = 3233, - [3303] = 3234, - [3304] = 3213, - [3305] = 3236, - [3306] = 3215, - [3307] = 3109, - [3308] = 3217, - [3309] = 3218, - [3310] = 3219, - [3311] = 3220, - [3312] = 3221, - [3313] = 3222, - [3314] = 3127, - [3315] = 3223, - [3316] = 3224, - [3317] = 3225, - [3318] = 3128, - [3319] = 3226, - [3320] = 3227, - [3321] = 3228, - [3322] = 3236, - [3323] = 3229, - [3324] = 3230, - [3325] = 3231, - [3326] = 3232, - [3327] = 3234, - [3328] = 3233, - [3329] = 3234, - [3330] = 3213, - [3331] = 3236, - [3332] = 3217, - [3333] = 3215, - [3334] = 3109, - [3335] = 3217, - [3336] = 3124, - [3337] = 3218, - [3338] = 3219, - [3339] = 3220, - [3340] = 3221, - [3341] = 3222, - [3342] = 3223, - [3343] = 3224, - [3344] = 3225, - [3345] = 3226, - [3346] = 3227, - [3347] = 3228, - [3348] = 3229, - [3349] = 3230, - [3350] = 3231, - [3351] = 3232, - [3352] = 3233, - [3353] = 3234, - [3354] = 3213, - [3355] = 3236, - [3356] = 3215, - [3357] = 3109, - [3358] = 3217, - [3359] = 3218, - [3360] = 3219, - [3361] = 3220, - [3362] = 3221, - [3363] = 3222, - [3364] = 3223, - [3365] = 3224, - [3366] = 3225, - [3367] = 3226, - [3368] = 3227, - [3369] = 3228, - [3370] = 3229, - [3371] = 3230, - [3372] = 3231, - [3373] = 3232, - [3374] = 3233, - [3375] = 3234, - [3376] = 3213, - [3377] = 3236, - [3378] = 3215, - [3379] = 3109, - [3380] = 3217, - [3381] = 3218, - [3382] = 3219, - [3383] = 3220, - [3384] = 3221, - [3385] = 3222, - [3386] = 3223, - [3387] = 3224, - [3388] = 3225, - [3389] = 3226, - [3390] = 3227, - [3391] = 3228, - [3392] = 3229, - [3393] = 3230, - [3394] = 3231, - [3395] = 3232, - [3396] = 3233, - [3397] = 3234, - [3398] = 3213, - [3399] = 3236, - [3400] = 3220, - [3401] = 3218, - [3402] = 3219, - [3403] = 3224, - [3404] = 3221, - [3405] = 3222, - [3406] = 3223, - [3407] = 996, - [3408] = 996, - [3409] = 3118, - [3410] = 3225, - [3411] = 3226, - [3412] = 3119, - [3413] = 3228, - [3414] = 3229, - [3415] = 3230, - [3416] = 3231, - [3417] = 3129, - [3418] = 3120, - [3419] = 3227, - [3420] = 3232, - [3421] = 3122, - [3422] = 3123, - [3423] = 3233, - [3424] = 3110, + [3169] = 3121, + [3170] = 3137, + [3171] = 3144, + [3172] = 3125, + [3173] = 3126, + [3174] = 3108, + [3175] = 3140, + [3176] = 3142, + [3177] = 3109, + [3178] = 3110, + [3179] = 3111, + [3180] = 3127, + [3181] = 3128, + [3182] = 3129, + [3183] = 3130, + [3184] = 3131, + [3185] = 3132, + [3186] = 3133, + [3187] = 3123, + [3188] = 3117, + [3189] = 3114, + [3190] = 3120, + [3191] = 3121, + [3192] = 3137, + [3193] = 3144, + [3194] = 3125, + [3195] = 3126, + [3196] = 3108, + [3197] = 3140, + [3198] = 3142, + [3199] = 3109, + [3200] = 3110, + [3201] = 3111, + [3202] = 3127, + [3203] = 3128, + [3204] = 3129, + [3205] = 3130, + [3206] = 3131, + [3207] = 3132, + [3208] = 3133, + [3209] = 3123, + [3210] = 3117, + [3211] = 3211, + [3212] = 3114, + [3213] = 3120, + [3214] = 3121, + [3215] = 3137, + [3216] = 3144, + [3217] = 3125, + [3218] = 3126, + [3219] = 3140, + [3220] = 3142, + [3221] = 3109, + [3222] = 3110, + [3223] = 3111, + [3224] = 3127, + [3225] = 3128, + [3226] = 3129, + [3227] = 3130, + [3228] = 3131, + [3229] = 3132, + [3230] = 3133, + [3231] = 3123, + [3232] = 3117, + [3233] = 3114, + [3234] = 3120, + [3235] = 3121, + [3236] = 3137, + [3237] = 3144, + [3238] = 3125, + [3239] = 3126, + [3240] = 3108, + [3241] = 3140, + [3242] = 3142, + [3243] = 3109, + [3244] = 3110, + [3245] = 3111, + [3246] = 3127, + [3247] = 3128, + [3248] = 3129, + [3249] = 3130, + [3250] = 3131, + [3251] = 3132, + [3252] = 3133, + [3253] = 3123, + [3254] = 3117, + [3255] = 3114, + [3256] = 3120, + [3257] = 3121, + [3258] = 3137, + [3259] = 3144, + [3260] = 3125, + [3261] = 3126, + [3262] = 3108, + [3263] = 3140, + [3264] = 3142, + [3265] = 3109, + [3266] = 3110, + [3267] = 3111, + [3268] = 3127, + [3269] = 3128, + [3270] = 3129, + [3271] = 3130, + [3272] = 3131, + [3273] = 3132, + [3274] = 3133, + [3275] = 3123, + [3276] = 3117, + [3277] = 3114, + [3278] = 3120, + [3279] = 3121, + [3280] = 3211, + [3281] = 3144, + [3282] = 3125, + [3283] = 3126, + [3284] = 3108, + [3285] = 3140, + [3286] = 3142, + [3287] = 3109, + [3288] = 3110, + [3289] = 3111, + [3290] = 3127, + [3291] = 3128, + [3292] = 3129, + [3293] = 3130, + [3294] = 3131, + [3295] = 3132, + [3296] = 3133, + [3297] = 3123, + [3298] = 3117, + [3299] = 3114, + [3300] = 3120, + [3301] = 3121, + [3302] = 3137, + [3303] = 3144, + [3304] = 3125, + [3305] = 3126, + [3306] = 3108, + [3307] = 3140, + [3308] = 3142, + [3309] = 3109, + [3310] = 3110, + [3311] = 3111, + [3312] = 3127, + [3313] = 3128, + [3314] = 3129, + [3315] = 3130, + [3316] = 3131, + [3317] = 3132, + [3318] = 3133, + [3319] = 3123, + [3320] = 3117, + [3321] = 3124, + [3322] = 3115, + [3323] = 3119, + [3324] = 3135, + [3325] = 3136, + [3326] = 3122, + [3327] = 3138, + [3328] = 3141, + [3329] = 3113, + [3330] = 3116, + [3331] = 3143, + [3332] = 3112, + [3333] = 3124, + [3334] = 3115, + [3335] = 3119, + [3336] = 3135, + [3337] = 3136, + [3338] = 3122, + [3339] = 3138, + [3340] = 3141, + [3341] = 3113, + [3342] = 3116, + [3343] = 3143, + [3344] = 3112, + [3345] = 3124, + [3346] = 3115, + [3347] = 3119, + [3348] = 3135, + [3349] = 3136, + [3350] = 3122, + [3351] = 3138, + [3352] = 3141, + [3353] = 3113, + [3354] = 3116, + [3355] = 3143, + [3356] = 3112, + [3357] = 3124, + [3358] = 3115, + [3359] = 3119, + [3360] = 3135, + [3361] = 3136, + [3362] = 3122, + [3363] = 3138, + [3364] = 3141, + [3365] = 3113, + [3366] = 3116, + [3367] = 3143, + [3368] = 3112, + [3369] = 3124, + [3370] = 3115, + [3371] = 3119, + [3372] = 3135, + [3373] = 3136, + [3374] = 3122, + [3375] = 3138, + [3376] = 3141, + [3377] = 3113, + [3378] = 3116, + [3379] = 3143, + [3380] = 3112, + [3381] = 3124, + [3382] = 3115, + [3383] = 3119, + [3384] = 3135, + [3385] = 3136, + [3386] = 3122, + [3387] = 3138, + [3388] = 3141, + [3389] = 3113, + [3390] = 3116, + [3391] = 3143, + [3392] = 3112, + [3393] = 3124, + [3394] = 3115, + [3395] = 3119, + [3396] = 3135, + [3397] = 3136, + [3398] = 3122, + [3399] = 3138, + [3400] = 3141, + [3401] = 3113, + [3402] = 3116, + [3403] = 3143, + [3404] = 3112, + [3405] = 3124, + [3406] = 3115, + [3407] = 3119, + [3408] = 3135, + [3409] = 3136, + [3410] = 3122, + [3411] = 3138, + [3412] = 3141, + [3413] = 3113, + [3414] = 3116, + [3415] = 3143, + [3416] = 3112, + [3417] = 3211, + [3418] = 3211, + [3419] = 3211, + [3420] = 3211, + [3421] = 3211, + [3422] = 3211, + [3423] = 3211, + [3424] = 3137, [3425] = 3425, [3426] = 3426, [3427] = 3427, @@ -5803,23 +5784,23 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3432] = 3432, [3433] = 3433, [3434] = 3434, - [3435] = 3428, - [3436] = 3436, - [3437] = 3437, - [3438] = 3438, - [3439] = 3439, - [3440] = 3436, - [3441] = 3441, + [3435] = 3433, + [3436] = 3428, + [3437] = 3430, + [3438] = 3431, + [3439] = 3428, + [3440] = 3430, + [3441] = 3431, [3442] = 3442, - [3443] = 3443, - [3444] = 3441, - [3445] = 3425, - [3446] = 3426, + [3443] = 3425, + [3444] = 3442, + [3445] = 3445, + [3446] = 3446, [3447] = 3447, [3448] = 3448, [3449] = 3449, [3450] = 3450, - [3451] = 3430, + [3451] = 3451, [3452] = 3452, [3453] = 3453, [3454] = 3454, @@ -5827,557 +5808,557 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3456] = 3456, [3457] = 3457, [3458] = 3458, - [3459] = 3459, + [3459] = 3429, [3460] = 3460, [3461] = 3461, [3462] = 3462, [3463] = 3463, - [3464] = 3452, - [3465] = 3447, - [3466] = 3426, - [3467] = 3425, - [3468] = 3442, - [3469] = 3439, - [3470] = 3438, - [3471] = 3437, - [3472] = 3434, - [3473] = 3433, - [3474] = 3432, - [3475] = 3431, - [3476] = 3430, - [3477] = 3429, + [3464] = 3464, + [3465] = 3465, + [3466] = 3466, + [3467] = 3467, + [3468] = 3468, + [3469] = 3469, + [3470] = 3470, + [3471] = 3471, + [3472] = 3472, + [3473] = 3473, + [3474] = 3474, + [3475] = 3460, + [3476] = 3476, + [3477] = 3434, [3478] = 3478, [3479] = 3479, - [3480] = 3480, + [3480] = 3426, [3481] = 3481, [3482] = 3482, - [3483] = 3483, - [3484] = 3484, - [3485] = 3485, - [3486] = 3486, - [3487] = 3487, - [3488] = 3488, - [3489] = 3489, - [3490] = 3427, - [3491] = 3428, - [3492] = 3436, - [3493] = 3441, - [3494] = 3443, - [3495] = 3448, - [3496] = 3450, - [3497] = 3497, - [3498] = 3462, - [3499] = 3461, - [3500] = 3500, - [3501] = 3501, - [3502] = 3502, - [3503] = 3503, - [3504] = 3458, - [3505] = 3497, - [3506] = 3500, - [3507] = 3460, - [3508] = 3459, - [3509] = 3483, - [3510] = 3501, - [3511] = 3457, - [3512] = 3456, - [3513] = 3502, - [3514] = 3503, - [3515] = 3458, - [3516] = 3455, - [3517] = 3497, - [3518] = 3500, - [3519] = 3454, - [3520] = 3501, - [3521] = 3502, - [3522] = 3503, - [3523] = 3453, - [3524] = 3482, - [3525] = 3481, - [3526] = 3480, - [3527] = 3449, - [3528] = 3429, - [3529] = 3458, - [3530] = 3497, - [3531] = 3481, - [3532] = 3500, - [3533] = 3479, - [3534] = 3501, - [3535] = 3502, - [3536] = 3478, - [3537] = 3503, - [3538] = 3458, - [3539] = 3497, - [3540] = 3500, - [3541] = 3501, - [3542] = 3502, - [3543] = 3449, - [3544] = 3503, - [3545] = 3478, - [3546] = 3479, - [3547] = 3453, - [3548] = 3454, - [3549] = 3455, - [3550] = 3456, - [3551] = 3457, - [3552] = 3458, - [3553] = 3459, + [3483] = 3425, + [3484] = 3445, + [3485] = 3446, + [3486] = 3447, + [3487] = 3448, + [3488] = 3449, + [3489] = 3450, + [3490] = 3451, + [3491] = 3452, + [3492] = 3453, + [3493] = 3454, + [3494] = 3455, + [3495] = 3456, + [3496] = 3457, + [3497] = 3458, + [3498] = 3429, + [3499] = 3499, + [3500] = 3461, + [3501] = 3462, + [3502] = 3463, + [3503] = 3464, + [3504] = 3465, + [3505] = 3466, + [3506] = 3467, + [3507] = 3468, + [3508] = 3469, + [3509] = 3470, + [3510] = 3471, + [3511] = 3472, + [3512] = 3473, + [3513] = 3474, + [3514] = 3460, + [3515] = 3433, + [3516] = 3448, + [3517] = 3476, + [3518] = 3428, + [3519] = 3430, + [3520] = 3431, + [3521] = 3442, + [3522] = 3425, + [3523] = 3434, + [3524] = 3445, + [3525] = 3446, + [3526] = 3447, + [3527] = 3448, + [3528] = 3449, + [3529] = 3450, + [3530] = 3451, + [3531] = 3452, + [3532] = 3453, + [3533] = 3454, + [3534] = 3455, + [3535] = 3456, + [3536] = 3457, + [3537] = 3458, + [3538] = 3429, + [3539] = 3499, + [3540] = 3461, + [3541] = 3462, + [3542] = 3463, + [3543] = 3464, + [3544] = 3465, + [3545] = 3466, + [3546] = 3467, + [3547] = 3468, + [3548] = 3469, + [3549] = 3470, + [3550] = 3471, + [3551] = 3472, + [3552] = 3473, + [3553] = 3474, [3554] = 3460, - [3555] = 3461, - [3556] = 3462, - [3557] = 3463, - [3558] = 3452, - [3559] = 3447, - [3560] = 3426, - [3561] = 3425, - [3562] = 3442, - [3563] = 3439, - [3564] = 3438, - [3565] = 3437, - [3566] = 3434, - [3567] = 3433, - [3568] = 3432, - [3569] = 3431, - [3570] = 3430, - [3571] = 3429, + [3555] = 3476, + [3556] = 3434, + [3557] = 3478, + [3558] = 3479, + [3559] = 3426, + [3560] = 3481, + [3561] = 3482, + [3562] = 3478, + [3563] = 3479, + [3564] = 3426, + [3565] = 3449, + [3566] = 3450, + [3567] = 3481, + [3568] = 3482, + [3569] = 3467, + [3570] = 3451, + [3571] = 3452, [3572] = 3478, - [3573] = 3479, - [3574] = 3480, - [3575] = 3481, - [3576] = 3482, - [3577] = 3483, - [3578] = 3484, - [3579] = 3485, - [3580] = 3486, - [3581] = 3487, - [3582] = 3488, - [3583] = 3489, - [3584] = 3427, - [3585] = 3428, - [3586] = 3436, - [3587] = 3441, - [3588] = 3443, - [3589] = 3448, + [3573] = 3453, + [3574] = 3454, + [3575] = 3468, + [3576] = 3455, + [3577] = 3456, + [3578] = 3479, + [3579] = 3433, + [3580] = 3428, + [3581] = 3430, + [3582] = 3431, + [3583] = 3442, + [3584] = 3474, + [3585] = 3445, + [3586] = 3446, + [3587] = 3447, + [3588] = 3448, + [3589] = 3449, [3590] = 3450, - [3591] = 3427, - [3592] = 3500, - [3593] = 3501, - [3594] = 3497, - [3595] = 3500, - [3596] = 3501, - [3597] = 3502, - [3598] = 3503, - [3599] = 3458, - [3600] = 3497, - [3601] = 3500, - [3602] = 3501, - [3603] = 3502, - [3604] = 3503, - [3605] = 3458, - [3606] = 3497, - [3607] = 3500, - [3608] = 3501, - [3609] = 3502, - [3610] = 3503, - [3611] = 3429, - [3612] = 3478, - [3613] = 3502, - [3614] = 3479, - [3615] = 3480, - [3616] = 3481, - [3617] = 3480, - [3618] = 3482, - [3619] = 3483, - [3620] = 3484, - [3621] = 3485, - [3622] = 3486, - [3623] = 3487, - [3624] = 3430, - [3625] = 3463, - [3626] = 3431, - [3627] = 3432, - [3628] = 3433, - [3629] = 3434, - [3630] = 3437, - [3631] = 3438, - [3632] = 3439, - [3633] = 3442, - [3634] = 3425, - [3635] = 3426, - [3636] = 3447, - [3637] = 3449, - [3638] = 3452, - [3639] = 3449, - [3640] = 3453, - [3641] = 3453, - [3642] = 3454, - [3643] = 3455, - [3644] = 3456, - [3645] = 3457, - [3646] = 3454, - [3647] = 3459, - [3648] = 3460, - [3649] = 3461, - [3650] = 3462, - [3651] = 3463, - [3652] = 3452, - [3653] = 3447, - [3654] = 3489, - [3655] = 3425, - [3656] = 3442, - [3657] = 3439, - [3658] = 3438, - [3659] = 3437, - [3660] = 3434, - [3661] = 3433, - [3662] = 3432, - [3663] = 3431, - [3664] = 3430, - [3665] = 3429, - [3666] = 3478, - [3667] = 3479, - [3668] = 3480, - [3669] = 3481, - [3670] = 3482, - [3671] = 3483, - [3672] = 3484, - [3673] = 3485, - [3674] = 3486, - [3675] = 3487, - [3676] = 3488, - [3677] = 3489, - [3678] = 3427, - [3679] = 3428, - [3680] = 3436, - [3681] = 3441, - [3682] = 3443, - [3683] = 3448, - [3684] = 3450, - [3685] = 3431, - [3686] = 3455, - [3687] = 3456, - [3688] = 3457, - [3689] = 3459, - [3690] = 3460, - [3691] = 3461, - [3692] = 3489, - [3693] = 3463, - [3694] = 3452, - [3695] = 3432, - [3696] = 3433, - [3697] = 3453, - [3698] = 3447, - [3699] = 3454, - [3700] = 3455, - [3701] = 3443, + [3591] = 3451, + [3592] = 3452, + [3593] = 3453, + [3594] = 3454, + [3595] = 3455, + [3596] = 3456, + [3597] = 3457, + [3598] = 3458, + [3599] = 3429, + [3600] = 3499, + [3601] = 3461, + [3602] = 3462, + [3603] = 3463, + [3604] = 3464, + [3605] = 3465, + [3606] = 3466, + [3607] = 3467, + [3608] = 3468, + [3609] = 3469, + [3610] = 3470, + [3611] = 3471, + [3612] = 3472, + [3613] = 3473, + [3614] = 3474, + [3615] = 3460, + [3616] = 3476, + [3617] = 3434, + [3618] = 3478, + [3619] = 3479, + [3620] = 3426, + [3621] = 3481, + [3622] = 3482, + [3623] = 3499, + [3624] = 3426, + [3625] = 3466, + [3626] = 3626, + [3627] = 3469, + [3628] = 3471, + [3629] = 3629, + [3630] = 3442, + [3631] = 3481, + [3632] = 3433, + [3633] = 3425, + [3634] = 3428, + [3635] = 3430, + [3636] = 3431, + [3637] = 3442, + [3638] = 3425, + [3639] = 3445, + [3640] = 3446, + [3641] = 3447, + [3642] = 3448, + [3643] = 3449, + [3644] = 3450, + [3645] = 3451, + [3646] = 3452, + [3647] = 3453, + [3648] = 3454, + [3649] = 3455, + [3650] = 3456, + [3651] = 3651, + [3652] = 3482, + [3653] = 3651, + [3654] = 3433, + [3655] = 3457, + [3656] = 3458, + [3657] = 3429, + [3658] = 3651, + [3659] = 3428, + [3660] = 3430, + [3661] = 3431, + [3662] = 3442, + [3663] = 3425, + [3664] = 3445, + [3665] = 3446, + [3666] = 3447, + [3667] = 3448, + [3668] = 3449, + [3669] = 3450, + [3670] = 3451, + [3671] = 3452, + [3672] = 3453, + [3673] = 3454, + [3674] = 3455, + [3675] = 3456, + [3676] = 3457, + [3677] = 3458, + [3678] = 3429, + [3679] = 3499, + [3680] = 3499, + [3681] = 3461, + [3682] = 3651, + [3683] = 3461, + [3684] = 3462, + [3685] = 3463, + [3686] = 3464, + [3687] = 3465, + [3688] = 3466, + [3689] = 3467, + [3690] = 3468, + [3691] = 3469, + [3692] = 3470, + [3693] = 3471, + [3694] = 3472, + [3695] = 3473, + [3696] = 3474, + [3697] = 3460, + [3698] = 3476, + [3699] = 3434, + [3700] = 3478, + [3701] = 3479, [3702] = 3426, - [3703] = 3425, + [3703] = 3481, [3704] = 3482, - [3705] = 3442, - [3706] = 3439, - [3707] = 3456, - [3708] = 3483, - [3709] = 3484, - [3710] = 3434, - [3711] = 3485, - [3712] = 3457, - [3713] = 3489, - [3714] = 3438, - [3715] = 3437, - [3716] = 3434, - [3717] = 3433, - [3718] = 3432, - [3719] = 3431, - [3720] = 3430, - [3721] = 3429, - [3722] = 3478, - [3723] = 3479, - [3724] = 3480, - [3725] = 3481, - [3726] = 3450, - [3727] = 3482, - [3728] = 3483, + [3705] = 3651, + [3706] = 3462, + [3707] = 3461, + [3708] = 3462, + [3709] = 3470, + [3710] = 3463, + [3711] = 3463, + [3712] = 3651, + [3713] = 3713, + [3714] = 3481, + [3715] = 3715, + [3716] = 3433, + [3717] = 3482, + [3718] = 3651, + [3719] = 3476, + [3720] = 3433, + [3721] = 3428, + [3722] = 3430, + [3723] = 3431, + [3724] = 3442, + [3725] = 3425, + [3726] = 3445, + [3727] = 3446, + [3728] = 3447, [3729] = 3448, - [3730] = 3484, - [3731] = 3485, - [3732] = 3486, - [3733] = 3487, - [3734] = 3488, - [3735] = 3489, - [3736] = 3427, - [3737] = 3428, - [3738] = 3486, - [3739] = 3436, - [3740] = 3441, - [3741] = 3459, - [3742] = 3443, - [3743] = 3448, - [3744] = 3460, - [3745] = 3461, - [3746] = 3462, - [3747] = 3450, - [3748] = 3462, - [3749] = 3749, - [3750] = 3463, - [3751] = 3452, - [3752] = 3447, - [3753] = 3461, - [3754] = 3460, - [3755] = 3426, - [3756] = 3487, - [3757] = 3749, - [3758] = 3425, - [3759] = 3442, - [3760] = 3459, - [3761] = 3439, - [3762] = 3457, - [3763] = 3488, - [3764] = 3456, - [3765] = 3438, - [3766] = 3450, - [3767] = 3749, - [3768] = 3448, - [3769] = 3462, - [3770] = 3455, - [3771] = 3454, - [3772] = 3453, - [3773] = 3449, - [3774] = 3458, - [3775] = 3503, - [3776] = 3497, - [3777] = 3449, - [3778] = 3749, - [3779] = 3453, - [3780] = 3454, - [3781] = 3455, - [3782] = 3437, - [3783] = 3456, - [3784] = 3457, - [3785] = 3459, - [3786] = 3460, - [3787] = 3461, - [3788] = 3462, - [3789] = 3463, - [3790] = 3749, - [3791] = 3460, - [3792] = 3452, - [3793] = 3441, - [3794] = 3436, - [3795] = 3428, - [3796] = 3427, - [3797] = 3489, - [3798] = 3488, - [3799] = 3487, - [3800] = 3486, - [3801] = 3485, - [3802] = 3484, - [3803] = 3483, - [3804] = 3482, - [3805] = 3481, - [3806] = 3480, - [3807] = 3479, - [3808] = 3478, - [3809] = 3429, - [3810] = 3430, - [3811] = 3431, - [3812] = 3432, - [3813] = 3433, - [3814] = 3447, - [3815] = 3426, - [3816] = 3425, - [3817] = 3749, - [3818] = 3434, - [3819] = 3442, - [3820] = 3437, - [3821] = 3438, - [3822] = 3439, - [3823] = 3442, - [3824] = 3488, + [3730] = 3449, + [3731] = 3450, + [3732] = 3451, + [3733] = 3452, + [3734] = 3453, + [3735] = 3464, + [3736] = 3651, + [3737] = 3454, + [3738] = 3455, + [3739] = 3456, + [3740] = 3457, + [3741] = 3458, + [3742] = 3429, + [3743] = 3499, + [3744] = 3461, + [3745] = 3462, + [3746] = 3463, + [3747] = 3464, + [3748] = 3465, + [3749] = 3466, + [3750] = 3467, + [3751] = 3468, + [3752] = 3469, + [3753] = 3470, + [3754] = 3471, + [3755] = 3472, + [3756] = 3473, + [3757] = 3474, + [3758] = 3460, + [3759] = 3651, + [3760] = 3476, + [3761] = 3434, + [3762] = 3478, + [3763] = 3479, + [3764] = 3426, + [3765] = 3481, + [3766] = 3482, + [3767] = 3472, + [3768] = 3651, + [3769] = 3465, + [3770] = 3464, + [3771] = 3473, + [3772] = 3465, + [3773] = 3474, + [3774] = 3466, + [3775] = 3467, + [3776] = 3460, + [3777] = 3476, + [3778] = 3445, + [3779] = 3433, + [3780] = 3457, + [3781] = 3468, + [3782] = 3428, + [3783] = 3430, + [3784] = 3431, + [3785] = 3442, + [3786] = 3425, + [3787] = 3445, + [3788] = 3446, + [3789] = 3447, + [3790] = 3448, + [3791] = 3449, + [3792] = 3450, + [3793] = 3469, + [3794] = 3451, + [3795] = 3452, + [3796] = 3453, + [3797] = 3454, + [3798] = 3455, + [3799] = 3456, + [3800] = 3457, + [3801] = 3458, + [3802] = 3429, + [3803] = 3499, + [3804] = 3461, + [3805] = 3462, + [3806] = 3470, + [3807] = 3463, + [3808] = 3464, + [3809] = 3465, + [3810] = 3466, + [3811] = 3467, + [3812] = 3468, + [3813] = 3469, + [3814] = 3470, + [3815] = 3471, + [3816] = 3472, + [3817] = 3473, + [3818] = 3474, + [3819] = 3471, + [3820] = 3460, + [3821] = 3476, + [3822] = 3434, + [3823] = 3478, + [3824] = 3479, [3825] = 3426, - [3826] = 3447, - [3827] = 3452, - [3828] = 3463, - [3829] = 3462, - [3830] = 3461, - [3831] = 3481, - [3832] = 3459, - [3833] = 3488, - [3834] = 3457, - [3835] = 3456, - [3836] = 3455, - [3837] = 3454, - [3838] = 3453, - [3839] = 3487, - [3840] = 3486, - [3841] = 3439, - [3842] = 3438, - [3843] = 3749, - [3844] = 3437, - [3845] = 3434, - [3846] = 3449, - [3847] = 3489, + [3826] = 3481, + [3827] = 3482, + [3828] = 3472, + [3829] = 3434, + [3830] = 3446, + [3831] = 3478, + [3832] = 3473, + [3833] = 3713, + [3834] = 3432, + [3835] = 3715, + [3836] = 3427, + [3837] = 3626, + [3838] = 3629, + [3839] = 3713, + [3840] = 3432, + [3841] = 3715, + [3842] = 3427, + [3843] = 3626, + [3844] = 3629, + [3845] = 3713, + [3846] = 3432, + [3847] = 3715, [3848] = 3427, - [3849] = 3428, - [3850] = 3436, - [3851] = 3441, - [3852] = 3443, - [3853] = 3448, - [3854] = 3433, - [3855] = 3749, - [3856] = 3432, - [3857] = 3450, - [3858] = 3431, - [3859] = 3430, - [3860] = 3443, - [3861] = 3429, - [3862] = 3484, - [3863] = 3478, - [3864] = 3479, - [3865] = 3480, - [3866] = 3488, - [3867] = 3487, - [3868] = 3749, - [3869] = 3486, - [3870] = 3485, - [3871] = 3484, - [3872] = 3450, - [3873] = 3483, - [3874] = 3749, - [3875] = 3463, - [3876] = 3448, - [3877] = 3482, - [3878] = 3485, - [3879] = 3449, - [3880] = 3443, - [3881] = 3441, - [3882] = 3436, - [3883] = 3428, - [3884] = 3427, + [3849] = 3626, + [3850] = 3629, + [3851] = 3713, + [3852] = 3432, + [3853] = 3715, + [3854] = 3427, + [3855] = 3626, + [3856] = 3629, + [3857] = 3713, + [3858] = 3432, + [3859] = 3715, + [3860] = 3427, + [3861] = 3626, + [3862] = 3629, + [3863] = 3713, + [3864] = 3432, + [3865] = 3715, + [3866] = 3427, + [3867] = 3626, + [3868] = 3629, + [3869] = 3713, + [3870] = 3432, + [3871] = 3715, + [3872] = 3427, + [3873] = 3626, + [3874] = 3629, + [3875] = 3713, + [3876] = 3432, + [3877] = 3715, + [3878] = 3427, + [3879] = 3626, + [3880] = 3629, + [3881] = 3458, + [3882] = 3447, + [3883] = 3479, + [3884] = 3499, [3885] = 3885, [3886] = 3886, [3887] = 3887, [3888] = 3888, - [3889] = 3888, + [3889] = 3889, [3890] = 3890, [3891] = 3891, - [3892] = 3885, - [3893] = 3886, - [3894] = 3894, - [3895] = 3894, - [3896] = 3885, - [3897] = 3891, - [3898] = 3898, - [3899] = 3890, - [3900] = 3900, - [3901] = 3901, - [3902] = 3902, - [3903] = 3890, - [3904] = 3901, - [3905] = 3886, - [3906] = 3887, - [3907] = 3900, - [3908] = 3898, - [3909] = 3887, - [3910] = 3890, - [3911] = 3900, - [3912] = 3901, - [3913] = 3900, - [3914] = 3894, - [3915] = 3885, - [3916] = 3891, - [3917] = 3887, - [3918] = 3888, - [3919] = 3886, - [3920] = 3894, - [3921] = 3898, - [3922] = 3891, - [3923] = 3886, - [3924] = 3898, - [3925] = 3891, - [3926] = 3885, - [3927] = 3898, - [3928] = 3886, - [3929] = 3885, - [3930] = 3894, - [3931] = 3887, - [3932] = 3901, - [3933] = 3888, - [3934] = 3900, - [3935] = 3888, - [3936] = 3901, - [3937] = 3890, - [3938] = 3887, - [3939] = 3894, - [3940] = 3888, - [3941] = 3887, - [3942] = 3894, - [3943] = 3900, - [3944] = 3886, - [3945] = 3900, - [3946] = 3890, - [3947] = 3898, - [3948] = 3898, - [3949] = 3901, - [3950] = 3891, - [3951] = 3891, - [3952] = 3901, - [3953] = 3898, - [3954] = 3887, - [3955] = 3888, - [3956] = 3887, - [3957] = 3890, - [3958] = 3900, - [3959] = 3890, + [3892] = 3892, + [3893] = 3885, + [3894] = 3891, + [3895] = 3895, + [3896] = 3895, + [3897] = 3887, + [3898] = 3891, + [3899] = 3887, + [3900] = 3890, + [3901] = 3892, + [3902] = 3889, + [3903] = 3886, + [3904] = 3889, + [3905] = 3905, + [3906] = 3885, + [3907] = 3895, + [3908] = 3886, + [3909] = 3889, + [3910] = 3891, + [3911] = 3892, + [3912] = 3891, + [3913] = 3895, + [3914] = 3887, + [3915] = 3895, + [3916] = 3887, + [3917] = 3917, + [3918] = 3892, + [3919] = 3885, + [3920] = 3886, + [3921] = 3889, + [3922] = 3890, + [3923] = 3892, + [3924] = 3905, + [3925] = 3887, + [3926] = 3890, + [3927] = 3905, + [3928] = 3885, + [3929] = 3887, + [3930] = 3885, + [3931] = 3888, + [3932] = 3905, + [3933] = 3886, + [3934] = 3889, + [3935] = 3891, + [3936] = 3892, + [3937] = 3885, + [3938] = 3890, + [3939] = 3905, + [3940] = 3889, + [3941] = 3895, + [3942] = 3887, + [3943] = 3890, + [3944] = 3905, + [3945] = 3888, + [3946] = 3888, + [3947] = 3895, + [3948] = 3887, + [3949] = 3891, + [3950] = 3892, + [3951] = 3895, + [3952] = 3887, + [3953] = 3890, + [3954] = 3895, + [3955] = 3905, + [3956] = 3885, + [3957] = 3887, + [3958] = 3888, + [3959] = 3892, [3960] = 3888, - [3961] = 3885, - [3962] = 3890, - [3963] = 3900, - [3964] = 3894, - [3965] = 3888, - [3966] = 3894, - [3967] = 3901, - [3968] = 3885, - [3969] = 3891, - [3970] = 3900, - [3971] = 3886, + [3961] = 3886, + [3962] = 3889, + [3963] = 3963, + [3964] = 3886, + [3965] = 3890, + [3966] = 3905, + [3967] = 3885, + [3968] = 3891, + [3969] = 3892, + [3970] = 3886, + [3971] = 3889, [3972] = 3891, - [3973] = 3885, - [3974] = 3885, - [3975] = 3887, - [3976] = 3898, - [3977] = 3894, - [3978] = 3888, - [3979] = 3898, - [3980] = 3886, - [3981] = 3888, - [3982] = 3891, - [3983] = 3890, - [3984] = 3891, - [3985] = 3891, - [3986] = 3890, - [3987] = 3900, - [3988] = 3887, - [3989] = 3901, + [3973] = 3892, + [3974] = 3889, + [3975] = 3895, + [3976] = 3891, + [3977] = 3892, + [3978] = 3890, + [3979] = 3905, + [3980] = 3885, + [3981] = 3905, + [3982] = 3888, + [3983] = 3888, + [3984] = 3888, + [3985] = 3887, + [3986] = 3886, + [3987] = 3889, + [3988] = 3891, + [3989] = 3892, [3990] = 3890, - [3991] = 3888, + [3991] = 3905, [3992] = 3885, - [3993] = 3886, - [3994] = 3901, - [3995] = 3898, - [3996] = 3898, - [3997] = 3886, - [3998] = 3998, + [3993] = 3895, + [3994] = 3888, + [3995] = 3886, + [3996] = 3886, + [3997] = 3889, + [3998] = 3885, [3999] = 3999, - [4000] = 3999, + [4000] = 4000, [4001] = 3999, [4002] = 4002, - [4003] = 4003, + [4003] = 3999, [4004] = 3999, [4005] = 3999, [4006] = 3999, [4007] = 3999, - [4008] = 4008, - [4009] = 3999, + [4008] = 3999, + [4009] = 4009, [4010] = 3999, [4011] = 3999, [4012] = 4012, @@ -6467,609 +6448,96 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4096] = 4096, [4097] = 4097, [4098] = 4097, - [4099] = 4099, - [4100] = 4099, - [4101] = 4097, - [4102] = 4099, + [4099] = 4097, + [4100] = 4100, + [4101] = 4100, + [4102] = 4097, [4103] = 4097, - [4104] = 4099, - [4105] = 4099, - [4106] = 4099, + [4104] = 4100, + [4105] = 4100, + [4106] = 4100, [4107] = 4097, - [4108] = 4099, - [4109] = 4099, - [4110] = 4099, + [4108] = 4100, + [4109] = 4100, + [4110] = 4097, [4111] = 4097, - [4112] = 4097, - [4113] = 4113, - [4114] = 4097, - [4115] = 4099, + [4112] = 4112, + [4113] = 4100, + [4114] = 4100, + [4115] = 4100, [4116] = 4097, - [4117] = 4099, - [4118] = 4097, + [4117] = 4097, + [4118] = 4100, [4119] = 4119, [4120] = 4120, - [4121] = 4120, + [4121] = 4121, [4122] = 4122, - [4123] = 4123, - [4124] = 4123, - [4125] = 4123, - [4126] = 4126, - [4127] = 4127, - [4128] = 4127, + [4123] = 4121, + [4124] = 4121, + [4125] = 4119, + [4126] = 4121, + [4127] = 4121, + [4128] = 4121, [4129] = 4129, - [4130] = 4130, - [4131] = 4123, + [4130] = 4120, + [4131] = 4120, [4132] = 4132, - [4133] = 4127, - [4134] = 4134, - [4135] = 4127, + [4133] = 4133, + [4134] = 4121, + [4135] = 4135, [4136] = 4136, - [4137] = 4137, - [4138] = 4120, - [4139] = 4127, - [4140] = 4127, - [4141] = 4120, - [4142] = 4120, + [4137] = 4119, + [4138] = 4138, + [4139] = 4119, + [4140] = 4140, + [4141] = 4121, + [4142] = 4119, [4143] = 4143, - [4144] = 4120, - [4145] = 4145, + [4144] = 4144, + [4145] = 4120, [4146] = 4146, - [4147] = 4147, - [4148] = 4120, - [4149] = 4149, - [4150] = 4123, - [4151] = 4127, + [4147] = 4119, + [4148] = 4148, + [4149] = 4120, + [4150] = 4121, + [4151] = 4119, [4152] = 4152, - [4153] = 4123, - [4154] = 4120, - [4155] = 4123, + [4153] = 4119, + [4154] = 4154, + [4155] = 4120, [4156] = 4156, [4157] = 4157, [4158] = 4158, - [4159] = 4127, - [4160] = 4127, + [4159] = 4159, + [4160] = 4121, [4161] = 4120, - [4162] = 4127, - [4163] = 4123, - [4164] = 4123, + [4162] = 4119, + [4163] = 4120, + [4164] = 4120, }; -static inline bool aux_sym_str_lit_token1_character_set_1(int32_t c) { - return (c < 'X' - ? (c < 'O' - ? (c < 'B' - ? c == '$' - : c <= 'G') - : (c <= 'O' || (c >= 'R' && c <= 'T'))) - : (c <= 'X' || (c < 'r' - ? (c < 'o' - ? (c >= 'b' && c <= 'g') - : c <= 'o') - : (c <= 't' || c == 'x')))); -} - -static inline bool aux_sym_sym_lit_token1_character_set_1(int32_t c) { - return (c < '}' - ? (c < ')' - ? (c < '\t' - ? c == 0 - : (c <= '\r' || (c >= 28 && c <= ' '))) - : (c <= ')' || (c < '[' - ? c == ';' - : c <= ']'))) - : (c <= '}' || (c < 8232 - ? (c < 8192 - ? c == 5760 - : (c <= 8198 || (c >= 8200 && c <= 8202))) - : (c <= 8233 || (c < 12288 - ? c == 8287 - : c <= 12288))))); -} - -static inline bool aux_sym_sym_lit_token1_character_set_2(int32_t c) { - return (c < '`' - ? (c < '"' - ? (c < '\t' - ? c == 0 - : (c <= '\r' || (c >= 28 && c <= ' '))) - : (c <= '"' || (c < ':' - ? c == ')' - : (c <= ';' || (c >= '[' && c <= ']'))))) - : (c <= '`' || (c < 8200 - ? (c < 5760 - ? c == '}' - : (c <= 5760 || (c >= 8192 && c <= 8198))) - : (c <= 8202 || (c < 8287 - ? (c >= 8232 && c <= 8233) - : (c <= 8287 || c == 12288)))))); -} - -static inline bool aux_sym_sym_lit_token1_character_set_3(int32_t c) { - return (c < '`' - ? (c < '\'' - ? (c < 28 - ? (c < '\t' - ? c == 0 - : c <= '\r') - : (c <= ' ' || c == '"')) - : (c <= ')' || (c < ':' - ? c == ',' - : (c <= ';' || (c >= '[' && c <= '^'))))) - : (c <= '`' || (c < 8200 - ? (c < 5760 - ? (c < '}' - ? c == '{' - : c <= '}') - : (c <= 5760 || (c >= 8192 && c <= 8198))) - : (c <= 8202 || (c < 8287 - ? (c >= 8232 && c <= 8233) - : (c <= 8287 || c == 12288)))))); -} - -static inline bool aux_sym_sym_lit_token1_character_set_4(int32_t c) { - return (c < '`' - ? (c < '(' - ? (c < 28 - ? (c < '\t' - ? c == 0 - : c <= '\r') - : (c <= ' ' || c == '"')) - : (c <= ')' || (c < ':' - ? c == ',' - : (c <= ';' || (c >= '[' && c <= '^'))))) - : (c <= '`' || (c < 8200 - ? (c < 5760 - ? (c < '}' - ? c == '{' - : c <= '}') - : (c <= 5760 || (c >= 8192 && c <= 8198))) - : (c <= 8202 || (c < 8287 - ? (c >= 8232 && c <= 8233) - : (c <= 8287 || c == 12288)))))); -} - -static inline bool aux_sym_sym_lit_token1_character_set_5(int32_t c) { - return (c < '`' - ? (c < '0' - ? (c < '"' - ? (c < '\t' - ? c == 0 - : (c <= '\r' || (c >= 28 && c <= ' '))) - : (c <= '"' || (c < ',' - ? (c >= '(' && c <= ')') - : c <= ','))) - : (c <= ';' || (c < 'L' - ? (c < 'D' - ? c == 'A' - : c <= 'F') - : (c <= 'N' || (c < '[' - ? c == 'S' - : c <= '^'))))) - : (c <= 'a' || (c < 5760 - ? (c < 's' - ? (c < 'l' - ? (c >= 'd' && c <= 'f') - : c <= 'l') - : (c <= 's' || (c < '}' - ? c == '{' - : c <= '}'))) - : (c <= 5760 || (c < 8232 - ? (c < 8200 - ? (c >= 8192 && c <= 8198) - : c <= 8202) - : (c <= 8233 || (c < 12288 - ? c == 8287 - : c <= 12288))))))); -} - -static inline bool aux_sym_sym_lit_token1_character_set_6(int32_t c) { - return (c < '`' - ? (c < ',' - ? (c < 28 - ? (c < '\t' - ? c == 0 - : c <= '\r') - : (c <= ' ' || (c < '(' - ? c == '"' - : c <= ')'))) - : (c <= ',' || (c < 'L' - ? (c < 'D' - ? (c >= '0' && c <= ';') - : c <= 'F') - : (c <= 'N' || (c < '[' - ? c == 'S' - : c <= '^'))))) - : (c <= '`' || (c < 5760 - ? (c < 's' - ? (c < 'l' - ? (c >= 'd' && c <= 'f') - : c <= 'l') - : (c <= 's' || (c < '}' - ? c == '{' - : c <= '}'))) - : (c <= 5760 || (c < 8232 - ? (c < 8200 - ? (c >= 8192 && c <= 8198) - : c <= 8202) - : (c <= 8233 || (c < 12288 - ? c == 8287 - : c <= 12288))))))); -} - -static inline bool aux_sym_sym_lit_token1_character_set_7(int32_t c) { - return (c < '`' - ? (c < '(' - ? (c < 28 - ? (c < '\t' - ? c == 0 - : c <= '\r') - : (c <= ' ' || c == '"')) - : (c <= ')' || (c < '0' - ? c == ',' - : (c <= ';' || (c >= 'A' && c <= '^'))))) - : (c <= '{' || (c < 8200 - ? (c < 5760 - ? c == '}' - : (c <= 5760 || (c >= 8192 && c <= 8198))) - : (c <= 8202 || (c < 8287 - ? (c >= 8232 && c <= 8233) - : (c <= 8287 || c == 12288)))))); -} - -static inline bool aux_sym_sym_lit_token1_character_set_8(int32_t c) { - return (c < '`' - ? (c < '(' - ? (c < 28 - ? (c < '\t' - ? c == 0 - : c <= '\r') - : (c <= ' ' || c == '"')) - : (c <= ')' || (c < 'A' - ? (c < '0' - ? c == ',' - : c <= ';') - : (c <= 'F' || (c >= '[' && c <= '^'))))) - : (c <= 'f' || (c < 8200 - ? (c < 5760 - ? (c < '}' - ? c == '{' - : c <= '}') - : (c <= 5760 || (c >= 8192 && c <= 8198))) - : (c <= 8202 || (c < 8287 - ? (c >= 8232 && c <= 8233) - : (c <= 8287 || c == 12288)))))); -} - -static inline bool aux_sym_sym_lit_token1_character_set_9(int32_t c) { - return (c < '`' - ? (c < ',' - ? (c < 28 - ? (c < '\t' - ? c == 0 - : c <= '\r') - : (c <= ' ' || (c < '(' - ? c == '"' - : c <= ')'))) - : (c <= ',' || (c < 'L' - ? (c < 'D' - ? (c >= '0' && c <= ';') - : c <= 'F') - : (c <= 'L' || (c < '[' - ? c == 'S' - : c <= '^'))))) - : (c <= '`' || (c < 5760 - ? (c < 's' - ? (c < 'l' - ? (c >= 'd' && c <= 'f') - : c <= 'l') - : (c <= 's' || (c < '}' - ? c == '{' - : c <= '}'))) - : (c <= 5760 || (c < 8232 - ? (c < 8200 - ? (c >= 8192 && c <= 8198) - : c <= 8202) - : (c <= 8233 || (c < 12288 - ? c == 8287 - : c <= 12288))))))); -} - -static inline bool aux_sym_sym_lit_token1_character_set_10(int32_t c) { - return (c < '`' - ? (c < '(' - ? (c < 28 - ? (c < '\t' - ? c == 0 - : c <= '\r') - : (c <= ' ' || c == '"')) - : (c <= ')' || (c < '0' - ? c == ',' - : (c <= ';' || (c >= '[' && c <= '^'))))) - : (c <= '`' || (c < 8200 - ? (c < 5760 - ? (c < '}' - ? c == '{' - : c <= '}') - : (c <= 5760 || (c >= 8192 && c <= 8198))) - : (c <= 8202 || (c < 8287 - ? (c >= 8232 && c <= 8233) - : (c <= 8287 || c == 12288)))))); -} - -static inline bool aux_sym_sym_lit_token1_character_set_11(int32_t c) { - return (c < '`' - ? (c < '(' - ? (c < 28 - ? (c < '\t' - ? c == 0 - : c <= '\r') - : (c <= ' ' || c == '"')) - : (c <= ')' || (c < ':' - ? (c < '0' - ? c == ',' - : c <= '7') - : (c <= ';' || (c >= '[' && c <= '^'))))) - : (c <= '`' || (c < 8200 - ? (c < 5760 - ? (c < '}' - ? c == '{' - : c <= '}') - : (c <= 5760 || (c >= 8192 && c <= 8198))) - : (c <= 8202 || (c < 8287 - ? (c >= 8232 && c <= 8233) - : (c <= 8287 || c == 12288)))))); -} - -static inline bool aux_sym_sym_lit_token1_character_set_12(int32_t c) { - return (c < '`' - ? (c < '(' - ? (c < 28 - ? (c < '\t' - ? c == 0 - : c <= '\r') - : (c <= ' ' || c == '"')) - : (c <= ')' || (c < ':' - ? (c < '0' - ? c == ',' - : c <= '1') - : (c <= ';' || (c >= '[' && c <= '^'))))) - : (c <= '`' || (c < 8200 - ? (c < 5760 - ? (c < '}' - ? c == '{' - : c <= '}') - : (c <= 5760 || (c >= 8192 && c <= 8198))) - : (c <= 8202 || (c < 8287 - ? (c >= 8232 && c <= 8233) - : (c <= 8287 || c == 12288)))))); -} - -static inline bool aux_sym_sym_lit_token1_character_set_13(int32_t c) { - return (c < '`' - ? (c < '(' - ? (c < 28 - ? (c < '\t' - ? c == 0 - : c <= '\r') - : (c <= ' ' || c == '"')) - : (c <= ')' || (c < ':' - ? c == ',' - : (c <= ';' || (c >= '[' && c <= '^'))))) - : (c <= '`' || (c < 8200 - ? (c < 5760 - ? (c >= '{' && c <= '}') - : (c <= 5760 || (c >= 8192 && c <= 8198))) - : (c <= 8202 || (c < 8287 - ? (c >= 8232 && c <= 8233) - : (c <= 8287 || c == 12288)))))); -} - -static inline bool aux_sym_sym_lit_token1_character_set_14(int32_t c) { - return (c < '`' - ? (c < '(' - ? (c < 28 - ? (c < '\t' - ? c == 0 - : c <= '\r') - : (c <= ' ' || c == '"')) - : (c <= ')' || (c < 'A' - ? (c < '0' - ? (c >= '+' && c <= '-') - : c <= ';') - : (c <= 'F' || (c >= '[' && c <= '^'))))) - : (c <= 'f' || (c < 8200 - ? (c < 5760 - ? (c < '}' - ? c == '{' - : c <= '}') - : (c <= 5760 || (c >= 8192 && c <= 8198))) - : (c <= 8202 || (c < 8287 - ? (c >= 8232 && c <= 8233) - : (c <= 8287 || c == 12288)))))); -} - -static inline bool aux_sym_sym_lit_token1_character_set_15(int32_t c) { - return (c < '`' - ? (c < '(' - ? (c < 28 - ? (c < '\t' - ? c == 0 - : c <= '\r') - : (c <= ' ' || c == '"')) - : (c <= ')' || (c < '0' - ? (c >= '+' && c <= '-') - : (c <= ';' || (c >= '[' && c <= '^'))))) - : (c <= '`' || (c < 8200 - ? (c < 5760 - ? (c < '}' - ? c == '{' - : c <= '}') - : (c <= 5760 || (c >= 8192 && c <= 8198))) - : (c <= 8202 || (c < 8287 - ? (c >= 8232 && c <= 8233) - : (c <= 8287 || c == 12288)))))); -} - -static inline bool aux_sym_sym_lit_token1_character_set_16(int32_t c) { - return (c < '`' - ? (c < '(' - ? (c < 28 - ? (c < '\t' - ? c == 0 - : c <= '\r') - : (c <= ' ' || c == '"')) - : (c <= ')' || (c < 'R' - ? (c < '0' - ? c == ',' - : c <= ';') - : (c <= 'R' || (c >= '[' && c <= '^'))))) - : (c <= '`' || (c < 8192 - ? (c < '}' - ? (c < '{' - ? c == 'r' - : c <= '{') - : (c <= '}' || c == 5760)) - : (c <= 8198 || (c < 8287 - ? (c < 8232 - ? (c >= 8200 && c <= 8202) - : c <= 8233) - : (c <= 8287 || c == 12288)))))); -} - -static inline bool aux_sym_sym_lit_token1_character_set_17(int32_t c) { - return (c < '`' - ? (c < '(' - ? (c < 28 - ? (c < '\t' - ? c == 0 - : c <= '\r') - : (c <= ' ' || c == '"')) - : (c <= ')' || (c < ':' - ? (c < '0' - ? (c >= '+' && c <= '-') - : c <= '7') - : (c <= ';' || (c >= '[' && c <= '^'))))) - : (c <= '`' || (c < 8200 - ? (c < 5760 - ? (c < '}' - ? c == '{' - : c <= '}') - : (c <= 5760 || (c >= 8192 && c <= 8198))) - : (c <= 8202 || (c < 8287 - ? (c >= 8232 && c <= 8233) - : (c <= 8287 || c == 12288)))))); -} - -static inline bool aux_sym_sym_lit_token1_character_set_18(int32_t c) { - return (c < '`' - ? (c < '(' - ? (c < 28 - ? (c < '\t' - ? c == 0 - : c <= '\r') - : (c <= ' ' || c == '"')) - : (c <= ')' || (c < ':' - ? (c < '0' - ? (c >= '+' && c <= '-') - : c <= '1') - : (c <= ';' || (c >= '[' && c <= '^'))))) - : (c <= '`' || (c < 8200 - ? (c < 5760 - ? (c < '}' - ? c == '{' - : c <= '}') - : (c <= 5760 || (c >= 8192 && c <= 8198))) - : (c <= 8202 || (c < 8287 - ? (c >= 8232 && c <= 8233) - : (c <= 8287 || c == 12288)))))); -} - -static inline bool aux_sym_sym_lit_token1_character_set_19(int32_t c) { - return (c < '`' - ? (c < '(' - ? (c < 28 - ? (c < '\t' - ? c == 0 - : c <= '\r') - : (c <= 31 || c == '"')) - : (c <= ')' || (c < ':' - ? c == ',' - : (c <= ';' || (c >= '[' && c <= '^'))))) - : (c <= '`' || (c < 8200 - ? (c < 5760 - ? (c < '}' - ? c == '{' - : c <= '}') - : (c <= 5760 || (c >= 8192 && c <= 8198))) - : (c <= 8202 || (c < 8287 - ? (c >= 8232 && c <= 8233) - : (c <= 8287 || c == 12288)))))); -} +static TSCharacterRange aux_sym_sym_lit_token1_character_set_1[] = { + {0, 0x08}, {0x0e, 0x1b}, {'!', '!'}, {'$', '&'}, {'*', '+'}, {'-', '9'}, {'<', 'Z'}, {'_', '_'}, + {'a', 'z'}, {'|', '|'}, {'~', 0x167f}, {0x1681, 0x1fff}, {0x2007, 0x2007}, {0x200b, 0x2027}, {0x202a, 0x205e}, {0x2060, 0x2fff}, + {0x3001, 0x10ffff}, +}; -static inline bool sym_fancy_literal_character_set_1(int32_t c) { - return (c < '`' - ? (c < '(' - ? (c < 28 - ? (c >= '\t' && c <= '\r') - : (c <= ' ' || c == '"')) - : (c <= ')' || (c < ':' - ? c == ',' - : (c <= ';' || (c >= '[' && c <= '^'))))) - : (c <= '`' || (c < 8200 - ? (c < 5760 - ? (c >= '{' && c <= '}') - : (c <= 5760 || (c >= 8192 && c <= 8198))) - : (c <= 8202 || (c < 8287 - ? (c >= 8232 && c <= 8233) - : (c <= 8287 || c == 12288)))))); -} +static TSCharacterRange aux_sym_sym_lit_token1_character_set_2[] = { + {0, 0x08}, {0x0e, 0x1b}, {'!', '!'}, {'#', '\''}, {'*', '+'}, {'-', '9'}, {'<', 'Z'}, {'_', '_'}, + {'a', 'z'}, {'|', '|'}, {'~', 0x167f}, {0x1681, 0x1fff}, {0x2007, 0x2007}, {0x200b, 0x2027}, {0x202a, 0x205e}, {0x2060, 0x2fff}, + {0x3001, 0x10ffff}, +}; -static inline bool aux_sym__sym_lit_without_slash_token1_character_set_1(int32_t c) { - return (c < '`' - ? (c < '\'' - ? (c < 28 - ? (c < '\t' - ? c == 0 - : c <= '\r') - : (c <= ' ' || c == '"')) - : (c <= ')' || (c < ';' - ? c == ',' - : (c <= ';' || (c >= '[' && c <= '^'))))) - : (c <= '`' || (c < 8200 - ? (c < 5760 - ? (c < '}' - ? c == '{' - : c <= '}') - : (c <= 5760 || (c >= 8192 && c <= 8198))) - : (c <= 8202 || (c < 8287 - ? (c >= 8232 && c <= 8233) - : (c <= 8287 || c == 12288)))))); -} +static TSCharacterRange aux_sym_format_directive_type_token11_character_set_1[] = { + {'$', '$'}, {'B', 'B'}, {'D', 'G'}, {'O', 'O'}, {'R', 'T'}, {'X', 'X'}, {'b', 'b'}, {'d', 'g'}, + {'o', 'o'}, {'r', 't'}, {'x', 'x'}, +}; -static inline bool aux_sym__sym_lit_without_slash_token1_character_set_2(int32_t c) { - return (c < '`' - ? (c < '\'' - ? (c < 28 - ? (c < '\t' - ? c == 0 - : c <= '\r') - : (c <= ' ' || c == '"')) - : (c <= ')' || (c < ':' - ? (c < '/' - ? c == ',' - : c <= '/') - : (c <= ';' || (c >= '[' && c <= '^'))))) - : (c <= '`' || (c < 8200 - ? (c < 5760 - ? (c < '}' - ? c == '{' - : c <= '}') - : (c <= 5760 || (c >= 8192 && c <= 8198))) - : (c <= 8202 || (c < 8287 - ? (c >= 8232 && c <= 8233) - : (c <= 8287 || c == 12288)))))); -} +static TSCharacterRange aux_sym__sym_lit_without_slash_token1_character_set_1[] = { + {0, 0x08}, {0x0e, 0x1b}, {'!', '!'}, {'$', '&'}, {'*', '+'}, {'-', '.'}, {'0', '9'}, {'<', 'Z'}, + {'_', '_'}, {'a', 'z'}, {'|', '|'}, {'~', 0x167f}, {0x1681, 0x1fff}, {0x2007, 0x2007}, {0x200b, 0x2027}, {0x202a, 0x205e}, + {0x2060, 0x2fff}, {0x3001, 0x10ffff}, +}; static bool ts_lex(TSLexer *lexer, TSStateId state) { START_LEXER(); @@ -7077,109 +6545,130 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { switch (state) { case 0: if (eof) ADVANCE(249); - if (lookahead == '\n') ADVANCE(305); - if (lookahead == '\r') ADVANCE(305); - if (lookahead == '"') ADVANCE(299); - if (lookahead == '#') ADVANCE(301); - if (lookahead == '%') ADVANCE(305); - if (lookahead == '&') ADVANCE(305); - if (lookahead == '\'') ADVANCE(305); - if (lookahead == '(') ADVANCE(305); - if (lookahead == ')') ADVANCE(305); - if (lookahead == '*') ADVANCE(305); - if (lookahead == ',') ADVANCE(305); - if (lookahead == '.') ADVANCE(305); - if (lookahead == '/') ADVANCE(305); - if (lookahead == ':') ADVANCE(305); - if (lookahead == ';') ADVANCE(305); - if (lookahead == '=') ADVANCE(305); - if (lookahead == '?') ADVANCE(305); - if (lookahead == '@') ADVANCE(305); - if (lookahead == 'V') ADVANCE(305); - if (lookahead == '[') ADVANCE(305); - if (lookahead == '\\') ADVANCE(499); - if (lookahead == ']') ADVANCE(305); - if (lookahead == '^') ADVANCE(305); - if (lookahead == '_') ADVANCE(305); - if (lookahead == '`') ADVANCE(305); - if (lookahead == 'v') ADVANCE(305); - if (lookahead == '{') ADVANCE(305); - if (lookahead == '|') ADVANCE(305); - if (lookahead == '}') ADVANCE(305); - if (lookahead == '~') ADVANCE(307); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(305); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(305); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(305); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(305); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(305); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(305); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(305); - if (lookahead == 'D' || - lookahead == 'F' || - lookahead == 'S' || - lookahead == 'd' || - lookahead == 'f' || - lookahead == 's') ADVANCE(305); - if (aux_sym_str_lit_token1_character_set_1(lookahead)) ADVANCE(305); + ADVANCE_MAP( + '\n', 305, + '\r', 305, + '"', 299, + '#', 301, + '%', 305, + '&', 305, + '\'', 305, + '(', 305, + ')', 305, + '*', 305, + ',', 305, + '.', 305, + '/', 305, + ':', 305, + ';', 305, + '=', 305, + '?', 305, + '@', 305, + 'V', 305, + '\\', 497, + '^', 305, + '_', 305, + '`', 305, + 'v', 305, + '{', 305, + '|', 305, + '}', 305, + '~', 307, + '<', 305, + '>', 305, + 'A', 305, + 'a', 305, + 'C', 305, + 'c', 305, + 'I', 305, + 'i', 305, + 'L', 305, + 'l', 305, + 'P', 305, + 'p', 305, + 'W', 305, + 'w', 305, + '[', 305, + ']', 305, + 'D', 305, + 'F', 305, + 'S', 305, + 'd', 305, + 'f', 305, + 's', 305, + '$', 305, + 'B', 305, + 'E', 305, + 'G', 305, + 'O', 305, + 'R', 305, + 'T', 305, + 'X', 305, + 'b', 305, + 'e', 305, + 'g', 305, + 'o', 305, + 'r', 305, + 't', 305, + 'x', 305, + ); if (('\t' <= lookahead && lookahead <= '\f') || - (28 <= lookahead && lookahead <= ' ') || - lookahead == 5760 || - (8192 <= lookahead && lookahead <= 8198) || - (8200 <= lookahead && lookahead <= 8202) || - lookahead == 8232 || - lookahead == 8233 || - lookahead == 8287 || - lookahead == 12288) ADVANCE(305); + (0x1c <= lookahead && lookahead <= ' ') || + lookahead == 0x1680 || + (0x2000 <= lookahead && lookahead <= 0x2006) || + (0x2008 <= lookahead && lookahead <= 0x200a) || + lookahead == 0x2028 || + lookahead == 0x2029 || + lookahead == 0x205f || + lookahead == 0x3000) ADVANCE(305); if (lookahead != 0) ADVANCE(305); END_STATE(); case 1: - if (lookahead == '\n') ADVANCE(510); - if (lookahead == '\r') ADVANCE(511); - if (lookahead == '"') ADVANCE(299); - if (lookahead == '#') ADVANCE(258); - if (lookahead == '%') ADVANCE(505); - if (lookahead == '&') ADVANCE(506); - if (lookahead == '\'') ADVANCE(492); - if (lookahead == '*') ADVANCE(522); - if (lookahead == ',') ADVANCE(495); - if (lookahead == '/') ADVANCE(523); - if (lookahead == ':') ADVANCE(297); - if (lookahead == ';') ADVANCE(521); - if (lookahead == '?') ADVANCE(524); - if (lookahead == '@') ADVANCE(491); - if (lookahead == 'N') ADVANCE(78); - if (lookahead == 'V') ADVANCE(502); - if (lookahead == '^') ADVANCE(509); - if (lookahead == '_') ADVANCE(516); - if (lookahead == 'v') ADVANCE(501); - if (lookahead == '|') ADVANCE(507); - if (lookahead == '~') ADVANCE(307); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(26); - if (lookahead == '<' || - lookahead == '>') ADVANCE(520); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(515); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(508); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(513); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(512); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(514); - if (lookahead == '[' || - lookahead == ']') ADVANCE(519); - if (('{' <= lookahead && lookahead <= '}')) ADVANCE(518); - if (lookahead == '(' || - lookahead == ')') ADVANCE(517); + ADVANCE_MAP( + '\n', 509, + '\r', 510, + '"', 299, + '#', 258, + '%', 504, + '&', 505, + '\'', 490, + '*', 521, + ',', 493, + '/', 522, + ':', 297, + ';', 520, + '?', 523, + '@', 501, + 'N', 78, + 'V', 500, + '^', 508, + '_', 515, + 'v', 499, + '|', 506, + '~', 307, + '+', 26, + '-', 26, + '<', 519, + '>', 519, + 'A', 514, + 'a', 514, + 'C', 507, + 'c', 507, + 'I', 512, + 'i', 512, + 'P', 511, + 'p', 511, + 'W', 513, + 'w', 513, + '[', 518, + ']', 518, + '{', 517, + '}', 517, + '(', 516, + ')', 516, + ); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(265); - if (aux_sym_str_lit_token1_character_set_1(lookahead)) ADVANCE(526); + if (set_contains(aux_sym_format_directive_type_token11_character_set_1, 11, lookahead)) ADVANCE(525); END_STATE(); case 2: if (lookahead == ' ') ADVANCE(104); @@ -7193,472 +6682,509 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 5: if (lookahead == '!') ADVANCE(252); - if (lookahead == '?') ADVANCE(487); + if (lookahead == '?') ADVANCE(486); if (lookahead == '^') ADVANCE(479); if (lookahead == '_') ADVANCE(253); if (lookahead == '|') ADVANCE(229); END_STATE(); case 6: - if (lookahead == '!') ADVANCE(252); - if (lookahead == '^') ADVANCE(479); - if (lookahead == '_') ADVANCE(253); - if (lookahead == '|') ADVANCE(229); + ADVANCE_MAP( + '!', 252, + 'C', 622, + '^', 479, + '_', 253, + 'c', 623, + '|', 229, + 'B', 232, + 'b', 232, + 'O', 233, + 'o', 233, + 'X', 234, + 'x', 234, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(238); END_STATE(); case 7: if (lookahead == '!') ADVANCE(252); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(232); - if (lookahead == 'C') ADVANCE(622); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(233); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(234); if (lookahead == '^') ADVANCE(479); if (lookahead == '_') ADVANCE(253); - if (lookahead == 'c') ADVANCE(623); if (lookahead == '|') ADVANCE(229); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(238); END_STATE(); case 8: - if (lookahead == '!') ADVANCE(252); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(232); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(233); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(234); - if (lookahead == '^') ADVANCE(479); - if (lookahead == '_') ADVANCE(253); - if (lookahead == '|') ADVANCE(229); + ADVANCE_MAP( + '!', 252, + '^', 479, + '_', 253, + '|', 229, + 'B', 232, + 'b', 232, + 'O', 233, + 'o', 233, + 'X', 234, + 'x', 234, + ); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(238); END_STATE(); case 9: - if (lookahead == '"') ADVANCE(299); - if (lookahead == '#') ADVANCE(254); - if (lookahead == '\'') ADVANCE(492); - if (lookahead == '(') ADVANCE(480); - if (lookahead == ')') ADVANCE(481); - if (lookahead == ',') ADVANCE(496); - if (lookahead == '.') ADVANCE(261); - if (lookahead == ':') ADVANCE(296); - if (lookahead == ';') ADVANCE(252); - if (lookahead == '=') ADVANCE(562); - if (lookahead == '^') ADVANCE(478); - if (lookahead == '`') ADVANCE(493); - if (lookahead == 'a') ADVANCE(377); - if (lookahead == 'c') ADVANCE(374); - if (lookahead == 'd') ADVANCE(412); - if (lookahead == 'e') ADVANCE(378); - if (lookahead == 'f') ADVANCE(364); - if (lookahead == 'i') ADVANCE(349); - if (lookahead == 'm') ADVANCE(312); - if (lookahead == 'n') ADVANCE(323); - if (lookahead == 'r') ADVANCE(332); - if (lookahead == 's') ADVANCE(453); - if (lookahead == 't') ADVANCE(359); - if (lookahead == 'u') ADVANCE(395); - if (lookahead == 'w') ADVANCE(357); - if (lookahead == '|') ADVANCE(465); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(311); + ADVANCE_MAP( + '"', 299, + '#', 254, + '\'', 490, + '(', 480, + ')', 481, + ',', 494, + '.', 261, + ':', 296, + ';', 252, + '=', 561, + '^', 478, + '`', 491, + 'a', 377, + 'c', 374, + 'd', 412, + 'e', 378, + 'f', 364, + 'i', 349, + 'm', 312, + 'n', 323, + 'r', 332, + 's', 453, + 't', 359, + 'u', 395, + 'w', 357, + '|', 465, + '+', 311, + '-', 311, + ); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(264); if (('\t' <= lookahead && lookahead <= '\r') || - (28 <= lookahead && lookahead <= ' ') || - lookahead == 5760 || - (8192 <= lookahead && lookahead <= 8198) || - (8200 <= lookahead && lookahead <= 8202) || - lookahead == 8232 || - lookahead == 8233 || - lookahead == 8287 || - lookahead == 12288) ADVANCE(250); + (0x1c <= lookahead && lookahead <= ' ') || + lookahead == 0x1680 || + (0x2000 <= lookahead && lookahead <= 0x2006) || + (0x2008 <= lookahead && lookahead <= 0x200a) || + lookahead == 0x2028 || + lookahead == 0x2029 || + lookahead == 0x205f || + lookahead == 0x3000) ADVANCE(250); if (lookahead != 0 && - (lookahead < '[' || ']' < lookahead) && + (lookahead < '[' || '^' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(477); END_STATE(); case 10: - if (lookahead == '"') ADVANCE(299); - if (lookahead == '#') ADVANCE(254); - if (lookahead == '\'') ADVANCE(492); - if (lookahead == '(') ADVANCE(480); - if (lookahead == ')') ADVANCE(481); - if (lookahead == ',') ADVANCE(496); - if (lookahead == '.') ADVANCE(261); - if (lookahead == ':') ADVANCE(296); - if (lookahead == ';') ADVANCE(252); - if (lookahead == '=') ADVANCE(562); - if (lookahead == '^') ADVANCE(478); - if (lookahead == '`') ADVANCE(493); - if (lookahead == 'a') ADVANCE(377); - if (lookahead == 'c') ADVANCE(374); - if (lookahead == 'd') ADVANCE(285); - if (lookahead == 'e') ADVANCE(378); - if (lookahead == 'f') ADVANCE(282); - if (lookahead == 'i') ADVANCE(349); - if (lookahead == 'm') ADVANCE(312); - if (lookahead == 'n') ADVANCE(323); - if (lookahead == 'r') ADVANCE(332); - if (lookahead == 's') ADVANCE(292); - if (lookahead == 't') ADVANCE(359); - if (lookahead == 'u') ADVANCE(395); - if (lookahead == 'w') ADVANCE(357); - if (lookahead == '|') ADVANCE(465); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(311); - if (lookahead == 'D' || - lookahead == 'F' || - lookahead == 'L' || - lookahead == 'S' || - lookahead == 'l') ADVANCE(294); + ADVANCE_MAP( + '"', 299, + '#', 254, + '\'', 490, + '(', 480, + ')', 481, + ',', 494, + '.', 261, + ':', 296, + ';', 252, + '=', 561, + '^', 478, + '`', 491, + 'a', 377, + 'c', 374, + 'd', 285, + 'e', 378, + 'f', 282, + 'i', 349, + 'm', 312, + 'n', 323, + 'r', 332, + 's', 292, + 't', 359, + 'u', 395, + 'w', 357, + '|', 465, + '+', 311, + '-', 311, + 'D', 294, + 'F', 294, + 'L', 294, + 'S', 294, + 'l', 294, + ); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(264); if (('\t' <= lookahead && lookahead <= '\r') || - (28 <= lookahead && lookahead <= ' ') || - lookahead == 5760 || - (8192 <= lookahead && lookahead <= 8198) || - (8200 <= lookahead && lookahead <= 8202) || - lookahead == 8232 || - lookahead == 8233 || - lookahead == 8287 || - lookahead == 12288) ADVANCE(250); + (0x1c <= lookahead && lookahead <= ' ') || + lookahead == 0x1680 || + (0x2000 <= lookahead && lookahead <= 0x2006) || + (0x2008 <= lookahead && lookahead <= 0x200a) || + lookahead == 0x2028 || + lookahead == 0x2029 || + lookahead == 0x205f || + lookahead == 0x3000) ADVANCE(250); if (lookahead != 0 && - (lookahead < '[' || ']' < lookahead) && + (lookahead < '[' || '^' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(477); END_STATE(); case 11: - if (lookahead == '"') ADVANCE(299); - if (lookahead == '#') ADVANCE(254); - if (lookahead == '\'') ADVANCE(492); - if (lookahead == '(') ADVANCE(480); - if (lookahead == ')') ADVANCE(481); - if (lookahead == ',') ADVANCE(496); - if (lookahead == '.') ADVANCE(261); - if (lookahead == ':') ADVANCE(296); - if (lookahead == ';') ADVANCE(252); - if (lookahead == '^') ADVANCE(478); - if (lookahead == '`') ADVANCE(493); - if (lookahead == 'a') ADVANCE(377); - if (lookahead == 'c') ADVANCE(374); - if (lookahead == 'd') ADVANCE(412); - if (lookahead == 'e') ADVANCE(378); - if (lookahead == 'f') ADVANCE(364); - if (lookahead == 'i') ADVANCE(349); - if (lookahead == 'm') ADVANCE(312); - if (lookahead == 'n') ADVANCE(323); - if (lookahead == 'r') ADVANCE(332); - if (lookahead == 's') ADVANCE(453); - if (lookahead == 't') ADVANCE(359); - if (lookahead == 'u') ADVANCE(395); - if (lookahead == 'w') ADVANCE(357); - if (lookahead == '|') ADVANCE(465); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(311); + ADVANCE_MAP( + '"', 299, + '#', 254, + '\'', 490, + '(', 480, + ')', 481, + ',', 494, + '.', 261, + ':', 296, + ';', 252, + '^', 478, + '`', 491, + 'a', 377, + 'c', 374, + 'd', 412, + 'e', 378, + 'f', 364, + 'i', 349, + 'm', 312, + 'n', 323, + 'r', 332, + 's', 453, + 't', 359, + 'u', 395, + 'w', 357, + '|', 465, + '+', 311, + '-', 311, + ); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(264); if (('\t' <= lookahead && lookahead <= '\r') || - (28 <= lookahead && lookahead <= ' ') || - lookahead == 5760 || - (8192 <= lookahead && lookahead <= 8198) || - (8200 <= lookahead && lookahead <= 8202) || - lookahead == 8232 || - lookahead == 8233 || - lookahead == 8287 || - lookahead == 12288) ADVANCE(250); + (0x1c <= lookahead && lookahead <= ' ') || + lookahead == 0x1680 || + (0x2000 <= lookahead && lookahead <= 0x2006) || + (0x2008 <= lookahead && lookahead <= 0x200a) || + lookahead == 0x2028 || + lookahead == 0x2029 || + lookahead == 0x205f || + lookahead == 0x3000) ADVANCE(250); if (lookahead != 0 && - (lookahead < '[' || ']' < lookahead) && + (lookahead < '[' || '^' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(477); END_STATE(); case 12: - if (lookahead == '"') ADVANCE(299); - if (lookahead == '#') ADVANCE(254); - if (lookahead == '\'') ADVANCE(492); - if (lookahead == '(') ADVANCE(480); - if (lookahead == ')') ADVANCE(481); - if (lookahead == ',') ADVANCE(496); - if (lookahead == '.') ADVANCE(261); - if (lookahead == ':') ADVANCE(296); - if (lookahead == ';') ADVANCE(252); - if (lookahead == '^') ADVANCE(478); - if (lookahead == '`') ADVANCE(493); - if (lookahead == 'a') ADVANCE(377); - if (lookahead == 'c') ADVANCE(374); - if (lookahead == 'd') ADVANCE(285); - if (lookahead == 'e') ADVANCE(378); - if (lookahead == 'f') ADVANCE(282); - if (lookahead == 'i') ADVANCE(349); - if (lookahead == 'm') ADVANCE(312); - if (lookahead == 'n') ADVANCE(323); - if (lookahead == 'r') ADVANCE(332); - if (lookahead == 's') ADVANCE(292); - if (lookahead == 't') ADVANCE(359); - if (lookahead == 'u') ADVANCE(395); - if (lookahead == 'w') ADVANCE(357); - if (lookahead == '|') ADVANCE(465); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(311); - if (lookahead == 'D' || - lookahead == 'F' || - lookahead == 'L' || - lookahead == 'S' || - lookahead == 'l') ADVANCE(294); + ADVANCE_MAP( + '"', 299, + '#', 254, + '\'', 490, + '(', 480, + ')', 481, + ',', 494, + '.', 261, + ':', 296, + ';', 252, + '^', 478, + '`', 491, + 'a', 377, + 'c', 374, + 'd', 285, + 'e', 378, + 'f', 282, + 'i', 349, + 'm', 312, + 'n', 323, + 'r', 332, + 's', 292, + 't', 359, + 'u', 395, + 'w', 357, + '|', 465, + '+', 311, + '-', 311, + 'D', 294, + 'F', 294, + 'L', 294, + 'S', 294, + 'l', 294, + ); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(264); if (('\t' <= lookahead && lookahead <= '\r') || - (28 <= lookahead && lookahead <= ' ') || - lookahead == 5760 || - (8192 <= lookahead && lookahead <= 8198) || - (8200 <= lookahead && lookahead <= 8202) || - lookahead == 8232 || - lookahead == 8233 || - lookahead == 8287 || - lookahead == 12288) ADVANCE(250); + (0x1c <= lookahead && lookahead <= ' ') || + lookahead == 0x1680 || + (0x2000 <= lookahead && lookahead <= 0x2006) || + (0x2008 <= lookahead && lookahead <= 0x200a) || + lookahead == 0x2028 || + lookahead == 0x2029 || + lookahead == 0x205f || + lookahead == 0x3000) ADVANCE(250); if (lookahead != 0 && - (lookahead < '[' || ']' < lookahead) && + (lookahead < '[' || '^' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(477); END_STATE(); case 13: - if (lookahead == '"') ADVANCE(299); - if (lookahead == '#') ADVANCE(254); - if (lookahead == '\'') ADVANCE(492); - if (lookahead == '(') ADVANCE(480); - if (lookahead == ')') ADVANCE(481); - if (lookahead == ',') ADVANCE(496); - if (lookahead == '.') ADVANCE(261); - if (lookahead == ':') ADVANCE(296); - if (lookahead == ';') ADVANCE(252); - if (lookahead == '^') ADVANCE(478); - if (lookahead == '`') ADVANCE(493); - if (lookahead == 'c') ADVANCE(375); - if (lookahead == 'd') ADVANCE(281); - if (lookahead == 'l') ADVANCE(280); - if (lookahead == 'n') ADVANCE(363); - if (lookahead == '|') ADVANCE(465); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(311); - if (lookahead == 'D' || - lookahead == 'F' || - lookahead == 'L' || - lookahead == 'S' || - lookahead == 'f' || - lookahead == 's') ADVANCE(294); + ADVANCE_MAP( + '"', 299, + '#', 254, + '\'', 490, + '(', 480, + ')', 481, + ',', 494, + '.', 261, + ':', 296, + ';', 252, + '^', 478, + '`', 491, + 'c', 375, + 'd', 281, + 'l', 280, + 'n', 363, + '|', 465, + '+', 311, + '-', 311, + 'D', 294, + 'F', 294, + 'L', 294, + 'S', 294, + 'f', 294, + 's', 294, + ); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(264); if (('\t' <= lookahead && lookahead <= '\r') || - (28 <= lookahead && lookahead <= ' ') || - lookahead == 5760 || - (8192 <= lookahead && lookahead <= 8198) || - (8200 <= lookahead && lookahead <= 8202) || - lookahead == 8232 || - lookahead == 8233 || - lookahead == 8287 || - lookahead == 12288) ADVANCE(250); + (0x1c <= lookahead && lookahead <= ' ') || + lookahead == 0x1680 || + (0x2000 <= lookahead && lookahead <= 0x2006) || + (0x2008 <= lookahead && lookahead <= 0x200a) || + lookahead == 0x2028 || + lookahead == 0x2029 || + lookahead == 0x205f || + lookahead == 0x3000) ADVANCE(250); if (lookahead != 0 && - (lookahead < '[' || ']' < lookahead) && + (lookahead < '[' || '^' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(477); END_STATE(); case 14: - if (lookahead == '"') ADVANCE(299); - if (lookahead == '#') ADVANCE(254); - if (lookahead == '\'') ADVANCE(492); - if (lookahead == '(') ADVANCE(480); - if (lookahead == ')') ADVANCE(481); - if (lookahead == ',') ADVANCE(496); - if (lookahead == '.') ADVANCE(261); - if (lookahead == ':') ADVANCE(296); - if (lookahead == ';') ADVANCE(252); - if (lookahead == '^') ADVANCE(478); - if (lookahead == '`') ADVANCE(493); - if (lookahead == 'c') ADVANCE(375); - if (lookahead == 'd') ADVANCE(337); - if (lookahead == 'l') ADVANCE(318); - if (lookahead == 'n') ADVANCE(363); - if (lookahead == '|') ADVANCE(465); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(311); + ADVANCE_MAP( + '"', 299, + '#', 254, + '\'', 490, + '(', 480, + ')', 481, + ',', 494, + '.', 261, + ':', 296, + ';', 252, + '^', 478, + '`', 491, + 'c', 375, + 'd', 337, + 'l', 318, + 'n', 363, + '|', 465, + '+', 311, + '-', 311, + ); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(264); if (('\t' <= lookahead && lookahead <= '\r') || - (28 <= lookahead && lookahead <= ' ') || - lookahead == 5760 || - (8192 <= lookahead && lookahead <= 8198) || - (8200 <= lookahead && lookahead <= 8202) || - lookahead == 8232 || - lookahead == 8233 || - lookahead == 8287 || - lookahead == 12288) ADVANCE(250); + (0x1c <= lookahead && lookahead <= ' ') || + lookahead == 0x1680 || + (0x2000 <= lookahead && lookahead <= 0x2006) || + (0x2008 <= lookahead && lookahead <= 0x200a) || + lookahead == 0x2028 || + lookahead == 0x2029 || + lookahead == 0x205f || + lookahead == 0x3000) ADVANCE(250); if (lookahead != 0 && - (lookahead < '[' || ']' < lookahead) && + (lookahead < '[' || '^' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(477); END_STATE(); case 15: - if (lookahead == '"') ADVANCE(299); - if (lookahead == '#') ADVANCE(254); - if (lookahead == '\'') ADVANCE(492); - if (lookahead == '(') ADVANCE(480); - if (lookahead == ',') ADVANCE(496); - if (lookahead == '.') ADVANCE(261); - if (lookahead == ':') ADVANCE(296); - if (lookahead == ';') ADVANCE(252); - if (lookahead == '=') ADVANCE(562); - if (lookahead == '^') ADVANCE(478); - if (lookahead == '`') ADVANCE(493); - if (lookahead == 'a') ADVANCE(321); - if (lookahead == 'b') ADVANCE(335); - if (lookahead == 'c') ADVANCE(375); - if (lookahead == 'd') ADVANCE(288); - if (lookahead == 'f') ADVANCE(291); - if (lookahead == 'i') ADVANCE(400); - if (lookahead == 'n') ADVANCE(363); - if (lookahead == 'o') ADVANCE(401); - if (lookahead == 't') ADVANCE(361); - if (lookahead == 'u') ADVANCE(427); - if (lookahead == '|') ADVANCE(465); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(311); - if (lookahead == 'D' || - lookahead == 'F' || - lookahead == 'L' || - lookahead == 'S' || - lookahead == 'l' || - lookahead == 's') ADVANCE(294); + ADVANCE_MAP( + '"', 299, + '#', 254, + '\'', 490, + '(', 480, + ',', 494, + '.', 261, + ':', 296, + ';', 252, + '=', 561, + '^', 478, + '`', 491, + 'a', 321, + 'b', 335, + 'c', 375, + 'd', 288, + 'f', 291, + 'i', 400, + 'n', 363, + 'o', 401, + 't', 361, + 'u', 427, + '|', 465, + '+', 311, + '-', 311, + 'D', 294, + 'F', 294, + 'L', 294, + 'S', 294, + 'l', 294, + 's', 294, + ); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(264); if (('\t' <= lookahead && lookahead <= '\r') || - (28 <= lookahead && lookahead <= ' ') || - lookahead == 5760 || - (8192 <= lookahead && lookahead <= 8198) || - (8200 <= lookahead && lookahead <= 8202) || - lookahead == 8232 || - lookahead == 8233 || - lookahead == 8287 || - lookahead == 12288) ADVANCE(250); + (0x1c <= lookahead && lookahead <= ' ') || + lookahead == 0x1680 || + (0x2000 <= lookahead && lookahead <= 0x2006) || + (0x2008 <= lookahead && lookahead <= 0x200a) || + lookahead == 0x2028 || + lookahead == 0x2029 || + lookahead == 0x205f || + lookahead == 0x3000) ADVANCE(250); if (lookahead != 0 && - lookahead != ')' && - (lookahead < '[' || ']' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '[' || '^' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(477); END_STATE(); case 16: - if (lookahead == '"') ADVANCE(299); - if (lookahead == '#') ADVANCE(254); - if (lookahead == '\'') ADVANCE(492); - if (lookahead == '(') ADVANCE(480); - if (lookahead == ',') ADVANCE(496); - if (lookahead == '.') ADVANCE(261); - if (lookahead == ':') ADVANCE(296); - if (lookahead == ';') ADVANCE(252); - if (lookahead == '=') ADVANCE(562); - if (lookahead == '^') ADVANCE(478); - if (lookahead == '`') ADVANCE(493); - if (lookahead == 'a') ADVANCE(321); - if (lookahead == 'b') ADVANCE(335); - if (lookahead == 'c') ADVANCE(375); - if (lookahead == 'd') ADVANCE(416); - if (lookahead == 'f') ADVANCE(433); - if (lookahead == 'i') ADVANCE(400); - if (lookahead == 'n') ADVANCE(363); - if (lookahead == 'o') ADVANCE(401); - if (lookahead == 't') ADVANCE(361); - if (lookahead == 'u') ADVANCE(427); - if (lookahead == '|') ADVANCE(465); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(311); + ADVANCE_MAP( + '"', 299, + '#', 254, + '\'', 490, + '(', 480, + ',', 494, + '.', 261, + ':', 296, + ';', 252, + '=', 561, + '^', 478, + '`', 491, + 'a', 321, + 'b', 335, + 'c', 375, + 'd', 416, + 'f', 433, + 'i', 400, + 'n', 363, + 'o', 401, + 't', 361, + 'u', 427, + '|', 465, + '+', 311, + '-', 311, + ); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(264); if (('\t' <= lookahead && lookahead <= '\r') || - (28 <= lookahead && lookahead <= ' ') || - lookahead == 5760 || - (8192 <= lookahead && lookahead <= 8198) || - (8200 <= lookahead && lookahead <= 8202) || - lookahead == 8232 || - lookahead == 8233 || - lookahead == 8287 || - lookahead == 12288) ADVANCE(250); + (0x1c <= lookahead && lookahead <= ' ') || + lookahead == 0x1680 || + (0x2000 <= lookahead && lookahead <= 0x2006) || + (0x2008 <= lookahead && lookahead <= 0x200a) || + lookahead == 0x2028 || + lookahead == 0x2029 || + lookahead == 0x205f || + lookahead == 0x3000) ADVANCE(250); if (lookahead != 0 && - lookahead != ')' && - (lookahead < '[' || ']' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '[' || '^' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(477); END_STATE(); case 17: - if (lookahead == '"') ADVANCE(299); - if (lookahead == '#') ADVANCE(256); - if (lookahead == '\'') ADVANCE(492); - if (lookahead == '(') ADVANCE(480); - if (lookahead == ',') ADVANCE(496); - if (lookahead == '.') ADVANCE(261); - if (lookahead == ':') ADVANCE(296); - if (lookahead == '\\') ADVANCE(239); - if (lookahead == '^') ADVANCE(478); - if (lookahead == '`') ADVANCE(493); - if (lookahead == 'c') ADVANCE(375); - if (lookahead == 'n') ADVANCE(363); - if (lookahead == '{') ADVANCE(482); - if (lookahead == '|') ADVANCE(465); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(311); + ADVANCE_MAP( + '"', 299, + '#', 256, + '\'', 490, + '(', 480, + ',', 494, + '.', 261, + ':', 296, + '\\', 239, + '^', 478, + '`', 491, + 'c', 375, + 'n', 363, + '{', 482, + '|', 465, + '+', 311, + '-', 311, + ); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(263); - if (!aux_sym_sym_lit_token1_character_set_1(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 18: - if (lookahead == '"') ADVANCE(299); - if (lookahead == '#') ADVANCE(255); - if (lookahead == '\'') ADVANCE(492); - if (lookahead == '(') ADVANCE(480); - if (lookahead == ',') ADVANCE(39); - if (lookahead == ':') ADVANCE(296); - if (lookahead == ';') ADVANCE(252); - if (lookahead == '^') ADVANCE(478); - if (lookahead == '{') ADVANCE(482); + ADVANCE_MAP( + '"', 299, + '#', 255, + '\'', 490, + '(', 480, + ',', 39, + ':', 296, + ';', 252, + '^', 478, + '{', 482, + ); if (('\t' <= lookahead && lookahead <= '\r') || - (28 <= lookahead && lookahead <= ' ') || - lookahead == 5760 || - (8192 <= lookahead && lookahead <= 8198) || - (8200 <= lookahead && lookahead <= 8202) || - lookahead == 8232 || - lookahead == 8233 || - lookahead == 8287 || - lookahead == 12288) ADVANCE(250); + (0x1c <= lookahead && lookahead <= ' ') || + lookahead == 0x1680 || + (0x2000 <= lookahead && lookahead <= 0x2006) || + (0x2008 <= lookahead && lookahead <= 0x200a) || + lookahead == 0x2028 || + lookahead == 0x2029 || + lookahead == 0x205f || + lookahead == 0x3000) ADVANCE(250); if (lookahead != 0 && - lookahead != ')' && - (lookahead < '[' || ']' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '[' || '^' < lookahead) && lookahead != '`' && lookahead != '}') ADVANCE(477); END_STATE(); case 19: - if (lookahead == '"') ADVANCE(299); - if (lookahead == '#') ADVANCE(5); - if (lookahead == '(') ADVANCE(480); - if (lookahead == ',') ADVANCE(495); - if (lookahead == ':') ADVANCE(296); - if (lookahead == ';') ADVANCE(252); - if (lookahead == '^') ADVANCE(478); - if (lookahead == '{') ADVANCE(482); - if (lookahead == 'D' || - lookahead == 'F' || - lookahead == 'L' || - lookahead == 'S' || - lookahead == 'd' || - lookahead == 'f' || - lookahead == 'l' || - lookahead == 's') ADVANCE(294); + ADVANCE_MAP( + '"', 299, + '#', 5, + '(', 480, + ',', 493, + ':', 296, + ';', 252, + '^', 478, + '{', 482, + 'D', 294, + 'F', 294, + 'L', 294, + 'S', 294, + 'd', 294, + 'f', 294, + 'l', 294, + 's', 294, + ); if (('\t' <= lookahead && lookahead <= '\r') || - (28 <= lookahead && lookahead <= ' ') || - lookahead == 5760 || - (8192 <= lookahead && lookahead <= 8198) || - (8200 <= lookahead && lookahead <= 8202) || - lookahead == 8232 || - lookahead == 8233 || - lookahead == 8287 || - lookahead == 12288) ADVANCE(250); + (0x1c <= lookahead && lookahead <= ' ') || + lookahead == 0x1680 || + (0x2000 <= lookahead && lookahead <= 0x2006) || + (0x2008 <= lookahead && lookahead <= 0x200a) || + lookahead == 0x2028 || + lookahead == 0x2029 || + lookahead == 0x205f || + lookahead == 0x3000) ADVANCE(250); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '[' || ']' < lookahead) && + (lookahead < '[' || '^' < lookahead) && lookahead != '`' && lookahead != '}') ADVANCE(477); END_STATE(); case 20: - if (lookahead == '"') ADVANCE(299); - if (lookahead == '#') ADVANCE(5); - if (lookahead == '(') ADVANCE(480); - if (lookahead == ',') ADVANCE(495); - if (lookahead == ':') ADVANCE(296); - if (lookahead == ';') ADVANCE(252); - if (lookahead == '^') ADVANCE(478); - if (lookahead == '{') ADVANCE(482); + ADVANCE_MAP( + '"', 299, + '#', 5, + '(', 480, + ',', 493, + ':', 296, + ';', 252, + '^', 478, + '{', 482, + ); if (('\t' <= lookahead && lookahead <= '\r') || - (28 <= lookahead && lookahead <= ' ') || - lookahead == 5760 || - (8192 <= lookahead && lookahead <= 8198) || - (8200 <= lookahead && lookahead <= 8202) || - lookahead == 8232 || - lookahead == 8233 || - lookahead == 8287 || - lookahead == 12288) ADVANCE(250); + (0x1c <= lookahead && lookahead <= ' ') || + lookahead == 0x1680 || + (0x2000 <= lookahead && lookahead <= 0x2006) || + (0x2008 <= lookahead && lookahead <= 0x200a) || + lookahead == 0x2028 || + lookahead == 0x2029 || + lookahead == 0x205f || + lookahead == 0x3000) ADVANCE(250); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '[' || ']' < lookahead) && + (lookahead < '[' || '^' < lookahead) && lookahead != '`' && lookahead != '}') ADVANCE(477); END_STATE(); @@ -7670,230 +7196,244 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0) ADVANCE(305); END_STATE(); case 22: - if (lookahead == '"') ADVANCE(23); - if (lookahead == '#') ADVANCE(6); - if (lookahead == '(') ADVANCE(480); - if (lookahead == ')') ADVANCE(481); - if (lookahead == ',') ADVANCE(495); - if (lookahead == '/') ADVANCE(523); - if (lookahead == ':') ADVANCE(296); - if (lookahead == ';') ADVANCE(252); - if (lookahead == '=') ADVANCE(561); - if (lookahead == '\\') ADVANCE(239); - if (lookahead == '^') ADVANCE(478); - if (lookahead == 'a') ADVANCE(52); - if (lookahead == 'b') ADVANCE(67); - if (lookahead == 'c') ADVANCE(126); - if (lookahead == 'd') ADVANCE(286); - if (lookahead == 'e') ADVANCE(136); - if (lookahead == 'f') ADVANCE(284); - if (lookahead == 'i') ADVANCE(90); - if (lookahead == 'm') ADVANCE(44); - if (lookahead == 'n') ADVANCE(57); - if (lookahead == 'o') ADVANCE(146); - if (lookahead == 'r') ADVANCE(68); - if (lookahead == 's') ADVANCE(293); - if (lookahead == 't') ADVANCE(105); - if (lookahead == 'u') ADVANCE(148); - if (lookahead == 'w') ADVANCE(102); - if (lookahead == '{') ADVANCE(482); - if (lookahead == 'D' || - lookahead == 'F' || - lookahead == 'L' || - lookahead == 'S' || - lookahead == 'l') ADVANCE(279); + ADVANCE_MAP( + '"', 23, + '#', 7, + '(', 480, + ')', 481, + ',', 493, + '/', 522, + ':', 296, + ';', 252, + '=', 560, + '\\', 239, + '^', 478, + 'a', 52, + 'b', 67, + 'c', 126, + 'd', 286, + 'e', 136, + 'f', 284, + 'i', 90, + 'm', 44, + 'n', 57, + 'o', 146, + 'r', 68, + 's', 293, + 't', 105, + 'u', 148, + 'w', 102, + '{', 482, + 'D', 279, + 'F', 279, + 'L', 279, + 'S', 279, + 'l', 279, + ); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(236); if (('\t' <= lookahead && lookahead <= '\r') || - (28 <= lookahead && lookahead <= ' ') || - lookahead == 5760 || - (8192 <= lookahead && lookahead <= 8198) || - (8200 <= lookahead && lookahead <= 8202) || - lookahead == 8232 || - lookahead == 8233 || - lookahead == 8287 || - lookahead == 12288) ADVANCE(250); + (0x1c <= lookahead && lookahead <= ' ') || + lookahead == 0x1680 || + (0x2000 <= lookahead && lookahead <= 0x2006) || + (0x2008 <= lookahead && lookahead <= 0x200a) || + lookahead == 0x2028 || + lookahead == 0x2029 || + lookahead == 0x205f || + lookahead == 0x3000) ADVANCE(250); END_STATE(); case 23: - if (lookahead == '"') ADVANCE(486); + if (lookahead == '"') ADVANCE(616); if (lookahead == '\\') ADVANCE(245); if (lookahead != 0) ADVANCE(23); END_STATE(); case 24: - if (lookahead == '#') ADVANCE(497); + if (lookahead == '#') ADVANCE(495); if (lookahead != 0) ADVANCE(229); END_STATE(); case 25: - if (lookahead == '#') ADVANCE(7); - if (lookahead == '(') ADVANCE(480); - if (lookahead == ')') ADVANCE(481); - if (lookahead == ',') ADVANCE(495); - if (lookahead == ':') ADVANCE(296); - if (lookahead == ';') ADVANCE(252); - if (lookahead == '^') ADVANCE(478); - if (lookahead == 'a') ADVANCE(124); - if (lookahead == 'c') ADVANCE(126); - if (lookahead == 'd') ADVANCE(287); - if (lookahead == 'e') ADVANCE(136); - if (lookahead == 'f') ADVANCE(283); - if (lookahead == 'i') ADVANCE(91); - if (lookahead == 'm') ADVANCE(44); - if (lookahead == 'n') ADVANCE(57); - if (lookahead == 'r') ADVANCE(68); - if (lookahead == 's') ADVANCE(293); - if (lookahead == 't') ADVANCE(107); - if (lookahead == 'u') ADVANCE(147); - if (lookahead == 'w') ADVANCE(102); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(26); - if (lookahead == 'D' || - lookahead == 'F' || - lookahead == 'L' || - lookahead == 'S' || - lookahead == 'l') ADVANCE(279); + ADVANCE_MAP( + '#', 6, + '(', 480, + ')', 481, + ',', 493, + ':', 296, + ';', 252, + '^', 478, + 'a', 124, + 'c', 126, + 'd', 287, + 'e', 136, + 'f', 283, + 'i', 91, + 'm', 44, + 'n', 57, + 'r', 68, + 's', 293, + 't', 107, + 'u', 147, + 'w', 102, + '+', 26, + '-', 26, + 'D', 279, + 'F', 279, + 'L', 279, + 'S', 279, + 'l', 279, + ); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(265); if (('\t' <= lookahead && lookahead <= '\r') || - (28 <= lookahead && lookahead <= ' ') || - lookahead == 5760 || - (8192 <= lookahead && lookahead <= 8198) || - (8200 <= lookahead && lookahead <= 8202) || - lookahead == 8232 || - lookahead == 8233 || - lookahead == 8287 || - lookahead == 12288) ADVANCE(250); + (0x1c <= lookahead && lookahead <= ' ') || + lookahead == 0x1680 || + (0x2000 <= lookahead && lookahead <= 0x2006) || + (0x2008 <= lookahead && lookahead <= 0x200a) || + lookahead == 0x2028 || + lookahead == 0x2029 || + lookahead == 0x205f || + lookahead == 0x3000) ADVANCE(250); END_STATE(); case 26: if (lookahead == '#') ADVANCE(237); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(265); END_STATE(); case 27: - if (lookahead == '#') ADVANCE(255); - if (lookahead == '\'') ADVANCE(492); - if (lookahead == '(') ADVANCE(480); - if (lookahead == ')') ADVANCE(481); - if (lookahead == ',') ADVANCE(39); - if (lookahead == ';') ADVANCE(252); - if (lookahead == '^') ADVANCE(478); - if (lookahead == '{') ADVANCE(482); - if (lookahead == 'D' || - lookahead == 'F' || - lookahead == 'L' || - lookahead == 'S' || - lookahead == 'd' || - lookahead == 'f' || - lookahead == 'l' || - lookahead == 's') ADVANCE(279); + ADVANCE_MAP( + '#', 255, + '\'', 490, + '(', 480, + ')', 481, + ',', 39, + ';', 252, + '^', 478, + '{', 482, + 'D', 279, + 'F', 279, + 'L', 279, + 'S', 279, + 'd', 279, + 'f', 279, + 'l', 279, + 's', 279, + ); if (('\t' <= lookahead && lookahead <= '\r') || - (28 <= lookahead && lookahead <= ' ') || - lookahead == 5760 || - (8192 <= lookahead && lookahead <= 8198) || - (8200 <= lookahead && lookahead <= 8202) || - lookahead == 8232 || - lookahead == 8233 || - lookahead == 8287 || - lookahead == 12288) ADVANCE(250); + (0x1c <= lookahead && lookahead <= ' ') || + lookahead == 0x1680 || + (0x2000 <= lookahead && lookahead <= 0x2006) || + (0x2008 <= lookahead && lookahead <= 0x200a) || + lookahead == 0x2028 || + lookahead == 0x2029 || + lookahead == 0x205f || + lookahead == 0x3000) ADVANCE(250); END_STATE(); case 28: - if (lookahead == '#') ADVANCE(255); - if (lookahead == '\'') ADVANCE(492); - if (lookahead == '(') ADVANCE(480); - if (lookahead == ',') ADVANCE(39); - if (lookahead == ':') ADVANCE(296); - if (lookahead == ';') ADVANCE(252); - if (lookahead == '=') ADVANCE(561); - if (lookahead == '^') ADVANCE(478); - if (lookahead == 'a') ADVANCE(51); - if (lookahead == 'b') ADVANCE(67); - if (lookahead == 'c') ADVANCE(125); - if (lookahead == 'd') ADVANCE(289); - if (lookahead == 'f') ADVANCE(290); - if (lookahead == 'i') ADVANCE(154); - if (lookahead == 'o') ADVANCE(146); - if (lookahead == 't') ADVANCE(108); - if (lookahead == 'u') ADVANCE(182); - if (lookahead == '{') ADVANCE(482); - if (lookahead == 'D' || - lookahead == 'F' || - lookahead == 'L' || - lookahead == 'S' || - lookahead == 'l' || - lookahead == 's') ADVANCE(279); + ADVANCE_MAP( + '#', 255, + '\'', 490, + '(', 480, + ',', 39, + ':', 296, + ';', 252, + '=', 560, + '^', 478, + 'a', 51, + 'b', 67, + 'c', 125, + 'd', 289, + 'f', 290, + 'i', 154, + 'o', 146, + 't', 108, + 'u', 182, + '{', 482, + 'D', 279, + 'F', 279, + 'L', 279, + 'S', 279, + 'l', 279, + 's', 279, + ); if (('\t' <= lookahead && lookahead <= '\r') || - (28 <= lookahead && lookahead <= ' ') || - lookahead == 5760 || - (8192 <= lookahead && lookahead <= 8198) || - (8200 <= lookahead && lookahead <= 8202) || - lookahead == 8232 || - lookahead == 8233 || - lookahead == 8287 || - lookahead == 12288) ADVANCE(250); + (0x1c <= lookahead && lookahead <= ' ') || + lookahead == 0x1680 || + (0x2000 <= lookahead && lookahead <= 0x2006) || + (0x2008 <= lookahead && lookahead <= 0x200a) || + lookahead == 0x2028 || + lookahead == 0x2029 || + lookahead == 0x205f || + lookahead == 0x3000) ADVANCE(250); END_STATE(); case 29: - if (lookahead == '#') ADVANCE(257); - if (lookahead == '\'') ADVANCE(492); - if (lookahead == '(') ADVANCE(480); - if (lookahead == ',') ADVANCE(39); - if (lookahead == '=') ADVANCE(562); - if (lookahead == '^') ADVANCE(478); - if (lookahead == 'a') ADVANCE(321); - if (lookahead == 'b') ADVANCE(335); - if (lookahead == 'd') ADVANCE(416); - if (lookahead == 'f') ADVANCE(433); - if (lookahead == 'i') ADVANCE(400); - if (lookahead == 'o') ADVANCE(401); - if (lookahead == 't') ADVANCE(361); - if (lookahead == 'u') ADVANCE(427); - if (lookahead == '{') ADVANCE(482); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(477); + ADVANCE_MAP( + '#', 257, + '\'', 490, + '(', 480, + ',', 39, + '=', 561, + '^', 478, + 'a', 321, + 'b', 335, + 'd', 416, + 'f', 433, + 'i', 400, + 'o', 401, + 't', 361, + 'u', 427, + '{', 482, + ); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 30: - if (lookahead == '#') ADVANCE(8); - if (lookahead == '(') ADVANCE(480); - if (lookahead == ',') ADVANCE(495); - if (lookahead == ':') ADVANCE(295); - if (lookahead == ';') ADVANCE(252); - if (lookahead == '^') ADVANCE(478); - if (lookahead == 'c') ADVANCE(125); - if (lookahead == 'i') ADVANCE(163); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(26); - if (lookahead == 'D' || - lookahead == 'F' || - lookahead == 'L' || - lookahead == 'S' || - lookahead == 'd' || - lookahead == 'f' || - lookahead == 'l' || - lookahead == 's') ADVANCE(279); + ADVANCE_MAP( + '#', 8, + '(', 480, + ',', 493, + ':', 295, + ';', 252, + '^', 478, + 'c', 125, + 'i', 163, + '+', 26, + '-', 26, + 'D', 279, + 'F', 279, + 'L', 279, + 'S', 279, + 'd', 279, + 'f', 279, + 'l', 279, + 's', 279, + ); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(265); if (('\t' <= lookahead && lookahead <= '\r') || - (28 <= lookahead && lookahead <= ' ') || - lookahead == 5760 || - (8192 <= lookahead && lookahead <= 8198) || - (8200 <= lookahead && lookahead <= 8202) || - lookahead == 8232 || - lookahead == 8233 || - lookahead == 8287 || - lookahead == 12288) ADVANCE(250); + (0x1c <= lookahead && lookahead <= ' ') || + lookahead == 0x1680 || + (0x2000 <= lookahead && lookahead <= 0x2006) || + (0x2008 <= lookahead && lookahead <= 0x200a) || + lookahead == 0x2028 || + lookahead == 0x2029 || + lookahead == 0x205f || + lookahead == 0x3000) ADVANCE(250); END_STATE(); case 31: if (lookahead == '#') ADVANCE(228); - if (lookahead == '/') ADVANCE(523); + if (lookahead == '/') ADVANCE(522); if (lookahead == ':') ADVANCE(296); - if (!aux_sym__sym_lit_without_slash_token1_character_set_1(lookahead)) ADVANCE(617); + if ((!eof && set_contains(aux_sym__sym_lit_without_slash_token1_character_set_1, 18, lookahead))) ADVANCE(617); END_STATE(); case 32: if (lookahead == '#') ADVANCE(228); - if (lookahead == '=') ADVANCE(562); - if (!aux_sym_sym_lit_token1_character_set_3(lookahead)) ADVANCE(477); + if (lookahead == '=') ADVANCE(561); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_1, 17, lookahead))) ADVANCE(477); END_STATE(); case 33: if (lookahead == '#') ADVANCE(228); if (lookahead == 'c') ADVANCE(618); - if (!aux_sym__sym_lit_without_slash_token1_character_set_2(lookahead)) ADVANCE(617); + if ((!eof && set_contains(aux_sym__sym_lit_without_slash_token1_character_set_1, 18, lookahead))) ADVANCE(617); END_STATE(); case 34: if (lookahead == '#') ADVANCE(228); if (lookahead == 'd') ADVANCE(337); if (lookahead == 'l') ADVANCE(424); - if (!aux_sym_sym_lit_token1_character_set_3(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_1, 17, lookahead))) ADVANCE(477); END_STATE(); case 35: if (lookahead == '#') ADVANCE(228); @@ -7901,9 +7441,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'l') ADVANCE(180); END_STATE(); case 36: - if (lookahead == '#') ADVANCE(500); + if (lookahead == '#') ADVANCE(498); if (lookahead != 0 && - lookahead != '\n') ADVANCE(499); + lookahead != '\n') ADVANCE(497); END_STATE(); case 37: if (lookahead == '-') ADVANCE(121); @@ -7912,7 +7452,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(200); END_STATE(); case 39: - if (lookahead == '@') ADVANCE(494); + if (lookahead == '@') ADVANCE(492); END_STATE(); case 40: if (lookahead == 'A') ADVANCE(484); @@ -7965,13 +7505,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'l') ADVANCE(218); if (lookahead == 'n') ADVANCE(59); if (lookahead == 'p') ADVANCE(184); - if (lookahead == 's') ADVANCE(570); + if (lookahead == 's') ADVANCE(569); END_STATE(); case 53: - if (lookahead == 'c') ADVANCE(564); + if (lookahead == 'c') ADVANCE(563); END_STATE(); case 54: - if (lookahead == 'c') ADVANCE(610); + if (lookahead == 'c') ADVANCE(609); END_STATE(); case 55: if (lookahead == 'c') ADVANCE(100); @@ -7987,13 +7527,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'c') ADVANCE(195); END_STATE(); case 59: - if (lookahead == 'd') ADVANCE(568); + if (lookahead == 'd') ADVANCE(567); END_STATE(); case 60: - if (lookahead == 'd') ADVANCE(564); + if (lookahead == 'd') ADVANCE(563); END_STATE(); case 61: - if (lookahead == 'd') ADVANCE(612); + if (lookahead == 'd') ADVANCE(611); END_STATE(); case 62: if (lookahead == 'e') ADVANCE(41); @@ -8013,7 +7553,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 67: if (lookahead == 'e') ADVANCE(114); - if (lookahead == 'y') ADVANCE(557); + if (lookahead == 'y') ADVANCE(556); END_STATE(); case 68: if (lookahead == 'e') ADVANCE(185); @@ -8022,20 +7562,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'e') ADVANCE(151); END_STATE(); case 70: - if (lookahead == 'e') ADVANCE(595); + if (lookahead == 'e') ADVANCE(594); END_STATE(); case 71: - if (lookahead == 'e') ADVANCE(541); + if (lookahead == 'e') ADVANCE(540); END_STATE(); case 72: - if (lookahead == 'e') ADVANCE(577); + if (lookahead == 'e') ADVANCE(576); END_STATE(); case 73: - if (lookahead == 'e') ADVANCE(563); + if (lookahead == 'e') ADVANCE(562); if (lookahead == 'i') ADVANCE(160); END_STATE(); case 74: - if (lookahead == 'e') ADVANCE(525); + if (lookahead == 'e') ADVANCE(524); END_STATE(); case 75: if (lookahead == 'e') ADVANCE(202); @@ -8081,14 +7621,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'e') ADVANCE(165); END_STATE(); case 89: - if (lookahead == 'f') ADVANCE(538); + if (lookahead == 'f') ADVANCE(537); END_STATE(); case 90: - if (lookahead == 'f') ADVANCE(585); - if (lookahead == 'n') ADVANCE(530); + if (lookahead == 'f') ADVANCE(584); + if (lookahead == 'n') ADVANCE(529); END_STATE(); case 91: - if (lookahead == 'f') ADVANCE(585); + if (lookahead == 'f') ADVANCE(584); if (lookahead == 'n') ADVANCE(111); END_STATE(); case 92: @@ -8103,13 +7643,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 't') ADVANCE(168); END_STATE(); case 95: - if (lookahead == 'g') ADVANCE(534); + if (lookahead == 'g') ADVANCE(533); END_STATE(); case 96: - if (lookahead == 'g') ADVANCE(536); + if (lookahead == 'g') ADVANCE(535); END_STATE(); case 97: - if (lookahead == 'g') ADVANCE(563); + if (lookahead == 'g') ADVANCE(562); END_STATE(); case 98: if (lookahead == 'g') ADVANCE(88); @@ -8130,7 +7670,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'i') ADVANCE(209); END_STATE(); case 103: - if (lookahead == 'h') ADVANCE(572); + if (lookahead == 'h') ADVANCE(571); END_STATE(); case 104: if (lookahead == 'h') ADVANCE(42); @@ -8138,7 +7678,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 105: if (lookahead == 'h') ADVANCE(69); - if (lookahead == 'o') ADVANCE(545); + if (lookahead == 'o') ADVANCE(544); END_STATE(); case 106: if (lookahead == 'h') ADVANCE(175); @@ -8148,7 +7688,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 108: if (lookahead == 'h') ADVANCE(85); - if (lookahead == 'o') ADVANCE(545); + if (lookahead == 'o') ADVANCE(544); END_STATE(); case 109: if (lookahead == 'i') ADVANCE(227); @@ -8203,17 +7743,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'l') ADVANCE(218); if (lookahead == 'n') ADVANCE(59); if (lookahead == 'p') ADVANCE(184); - if (lookahead == 's') ADVANCE(570); + if (lookahead == 's') ADVANCE(569); END_STATE(); case 125: - if (lookahead == 'l') ADVANCE(527); + if (lookahead == 'l') ADVANCE(526); END_STATE(); case 126: - if (lookahead == 'l') ADVANCE(527); + if (lookahead == 'l') ADVANCE(526); if (lookahead == 'o') ADVANCE(129); END_STATE(); case 127: - if (lookahead == 'l') ADVANCE(579); + if (lookahead == 'l') ADVANCE(578); END_STATE(); case 128: if (lookahead == 'l') ADVANCE(224); @@ -8251,16 +7791,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'm') ADVANCE(50); END_STATE(); case 139: - if (lookahead == 'm') ADVANCE(565); + if (lookahead == 'm') ADVANCE(564); END_STATE(); case 140: - if (lookahead == 'm') ADVANCE(543); + if (lookahead == 'm') ADVANCE(542); END_STATE(); case 141: - if (lookahead == 'm') ADVANCE(549); + if (lookahead == 'm') ADVANCE(548); END_STATE(); case 142: - if (lookahead == 'm') ADVANCE(553); + if (lookahead == 'm') ADVANCE(552); END_STATE(); case 143: if (lookahead == 'm') ADVANCE(109); @@ -8269,10 +7809,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'n') ADVANCE(208); END_STATE(); case 145: - if (lookahead == 'n') ADVANCE(538); + if (lookahead == 'n') ADVANCE(537); END_STATE(); case 146: - if (lookahead == 'n') ADVANCE(555); + if (lookahead == 'n') ADVANCE(554); END_STATE(); case 147: if (lookahead == 'n') ADVANCE(135); @@ -8286,23 +7826,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'n') ADVANCE(95); END_STATE(); case 150: - if (lookahead == 'n') ADVANCE(559); + if (lookahead == 'n') ADVANCE(558); END_STATE(); case 151: - if (lookahead == 'n') ADVANCE(559); + if (lookahead == 'n') ADVANCE(558); if (lookahead == 'r') ADVANCE(82); END_STATE(); case 152: - if (lookahead == 'n') ADVANCE(583); + if (lookahead == 'n') ADVANCE(582); END_STATE(); case 153: - if (lookahead == 'n') ADVANCE(600); + if (lookahead == 'n') ADVANCE(599); END_STATE(); case 154: - if (lookahead == 'n') ADVANCE(529); + if (lookahead == 'n') ADVANCE(528); END_STATE(); case 155: - if (lookahead == 'n') ADVANCE(606); + if (lookahead == 'n') ADVANCE(605); END_STATE(); case 156: if (lookahead == 'n') ADVANCE(53); @@ -8338,16 +7878,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'n') ADVANCE(94); END_STATE(); case 167: - if (lookahead == 'o') ADVANCE(547); + if (lookahead == 'o') ADVANCE(546); END_STATE(); case 168: - if (lookahead == 'o') ADVANCE(551); + if (lookahead == 'o') ADVANCE(550); END_STATE(); case 169: - if (lookahead == 'o') ADVANCE(597); + if (lookahead == 'o') ADVANCE(596); END_STATE(); case 170: - if (lookahead == 'o') ADVANCE(608); + if (lookahead == 'o') ADVANCE(607); END_STATE(); case 171: if (lookahead == 'o') ADVANCE(122); @@ -8387,7 +7927,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 's') ADVANCE(117); END_STATE(); case 183: - if (lookahead == 'p') ADVANCE(604); + if (lookahead == 'p') ADVANCE(603); END_STATE(); case 184: if (lookahead == 'p') ADVANCE(84); @@ -8397,10 +7937,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 't') ADVANCE(214); END_STATE(); case 186: - if (lookahead == 'r') ADVANCE(566); + if (lookahead == 'r') ADVANCE(565); END_STATE(); case 187: - if (lookahead == 'r') ADVANCE(593); + if (lookahead == 'r') ADVANCE(592); END_STATE(); case 188: if (lookahead == 'r') ADVANCE(75); @@ -8427,16 +7967,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'r') ADVANCE(170); END_STATE(); case 196: - if (lookahead == 's') ADVANCE(532); + if (lookahead == 's') ADVANCE(531); END_STATE(); case 197: - if (lookahead == 's') ADVANCE(589); + if (lookahead == 's') ADVANCE(588); END_STATE(); case 198: - if (lookahead == 's') ADVANCE(587); + if (lookahead == 's') ADVANCE(586); END_STATE(); case 199: - if (lookahead == 's') ADVANCE(591); + if (lookahead == 's') ADVANCE(590); END_STATE(); case 200: if (lookahead == 's') ADVANCE(223); @@ -8457,10 +7997,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 's') ADVANCE(70); END_STATE(); case 206: - if (lookahead == 't') ADVANCE(564); + if (lookahead == 't') ADVANCE(563); END_STATE(); case 207: - if (lookahead == 't') ADVANCE(581); + if (lookahead == 't') ADVANCE(580); END_STATE(); case 208: if (lookahead == 't') ADVANCE(38); @@ -8490,7 +8030,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'v') ADVANCE(71); END_STATE(); case 217: - if (lookahead == 'w') ADVANCE(539); + if (lookahead == 'w') ADVANCE(538); END_STATE(); case 218: if (lookahead == 'w') ADVANCE(45); @@ -8511,10 +8051,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'y') ADVANCE(138); END_STATE(); case 224: - if (lookahead == 'y') ADVANCE(598); + if (lookahead == 'y') ADVANCE(597); END_STATE(); case 225: - if (lookahead == 'y') ADVANCE(602); + if (lookahead == 'y') ADVANCE(601); END_STATE(); case 226: if (lookahead == 'y') ADVANCE(197); @@ -8530,7 +8070,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0) ADVANCE(229); END_STATE(); case 230: - if (lookahead == '|') ADVANCE(498); + if (lookahead == '|') ADVANCE(496); if (lookahead != 0) ADVANCE(230); END_STATE(); case 231: @@ -8549,19 +8089,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 233: if (lookahead == '+' || lookahead == '-') ADVANCE(241); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(267); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(268); END_STATE(); case 234: if (lookahead == '+' || lookahead == '-') ADVANCE(243); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(270); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(274); END_STATE(); case 235: if (lookahead == '+' || lookahead == '-') ADVANCE(242); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(269); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(273); END_STATE(); case 236: if (lookahead == 'A' || @@ -8597,20 +8137,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '1') ADVANCE(266); END_STATE(); case 241: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(267); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(268); END_STATE(); case 242: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(269); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(273); END_STATE(); case 243: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(270); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(274); END_STATE(); case 244: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(271); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(276); END_STATE(); case 245: if (lookahead != 0 && @@ -8622,75 +8162,81 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 247: if (eof) ADVANCE(249); - if (lookahead == '"') ADVANCE(299); - if (lookahead == '#') ADVANCE(254); - if (lookahead == '\'') ADVANCE(492); - if (lookahead == '(') ADVANCE(480); - if (lookahead == ')') ADVANCE(481); - if (lookahead == ',') ADVANCE(496); - if (lookahead == '.') ADVANCE(261); - if (lookahead == ':') ADVANCE(296); - if (lookahead == ';') ADVANCE(252); - if (lookahead == '^') ADVANCE(478); - if (lookahead == '`') ADVANCE(493); - if (lookahead == 'c') ADVANCE(375); - if (lookahead == 'n') ADVANCE(363); - if (lookahead == '{') ADVANCE(482); - if (lookahead == '|') ADVANCE(465); - if (lookahead == '}') ADVANCE(483); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(311); + ADVANCE_MAP( + '"', 299, + '#', 254, + '\'', 490, + '(', 480, + ')', 481, + ',', 494, + '.', 261, + ':', 296, + ';', 252, + '^', 478, + '`', 491, + 'c', 375, + 'n', 363, + '{', 482, + '|', 465, + '}', 483, + '+', 311, + '-', 311, + ); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(264); if (('\t' <= lookahead && lookahead <= '\r') || - (28 <= lookahead && lookahead <= ' ') || - lookahead == 5760 || - (8192 <= lookahead && lookahead <= 8198) || - (8200 <= lookahead && lookahead <= 8202) || - lookahead == 8232 || - lookahead == 8233 || - lookahead == 8287 || - lookahead == 12288) ADVANCE(250); + (0x1c <= lookahead && lookahead <= ' ') || + lookahead == 0x1680 || + (0x2000 <= lookahead && lookahead <= 0x2006) || + (0x2008 <= lookahead && lookahead <= 0x200a) || + lookahead == 0x2028 || + lookahead == 0x2029 || + lookahead == 0x205f || + lookahead == 0x3000) ADVANCE(250); if (lookahead != 0 && - (lookahead < '[' || ']' < lookahead)) ADVANCE(477); + (lookahead < '[' || '^' < lookahead)) ADVANCE(477); END_STATE(); case 248: if (eof) ADVANCE(249); - if (lookahead == '"') ADVANCE(299); - if (lookahead == '#') ADVANCE(254); - if (lookahead == '\'') ADVANCE(492); - if (lookahead == '(') ADVANCE(480); - if (lookahead == ')') ADVANCE(481); - if (lookahead == ',') ADVANCE(496); - if (lookahead == '.') ADVANCE(261); - if (lookahead == ':') ADVANCE(296); - if (lookahead == ';') ADVANCE(252); - if (lookahead == '^') ADVANCE(478); - if (lookahead == '`') ADVANCE(493); - if (lookahead == 'c') ADVANCE(375); - if (lookahead == 'n') ADVANCE(363); - if (lookahead == '|') ADVANCE(465); - if (lookahead == '}') ADVANCE(483); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(311); - if (lookahead == 'D' || - lookahead == 'F' || - lookahead == 'L' || - lookahead == 'S' || - lookahead == 'd' || - lookahead == 'f' || - lookahead == 'l' || - lookahead == 's') ADVANCE(294); + ADVANCE_MAP( + '"', 299, + '#', 254, + '\'', 490, + '(', 480, + ')', 481, + ',', 494, + '.', 261, + ':', 296, + ';', 252, + '^', 478, + '`', 491, + 'c', 375, + 'n', 363, + '|', 465, + '}', 483, + '+', 311, + '-', 311, + 'D', 294, + 'F', 294, + 'L', 294, + 'S', 294, + 'd', 294, + 'f', 294, + 'l', 294, + 's', 294, + ); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(264); if (('\t' <= lookahead && lookahead <= '\r') || - (28 <= lookahead && lookahead <= ' ') || - lookahead == 5760 || - (8192 <= lookahead && lookahead <= 8198) || - (8200 <= lookahead && lookahead <= 8202) || - lookahead == 8232 || - lookahead == 8233 || - lookahead == 8287 || - lookahead == 12288) ADVANCE(250); + (0x1c <= lookahead && lookahead <= ' ') || + lookahead == 0x1680 || + (0x2000 <= lookahead && lookahead <= 0x2006) || + (0x2008 <= lookahead && lookahead <= 0x200a) || + lookahead == 0x2028 || + lookahead == 0x2029 || + lookahead == 0x205f || + lookahead == 0x3000) ADVANCE(250); if (lookahead != 0 && - (lookahead < '[' || ']' < lookahead) && - lookahead != '{') ADVANCE(477); + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(477); END_STATE(); case 249: ACCEPT_TOKEN(ts_builtin_sym_end); @@ -8698,14 +8244,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 250: ACCEPT_TOKEN(sym__ws); if (('\t' <= lookahead && lookahead <= '\r') || - (28 <= lookahead && lookahead <= ' ') || - lookahead == 5760 || - (8192 <= lookahead && lookahead <= 8198) || - (8200 <= lookahead && lookahead <= 8202) || - lookahead == 8232 || - lookahead == 8233 || - lookahead == 8287 || - lookahead == 12288) ADVANCE(250); + (0x1c <= lookahead && lookahead <= ' ') || + lookahead == 0x1680 || + (0x2000 <= lookahead && lookahead <= 0x2006) || + (0x2008 <= lookahead && lookahead <= 0x200a) || + lookahead == 0x2028 || + lookahead == 0x2029 || + lookahead == 0x205f || + lookahead == 0x3000) ADVANCE(250); END_STATE(); case 251: ACCEPT_TOKEN(sym_comment); @@ -8720,81 +8266,89 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 254: ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '!') ADVANCE(252); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '+') ADVANCE(620); - if (lookahead == '-') ADVANCE(621); - if (lookahead == '0') ADVANCE(40); - if (lookahead == '?') ADVANCE(488); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(232); - if (lookahead == 'C') ADVANCE(622); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(233); - if (lookahead == 'P') ADVANCE(615); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(234); - if (lookahead == '^') ADVANCE(479); - if (lookahead == '_') ADVANCE(253); - if (lookahead == 'c') ADVANCE(623); - if (lookahead == 'p') ADVANCE(616); - if (lookahead == '|') ADVANCE(229); + ADVANCE_MAP( + '!', 252, + '\'', 489, + '+', 620, + '-', 621, + '0', 40, + '?', 487, + 'C', 622, + 'P', 614, + '^', 479, + '_', 253, + 'c', 623, + 'p', 615, + '|', 229, + 'B', 232, + 'b', 232, + 'O', 233, + 'o', 233, + 'X', 234, + 'x', 234, + ); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(231); END_STATE(); case 255: ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '!') ADVANCE(252); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '+') ADVANCE(620); - if (lookahead == '-') ADVANCE(621); - if (lookahead == '?') ADVANCE(488); - if (lookahead == 'C') ADVANCE(622); - if (lookahead == '^') ADVANCE(479); - if (lookahead == '_') ADVANCE(253); - if (lookahead == 'c') ADVANCE(623); - if (lookahead == '|') ADVANCE(229); + ADVANCE_MAP( + '!', 252, + '\'', 489, + '+', 620, + '-', 621, + '?', 487, + 'C', 622, + '^', 479, + '_', 253, + 'c', 623, + '|', 229, + ); END_STATE(); case 256: ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '+') ADVANCE(620); - if (lookahead == '-') ADVANCE(621); - if (lookahead == '0') ADVANCE(40); - if (lookahead == '?') ADVANCE(488); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(232); - if (lookahead == 'C') ADVANCE(622); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(233); - if (lookahead == 'P') ADVANCE(615); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(234); - if (lookahead == '^') ADVANCE(479); - if (lookahead == 'c') ADVANCE(623); - if (lookahead == 'p') ADVANCE(616); - if (lookahead == '|') ADVANCE(229); + ADVANCE_MAP( + '\'', 489, + '+', 620, + '-', 621, + '0', 40, + '?', 487, + 'C', 622, + 'P', 614, + '^', 479, + 'c', 623, + 'p', 615, + '|', 229, + 'B', 232, + 'b', 232, + 'O', 233, + 'o', 233, + 'X', 234, + 'x', 234, + ); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(231); END_STATE(); case 257: ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '+') ADVANCE(620); - if (lookahead == '-') ADVANCE(621); - if (lookahead == '?') ADVANCE(488); - if (lookahead == 'C') ADVANCE(622); - if (lookahead == '^') ADVANCE(479); - if (lookahead == 'c') ADVANCE(623); - if (lookahead == '|') ADVANCE(229); + ADVANCE_MAP( + '\'', 489, + '+', 620, + '-', 621, + '?', 487, + 'C', 622, + '^', 479, + 'c', 623, + '|', 229, + ); END_STATE(); case 258: ACCEPT_TOKEN(anon_sym_POUND); + if (lookahead == '|') ADVANCE(229); if (lookahead == 'B' || lookahead == 'b') ADVANCE(232); if (lookahead == 'O' || lookahead == 'o') ADVANCE(233); if (lookahead == 'X' || lookahead == 'x') ADVANCE(234); - if (lookahead == '|') ADVANCE(229); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(238); END_STATE(); case 259: @@ -8802,20 +8356,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 260: ACCEPT_TOKEN(aux_sym__form_token1); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 261: ACCEPT_TOKEN(anon_sym_DOT); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 262: ACCEPT_TOKEN(aux_sym_num_lit_token1); END_STATE(); case 263: ACCEPT_TOKEN(aux_sym_num_lit_token1); - if (lookahead == '.') ADVANCE(274); - if (lookahead == '/') ADVANCE(473); - if (!aux_sym_sym_lit_token1_character_set_5(lookahead)) ADVANCE(477); + if (lookahead == '.') ADVANCE(270); + if (lookahead == '/') ADVANCE(474); if (lookahead == 'A' || lookahead == 'a') ADVANCE(260); if (lookahead == 'M' || @@ -8825,14 +8378,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 'S' || ('d' <= lookahead && lookahead <= 'f') || lookahead == 'l' || - lookahead == 's') ADVANCE(470); + lookahead == 's') ADVANCE(466); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(263); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 264: ACCEPT_TOKEN(aux_sym_num_lit_token1); - if (lookahead == '.') ADVANCE(274); - if (lookahead == '/') ADVANCE(473); - if (!aux_sym_sym_lit_token1_character_set_6(lookahead)) ADVANCE(477); + if (lookahead == '.') ADVANCE(270); + if (lookahead == '/') ADVANCE(474); if (lookahead == 'M' || lookahead == 'N') ADVANCE(278); if (('D' <= lookahead && lookahead <= 'F') || @@ -8840,12 +8393,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 'S' || ('d' <= lookahead && lookahead <= 'f') || lookahead == 'l' || - lookahead == 's') ADVANCE(470); + lookahead == 's') ADVANCE(466); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(264); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 265: ACCEPT_TOKEN(aux_sym_num_lit_token1); - if (lookahead == '.') ADVANCE(268); + if (lookahead == '.') ADVANCE(271); if (lookahead == '/') ADVANCE(242); if (lookahead == 'M' || lookahead == 'N') ADVANCE(262); @@ -8864,78 +8418,78 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 267: ACCEPT_TOKEN(aux_sym_num_lit_token1); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(267); + if (lookahead == '0' || + lookahead == '1') ADVANCE(267); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 268: ACCEPT_TOKEN(aux_sym_num_lit_token1); - if (('D' <= lookahead && lookahead <= 'F') || - lookahead == 'L' || - lookahead == 'S' || - ('d' <= lookahead && lookahead <= 'f') || - lookahead == 'l' || - lookahead == 's') ADVANCE(235); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(268); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(268); END_STATE(); case 269: ACCEPT_TOKEN(aux_sym_num_lit_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(269); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(269); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 270: ACCEPT_TOKEN(aux_sym_num_lit_token1); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(270); + if (('D' <= lookahead && lookahead <= 'F') || + lookahead == 'L' || + lookahead == 'S' || + ('d' <= lookahead && lookahead <= 'f') || + lookahead == 'l' || + lookahead == 's') ADVANCE(466); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(270); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 271: ACCEPT_TOKEN(aux_sym_num_lit_token1); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(271); + if (('D' <= lookahead && lookahead <= 'F') || + lookahead == 'L' || + lookahead == 'S' || + ('d' <= lookahead && lookahead <= 'f') || + lookahead == 'l' || + lookahead == 's') ADVANCE(235); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(271); END_STATE(); case 272: ACCEPT_TOKEN(aux_sym_num_lit_token1); - if (!aux_sym_sym_lit_token1_character_set_7(lookahead)) ADVANCE(477); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(272); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(272); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 273: ACCEPT_TOKEN(aux_sym_num_lit_token1); - if (!aux_sym_sym_lit_token1_character_set_8(lookahead)) ADVANCE(477); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(273); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(273); END_STATE(); case 274: ACCEPT_TOKEN(aux_sym_num_lit_token1); - if (!aux_sym_sym_lit_token1_character_set_9(lookahead)) ADVANCE(477); - if (('D' <= lookahead && lookahead <= 'F') || - lookahead == 'L' || - lookahead == 'S' || - ('d' <= lookahead && lookahead <= 'f') || - lookahead == 'l' || - lookahead == 's') ADVANCE(470); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(274); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(274); END_STATE(); case 275: ACCEPT_TOKEN(aux_sym_num_lit_token1); - if (!aux_sym_sym_lit_token1_character_set_10(lookahead)) ADVANCE(477); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(275); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(275); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 276: ACCEPT_TOKEN(aux_sym_num_lit_token1); - if (!aux_sym_sym_lit_token1_character_set_11(lookahead)) ADVANCE(477); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(276); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(276); END_STATE(); case 277: ACCEPT_TOKEN(aux_sym_num_lit_token1); - if (!aux_sym_sym_lit_token1_character_set_12(lookahead)) ADVANCE(477); - if (lookahead == '0' || - lookahead == '1') ADVANCE(277); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(277); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 278: ACCEPT_TOKEN(aux_sym_num_lit_token1); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 279: ACCEPT_TOKEN(aux_sym_num_lit_token2); @@ -8944,18 +8498,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(aux_sym_num_lit_token2); if (lookahead == 'a') ADVANCE(391); if (lookahead == 'o') ADVANCE(417); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 281: ACCEPT_TOKEN(aux_sym_num_lit_token2); if (lookahead == 'e') ADVANCE(350); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 282: ACCEPT_TOKEN(aux_sym_num_lit_token2); if (lookahead == 'i') ADVANCE(405); if (lookahead == 'o') ADVANCE(431); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 283: ACCEPT_TOKEN(aux_sym_num_lit_token2); @@ -8970,21 +8524,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 285: ACCEPT_TOKEN(aux_sym_num_lit_token2); - if (lookahead == 'o') ADVANCE(576); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if (lookahead == 'o') ADVANCE(575); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 286: ACCEPT_TOKEN(aux_sym_num_lit_token2); - if (lookahead == 'o') ADVANCE(575); + if (lookahead == 'o') ADVANCE(574); END_STATE(); case 287: ACCEPT_TOKEN(aux_sym_num_lit_token2); - if (lookahead == 'o') ADVANCE(574); + if (lookahead == 'o') ADVANCE(573); END_STATE(); case 288: ACCEPT_TOKEN(aux_sym_num_lit_token2); if (lookahead == 'o') ADVANCE(459); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 289: ACCEPT_TOKEN(aux_sym_num_lit_token2); @@ -8997,12 +8551,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 291: ACCEPT_TOKEN(aux_sym_num_lit_token2); if (lookahead == 'r') ADVANCE(419); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 292: ACCEPT_TOKEN(aux_sym_num_lit_token2); if (lookahead == 'u') ADVANCE(392); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 293: ACCEPT_TOKEN(aux_sym_num_lit_token2); @@ -9010,7 +8564,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 294: ACCEPT_TOKEN(aux_sym_num_lit_token2); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 295: ACCEPT_TOKEN(anon_sym_COLON); @@ -9021,7 +8575,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 297: ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == '@') ADVANCE(504); + if (lookahead == '@') ADVANCE(503); END_STATE(); case 298: ACCEPT_TOKEN(anon_sym_COLON_COLON); @@ -9034,19 +8588,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '#') ADVANCE(305); if (lookahead != 0 && lookahead != '"' && + lookahead != '#' && lookahead != '\\' && lookahead != '~') ADVANCE(304); END_STATE(); case 301: ACCEPT_TOKEN(aux_sym_str_lit_token1); - if (lookahead == '?') ADVANCE(302); - if (lookahead == 'C') ADVANCE(305); - if (lookahead == 'P') ADVANCE(305); - if (lookahead == '^') ADVANCE(305); - if (lookahead == '_') ADVANCE(305); - if (lookahead == 'c') ADVANCE(305); - if (lookahead == 'p') ADVANCE(305); - if (lookahead == '|') ADVANCE(304); + ADVANCE_MAP( + '?', 302, + 'C', 305, + 'P', 305, + '^', 305, + '_', 305, + 'c', 305, + 'p', 305, + '|', 304, + ); if (lookahead != 0 && lookahead != '"' && lookahead != '\\' && @@ -9105,893 +8662,910 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 310: ACCEPT_TOKEN(sym_nil_lit); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 311: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == '#') ADVANCE(466); - if (!aux_sym_sym_lit_token1_character_set_10(lookahead)) ADVANCE(477); + if (lookahead == '#') ADVANCE(470); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(264); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 312: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'a') ADVANCE(460); if (lookahead == 'i') ADVANCE(407); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 313: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'a') ADVANCE(463); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 314: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'a') ADVANCE(614); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if (lookahead == 'a') ADVANCE(613); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 315: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'a') ADVANCE(448); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 316: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'a') ADVANCE(326); if (lookahead == 'e') ADVANCE(450); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 317: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'a') ADVANCE(384); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 318: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'a') ADVANCE(391); if (lookahead == 'o') ADVANCE(417); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 319: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'a') ADVANCE(386); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 320: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'b') ADVANCE(329); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 321: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'b') ADVANCE(425); if (lookahead == 'c') ADVANCE(434); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 322: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'c') ADVANCE(611); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if (lookahead == 'c') ADVANCE(610); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 323: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'c') ADVANCE(422); if (lookahead == 'e') ADVANCE(456); if (lookahead == 'i') ADVANCE(376); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 324: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'c') ADVANCE(369); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 325: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'c') ADVANCE(452); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 326: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'c') ADVANCE(440); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 327: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'd') ADVANCE(569); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if (lookahead == 'd') ADVANCE(568); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 328: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'd') ADVANCE(613); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if (lookahead == 'd') ADVANCE(612); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 329: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'd') ADVANCE(314); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 330: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'd') ADVANCE(369); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 331: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'e') ADVANCE(477); if (lookahead == 'i') ADVANCE(399); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 332: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'e') ADVANCE(430); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 333: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'e') ADVANCE(596); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if (lookahead == 'e') ADVANCE(595); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 334: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'e') ADVANCE(578); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if (lookahead == 'e') ADVANCE(577); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 335: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'e') ADVANCE(370); - if (lookahead == 'y') ADVANCE(558); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if (lookahead == 'y') ADVANCE(557); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 336: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'e') ADVANCE(542); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if (lookahead == 'e') ADVANCE(541); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 337: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'e') ADVANCE(350); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 338: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'e') ADVANCE(446); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 339: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'e') ADVANCE(436); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 340: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'e') ADVANCE(325); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 341: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'e') ADVANCE(432); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 342: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'e') ADVANCE(315); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 343: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'e') ADVANCE(397); if (lookahead == 'i') ADVANCE(387); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 344: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'e') ADVANCE(367); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 345: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'e') ADVANCE(404); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 346: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'e') ADVANCE(435); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 347: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'e') ADVANCE(402); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 348: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'e') ADVANCE(411); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 349: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'f') ADVANCE(586); + if (lookahead == 'f') ADVANCE(585); if (lookahead == 'n') ADVANCE(365); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 350: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'f') ADVANCE(356); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 351: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'f') ADVANCE(438); if (lookahead == 't') ADVANCE(413); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 352: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'f') ADVANCE(439); if (lookahead == 't') ADVANCE(414); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 353: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'g') ADVANCE(477); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 354: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'g') ADVANCE(535); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if (lookahead == 'g') ADVANCE(534); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 355: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'g') ADVANCE(537); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if (lookahead == 'g') ADVANCE(536); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 356: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'g') ADVANCE(348); if (lookahead == 'm') ADVANCE(316); if (lookahead == 'u') ADVANCE(403); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 357: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'h') ADVANCE(343); if (lookahead == 'i') ADVANCE(449); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 358: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'h') ADVANCE(573); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if (lookahead == 'h') ADVANCE(572); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 359: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'h') ADVANCE(339); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 360: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'h') ADVANCE(420); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 361: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'h') ADVANCE(347); - if (lookahead == 'o') ADVANCE(546); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if (lookahead == 'o') ADVANCE(545); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 362: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'i') ADVANCE(464); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 363: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'i') ADVANCE(376); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 364: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'i') ADVANCE(405); if (lookahead == 'o') ADVANCE(431); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 365: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'i') ADVANCE(451); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 366: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'i') ADVANCE(322); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 367: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'i') ADVANCE(443); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 368: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'i') ADVANCE(379); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 369: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'i') ADVANCE(399); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 370: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'i') ADVANCE(406); if (lookahead == 'l') ADVANCE(418); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 371: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'i') ADVANCE(408); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 372: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'i') ADVANCE(394); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 373: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'i') ADVANCE(319); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 374: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'l') ADVANCE(528); + if (lookahead == 'l') ADVANCE(527); if (lookahead == 'o') ADVANCE(382); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 375: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'l') ADVANCE(528); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if (lookahead == 'l') ADVANCE(527); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 376: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'l') ADVANCE(310); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 377: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'l') ADVANCE(457); if (lookahead == 'n') ADVANCE(327); if (lookahead == 'p') ADVANCE(429); - if (lookahead == 's') ADVANCE(571); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if (lookahead == 's') ADVANCE(570); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 378: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'l') ADVANCE(445); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 379: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'l') ADVANCE(580); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if (lookahead == 'l') ADVANCE(579); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 380: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'l') ADVANCE(461); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 381: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'l') ADVANCE(462); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 382: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'l') ADVANCE(385); if (lookahead == 'u') ADVANCE(410); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 383: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'l') ADVANCE(338); if (lookahead == 't') ADVANCE(368); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 384: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'l') ADVANCE(380); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 385: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'l') ADVANCE(340); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 386: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'l') ADVANCE(381); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 387: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'l') ADVANCE(334); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 388: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'm') ADVANCE(544); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if (lookahead == 'm') ADVANCE(543); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 389: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'm') ADVANCE(550); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if (lookahead == 'm') ADVANCE(549); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 390: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'm') ADVANCE(554); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if (lookahead == 'm') ADVANCE(553); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 391: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'm') ADVANCE(320); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 392: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'm') ADVANCE(393); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 393: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'm') ADVANCE(369); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 394: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'm') ADVANCE(362); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 395: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'n') ADVANCE(383); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 396: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'n') ADVANCE(324); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 397: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'n') ADVANCE(584); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if (lookahead == 'n') ADVANCE(583); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 398: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'n') ADVANCE(601); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if (lookahead == 'n') ADVANCE(600); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 399: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'n') ADVANCE(353); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 400: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'n') ADVANCE(531); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if (lookahead == 'n') ADVANCE(530); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 401: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'n') ADVANCE(556); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if (lookahead == 'n') ADVANCE(555); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 402: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'n') ADVANCE(560); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if (lookahead == 'n') ADVANCE(559); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 403: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'n') ADVANCE(607); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if (lookahead == 'n') ADVANCE(606); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 404: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'n') ADVANCE(330); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 405: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'n') ADVANCE(317); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 406: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'n') ADVANCE(354); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 407: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'n') ADVANCE(372); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 408: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'n') ADVANCE(355); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 409: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'n') ADVANCE(352); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 410: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'n') ADVANCE(452); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 411: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'n') ADVANCE(346); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 412: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'o') ADVANCE(576); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if (lookahead == 'o') ADVANCE(575); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 413: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'o') ADVANCE(548); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if (lookahead == 'o') ADVANCE(547); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 414: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'o') ADVANCE(552); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if (lookahead == 'o') ADVANCE(551); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 415: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'o') ADVANCE(609); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if (lookahead == 'o') ADVANCE(608); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 416: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'o') ADVANCE(459); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 417: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'o') ADVANCE(428); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 418: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'o') ADVANCE(458); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 419: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'o') ADVANCE(388); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 420: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'o') ADVANCE(328); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 421: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'o') ADVANCE(389); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 422: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'o') ADVANCE(396); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 423: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'o') ADVANCE(390); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 424: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'o') ADVANCE(417); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 425: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'o') ADVANCE(455); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 426: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'o') ADVANCE(447); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 427: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'p') ADVANCE(351); if (lookahead == 's') ADVANCE(371); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 428: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'p') ADVANCE(605); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if (lookahead == 'p') ADVANCE(604); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 429: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'p') ADVANCE(345); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 430: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'p') ADVANCE(342); if (lookahead == 't') ADVANCE(454); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 431: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'r') ADVANCE(567); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if (lookahead == 'r') ADVANCE(566); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 432: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'r') ADVANCE(594); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if (lookahead == 'r') ADVANCE(593); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 433: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'r') ADVANCE(419); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 434: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'r') ADVANCE(426); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 435: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'r') ADVANCE(366); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 436: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'r') ADVANCE(344); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 437: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'r') ADVANCE(398); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 438: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'r') ADVANCE(421); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 439: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'r') ADVANCE(423); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 440: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'r') ADVANCE(415); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 441: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 's') ADVANCE(590); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if (lookahead == 's') ADVANCE(589); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 442: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 's') ADVANCE(588); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if (lookahead == 's') ADVANCE(587); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 443: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 's') ADVANCE(592); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if (lookahead == 's') ADVANCE(591); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 444: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 's') ADVANCE(533); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if (lookahead == 's') ADVANCE(532); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 445: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 's') ADVANCE(333); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 446: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 's') ADVANCE(442); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 447: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 's') ADVANCE(444); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 448: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 't') ADVANCE(582); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if (lookahead == 't') ADVANCE(581); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 449: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 't') ADVANCE(358); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 450: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 't') ADVANCE(360); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 451: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 't') ADVANCE(373); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 452: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 't') ADVANCE(369); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 453: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'u') ADVANCE(392); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 454: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'u') ADVANCE(437); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 455: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'v') ADVANCE(336); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 456: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'v') ADVANCE(341); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 457: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'w') ADVANCE(313); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 458: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'w') ADVANCE(540); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if (lookahead == 'w') ADVANCE(539); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 459: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'w') ADVANCE(409); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 460: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'x') ADVANCE(372); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 461: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'y') ADVANCE(599); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if (lookahead == 'y') ADVANCE(598); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 462: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'y') ADVANCE(603); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if (lookahead == 'y') ADVANCE(602); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 463: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'y') ADVANCE(441); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 464: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'z') ADVANCE(331); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 465: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == '|') ADVANCE(477); - if (!aux_sym_sym_lit_token1_character_set_13(lookahead)) ADVANCE(465); - if (sym_fancy_literal_character_set_1(lookahead)) ADVANCE(230); + if (('\t' <= lookahead && lookahead <= '\r') || + (0x1c <= lookahead && lookahead <= ' ') || + lookahead == '"' || + lookahead == '(' || + lookahead == ')' || + lookahead == ',' || + lookahead == ':' || + lookahead == ';' || + ('[' <= lookahead && lookahead <= '^') || + lookahead == '`' || + ('{' <= lookahead && lookahead <= '}') || + lookahead == 0x1680 || + (0x2000 <= lookahead && lookahead <= 0x2006) || + (0x2008 <= lookahead && lookahead <= 0x200a) || + lookahead == 0x2028 || + lookahead == 0x2029 || + lookahead == 0x205f || + lookahead == 0x3000) ADVANCE(230); + if (lookahead != 0) ADVANCE(465); END_STATE(); case 466: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(475); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(472); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(468); - if (!aux_sym_sym_lit_token1_character_set_10(lookahead)) ADVANCE(477); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(471); + if (lookahead == '+' || + lookahead == '-') ADVANCE(474); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(272); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 467: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (!aux_sym_sym_lit_token1_character_set_7(lookahead)) ADVANCE(477); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(272); + if (lookahead == '+' || + lookahead == '-') ADVANCE(472); + if (lookahead == '0' || + lookahead == '1') ADVANCE(267); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 468: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (!aux_sym_sym_lit_token1_character_set_14(lookahead)) ADVANCE(477); if (lookahead == '+' || - lookahead == '-') ADVANCE(469); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(273); + lookahead == '-') ADVANCE(473); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(269); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 469: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (!aux_sym_sym_lit_token1_character_set_8(lookahead)) ADVANCE(477); + if (lookahead == '+' || + lookahead == '-') ADVANCE(475); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(273); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(275); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 470: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (!aux_sym_sym_lit_token1_character_set_15(lookahead)) ADVANCE(477); - if (lookahead == '+' || - lookahead == '-') ADVANCE(473); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(275); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(467); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(468); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(469); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(471); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 471: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (!aux_sym_sym_lit_token1_character_set_16(lookahead)) ADVANCE(477); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(467); + lookahead == 'r') ADVANCE(476); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(471); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 472: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (!aux_sym_sym_lit_token1_character_set_17(lookahead)) ADVANCE(477); - if (lookahead == '+' || - lookahead == '-') ADVANCE(474); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(276); + if (lookahead == '0' || + lookahead == '1') ADVANCE(267); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 473: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (!aux_sym_sym_lit_token1_character_set_10(lookahead)) ADVANCE(477); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(275); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(269); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 474: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (!aux_sym_sym_lit_token1_character_set_11(lookahead)) ADVANCE(477); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(276); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(272); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 475: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (!aux_sym_sym_lit_token1_character_set_18(lookahead)) ADVANCE(477); - if (lookahead == '+' || - lookahead == '-') ADVANCE(476); - if (lookahead == '0' || - lookahead == '1') ADVANCE(277); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(275); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 476: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (!aux_sym_sym_lit_token1_character_set_12(lookahead)) ADVANCE(477); - if (lookahead == '0' || - lookahead == '1') ADVANCE(277); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(277); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 477: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 478: ACCEPT_TOKEN(anon_sym_CARET); @@ -10018,455 +9592,455 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym_POUND0a); END_STATE(); case 486: - ACCEPT_TOKEN(aux_sym_regex_lit_token1); + ACCEPT_TOKEN(anon_sym_POUND_QMARK); END_STATE(); case 487: ACCEPT_TOKEN(anon_sym_POUND_QMARK); + if (lookahead == '@') ADVANCE(488); END_STATE(); case 488: - ACCEPT_TOKEN(anon_sym_POUND_QMARK); - if (lookahead == '@') ADVANCE(489); + ACCEPT_TOKEN(anon_sym_POUND_QMARK_AT); END_STATE(); case 489: - ACCEPT_TOKEN(anon_sym_POUND_QMARK_AT); + ACCEPT_TOKEN(anon_sym_POUND_SQUOTE); END_STATE(); case 490: - ACCEPT_TOKEN(anon_sym_POUND_SQUOTE); + ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); case 491: - ACCEPT_TOKEN(anon_sym_AT); - if (lookahead == ':') ADVANCE(503); + ACCEPT_TOKEN(anon_sym_BQUOTE); END_STATE(); case 492: - ACCEPT_TOKEN(anon_sym_SQUOTE); + ACCEPT_TOKEN(anon_sym_COMMA_AT); END_STATE(); case 493: - ACCEPT_TOKEN(anon_sym_BQUOTE); + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 494: - ACCEPT_TOKEN(anon_sym_COMMA_AT); + ACCEPT_TOKEN(anon_sym_COMMA); + if (lookahead == '@') ADVANCE(492); END_STATE(); case 495: - ACCEPT_TOKEN(anon_sym_COMMA); + ACCEPT_TOKEN(sym_block_comment); END_STATE(); case 496: - ACCEPT_TOKEN(anon_sym_COMMA); - if (lookahead == '@') ADVANCE(494); + ACCEPT_TOKEN(sym_fancy_literal); END_STATE(); case 497: - ACCEPT_TOKEN(sym_block_comment); + ACCEPT_TOKEN(aux_sym__format_token_token1); END_STATE(); case 498: - ACCEPT_TOKEN(sym_fancy_literal); + ACCEPT_TOKEN(aux_sym__format_token_token1); + if (lookahead == '|') ADVANCE(229); END_STATE(); case 499: - ACCEPT_TOKEN(aux_sym__format_token_token1); + ACCEPT_TOKEN(anon_sym_v); END_STATE(); case 500: - ACCEPT_TOKEN(aux_sym__format_token_token1); - if (lookahead == '|') ADVANCE(229); + ACCEPT_TOKEN(anon_sym_V); END_STATE(); case 501: - ACCEPT_TOKEN(anon_sym_v); + ACCEPT_TOKEN(anon_sym_AT); + if (lookahead == ':') ADVANCE(502); END_STATE(); case 502: - ACCEPT_TOKEN(anon_sym_V); + ACCEPT_TOKEN(anon_sym_AT_COLON); END_STATE(); case 503: - ACCEPT_TOKEN(anon_sym_AT_COLON); + ACCEPT_TOKEN(anon_sym_COLON_AT); END_STATE(); case 504: - ACCEPT_TOKEN(anon_sym_COLON_AT); + ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); case 505: - ACCEPT_TOKEN(anon_sym_PERCENT); + ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); case 506: - ACCEPT_TOKEN(anon_sym_AMP); + ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); case 507: - ACCEPT_TOKEN(anon_sym_PIPE); + ACCEPT_TOKEN(aux_sym_format_directive_type_token1); END_STATE(); case 508: - ACCEPT_TOKEN(aux_sym_format_directive_type_token1); + ACCEPT_TOKEN(aux_sym_format_directive_type_token2); END_STATE(); case 509: - ACCEPT_TOKEN(aux_sym_format_directive_type_token2); + ACCEPT_TOKEN(anon_sym_LF); END_STATE(); case 510: - ACCEPT_TOKEN(anon_sym_LF); + ACCEPT_TOKEN(anon_sym_CR); END_STATE(); case 511: - ACCEPT_TOKEN(anon_sym_CR); + ACCEPT_TOKEN(aux_sym_format_directive_type_token3); END_STATE(); case 512: - ACCEPT_TOKEN(aux_sym_format_directive_type_token3); + ACCEPT_TOKEN(aux_sym_format_directive_type_token4); END_STATE(); case 513: - ACCEPT_TOKEN(aux_sym_format_directive_type_token4); + ACCEPT_TOKEN(aux_sym_format_directive_type_token5); END_STATE(); case 514: - ACCEPT_TOKEN(aux_sym_format_directive_type_token5); + ACCEPT_TOKEN(aux_sym_format_directive_type_token6); END_STATE(); case 515: - ACCEPT_TOKEN(aux_sym_format_directive_type_token6); + ACCEPT_TOKEN(anon_sym__); END_STATE(); case 516: - ACCEPT_TOKEN(anon_sym__); + ACCEPT_TOKEN(aux_sym_format_directive_type_token7); END_STATE(); case 517: - ACCEPT_TOKEN(aux_sym_format_directive_type_token7); + ACCEPT_TOKEN(aux_sym_format_directive_type_token8); END_STATE(); case 518: - ACCEPT_TOKEN(aux_sym_format_directive_type_token8); + ACCEPT_TOKEN(aux_sym_format_directive_type_token9); END_STATE(); case 519: - ACCEPT_TOKEN(aux_sym_format_directive_type_token9); + ACCEPT_TOKEN(aux_sym_format_directive_type_token10); END_STATE(); case 520: - ACCEPT_TOKEN(aux_sym_format_directive_type_token10); + ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); case 521: - ACCEPT_TOKEN(anon_sym_SEMI); + ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); case 522: - ACCEPT_TOKEN(anon_sym_STAR); + ACCEPT_TOKEN(anon_sym_SLASH); END_STATE(); case 523: - ACCEPT_TOKEN(anon_sym_SLASH); + ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); case 524: - ACCEPT_TOKEN(anon_sym_QMARK); + ACCEPT_TOKEN(anon_sym_Newline); END_STATE(); case 525: - ACCEPT_TOKEN(anon_sym_Newline); + ACCEPT_TOKEN(aux_sym_format_directive_type_token11); END_STATE(); case 526: - ACCEPT_TOKEN(aux_sym_format_directive_type_token11); + ACCEPT_TOKEN(anon_sym_cl); END_STATE(); case 527: ACCEPT_TOKEN(anon_sym_cl); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 528: - ACCEPT_TOKEN(anon_sym_cl); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + ACCEPT_TOKEN(anon_sym_in); END_STATE(); case 529: ACCEPT_TOKEN(anon_sym_in); + if (lookahead == 'i') ADVANCE(210); END_STATE(); case 530: ACCEPT_TOKEN(anon_sym_in); - if (lookahead == 'i') ADVANCE(210); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 531: - ACCEPT_TOKEN(anon_sym_in); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + ACCEPT_TOKEN(anon_sym_across); END_STATE(); case 532: ACCEPT_TOKEN(anon_sym_across); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 533: - ACCEPT_TOKEN(anon_sym_across); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + ACCEPT_TOKEN(anon_sym_being); + if (lookahead == ' ') ADVANCE(62); END_STATE(); case 534: ACCEPT_TOKEN(anon_sym_being); if (lookahead == ' ') ADVANCE(62); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 535: - ACCEPT_TOKEN(anon_sym_being); - if (lookahead == ' ') ADVANCE(62); - if (!aux_sym_sym_lit_token1_character_set_19(lookahead)) ADVANCE(477); + ACCEPT_TOKEN(anon_sym_using); END_STATE(); case 536: ACCEPT_TOKEN(anon_sym_using); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 537: - ACCEPT_TOKEN(anon_sym_using); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + ACCEPT_TOKEN(aux_sym_for_clause_word_token1); END_STATE(); case 538: - ACCEPT_TOKEN(aux_sym_for_clause_word_token1); + ACCEPT_TOKEN(anon_sym_below); END_STATE(); case 539: ACCEPT_TOKEN(anon_sym_below); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 540: - ACCEPT_TOKEN(anon_sym_below); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + ACCEPT_TOKEN(anon_sym_above); END_STATE(); case 541: ACCEPT_TOKEN(anon_sym_above); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 542: - ACCEPT_TOKEN(anon_sym_above); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + ACCEPT_TOKEN(anon_sym_from); END_STATE(); case 543: ACCEPT_TOKEN(anon_sym_from); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 544: - ACCEPT_TOKEN(anon_sym_from); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + ACCEPT_TOKEN(anon_sym_to); END_STATE(); case 545: ACCEPT_TOKEN(anon_sym_to); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 546: - ACCEPT_TOKEN(anon_sym_to); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + ACCEPT_TOKEN(anon_sym_upto); END_STATE(); case 547: ACCEPT_TOKEN(anon_sym_upto); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 548: - ACCEPT_TOKEN(anon_sym_upto); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + ACCEPT_TOKEN(anon_sym_upfrom); END_STATE(); case 549: ACCEPT_TOKEN(anon_sym_upfrom); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 550: - ACCEPT_TOKEN(anon_sym_upfrom); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + ACCEPT_TOKEN(anon_sym_downto); END_STATE(); case 551: ACCEPT_TOKEN(anon_sym_downto); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 552: - ACCEPT_TOKEN(anon_sym_downto); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + ACCEPT_TOKEN(anon_sym_downfrom); END_STATE(); case 553: ACCEPT_TOKEN(anon_sym_downfrom); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 554: - ACCEPT_TOKEN(anon_sym_downfrom); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + ACCEPT_TOKEN(anon_sym_on); END_STATE(); case 555: ACCEPT_TOKEN(anon_sym_on); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 556: - ACCEPT_TOKEN(anon_sym_on); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + ACCEPT_TOKEN(anon_sym_by); END_STATE(); case 557: ACCEPT_TOKEN(anon_sym_by); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 558: - ACCEPT_TOKEN(anon_sym_by); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + ACCEPT_TOKEN(anon_sym_then); END_STATE(); case 559: ACCEPT_TOKEN(anon_sym_then); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 560: - ACCEPT_TOKEN(anon_sym_then); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); case 561: ACCEPT_TOKEN(anon_sym_EQ); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 562: - ACCEPT_TOKEN(anon_sym_EQ); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + ACCEPT_TOKEN(aux_sym_accumulation_verb_token1); END_STATE(); case 563: ACCEPT_TOKEN(aux_sym_accumulation_verb_token1); + if (lookahead == 'i') ADVANCE(160); END_STATE(); case 564: ACCEPT_TOKEN(aux_sym_accumulation_verb_token1); - if (lookahead == 'i') ADVANCE(160); + if (lookahead == 'm') ADVANCE(118); END_STATE(); case 565: - ACCEPT_TOKEN(aux_sym_accumulation_verb_token1); - if (lookahead == 'm') ADVANCE(118); + ACCEPT_TOKEN(anon_sym_for); END_STATE(); case 566: ACCEPT_TOKEN(anon_sym_for); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 567: - ACCEPT_TOKEN(anon_sym_for); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + ACCEPT_TOKEN(anon_sym_and); END_STATE(); case 568: ACCEPT_TOKEN(anon_sym_and); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 569: - ACCEPT_TOKEN(anon_sym_and); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + ACCEPT_TOKEN(anon_sym_as); END_STATE(); case 570: ACCEPT_TOKEN(anon_sym_as); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 571: - ACCEPT_TOKEN(anon_sym_as); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + ACCEPT_TOKEN(anon_sym_with); END_STATE(); case 572: ACCEPT_TOKEN(anon_sym_with); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 573: - ACCEPT_TOKEN(anon_sym_with); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + ACCEPT_TOKEN(anon_sym_do); END_STATE(); case 574: ACCEPT_TOKEN(anon_sym_do); + if (lookahead == 'w') ADVANCE(166); END_STATE(); case 575: ACCEPT_TOKEN(anon_sym_do); - if (lookahead == 'w') ADVANCE(166); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 576: - ACCEPT_TOKEN(anon_sym_do); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + ACCEPT_TOKEN(anon_sym_while); END_STATE(); case 577: ACCEPT_TOKEN(anon_sym_while); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 578: - ACCEPT_TOKEN(anon_sym_while); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + ACCEPT_TOKEN(anon_sym_until); END_STATE(); case 579: ACCEPT_TOKEN(anon_sym_until); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 580: - ACCEPT_TOKEN(anon_sym_until); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + ACCEPT_TOKEN(anon_sym_repeat); END_STATE(); case 581: ACCEPT_TOKEN(anon_sym_repeat); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 582: - ACCEPT_TOKEN(anon_sym_repeat); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + ACCEPT_TOKEN(anon_sym_when); END_STATE(); case 583: ACCEPT_TOKEN(anon_sym_when); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 584: - ACCEPT_TOKEN(anon_sym_when); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + ACCEPT_TOKEN(anon_sym_if); END_STATE(); case 585: ACCEPT_TOKEN(anon_sym_if); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 586: - ACCEPT_TOKEN(anon_sym_if); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + ACCEPT_TOKEN(anon_sym_unless); END_STATE(); case 587: ACCEPT_TOKEN(anon_sym_unless); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 588: - ACCEPT_TOKEN(anon_sym_unless); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + ACCEPT_TOKEN(anon_sym_always); END_STATE(); case 589: ACCEPT_TOKEN(anon_sym_always); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 590: - ACCEPT_TOKEN(anon_sym_always); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + ACCEPT_TOKEN(anon_sym_thereis); END_STATE(); case 591: ACCEPT_TOKEN(anon_sym_thereis); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 592: - ACCEPT_TOKEN(anon_sym_thereis); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + ACCEPT_TOKEN(anon_sym_never); END_STATE(); case 593: ACCEPT_TOKEN(anon_sym_never); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 594: - ACCEPT_TOKEN(anon_sym_never); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + ACCEPT_TOKEN(anon_sym_else); END_STATE(); case 595: ACCEPT_TOKEN(anon_sym_else); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 596: - ACCEPT_TOKEN(anon_sym_else); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + ACCEPT_TOKEN(anon_sym_into); END_STATE(); case 597: - ACCEPT_TOKEN(anon_sym_into); + ACCEPT_TOKEN(anon_sym_finally); END_STATE(); case 598: ACCEPT_TOKEN(anon_sym_finally); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 599: - ACCEPT_TOKEN(anon_sym_finally); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + ACCEPT_TOKEN(anon_sym_return); END_STATE(); case 600: ACCEPT_TOKEN(anon_sym_return); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 601: - ACCEPT_TOKEN(anon_sym_return); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + ACCEPT_TOKEN(anon_sym_initially); END_STATE(); case 602: ACCEPT_TOKEN(anon_sym_initially); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 603: - ACCEPT_TOKEN(anon_sym_initially); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + ACCEPT_TOKEN(anon_sym_loop); END_STATE(); case 604: ACCEPT_TOKEN(anon_sym_loop); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 605: - ACCEPT_TOKEN(anon_sym_loop); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + ACCEPT_TOKEN(anon_sym_defun); END_STATE(); case 606: ACCEPT_TOKEN(anon_sym_defun); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 607: - ACCEPT_TOKEN(anon_sym_defun); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + ACCEPT_TOKEN(anon_sym_defmacro); END_STATE(); case 608: ACCEPT_TOKEN(anon_sym_defmacro); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 609: - ACCEPT_TOKEN(anon_sym_defmacro); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + ACCEPT_TOKEN(anon_sym_defgeneric); END_STATE(); case 610: ACCEPT_TOKEN(anon_sym_defgeneric); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 611: - ACCEPT_TOKEN(anon_sym_defgeneric); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + ACCEPT_TOKEN(anon_sym_defmethod); END_STATE(); case 612: ACCEPT_TOKEN(anon_sym_defmethod); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 613: - ACCEPT_TOKEN(anon_sym_defmethod); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + ACCEPT_TOKEN(anon_sym_lambda); + if ((!eof && set_contains(aux_sym_sym_lit_token1_character_set_2, 17, lookahead))) ADVANCE(477); END_STATE(); case 614: - ACCEPT_TOKEN(anon_sym_lambda); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + ACCEPT_TOKEN(anon_sym_POUNDP); END_STATE(); case 615: - ACCEPT_TOKEN(anon_sym_POUNDP); + ACCEPT_TOKEN(anon_sym_POUNDp); END_STATE(); case 616: - ACCEPT_TOKEN(anon_sym_POUNDp); + ACCEPT_TOKEN(aux_sym_path_lit_token1); END_STATE(); case 617: ACCEPT_TOKEN(aux_sym__sym_lit_without_slash_token1); END_STATE(); case 618: ACCEPT_TOKEN(aux_sym__sym_lit_without_slash_token1); - if (lookahead == 'l') ADVANCE(527); + if (lookahead == 'l') ADVANCE(526); END_STATE(); case 619: ACCEPT_TOKEN(sym_self_referential_reader_macro); @@ -10492,41 +10066,41 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0}, [1] = {.lex_state = 247}, [2] = {.lex_state = 9}, - [3] = {.lex_state = 9}, - [4] = {.lex_state = 9}, + [3] = {.lex_state = 11}, + [4] = {.lex_state = 11}, [5] = {.lex_state = 9}, [6] = {.lex_state = 9}, [7] = {.lex_state = 9}, - [8] = {.lex_state = 9}, + [8] = {.lex_state = 11}, [9] = {.lex_state = 9}, [10] = {.lex_state = 9}, [11] = {.lex_state = 9}, [12] = {.lex_state = 9}, - [13] = {.lex_state = 9}, + [13] = {.lex_state = 11}, [14] = {.lex_state = 9}, [15] = {.lex_state = 9}, [16] = {.lex_state = 9}, [17] = {.lex_state = 9}, [18] = {.lex_state = 9}, [19] = {.lex_state = 9}, - [20] = {.lex_state = 11}, + [20] = {.lex_state = 9}, [21] = {.lex_state = 9}, [22] = {.lex_state = 9}, [23] = {.lex_state = 9}, [24] = {.lex_state = 9}, [25] = {.lex_state = 9}, [26] = {.lex_state = 9}, - [27] = {.lex_state = 11}, + [27] = {.lex_state = 9}, [28] = {.lex_state = 9}, [29] = {.lex_state = 9}, [30] = {.lex_state = 9}, [31] = {.lex_state = 9}, - [32] = {.lex_state = 11}, + [32] = {.lex_state = 9}, [33] = {.lex_state = 9}, [34] = {.lex_state = 9}, [35] = {.lex_state = 9}, [36] = {.lex_state = 9}, - [37] = {.lex_state = 11}, + [37] = {.lex_state = 9}, [38] = {.lex_state = 9}, [39] = {.lex_state = 9}, [40] = {.lex_state = 9}, @@ -10537,28 +10111,28 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [45] = {.lex_state = 11}, [46] = {.lex_state = 11}, [47] = {.lex_state = 11}, - [48] = {.lex_state = 11}, + [48] = {.lex_state = 16}, [49] = {.lex_state = 11}, - [50] = {.lex_state = 11}, - [51] = {.lex_state = 11}, + [50] = {.lex_state = 16}, + [51] = {.lex_state = 16}, [52] = {.lex_state = 11}, - [53] = {.lex_state = 11}, + [53] = {.lex_state = 16}, [54] = {.lex_state = 11}, [55] = {.lex_state = 11}, - [56] = {.lex_state = 16}, + [56] = {.lex_state = 11}, [57] = {.lex_state = 11}, [58] = {.lex_state = 11}, [59] = {.lex_state = 11}, - [60] = {.lex_state = 16}, + [60] = {.lex_state = 11}, [61] = {.lex_state = 11}, [62] = {.lex_state = 11}, [63] = {.lex_state = 11}, [64] = {.lex_state = 11}, [65] = {.lex_state = 11}, [66] = {.lex_state = 11}, - [67] = {.lex_state = 11}, + [67] = {.lex_state = 16}, [68] = {.lex_state = 11}, - [69] = {.lex_state = 16}, + [69] = {.lex_state = 11}, [70] = {.lex_state = 11}, [71] = {.lex_state = 11}, [72] = {.lex_state = 11}, @@ -10567,13 +10141,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [75] = {.lex_state = 11}, [76] = {.lex_state = 11}, [77] = {.lex_state = 11}, - [78] = {.lex_state = 11}, + [78] = {.lex_state = 16}, [79] = {.lex_state = 11}, [80] = {.lex_state = 11}, [81] = {.lex_state = 11}, - [82] = {.lex_state = 11}, + [82] = {.lex_state = 16}, [83] = {.lex_state = 11}, - [84] = {.lex_state = 11}, + [84] = {.lex_state = 16}, [85] = {.lex_state = 11}, [86] = {.lex_state = 11}, [87] = {.lex_state = 11}, @@ -10583,7 +10157,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [91] = {.lex_state = 11}, [92] = {.lex_state = 11}, [93] = {.lex_state = 11}, - [94] = {.lex_state = 16}, + [94] = {.lex_state = 11}, [95] = {.lex_state = 11}, [96] = {.lex_state = 11}, [97] = {.lex_state = 11}, @@ -10618,7 +10192,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [126] = {.lex_state = 11}, [127] = {.lex_state = 11}, [128] = {.lex_state = 11}, - [129] = {.lex_state = 11}, + [129] = {.lex_state = 16}, [130] = {.lex_state = 11}, [131] = {.lex_state = 11}, [132] = {.lex_state = 11}, @@ -10668,7 +10242,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [176] = {.lex_state = 11}, [177] = {.lex_state = 11}, [178] = {.lex_state = 11}, - [179] = {.lex_state = 16}, + [179] = {.lex_state = 11}, [180] = {.lex_state = 11}, [181] = {.lex_state = 11}, [182] = {.lex_state = 11}, @@ -10716,9 +10290,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [224] = {.lex_state = 11}, [225] = {.lex_state = 11}, [226] = {.lex_state = 11}, - [227] = {.lex_state = 16}, + [227] = {.lex_state = 11}, [228] = {.lex_state = 11}, - [229] = {.lex_state = 16}, + [229] = {.lex_state = 11}, [230] = {.lex_state = 11}, [231] = {.lex_state = 11}, [232] = {.lex_state = 11}, @@ -10736,9 +10310,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [244] = {.lex_state = 11}, [245] = {.lex_state = 11}, [246] = {.lex_state = 11}, - [247] = {.lex_state = 16}, + [247] = {.lex_state = 11}, [248] = {.lex_state = 11}, - [249] = {.lex_state = 16}, + [249] = {.lex_state = 11}, [250] = {.lex_state = 11}, [251] = {.lex_state = 11}, [252] = {.lex_state = 11}, @@ -11505,7 +11079,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1013] = {.lex_state = 9}, [1014] = {.lex_state = 9}, [1015] = {.lex_state = 9}, - [1016] = {.lex_state = 9}, + [1016] = {.lex_state = 12}, [1017] = {.lex_state = 9}, [1018] = {.lex_state = 9}, [1019] = {.lex_state = 9}, @@ -11603,7 +11177,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1111] = {.lex_state = 9}, [1112] = {.lex_state = 9}, [1113] = {.lex_state = 9}, - [1114] = {.lex_state = 12}, + [1114] = {.lex_state = 9}, [1115] = {.lex_state = 9}, [1116] = {.lex_state = 9}, [1117] = {.lex_state = 9}, @@ -11623,7 +11197,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1131] = {.lex_state = 9}, [1132] = {.lex_state = 11}, [1133] = {.lex_state = 11}, - [1134] = {.lex_state = 11}, + [1134] = {.lex_state = 16}, [1135] = {.lex_state = 11}, [1136] = {.lex_state = 11}, [1137] = {.lex_state = 11}, @@ -11636,7 +11210,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1144] = {.lex_state = 11}, [1145] = {.lex_state = 11}, [1146] = {.lex_state = 11}, - [1147] = {.lex_state = 16}, + [1147] = {.lex_state = 11}, [1148] = {.lex_state = 11}, [1149] = {.lex_state = 11}, [1150] = {.lex_state = 11}, @@ -11773,88 +11347,88 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1281] = {.lex_state = 22}, [1282] = {.lex_state = 22}, [1283] = {.lex_state = 15}, - [1284] = {.lex_state = 16}, + [1284] = {.lex_state = 25}, [1285] = {.lex_state = 25}, - [1286] = {.lex_state = 25}, - [1287] = {.lex_state = 25}, - [1288] = {.lex_state = 25}, - [1289] = {.lex_state = 25}, - [1290] = {.lex_state = 25}, - [1291] = {.lex_state = 25}, + [1286] = {.lex_state = 16}, + [1287] = {.lex_state = 16}, + [1288] = {.lex_state = 16}, + [1289] = {.lex_state = 16}, + [1290] = {.lex_state = 16}, + [1291] = {.lex_state = 16}, [1292] = {.lex_state = 25}, - [1293] = {.lex_state = 25}, - [1294] = {.lex_state = 25}, - [1295] = {.lex_state = 25}, - [1296] = {.lex_state = 25}, - [1297] = {.lex_state = 25}, - [1298] = {.lex_state = 25}, - [1299] = {.lex_state = 25}, - [1300] = {.lex_state = 25}, - [1301] = {.lex_state = 25}, - [1302] = {.lex_state = 25}, - [1303] = {.lex_state = 25}, - [1304] = {.lex_state = 25}, - [1305] = {.lex_state = 25}, - [1306] = {.lex_state = 25}, - [1307] = {.lex_state = 25}, - [1308] = {.lex_state = 25}, - [1309] = {.lex_state = 25}, - [1310] = {.lex_state = 25}, - [1311] = {.lex_state = 25}, - [1312] = {.lex_state = 25}, - [1313] = {.lex_state = 25}, - [1314] = {.lex_state = 25}, - [1315] = {.lex_state = 25}, - [1316] = {.lex_state = 25}, - [1317] = {.lex_state = 25}, - [1318] = {.lex_state = 25}, - [1319] = {.lex_state = 25}, - [1320] = {.lex_state = 25}, - [1321] = {.lex_state = 25}, - [1322] = {.lex_state = 25}, - [1323] = {.lex_state = 25}, - [1324] = {.lex_state = 25}, - [1325] = {.lex_state = 25}, - [1326] = {.lex_state = 25}, - [1327] = {.lex_state = 25}, - [1328] = {.lex_state = 25}, - [1329] = {.lex_state = 25}, - [1330] = {.lex_state = 25}, - [1331] = {.lex_state = 25}, - [1332] = {.lex_state = 25}, - [1333] = {.lex_state = 25}, - [1334] = {.lex_state = 25}, - [1335] = {.lex_state = 25}, - [1336] = {.lex_state = 25}, - [1337] = {.lex_state = 25}, - [1338] = {.lex_state = 25}, - [1339] = {.lex_state = 25}, - [1340] = {.lex_state = 25}, - [1341] = {.lex_state = 25}, - [1342] = {.lex_state = 25}, - [1343] = {.lex_state = 25}, - [1344] = {.lex_state = 25}, - [1345] = {.lex_state = 25}, - [1346] = {.lex_state = 25}, - [1347] = {.lex_state = 25}, - [1348] = {.lex_state = 25}, - [1349] = {.lex_state = 25}, - [1350] = {.lex_state = 25}, + [1293] = {.lex_state = 16}, + [1294] = {.lex_state = 16}, + [1295] = {.lex_state = 16}, + [1296] = {.lex_state = 16}, + [1297] = {.lex_state = 16}, + [1298] = {.lex_state = 16}, + [1299] = {.lex_state = 16}, + [1300] = {.lex_state = 16}, + [1301] = {.lex_state = 16}, + [1302] = {.lex_state = 16}, + [1303] = {.lex_state = 16}, + [1304] = {.lex_state = 16}, + [1305] = {.lex_state = 16}, + [1306] = {.lex_state = 16}, + [1307] = {.lex_state = 16}, + [1308] = {.lex_state = 16}, + [1309] = {.lex_state = 16}, + [1310] = {.lex_state = 16}, + [1311] = {.lex_state = 16}, + [1312] = {.lex_state = 16}, + [1313] = {.lex_state = 16}, + [1314] = {.lex_state = 16}, + [1315] = {.lex_state = 16}, + [1316] = {.lex_state = 16}, + [1317] = {.lex_state = 16}, + [1318] = {.lex_state = 16}, + [1319] = {.lex_state = 16}, + [1320] = {.lex_state = 16}, + [1321] = {.lex_state = 16}, + [1322] = {.lex_state = 16}, + [1323] = {.lex_state = 16}, + [1324] = {.lex_state = 16}, + [1325] = {.lex_state = 16}, + [1326] = {.lex_state = 16}, + [1327] = {.lex_state = 16}, + [1328] = {.lex_state = 16}, + [1329] = {.lex_state = 16}, + [1330] = {.lex_state = 16}, + [1331] = {.lex_state = 16}, + [1332] = {.lex_state = 16}, + [1333] = {.lex_state = 16}, + [1334] = {.lex_state = 16}, + [1335] = {.lex_state = 16}, + [1336] = {.lex_state = 16}, + [1337] = {.lex_state = 16}, + [1338] = {.lex_state = 16}, + [1339] = {.lex_state = 16}, + [1340] = {.lex_state = 16}, + [1341] = {.lex_state = 16}, + [1342] = {.lex_state = 16}, + [1343] = {.lex_state = 16}, + [1344] = {.lex_state = 16}, + [1345] = {.lex_state = 16}, + [1346] = {.lex_state = 16}, + [1347] = {.lex_state = 16}, + [1348] = {.lex_state = 16}, + [1349] = {.lex_state = 16}, + [1350] = {.lex_state = 16}, [1351] = {.lex_state = 25}, - [1352] = {.lex_state = 25}, - [1353] = {.lex_state = 25}, - [1354] = {.lex_state = 25}, - [1355] = {.lex_state = 25}, - [1356] = {.lex_state = 25}, - [1357] = {.lex_state = 25}, - [1358] = {.lex_state = 25}, - [1359] = {.lex_state = 25}, - [1360] = {.lex_state = 25}, - [1361] = {.lex_state = 25}, - [1362] = {.lex_state = 25}, - [1363] = {.lex_state = 25}, - [1364] = {.lex_state = 25}, - [1365] = {.lex_state = 25}, + [1352] = {.lex_state = 16}, + [1353] = {.lex_state = 16}, + [1354] = {.lex_state = 16}, + [1355] = {.lex_state = 16}, + [1356] = {.lex_state = 16}, + [1357] = {.lex_state = 16}, + [1358] = {.lex_state = 16}, + [1359] = {.lex_state = 16}, + [1360] = {.lex_state = 16}, + [1361] = {.lex_state = 16}, + [1362] = {.lex_state = 16}, + [1363] = {.lex_state = 16}, + [1364] = {.lex_state = 16}, + [1365] = {.lex_state = 16}, [1366] = {.lex_state = 16}, [1367] = {.lex_state = 16}, [1368] = {.lex_state = 16}, @@ -11884,97 +11458,97 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1392] = {.lex_state = 16}, [1393] = {.lex_state = 16}, [1394] = {.lex_state = 16}, - [1395] = {.lex_state = 16}, + [1395] = {.lex_state = 25}, [1396] = {.lex_state = 16}, [1397] = {.lex_state = 16}, [1398] = {.lex_state = 16}, [1399] = {.lex_state = 16}, [1400] = {.lex_state = 16}, [1401] = {.lex_state = 16}, - [1402] = {.lex_state = 16}, - [1403] = {.lex_state = 16}, + [1402] = {.lex_state = 25}, + [1403] = {.lex_state = 25}, [1404] = {.lex_state = 16}, [1405] = {.lex_state = 16}, [1406] = {.lex_state = 16}, [1407] = {.lex_state = 16}, [1408] = {.lex_state = 16}, - [1409] = {.lex_state = 16}, - [1410] = {.lex_state = 16}, + [1409] = {.lex_state = 25}, + [1410] = {.lex_state = 25}, [1411] = {.lex_state = 16}, [1412] = {.lex_state = 16}, [1413] = {.lex_state = 16}, - [1414] = {.lex_state = 16}, - [1415] = {.lex_state = 16}, - [1416] = {.lex_state = 16}, - [1417] = {.lex_state = 16}, - [1418] = {.lex_state = 16}, - [1419] = {.lex_state = 16}, - [1420] = {.lex_state = 16}, - [1421] = {.lex_state = 16}, - [1422] = {.lex_state = 16}, - [1423] = {.lex_state = 16}, - [1424] = {.lex_state = 16}, - [1425] = {.lex_state = 16}, - [1426] = {.lex_state = 16}, - [1427] = {.lex_state = 16}, - [1428] = {.lex_state = 16}, - [1429] = {.lex_state = 16}, - [1430] = {.lex_state = 16}, - [1431] = {.lex_state = 16}, - [1432] = {.lex_state = 16}, - [1433] = {.lex_state = 16}, - [1434] = {.lex_state = 16}, - [1435] = {.lex_state = 16}, - [1436] = {.lex_state = 16}, - [1437] = {.lex_state = 16}, - [1438] = {.lex_state = 16}, - [1439] = {.lex_state = 16}, - [1440] = {.lex_state = 16}, - [1441] = {.lex_state = 16}, - [1442] = {.lex_state = 16}, - [1443] = {.lex_state = 16}, - [1444] = {.lex_state = 16}, - [1445] = {.lex_state = 16}, - [1446] = {.lex_state = 16}, - [1447] = {.lex_state = 16}, - [1448] = {.lex_state = 16}, - [1449] = {.lex_state = 16}, - [1450] = {.lex_state = 16}, - [1451] = {.lex_state = 16}, - [1452] = {.lex_state = 16}, - [1453] = {.lex_state = 16}, - [1454] = {.lex_state = 16}, - [1455] = {.lex_state = 16}, - [1456] = {.lex_state = 16}, - [1457] = {.lex_state = 16}, - [1458] = {.lex_state = 16}, - [1459] = {.lex_state = 16}, - [1460] = {.lex_state = 16}, - [1461] = {.lex_state = 16}, - [1462] = {.lex_state = 16}, - [1463] = {.lex_state = 16}, - [1464] = {.lex_state = 16}, - [1465] = {.lex_state = 16}, - [1466] = {.lex_state = 16}, - [1467] = {.lex_state = 16}, - [1468] = {.lex_state = 16}, - [1469] = {.lex_state = 16}, - [1470] = {.lex_state = 16}, - [1471] = {.lex_state = 16}, - [1472] = {.lex_state = 16}, - [1473] = {.lex_state = 16}, - [1474] = {.lex_state = 16}, - [1475] = {.lex_state = 16}, - [1476] = {.lex_state = 16}, - [1477] = {.lex_state = 16}, - [1478] = {.lex_state = 16}, - [1479] = {.lex_state = 16}, - [1480] = {.lex_state = 16}, - [1481] = {.lex_state = 16}, - [1482] = {.lex_state = 16}, - [1483] = {.lex_state = 16}, - [1484] = {.lex_state = 16}, - [1485] = {.lex_state = 16}, + [1414] = {.lex_state = 25}, + [1415] = {.lex_state = 25}, + [1416] = {.lex_state = 25}, + [1417] = {.lex_state = 25}, + [1418] = {.lex_state = 25}, + [1419] = {.lex_state = 25}, + [1420] = {.lex_state = 25}, + [1421] = {.lex_state = 25}, + [1422] = {.lex_state = 25}, + [1423] = {.lex_state = 25}, + [1424] = {.lex_state = 25}, + [1425] = {.lex_state = 25}, + [1426] = {.lex_state = 25}, + [1427] = {.lex_state = 25}, + [1428] = {.lex_state = 25}, + [1429] = {.lex_state = 25}, + [1430] = {.lex_state = 25}, + [1431] = {.lex_state = 25}, + [1432] = {.lex_state = 25}, + [1433] = {.lex_state = 25}, + [1434] = {.lex_state = 25}, + [1435] = {.lex_state = 25}, + [1436] = {.lex_state = 25}, + [1437] = {.lex_state = 25}, + [1438] = {.lex_state = 25}, + [1439] = {.lex_state = 25}, + [1440] = {.lex_state = 25}, + [1441] = {.lex_state = 25}, + [1442] = {.lex_state = 25}, + [1443] = {.lex_state = 25}, + [1444] = {.lex_state = 25}, + [1445] = {.lex_state = 25}, + [1446] = {.lex_state = 25}, + [1447] = {.lex_state = 25}, + [1448] = {.lex_state = 25}, + [1449] = {.lex_state = 25}, + [1450] = {.lex_state = 25}, + [1451] = {.lex_state = 25}, + [1452] = {.lex_state = 25}, + [1453] = {.lex_state = 25}, + [1454] = {.lex_state = 25}, + [1455] = {.lex_state = 25}, + [1456] = {.lex_state = 25}, + [1457] = {.lex_state = 25}, + [1458] = {.lex_state = 25}, + [1459] = {.lex_state = 25}, + [1460] = {.lex_state = 25}, + [1461] = {.lex_state = 25}, + [1462] = {.lex_state = 25}, + [1463] = {.lex_state = 25}, + [1464] = {.lex_state = 25}, + [1465] = {.lex_state = 25}, + [1466] = {.lex_state = 25}, + [1467] = {.lex_state = 25}, + [1468] = {.lex_state = 25}, + [1469] = {.lex_state = 25}, + [1470] = {.lex_state = 25}, + [1471] = {.lex_state = 25}, + [1472] = {.lex_state = 25}, + [1473] = {.lex_state = 25}, + [1474] = {.lex_state = 25}, + [1475] = {.lex_state = 25}, + [1476] = {.lex_state = 25}, + [1477] = {.lex_state = 25}, + [1478] = {.lex_state = 25}, + [1479] = {.lex_state = 25}, + [1480] = {.lex_state = 25}, + [1481] = {.lex_state = 25}, + [1482] = {.lex_state = 25}, + [1483] = {.lex_state = 25}, + [1484] = {.lex_state = 25}, + [1485] = {.lex_state = 25}, [1486] = {.lex_state = 16}, [1487] = {.lex_state = 22}, [1488] = {.lex_state = 22}, @@ -12346,7 +11920,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1854] = {.lex_state = 247}, [1855] = {.lex_state = 247}, [1856] = {.lex_state = 247}, - [1857] = {.lex_state = 247}, + [1857] = {.lex_state = 248}, [1858] = {.lex_state = 247}, [1859] = {.lex_state = 247}, [1860] = {.lex_state = 247}, @@ -12362,7 +11936,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1870] = {.lex_state = 247}, [1871] = {.lex_state = 247}, [1872] = {.lex_state = 247}, - [1873] = {.lex_state = 248}, + [1873] = {.lex_state = 247}, [1874] = {.lex_state = 247}, [1875] = {.lex_state = 247}, [1876] = {.lex_state = 247}, @@ -12456,14 +12030,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1964] = {.lex_state = 28}, [1965] = {.lex_state = 28}, [1966] = {.lex_state = 28}, - [1967] = {.lex_state = 247}, + [1967] = {.lex_state = 28}, [1968] = {.lex_state = 28}, [1969] = {.lex_state = 28}, [1970] = {.lex_state = 28}, [1971] = {.lex_state = 28}, [1972] = {.lex_state = 28}, [1973] = {.lex_state = 28}, - [1974] = {.lex_state = 28}, + [1974] = {.lex_state = 247}, [1975] = {.lex_state = 28}, [1976] = {.lex_state = 28}, [1977] = {.lex_state = 28}, @@ -12495,7 +12069,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2003] = {.lex_state = 247}, [2004] = {.lex_state = 247}, [2005] = {.lex_state = 247}, - [2006] = {.lex_state = 1}, + [2006] = {.lex_state = 247}, [2007] = {.lex_state = 247}, [2008] = {.lex_state = 247}, [2009] = {.lex_state = 247}, @@ -12513,7 +12087,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2021] = {.lex_state = 247}, [2022] = {.lex_state = 247}, [2023] = {.lex_state = 247}, - [2024] = {.lex_state = 247}, + [2024] = {.lex_state = 1}, [2025] = {.lex_state = 247}, [2026] = {.lex_state = 247}, [2027] = {.lex_state = 247}, @@ -12525,8 +12099,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2033] = {.lex_state = 247}, [2034] = {.lex_state = 247}, [2035] = {.lex_state = 25}, - [2036] = {.lex_state = 247}, - [2037] = {.lex_state = 25}, + [2036] = {.lex_state = 25}, + [2037] = {.lex_state = 247}, [2038] = {.lex_state = 247}, [2039] = {.lex_state = 247}, [2040] = {.lex_state = 247}, @@ -13156,41 +12730,41 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2664] = {.lex_state = 25}, [2665] = {.lex_state = 25}, [2666] = {.lex_state = 25}, - [2667] = {.lex_state = 1}, + [2667] = {.lex_state = 25}, [2668] = {.lex_state = 25}, - [2669] = {.lex_state = 25}, + [2669] = {.lex_state = 1}, [2670] = {.lex_state = 25}, [2671] = {.lex_state = 25}, [2672] = {.lex_state = 25}, [2673] = {.lex_state = 25}, [2674] = {.lex_state = 25}, - [2675] = {.lex_state = 25}, + [2675] = {.lex_state = 28}, [2676] = {.lex_state = 25}, [2677] = {.lex_state = 25}, [2678] = {.lex_state = 25}, [2679] = {.lex_state = 25}, - [2680] = {.lex_state = 28}, + [2680] = {.lex_state = 25}, [2681] = {.lex_state = 25}, [2682] = {.lex_state = 28}, [2683] = {.lex_state = 28}, [2684] = {.lex_state = 25}, - [2685] = {.lex_state = 28}, + [2685] = {.lex_state = 25}, [2686] = {.lex_state = 25}, - [2687] = {.lex_state = 28}, + [2687] = {.lex_state = 25}, [2688] = {.lex_state = 25}, - [2689] = {.lex_state = 28}, + [2689] = {.lex_state = 25}, [2690] = {.lex_state = 25}, [2691] = {.lex_state = 25}, [2692] = {.lex_state = 25}, - [2693] = {.lex_state = 25}, + [2693] = {.lex_state = 28}, [2694] = {.lex_state = 25}, - [2695] = {.lex_state = 28}, - [2696] = {.lex_state = 1}, - [2697] = {.lex_state = 28}, - [2698] = {.lex_state = 28}, + [2695] = {.lex_state = 25}, + [2696] = {.lex_state = 25}, + [2697] = {.lex_state = 25}, + [2698] = {.lex_state = 25}, [2699] = {.lex_state = 25}, [2700] = {.lex_state = 25}, - [2701] = {.lex_state = 25}, + [2701] = {.lex_state = 28}, [2702] = {.lex_state = 25}, [2703] = {.lex_state = 25}, [2704] = {.lex_state = 1}, @@ -13202,38 +12776,38 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2710] = {.lex_state = 25}, [2711] = {.lex_state = 25}, [2712] = {.lex_state = 25}, - [2713] = {.lex_state = 28}, - [2714] = {.lex_state = 25}, - [2715] = {.lex_state = 25}, + [2713] = {.lex_state = 25}, + [2714] = {.lex_state = 28}, + [2715] = {.lex_state = 28}, [2716] = {.lex_state = 25}, - [2717] = {.lex_state = 28}, - [2718] = {.lex_state = 25}, - [2719] = {.lex_state = 25}, + [2717] = {.lex_state = 25}, + [2718] = {.lex_state = 28}, + [2719] = {.lex_state = 28}, [2720] = {.lex_state = 25}, - [2721] = {.lex_state = 25}, + [2721] = {.lex_state = 28}, [2722] = {.lex_state = 28}, - [2723] = {.lex_state = 25}, + [2723] = {.lex_state = 28}, [2724] = {.lex_state = 28}, [2725] = {.lex_state = 25}, [2726] = {.lex_state = 25}, [2727] = {.lex_state = 25}, [2728] = {.lex_state = 25}, - [2729] = {.lex_state = 25}, - [2730] = {.lex_state = 25}, + [2729] = {.lex_state = 1}, + [2730] = {.lex_state = 28}, [2731] = {.lex_state = 25}, [2732] = {.lex_state = 25}, - [2733] = {.lex_state = 28}, + [2733] = {.lex_state = 25}, [2734] = {.lex_state = 28}, - [2735] = {.lex_state = 25}, + [2735] = {.lex_state = 28}, [2736] = {.lex_state = 25}, [2737] = {.lex_state = 25}, [2738] = {.lex_state = 25}, - [2739] = {.lex_state = 25}, + [2739] = {.lex_state = 28}, [2740] = {.lex_state = 25}, [2741] = {.lex_state = 25}, - [2742] = {.lex_state = 28}, + [2742] = {.lex_state = 25}, [2743] = {.lex_state = 28}, - [2744] = {.lex_state = 28}, + [2744] = {.lex_state = 25}, [2745] = {.lex_state = 25}, [2746] = {.lex_state = 28}, [2747] = {.lex_state = 28}, @@ -13288,11 +12862,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2796] = {.lex_state = 28}, [2797] = {.lex_state = 28}, [2798] = {.lex_state = 28}, - [2799] = {.lex_state = 18}, + [2799] = {.lex_state = 29}, [2800] = {.lex_state = 18}, [2801] = {.lex_state = 18}, [2802] = {.lex_state = 18}, - [2803] = {.lex_state = 18}, + [2803] = {.lex_state = 29}, [2804] = {.lex_state = 29}, [2805] = {.lex_state = 18}, [2806] = {.lex_state = 18}, @@ -13300,74 +12874,74 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2808] = {.lex_state = 29}, [2809] = {.lex_state = 18}, [2810] = {.lex_state = 29}, - [2811] = {.lex_state = 29}, - [2812] = {.lex_state = 18}, - [2813] = {.lex_state = 29}, - [2814] = {.lex_state = 18}, - [2815] = {.lex_state = 29}, + [2811] = {.lex_state = 18}, + [2812] = {.lex_state = 29}, + [2813] = {.lex_state = 18}, + [2814] = {.lex_state = 29}, + [2815] = {.lex_state = 18}, [2816] = {.lex_state = 18}, - [2817] = {.lex_state = 18}, - [2818] = {.lex_state = 18}, + [2817] = {.lex_state = 29}, + [2818] = {.lex_state = 29}, [2819] = {.lex_state = 18}, [2820] = {.lex_state = 18}, [2821] = {.lex_state = 18}, [2822] = {.lex_state = 18}, - [2823] = {.lex_state = 29}, - [2824] = {.lex_state = 18}, + [2823] = {.lex_state = 18}, + [2824] = {.lex_state = 29}, [2825] = {.lex_state = 18}, [2826] = {.lex_state = 18}, - [2827] = {.lex_state = 29}, - [2828] = {.lex_state = 29}, + [2827] = {.lex_state = 18}, + [2828] = {.lex_state = 18}, [2829] = {.lex_state = 18}, - [2830] = {.lex_state = 18}, + [2830] = {.lex_state = 29}, [2831] = {.lex_state = 18}, [2832] = {.lex_state = 29}, - [2833] = {.lex_state = 29}, + [2833] = {.lex_state = 18}, [2834] = {.lex_state = 29}, [2835] = {.lex_state = 18}, [2836] = {.lex_state = 18}, [2837] = {.lex_state = 18}, [2838] = {.lex_state = 18}, - [2839] = {.lex_state = 29}, + [2839] = {.lex_state = 18}, [2840] = {.lex_state = 29}, - [2841] = {.lex_state = 29}, - [2842] = {.lex_state = 18}, + [2841] = {.lex_state = 18}, + [2842] = {.lex_state = 29}, [2843] = {.lex_state = 18}, [2844] = {.lex_state = 18}, [2845] = {.lex_state = 18}, [2846] = {.lex_state = 22}, - [2847] = {.lex_state = 22}, - [2848] = {.lex_state = 25}, + [2847] = {.lex_state = 25}, + [2848] = {.lex_state = 22}, [2849] = {.lex_state = 22}, - [2850] = {.lex_state = 29}, + [2850] = {.lex_state = 28}, [2851] = {.lex_state = 22}, - [2852] = {.lex_state = 25}, + [2852] = {.lex_state = 22}, [2853] = {.lex_state = 28}, [2854] = {.lex_state = 22}, [2855] = {.lex_state = 22}, - [2856] = {.lex_state = 29}, + [2856] = {.lex_state = 22}, [2857] = {.lex_state = 22}, - [2858] = {.lex_state = 28}, - [2859] = {.lex_state = 28}, - [2860] = {.lex_state = 22}, + [2858] = {.lex_state = 22}, + [2859] = {.lex_state = 22}, + [2860] = {.lex_state = 28}, [2861] = {.lex_state = 22}, [2862] = {.lex_state = 22}, [2863] = {.lex_state = 22}, [2864] = {.lex_state = 22}, [2865] = {.lex_state = 22}, - [2866] = {.lex_state = 22}, - [2867] = {.lex_state = 22}, + [2866] = {.lex_state = 29}, + [2867] = {.lex_state = 29}, [2868] = {.lex_state = 28}, - [2869] = {.lex_state = 28}, + [2869] = {.lex_state = 22}, [2870] = {.lex_state = 22}, - [2871] = {.lex_state = 22}, - [2872] = {.lex_state = 22}, + [2871] = {.lex_state = 28}, + [2872] = {.lex_state = 25}, [2873] = {.lex_state = 28}, [2874] = {.lex_state = 28}, [2875] = {.lex_state = 28}, - [2876] = {.lex_state = 29}, + [2876] = {.lex_state = 27}, [2877] = {.lex_state = 28}, - [2878] = {.lex_state = 28}, + [2878] = {.lex_state = 29}, [2879] = {.lex_state = 28}, [2880] = {.lex_state = 28}, [2881] = {.lex_state = 28}, @@ -13375,7 +12949,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2883] = {.lex_state = 28}, [2884] = {.lex_state = 28}, [2885] = {.lex_state = 28}, - [2886] = {.lex_state = 27}, + [2886] = {.lex_state = 28}, [2887] = {.lex_state = 28}, [2888] = {.lex_state = 22}, [2889] = {.lex_state = 22}, @@ -13389,13 +12963,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2897] = {.lex_state = 22}, [2898] = {.lex_state = 22}, [2899] = {.lex_state = 22}, - [2900] = {.lex_state = 19}, - [2901] = {.lex_state = 29}, - [2902] = {.lex_state = 20}, - [2903] = {.lex_state = 247}, + [2900] = {.lex_state = 247}, + [2901] = {.lex_state = 20}, + [2902] = {.lex_state = 19}, + [2903] = {.lex_state = 29}, [2904] = {.lex_state = 20}, - [2905] = {.lex_state = 20}, - [2906] = {.lex_state = 20}, + [2905] = {.lex_state = 247}, + [2906] = {.lex_state = 247}, [2907] = {.lex_state = 20}, [2908] = {.lex_state = 20}, [2909] = {.lex_state = 20}, @@ -13457,23 +13031,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2965] = {.lex_state = 20}, [2966] = {.lex_state = 20}, [2967] = {.lex_state = 20}, - [2968] = {.lex_state = 20}, - [2969] = {.lex_state = 247}, - [2970] = {.lex_state = 247}, + [2968] = {.lex_state = 1}, + [2969] = {.lex_state = 20}, + [2970] = {.lex_state = 20}, [2971] = {.lex_state = 20}, [2972] = {.lex_state = 20}, - [2973] = {.lex_state = 247}, - [2974] = {.lex_state = 247}, + [2973] = {.lex_state = 1}, + [2974] = {.lex_state = 20}, [2975] = {.lex_state = 20}, - [2976] = {.lex_state = 1}, + [2976] = {.lex_state = 20}, [2977] = {.lex_state = 20}, [2978] = {.lex_state = 20}, [2979] = {.lex_state = 20}, [2980] = {.lex_state = 20}, [2981] = {.lex_state = 20}, - [2982] = {.lex_state = 1}, - [2983] = {.lex_state = 20}, - [2984] = {.lex_state = 20}, + [2982] = {.lex_state = 20}, + [2983] = {.lex_state = 247}, + [2984] = {.lex_state = 247}, [2985] = {.lex_state = 20}, [2986] = {.lex_state = 20}, [2987] = {.lex_state = 20}, @@ -13489,38 +13063,38 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2997] = {.lex_state = 20}, [2998] = {.lex_state = 20}, [2999] = {.lex_state = 27}, - [3000] = {.lex_state = 247}, + [3000] = {.lex_state = 25}, [3001] = {.lex_state = 247}, [3002] = {.lex_state = 247}, [3003] = {.lex_state = 247}, [3004] = {.lex_state = 247}, [3005] = {.lex_state = 247}, [3006] = {.lex_state = 247}, - [3007] = {.lex_state = 247}, - [3008] = {.lex_state = 247}, - [3009] = {.lex_state = 25}, - [3010] = {.lex_state = 25}, + [3007] = {.lex_state = 25}, + [3008] = {.lex_state = 25}, + [3009] = {.lex_state = 247}, + [3010] = {.lex_state = 247}, [3011] = {.lex_state = 247}, - [3012] = {.lex_state = 25}, - [3013] = {.lex_state = 25}, - [3014] = {.lex_state = 247}, + [3012] = {.lex_state = 247}, + [3013] = {.lex_state = 247}, + [3014] = {.lex_state = 25}, [3015] = {.lex_state = 247}, - [3016] = {.lex_state = 25}, + [3016] = {.lex_state = 247}, [3017] = {.lex_state = 25}, [3018] = {.lex_state = 247}, [3019] = {.lex_state = 247}, [3020] = {.lex_state = 247}, [3021] = {.lex_state = 247}, [3022] = {.lex_state = 25}, - [3023] = {.lex_state = 25}, - [3024] = {.lex_state = 247}, + [3023] = {.lex_state = 247}, + [3024] = {.lex_state = 25}, [3025] = {.lex_state = 247}, - [3026] = {.lex_state = 25}, - [3027] = {.lex_state = 247}, - [3028] = {.lex_state = 247}, + [3026] = {.lex_state = 247}, + [3027] = {.lex_state = 25}, + [3028] = {.lex_state = 25}, [3029] = {.lex_state = 247}, [3030] = {.lex_state = 247}, - [3031] = {.lex_state = 247}, + [3031] = {.lex_state = 25}, [3032] = {.lex_state = 247}, [3033] = {.lex_state = 247}, [3034] = {.lex_state = 25}, @@ -13529,85 +13103,85 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3037] = {.lex_state = 247}, [3038] = {.lex_state = 247}, [3039] = {.lex_state = 20}, - [3040] = {.lex_state = 247}, - [3041] = {.lex_state = 247}, + [3040] = {.lex_state = 20}, + [3041] = {.lex_state = 25}, [3042] = {.lex_state = 247}, - [3043] = {.lex_state = 20}, - [3044] = {.lex_state = 20}, + [3043] = {.lex_state = 247}, + [3044] = {.lex_state = 25}, [3045] = {.lex_state = 247}, [3046] = {.lex_state = 247}, - [3047] = {.lex_state = 25}, - [3048] = {.lex_state = 25}, - [3049] = {.lex_state = 25}, + [3047] = {.lex_state = 20}, + [3048] = {.lex_state = 247}, + [3049] = {.lex_state = 247}, [3050] = {.lex_state = 247}, [3051] = {.lex_state = 247}, [3052] = {.lex_state = 247}, [3053] = {.lex_state = 20}, [3054] = {.lex_state = 20}, - [3055] = {.lex_state = 20}, + [3055] = {.lex_state = 1}, [3056] = {.lex_state = 20}, [3057] = {.lex_state = 20}, - [3058] = {.lex_state = 20}, + [3058] = {.lex_state = 247}, [3059] = {.lex_state = 20}, - [3060] = {.lex_state = 20}, - [3061] = {.lex_state = 20}, + [3060] = {.lex_state = 247}, + [3061] = {.lex_state = 247}, [3062] = {.lex_state = 20}, [3063] = {.lex_state = 20}, - [3064] = {.lex_state = 20}, - [3065] = {.lex_state = 20}, - [3066] = {.lex_state = 247}, - [3067] = {.lex_state = 247}, - [3068] = {.lex_state = 20}, - [3069] = {.lex_state = 247}, + [3064] = {.lex_state = 247}, + [3065] = {.lex_state = 247}, + [3066] = {.lex_state = 20}, + [3067] = {.lex_state = 20}, + [3068] = {.lex_state = 1}, + [3069] = {.lex_state = 20}, [3070] = {.lex_state = 20}, [3071] = {.lex_state = 247}, - [3072] = {.lex_state = 22}, - [3073] = {.lex_state = 247}, - [3074] = {.lex_state = 247}, + [3072] = {.lex_state = 20}, + [3073] = {.lex_state = 20}, + [3074] = {.lex_state = 20}, [3075] = {.lex_state = 20}, [3076] = {.lex_state = 20}, - [3077] = {.lex_state = 247}, + [3077] = {.lex_state = 20}, [3078] = {.lex_state = 20}, [3079] = {.lex_state = 247}, - [3080] = {.lex_state = 247}, + [3080] = {.lex_state = 20}, [3081] = {.lex_state = 20}, [3082] = {.lex_state = 20}, [3083] = {.lex_state = 20}, - [3084] = {.lex_state = 20}, - [3085] = {.lex_state = 1}, + [3084] = {.lex_state = 22}, + [3085] = {.lex_state = 20}, [3086] = {.lex_state = 20}, [3087] = {.lex_state = 20}, - [3088] = {.lex_state = 20}, + [3088] = {.lex_state = 25}, [3089] = {.lex_state = 20}, - [3090] = {.lex_state = 247}, + [3090] = {.lex_state = 20}, [3091] = {.lex_state = 20}, - [3092] = {.lex_state = 1}, - [3093] = {.lex_state = 20}, - [3094] = {.lex_state = 25}, + [3092] = {.lex_state = 20}, + [3093] = {.lex_state = 247}, + [3094] = {.lex_state = 20}, [3095] = {.lex_state = 20}, [3096] = {.lex_state = 20}, - [3097] = {.lex_state = 20}, + [3097] = {.lex_state = 247}, [3098] = {.lex_state = 20}, - [3099] = {.lex_state = 20}, - [3100] = {.lex_state = 20}, - [3101] = {.lex_state = 247}, + [3099] = {.lex_state = 247}, + [3100] = {.lex_state = 247}, + [3101] = {.lex_state = 20}, [3102] = {.lex_state = 20}, [3103] = {.lex_state = 247}, - [3104] = {.lex_state = 25}, - [3105] = {.lex_state = 247}, - [3106] = {.lex_state = 247}, - [3107] = {.lex_state = 25}, + [3104] = {.lex_state = 247}, + [3105] = {.lex_state = 25}, + [3106] = {.lex_state = 25}, + [3107] = {.lex_state = 247}, [3108] = {.lex_state = 25}, [3109] = {.lex_state = 25}, - [3110] = {.lex_state = 247}, - [3111] = {.lex_state = 247}, - [3112] = {.lex_state = 247}, - [3113] = {.lex_state = 247}, - [3114] = {.lex_state = 247}, - [3115] = {.lex_state = 247}, - [3116] = {.lex_state = 247}, - [3117] = {.lex_state = 247}, - [3118] = {.lex_state = 25}, + [3110] = {.lex_state = 25}, + [3111] = {.lex_state = 25}, + [3112] = {.lex_state = 25}, + [3113] = {.lex_state = 25}, + [3114] = {.lex_state = 25}, + [3115] = {.lex_state = 25}, + [3116] = {.lex_state = 25}, + [3117] = {.lex_state = 25}, + [3118] = {.lex_state = 30}, [3119] = {.lex_state = 25}, [3120] = {.lex_state = 25}, [3121] = {.lex_state = 25}, @@ -13623,7 +13197,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3131] = {.lex_state = 25}, [3132] = {.lex_state = 25}, [3133] = {.lex_state = 25}, - [3134] = {.lex_state = 25}, + [3134] = {.lex_state = 30}, [3135] = {.lex_state = 25}, [3136] = {.lex_state = 25}, [3137] = {.lex_state = 25}, @@ -13700,7 +13274,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3208] = {.lex_state = 25}, [3209] = {.lex_state = 25}, [3210] = {.lex_state = 25}, - [3211] = {.lex_state = 25}, + [3211] = {.lex_state = 247}, [3212] = {.lex_state = 25}, [3213] = {.lex_state = 25}, [3214] = {.lex_state = 25}, @@ -13769,7 +13343,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3277] = {.lex_state = 25}, [3278] = {.lex_state = 25}, [3279] = {.lex_state = 25}, - [3280] = {.lex_state = 25}, + [3280] = {.lex_state = 247}, [3281] = {.lex_state = 25}, [3282] = {.lex_state = 25}, [3283] = {.lex_state = 25}, @@ -13896,8 +13470,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3404] = {.lex_state = 25}, [3405] = {.lex_state = 25}, [3406] = {.lex_state = 25}, - [3407] = {.lex_state = 30}, - [3408] = {.lex_state = 30}, + [3407] = {.lex_state = 25}, + [3408] = {.lex_state = 25}, [3409] = {.lex_state = 25}, [3410] = {.lex_state = 25}, [3411] = {.lex_state = 25}, @@ -13906,14 +13480,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3414] = {.lex_state = 25}, [3415] = {.lex_state = 25}, [3416] = {.lex_state = 25}, - [3417] = {.lex_state = 25}, - [3418] = {.lex_state = 25}, - [3419] = {.lex_state = 25}, - [3420] = {.lex_state = 25}, - [3421] = {.lex_state = 25}, - [3422] = {.lex_state = 25}, - [3423] = {.lex_state = 25}, - [3424] = {.lex_state = 247}, + [3417] = {.lex_state = 247}, + [3418] = {.lex_state = 247}, + [3419] = {.lex_state = 247}, + [3420] = {.lex_state = 247}, + [3421] = {.lex_state = 247}, + [3422] = {.lex_state = 247}, + [3423] = {.lex_state = 247}, + [3424] = {.lex_state = 25}, [3425] = {.lex_state = 247}, [3426] = {.lex_state = 247}, [3427] = {.lex_state = 247}, @@ -14140,14 +13714,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3648] = {.lex_state = 247}, [3649] = {.lex_state = 247}, [3650] = {.lex_state = 247}, - [3651] = {.lex_state = 247}, + [3651] = {.lex_state = 34}, [3652] = {.lex_state = 247}, - [3653] = {.lex_state = 247}, + [3653] = {.lex_state = 34}, [3654] = {.lex_state = 247}, [3655] = {.lex_state = 247}, [3656] = {.lex_state = 247}, [3657] = {.lex_state = 247}, - [3658] = {.lex_state = 247}, + [3658] = {.lex_state = 34}, [3659] = {.lex_state = 247}, [3660] = {.lex_state = 247}, [3661] = {.lex_state = 247}, @@ -14171,7 +13745,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3679] = {.lex_state = 247}, [3680] = {.lex_state = 247}, [3681] = {.lex_state = 247}, - [3682] = {.lex_state = 247}, + [3682] = {.lex_state = 34}, [3683] = {.lex_state = 247}, [3684] = {.lex_state = 247}, [3685] = {.lex_state = 247}, @@ -14194,20 +13768,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3702] = {.lex_state = 247}, [3703] = {.lex_state = 247}, [3704] = {.lex_state = 247}, - [3705] = {.lex_state = 247}, + [3705] = {.lex_state = 34}, [3706] = {.lex_state = 247}, [3707] = {.lex_state = 247}, [3708] = {.lex_state = 247}, [3709] = {.lex_state = 247}, [3710] = {.lex_state = 247}, [3711] = {.lex_state = 247}, - [3712] = {.lex_state = 247}, + [3712] = {.lex_state = 34}, [3713] = {.lex_state = 247}, [3714] = {.lex_state = 247}, [3715] = {.lex_state = 247}, [3716] = {.lex_state = 247}, [3717] = {.lex_state = 247}, - [3718] = {.lex_state = 247}, + [3718] = {.lex_state = 34}, [3719] = {.lex_state = 247}, [3720] = {.lex_state = 247}, [3721] = {.lex_state = 247}, @@ -14225,7 +13799,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3733] = {.lex_state = 247}, [3734] = {.lex_state = 247}, [3735] = {.lex_state = 247}, - [3736] = {.lex_state = 247}, + [3736] = {.lex_state = 34}, [3737] = {.lex_state = 247}, [3738] = {.lex_state = 247}, [3739] = {.lex_state = 247}, @@ -14238,7 +13812,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3746] = {.lex_state = 247}, [3747] = {.lex_state = 247}, [3748] = {.lex_state = 247}, - [3749] = {.lex_state = 34}, + [3749] = {.lex_state = 247}, [3750] = {.lex_state = 247}, [3751] = {.lex_state = 247}, [3752] = {.lex_state = 247}, @@ -14246,9 +13820,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3754] = {.lex_state = 247}, [3755] = {.lex_state = 247}, [3756] = {.lex_state = 247}, - [3757] = {.lex_state = 34}, + [3757] = {.lex_state = 247}, [3758] = {.lex_state = 247}, - [3759] = {.lex_state = 247}, + [3759] = {.lex_state = 34}, [3760] = {.lex_state = 247}, [3761] = {.lex_state = 247}, [3762] = {.lex_state = 247}, @@ -14256,8 +13830,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3764] = {.lex_state = 247}, [3765] = {.lex_state = 247}, [3766] = {.lex_state = 247}, - [3767] = {.lex_state = 34}, - [3768] = {.lex_state = 247}, + [3767] = {.lex_state = 247}, + [3768] = {.lex_state = 34}, [3769] = {.lex_state = 247}, [3770] = {.lex_state = 247}, [3771] = {.lex_state = 247}, @@ -14267,7 +13841,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3775] = {.lex_state = 247}, [3776] = {.lex_state = 247}, [3777] = {.lex_state = 247}, - [3778] = {.lex_state = 34}, + [3778] = {.lex_state = 247}, [3779] = {.lex_state = 247}, [3780] = {.lex_state = 247}, [3781] = {.lex_state = 247}, @@ -14279,7 +13853,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3787] = {.lex_state = 247}, [3788] = {.lex_state = 247}, [3789] = {.lex_state = 247}, - [3790] = {.lex_state = 34}, + [3790] = {.lex_state = 247}, [3791] = {.lex_state = 247}, [3792] = {.lex_state = 247}, [3793] = {.lex_state = 247}, @@ -14306,7 +13880,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3814] = {.lex_state = 247}, [3815] = {.lex_state = 247}, [3816] = {.lex_state = 247}, - [3817] = {.lex_state = 34}, + [3817] = {.lex_state = 247}, [3818] = {.lex_state = 247}, [3819] = {.lex_state = 247}, [3820] = {.lex_state = 247}, @@ -14332,7 +13906,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3840] = {.lex_state = 247}, [3841] = {.lex_state = 247}, [3842] = {.lex_state = 247}, - [3843] = {.lex_state = 34}, + [3843] = {.lex_state = 247}, [3844] = {.lex_state = 247}, [3845] = {.lex_state = 247}, [3846] = {.lex_state = 247}, @@ -14344,7 +13918,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3852] = {.lex_state = 247}, [3853] = {.lex_state = 247}, [3854] = {.lex_state = 247}, - [3855] = {.lex_state = 34}, + [3855] = {.lex_state = 247}, [3856] = {.lex_state = 247}, [3857] = {.lex_state = 247}, [3858] = {.lex_state = 247}, @@ -14357,13 +13931,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3865] = {.lex_state = 247}, [3866] = {.lex_state = 247}, [3867] = {.lex_state = 247}, - [3868] = {.lex_state = 34}, + [3868] = {.lex_state = 247}, [3869] = {.lex_state = 247}, [3870] = {.lex_state = 247}, [3871] = {.lex_state = 247}, [3872] = {.lex_state = 247}, [3873] = {.lex_state = 247}, - [3874] = {.lex_state = 34}, + [3874] = {.lex_state = 247}, [3875] = {.lex_state = 247}, [3876] = {.lex_state = 247}, [3877] = {.lex_state = 247}, @@ -14377,23 +13951,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3885] = {.lex_state = 247}, [3886] = {.lex_state = 247}, [3887] = {.lex_state = 247}, - [3888] = {.lex_state = 247}, + [3888] = {.lex_state = 21}, [3889] = {.lex_state = 247}, - [3890] = {.lex_state = 247}, + [3890] = {.lex_state = 21}, [3891] = {.lex_state = 247}, [3892] = {.lex_state = 247}, [3893] = {.lex_state = 247}, - [3894] = {.lex_state = 21}, - [3895] = {.lex_state = 21}, + [3894] = {.lex_state = 247}, + [3895] = {.lex_state = 247}, [3896] = {.lex_state = 247}, [3897] = {.lex_state = 247}, [3898] = {.lex_state = 247}, [3899] = {.lex_state = 247}, - [3900] = {.lex_state = 247}, - [3901] = {.lex_state = 21}, - [3902] = {.lex_state = 21}, + [3900] = {.lex_state = 21}, + [3901] = {.lex_state = 247}, + [3902] = {.lex_state = 247}, [3903] = {.lex_state = 247}, - [3904] = {.lex_state = 21}, + [3904] = {.lex_state = 247}, [3905] = {.lex_state = 247}, [3906] = {.lex_state = 247}, [3907] = {.lex_state = 247}, @@ -14401,62 +13975,62 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3909] = {.lex_state = 247}, [3910] = {.lex_state = 247}, [3911] = {.lex_state = 247}, - [3912] = {.lex_state = 21}, + [3912] = {.lex_state = 247}, [3913] = {.lex_state = 247}, - [3914] = {.lex_state = 21}, + [3914] = {.lex_state = 247}, [3915] = {.lex_state = 247}, [3916] = {.lex_state = 247}, - [3917] = {.lex_state = 247}, + [3917] = {.lex_state = 1}, [3918] = {.lex_state = 247}, [3919] = {.lex_state = 247}, - [3920] = {.lex_state = 21}, + [3920] = {.lex_state = 247}, [3921] = {.lex_state = 247}, - [3922] = {.lex_state = 247}, + [3922] = {.lex_state = 21}, [3923] = {.lex_state = 247}, [3924] = {.lex_state = 247}, [3925] = {.lex_state = 247}, - [3926] = {.lex_state = 247}, + [3926] = {.lex_state = 21}, [3927] = {.lex_state = 247}, [3928] = {.lex_state = 247}, [3929] = {.lex_state = 247}, - [3930] = {.lex_state = 21}, - [3931] = {.lex_state = 247}, - [3932] = {.lex_state = 21}, + [3930] = {.lex_state = 247}, + [3931] = {.lex_state = 21}, + [3932] = {.lex_state = 247}, [3933] = {.lex_state = 247}, [3934] = {.lex_state = 247}, [3935] = {.lex_state = 247}, - [3936] = {.lex_state = 21}, + [3936] = {.lex_state = 247}, [3937] = {.lex_state = 247}, - [3938] = {.lex_state = 247}, - [3939] = {.lex_state = 21}, + [3938] = {.lex_state = 21}, + [3939] = {.lex_state = 247}, [3940] = {.lex_state = 247}, [3941] = {.lex_state = 247}, - [3942] = {.lex_state = 21}, - [3943] = {.lex_state = 247}, + [3942] = {.lex_state = 247}, + [3943] = {.lex_state = 21}, [3944] = {.lex_state = 247}, - [3945] = {.lex_state = 247}, - [3946] = {.lex_state = 247}, + [3945] = {.lex_state = 21}, + [3946] = {.lex_state = 21}, [3947] = {.lex_state = 247}, [3948] = {.lex_state = 247}, - [3949] = {.lex_state = 21}, + [3949] = {.lex_state = 247}, [3950] = {.lex_state = 247}, [3951] = {.lex_state = 247}, - [3952] = {.lex_state = 21}, - [3953] = {.lex_state = 247}, + [3952] = {.lex_state = 247}, + [3953] = {.lex_state = 21}, [3954] = {.lex_state = 247}, [3955] = {.lex_state = 247}, [3956] = {.lex_state = 247}, [3957] = {.lex_state = 247}, - [3958] = {.lex_state = 247}, + [3958] = {.lex_state = 21}, [3959] = {.lex_state = 247}, - [3960] = {.lex_state = 247}, + [3960] = {.lex_state = 21}, [3961] = {.lex_state = 247}, [3962] = {.lex_state = 247}, - [3963] = {.lex_state = 247}, - [3964] = {.lex_state = 21}, - [3965] = {.lex_state = 247}, - [3966] = {.lex_state = 21}, - [3967] = {.lex_state = 21}, + [3963] = {.lex_state = 21}, + [3964] = {.lex_state = 247}, + [3965] = {.lex_state = 21}, + [3966] = {.lex_state = 247}, + [3967] = {.lex_state = 247}, [3968] = {.lex_state = 247}, [3969] = {.lex_state = 247}, [3970] = {.lex_state = 247}, @@ -14466,20 +14040,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3974] = {.lex_state = 247}, [3975] = {.lex_state = 247}, [3976] = {.lex_state = 247}, - [3977] = {.lex_state = 21}, - [3978] = {.lex_state = 247}, + [3977] = {.lex_state = 247}, + [3978] = {.lex_state = 21}, [3979] = {.lex_state = 247}, [3980] = {.lex_state = 247}, [3981] = {.lex_state = 247}, - [3982] = {.lex_state = 247}, - [3983] = {.lex_state = 247}, - [3984] = {.lex_state = 247}, + [3982] = {.lex_state = 21}, + [3983] = {.lex_state = 21}, + [3984] = {.lex_state = 21}, [3985] = {.lex_state = 247}, [3986] = {.lex_state = 247}, [3987] = {.lex_state = 247}, [3988] = {.lex_state = 247}, - [3989] = {.lex_state = 21}, - [3990] = {.lex_state = 247}, + [3989] = {.lex_state = 247}, + [3990] = {.lex_state = 21}, [3991] = {.lex_state = 247}, [3992] = {.lex_state = 247}, [3993] = {.lex_state = 247}, @@ -14487,18 +14061,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3995] = {.lex_state = 247}, [3996] = {.lex_state = 247}, [3997] = {.lex_state = 247}, - [3998] = {.lex_state = 1}, + [3998] = {.lex_state = 247}, [3999] = {.lex_state = 35}, - [4000] = {.lex_state = 35}, + [4000] = {.lex_state = 31}, [4001] = {.lex_state = 35}, [4002] = {.lex_state = 33}, - [4003] = {.lex_state = 31}, + [4003] = {.lex_state = 35}, [4004] = {.lex_state = 35}, [4005] = {.lex_state = 35}, [4006] = {.lex_state = 35}, [4007] = {.lex_state = 35}, - [4008] = {.lex_state = 31}, - [4009] = {.lex_state = 35}, + [4008] = {.lex_state = 35}, + [4009] = {.lex_state = 31}, [4010] = {.lex_state = 35}, [4011] = {.lex_state = 35}, [4012] = {.lex_state = 31}, @@ -14527,12 +14101,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4035] = {.lex_state = 32}, [4036] = {.lex_state = 32}, [4037] = {.lex_state = 32}, - [4038] = {.lex_state = 247}, + [4038] = {.lex_state = 32}, [4039] = {.lex_state = 32}, [4040] = {.lex_state = 32}, [4041] = {.lex_state = 32}, [4042] = {.lex_state = 32}, - [4043] = {.lex_state = 32}, + [4043] = {.lex_state = 22}, [4044] = {.lex_state = 32}, [4045] = {.lex_state = 32}, [4046] = {.lex_state = 32}, @@ -14553,7 +14127,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4061] = {.lex_state = 32}, [4062] = {.lex_state = 32}, [4063] = {.lex_state = 32}, - [4064] = {.lex_state = 32}, + [4064] = {.lex_state = 247}, [4065] = {.lex_state = 32}, [4066] = {.lex_state = 32}, [4067] = {.lex_state = 32}, @@ -14565,11 +14139,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4073] = {.lex_state = 32}, [4074] = {.lex_state = 32}, [4075] = {.lex_state = 32}, - [4076] = {.lex_state = 22}, + [4076] = {.lex_state = 32}, [4077] = {.lex_state = 32}, [4078] = {.lex_state = 32}, [4079] = {.lex_state = 32}, - [4080] = {.lex_state = 31}, + [4080] = {.lex_state = 32}, [4081] = {.lex_state = 32}, [4082] = {.lex_state = 32}, [4083] = {.lex_state = 32}, @@ -14582,7 +14156,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4090] = {.lex_state = 32}, [4091] = {.lex_state = 32}, [4092] = {.lex_state = 32}, - [4093] = {.lex_state = 32}, + [4093] = {.lex_state = 31}, [4094] = {.lex_state = 32}, [4095] = {.lex_state = 32}, [4096] = {.lex_state = 32}, @@ -14601,59 +14175,59 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4109] = {.lex_state = 20}, [4110] = {.lex_state = 20}, [4111] = {.lex_state = 20}, - [4112] = {.lex_state = 20}, - [4113] = {.lex_state = 247}, + [4112] = {.lex_state = 247}, + [4113] = {.lex_state = 20}, [4114] = {.lex_state = 20}, [4115] = {.lex_state = 20}, [4116] = {.lex_state = 20}, [4117] = {.lex_state = 20}, [4118] = {.lex_state = 20}, - [4119] = {.lex_state = 25}, + [4119] = {.lex_state = 22}, [4120] = {.lex_state = 247}, [4121] = {.lex_state = 247}, [4122] = {.lex_state = 25}, - [4123] = {.lex_state = 22}, - [4124] = {.lex_state = 22}, + [4123] = {.lex_state = 247}, + [4124] = {.lex_state = 247}, [4125] = {.lex_state = 22}, - [4126] = {.lex_state = 25}, + [4126] = {.lex_state = 247}, [4127] = {.lex_state = 247}, [4128] = {.lex_state = 247}, [4129] = {.lex_state = 247}, - [4130] = {.lex_state = 25}, - [4131] = {.lex_state = 22}, - [4132] = {.lex_state = 25}, + [4130] = {.lex_state = 247}, + [4131] = {.lex_state = 247}, + [4132] = {.lex_state = 247}, [4133] = {.lex_state = 247}, [4134] = {.lex_state = 247}, - [4135] = {.lex_state = 247}, - [4136] = {.lex_state = 22}, - [4137] = {.lex_state = 25}, - [4138] = {.lex_state = 247}, - [4139] = {.lex_state = 247}, + [4135] = {.lex_state = 36}, + [4136] = {.lex_state = 25}, + [4137] = {.lex_state = 22}, + [4138] = {.lex_state = 25}, + [4139] = {.lex_state = 22}, [4140] = {.lex_state = 247}, [4141] = {.lex_state = 247}, - [4142] = {.lex_state = 247}, - [4143] = {.lex_state = 247}, + [4142] = {.lex_state = 22}, + [4143] = {.lex_state = 25}, [4144] = {.lex_state = 247}, - [4145] = {.lex_state = 25}, - [4146] = {.lex_state = 247}, - [4147] = {.lex_state = 25}, - [4148] = {.lex_state = 247}, - [4149] = {.lex_state = 36}, - [4150] = {.lex_state = 22}, - [4151] = {.lex_state = 247}, - [4152] = {.lex_state = 247}, + [4145] = {.lex_state = 247}, + [4146] = {.lex_state = 25}, + [4147] = {.lex_state = 22}, + [4148] = {.lex_state = 25}, + [4149] = {.lex_state = 247}, + [4150] = {.lex_state = 247}, + [4151] = {.lex_state = 22}, + [4152] = {.lex_state = 25}, [4153] = {.lex_state = 22}, [4154] = {.lex_state = 247}, - [4155] = {.lex_state = 22}, + [4155] = {.lex_state = 247}, [4156] = {.lex_state = 247}, - [4157] = {.lex_state = 247}, - [4158] = {.lex_state = 22}, - [4159] = {.lex_state = 247}, + [4157] = {.lex_state = 22}, + [4158] = {.lex_state = 25}, + [4159] = {.lex_state = 22}, [4160] = {.lex_state = 247}, [4161] = {.lex_state = 247}, - [4162] = {.lex_state = 247}, - [4163] = {.lex_state = 22}, - [4164] = {.lex_state = 22}, + [4162] = {.lex_state = 22}, + [4163] = {.lex_state = 247}, + [4164] = {.lex_state = 247}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -14673,11 +14247,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RPAREN] = ACTIONS(1), [anon_sym_LBRACE] = ACTIONS(1), [anon_sym_RBRACE] = ACTIONS(1), - [anon_sym_LBRACK] = ACTIONS(1), - [anon_sym_RBRACK] = ACTIONS(1), [anon_sym_POUND_QMARK] = ACTIONS(1), [anon_sym_POUND_QMARK_AT] = ACTIONS(1), - [anon_sym_AT] = ACTIONS(1), [anon_sym_SQUOTE] = ACTIONS(1), [anon_sym_BQUOTE] = ACTIONS(1), [anon_sym_COMMA] = ACTIONS(1), @@ -14685,6 +14256,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__format_token_token1] = ACTIONS(1), [anon_sym_v] = ACTIONS(1), [anon_sym_V] = ACTIONS(1), + [anon_sym_AT] = ACTIONS(1), [anon_sym_PERCENT] = ACTIONS(1), [anon_sym_AMP] = ACTIONS(1), [anon_sym_PIPE] = ACTIONS(1), @@ -14714,38 +14286,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(1), }, [1] = { - [sym_source] = STATE(4157), - [sym__gap] = STATE(321), - [sym_dis_expr] = STATE(321), - [sym__form] = STATE(1991), - [sym_num_lit] = STATE(1991), - [sym_kwd_lit] = STATE(1991), - [sym_str_lit] = STATE(1991), - [sym_char_lit] = STATE(1991), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(1991), - [sym__bare_list_lit] = STATE(1877), - [sym_vec_lit] = STATE(1991), - [sym_set_lit] = STATE(1991), - [sym__bare_set_lit] = STATE(1875), - [sym_read_cond_lit] = STATE(1991), - [sym_splicing_read_cond_lit] = STATE(1991), - [sym_var_quoting_lit] = STATE(1991), - [sym_quoting_lit] = STATE(1991), - [sym_syn_quoting_lit] = STATE(1991), - [sym_unquote_splicing_lit] = STATE(1991), - [sym_unquoting_lit] = STATE(1991), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), - [sym_path_lit] = STATE(1991), - [sym_package_lit] = STATE(1991), - [sym_include_reader_macro] = STATE(1991), - [sym_complex_num_lit] = STATE(1991), - [aux_sym_source_repeat1] = STATE(321), - [aux_sym_list_lit_repeat1] = STATE(2808), + [sym_source] = STATE(4129), + [sym__gap] = STATE(296), + [sym_dis_expr] = STATE(296), + [sym__form] = STATE(2013), + [sym_num_lit] = STATE(2013), + [sym_kwd_lit] = STATE(2013), + [sym_str_lit] = STATE(2013), + [sym_char_lit] = STATE(2013), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2013), + [sym__bare_list_lit] = STATE(1790), + [sym_vec_lit] = STATE(2013), + [sym_set_lit] = STATE(2013), + [sym__bare_set_lit] = STATE(1801), + [sym_read_cond_lit] = STATE(2013), + [sym_splicing_read_cond_lit] = STATE(2013), + [sym_var_quoting_lit] = STATE(2013), + [sym_quoting_lit] = STATE(2013), + [sym_syn_quoting_lit] = STATE(2013), + [sym_unquote_splicing_lit] = STATE(2013), + [sym_unquoting_lit] = STATE(2013), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), + [sym_path_lit] = STATE(2013), + [sym_package_lit] = STATE(2013), + [sym_include_reader_macro] = STATE(2013), + [sym_complex_num_lit] = STATE(2013), + [aux_sym_source_repeat1] = STATE(296), + [aux_sym_list_lit_repeat1] = STATE(2817), [ts_builtin_sym_end] = ACTIONS(5), [sym__ws] = ACTIONS(7), [sym_comment] = ACTIONS(7), @@ -14784,613 +14356,700 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [2] = { [sym__gap] = STATE(990), [sym_dis_expr] = STATE(990), - [sym__form] = STATE(2285), - [sym_num_lit] = STATE(2285), - [sym_kwd_lit] = STATE(2285), - [sym_str_lit] = STATE(2285), - [sym_char_lit] = STATE(2285), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2285), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2285), - [sym_set_lit] = STATE(2285), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2285), - [sym_splicing_read_cond_lit] = STATE(2285), - [sym_var_quoting_lit] = STATE(2285), - [sym_quoting_lit] = STATE(2285), - [sym_syn_quoting_lit] = STATE(2285), - [sym_unquote_splicing_lit] = STATE(2285), - [sym_unquoting_lit] = STATE(2285), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2285), - [sym_package_lit] = STATE(2285), - [sym_include_reader_macro] = STATE(2285), - [sym_complex_num_lit] = STATE(2285), + [sym__form] = STATE(39), + [sym_num_lit] = STATE(39), + [sym_kwd_lit] = STATE(39), + [sym_str_lit] = STATE(39), + [sym_char_lit] = STATE(39), + [sym_sym_lit] = STATE(1101), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(39), + [sym__bare_list_lit] = STATE(1109), + [sym_vec_lit] = STATE(39), + [sym_set_lit] = STATE(39), + [sym__bare_set_lit] = STATE(1117), + [sym_read_cond_lit] = STATE(39), + [sym_splicing_read_cond_lit] = STATE(39), + [sym_var_quoting_lit] = STATE(39), + [sym_quoting_lit] = STATE(39), + [sym_syn_quoting_lit] = STATE(39), + [sym_unquote_splicing_lit] = STATE(39), + [sym_unquoting_lit] = STATE(39), + [sym_defun] = STATE(1109), + [sym_loop_macro] = STATE(1109), + [sym_path_lit] = STATE(39), + [sym_package_lit] = STATE(39), + [sym_include_reader_macro] = STATE(39), + [sym_complex_num_lit] = STATE(39), [aux_sym_dis_expr_repeat1] = STATE(990), - [aux_sym_list_lit_repeat1] = STATE(2834), + [aux_sym_list_lit_repeat1] = STATE(2812), [sym__ws] = ACTIONS(59), [sym_comment] = ACTIONS(59), - [anon_sym_POUND_] = ACTIONS(63), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(69), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(69), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(83), - [anon_sym_POUND_CARET] = ACTIONS(87), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_RPAREN] = ACTIONS(95), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [anon_sym_POUND_] = ACTIONS(62), + [anon_sym_POUND] = ACTIONS(65), + [anon_sym_DOT] = ACTIONS(67), + [aux_sym_num_lit_token1] = ACTIONS(69), + [anon_sym_COLON] = ACTIONS(71), + [anon_sym_COLON_COLON] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_nil_lit] = ACTIONS(67), + [aux_sym_sym_lit_token1] = ACTIONS(78), + [anon_sym_CARET] = ACTIONS(80), + [anon_sym_POUND_CARET] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(89), + [anon_sym_POUND0A] = ACTIONS(91), + [anon_sym_POUND0a] = ACTIONS(91), + [anon_sym_POUND_QMARK] = ACTIONS(93), + [anon_sym_POUND_QMARK_AT] = ACTIONS(95), + [anon_sym_POUND_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_BQUOTE] = ACTIONS(101), + [anon_sym_COMMA_AT] = ACTIONS(103), + [anon_sym_COMMA] = ACTIONS(105), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(69), - [anon_sym_cl] = ACTIONS(114), - [anon_sym_EQ] = ACTIONS(118), - [aux_sym_accumulation_verb_token1] = ACTIONS(120), - [anon_sym_for] = ACTIONS(120), - [anon_sym_and] = ACTIONS(120), - [anon_sym_as] = ACTIONS(120), - [anon_sym_with] = ACTIONS(120), - [anon_sym_do] = ACTIONS(120), - [anon_sym_while] = ACTIONS(120), - [anon_sym_until] = ACTIONS(120), - [anon_sym_repeat] = ACTIONS(120), - [anon_sym_when] = ACTIONS(120), - [anon_sym_if] = ACTIONS(120), - [anon_sym_unless] = ACTIONS(120), - [anon_sym_always] = ACTIONS(120), - [anon_sym_thereis] = ACTIONS(120), - [anon_sym_never] = ACTIONS(120), - [anon_sym_else] = ACTIONS(120), - [anon_sym_finally] = ACTIONS(120), - [anon_sym_return] = ACTIONS(120), - [anon_sym_initially] = ACTIONS(120), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(125), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(67), + [anon_sym_cl] = ACTIONS(107), + [anon_sym_EQ] = ACTIONS(110), + [aux_sym_accumulation_verb_token1] = ACTIONS(112), + [anon_sym_for] = ACTIONS(112), + [anon_sym_and] = ACTIONS(112), + [anon_sym_as] = ACTIONS(112), + [anon_sym_with] = ACTIONS(112), + [anon_sym_do] = ACTIONS(112), + [anon_sym_while] = ACTIONS(112), + [anon_sym_until] = ACTIONS(112), + [anon_sym_repeat] = ACTIONS(112), + [anon_sym_when] = ACTIONS(112), + [anon_sym_if] = ACTIONS(112), + [anon_sym_unless] = ACTIONS(112), + [anon_sym_always] = ACTIONS(112), + [anon_sym_thereis] = ACTIONS(112), + [anon_sym_never] = ACTIONS(112), + [anon_sym_else] = ACTIONS(112), + [anon_sym_finally] = ACTIONS(112), + [anon_sym_return] = ACTIONS(112), + [anon_sym_initially] = ACTIONS(112), + [anon_sym_POUNDP] = ACTIONS(114), + [anon_sym_POUNDp] = ACTIONS(114), + [sym_self_referential_reader_macro] = ACTIONS(116), + [anon_sym_POUND_PLUS] = ACTIONS(118), + [anon_sym_POUND_DASH] = ACTIONS(118), + [anon_sym_POUNDC] = ACTIONS(120), + [anon_sym_POUNDc] = ACTIONS(120), }, [3] = { - [sym__gap] = STATE(30), - [sym_dis_expr] = STATE(30), - [sym__form] = STATE(29), - [sym_num_lit] = STATE(29), - [sym_kwd_lit] = STATE(29), - [sym_str_lit] = STATE(29), - [sym_char_lit] = STATE(29), - [sym_sym_lit] = STATE(1073), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(29), - [sym__bare_list_lit] = STATE(1070), - [sym_vec_lit] = STATE(29), - [sym_set_lit] = STATE(29), - [sym__bare_set_lit] = STATE(1069), - [sym_read_cond_lit] = STATE(29), - [sym_splicing_read_cond_lit] = STATE(29), - [sym_var_quoting_lit] = STATE(29), - [sym_quoting_lit] = STATE(29), - [sym_syn_quoting_lit] = STATE(29), - [sym_unquote_splicing_lit] = STATE(29), - [sym_unquoting_lit] = STATE(29), - [sym_defun] = STATE(1070), - [sym_loop_macro] = STATE(1070), - [sym_path_lit] = STATE(29), - [sym_package_lit] = STATE(29), - [sym_include_reader_macro] = STATE(29), - [sym_complex_num_lit] = STATE(29), - [aux_sym_dis_expr_repeat1] = STATE(30), + [sym__gap] = STATE(896), + [sym_dis_expr] = STATE(896), + [sym__form] = STATE(995), + [sym_num_lit] = STATE(995), + [sym_kwd_lit] = STATE(995), + [sym_str_lit] = STATE(995), + [sym_char_lit] = STATE(995), + [sym_sym_lit] = STATE(1136), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(995), + [sym__bare_list_lit] = STATE(1137), + [sym_vec_lit] = STATE(995), + [sym_set_lit] = STATE(995), + [sym__bare_set_lit] = STATE(1138), + [sym_read_cond_lit] = STATE(995), + [sym_splicing_read_cond_lit] = STATE(995), + [sym_var_quoting_lit] = STATE(995), + [sym_quoting_lit] = STATE(995), + [sym_syn_quoting_lit] = STATE(995), + [sym_unquote_splicing_lit] = STATE(995), + [sym_unquoting_lit] = STATE(995), + [sym_defun] = STATE(1137), + [sym_loop_macro] = STATE(1137), + [sym_path_lit] = STATE(995), + [sym_package_lit] = STATE(995), + [sym_include_reader_macro] = STATE(995), + [sym_complex_num_lit] = STATE(995), + [aux_sym_dis_expr_repeat1] = STATE(896), [aux_sym_list_lit_repeat1] = STATE(2804), - [sym__ws] = ACTIONS(131), - [sym_comment] = ACTIONS(131), - [anon_sym_POUND_] = ACTIONS(134), - [anon_sym_POUND] = ACTIONS(137), - [anon_sym_DOT] = ACTIONS(139), - [aux_sym_num_lit_token1] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(143), - [anon_sym_COLON_COLON] = ACTIONS(146), - [anon_sym_DQUOTE] = ACTIONS(148), - [sym_nil_lit] = ACTIONS(139), - [aux_sym_sym_lit_token1] = ACTIONS(150), - [anon_sym_CARET] = ACTIONS(152), - [anon_sym_POUND_CARET] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(158), - [anon_sym_RPAREN] = ACTIONS(161), - [anon_sym_POUND0A] = ACTIONS(163), - [anon_sym_POUND0a] = ACTIONS(163), - [anon_sym_POUND_QMARK] = ACTIONS(165), - [anon_sym_POUND_QMARK_AT] = ACTIONS(167), - [anon_sym_POUND_SQUOTE] = ACTIONS(169), - [anon_sym_SQUOTE] = ACTIONS(171), - [anon_sym_BQUOTE] = ACTIONS(173), - [anon_sym_COMMA_AT] = ACTIONS(175), - [anon_sym_COMMA] = ACTIONS(177), + [aux_sym_do_clause_repeat1] = STATE(8), + [sym__ws] = ACTIONS(122), + [sym_comment] = ACTIONS(122), + [anon_sym_POUND_] = ACTIONS(122), + [anon_sym_POUND] = ACTIONS(124), + [anon_sym_DOT] = ACTIONS(126), + [aux_sym_num_lit_token1] = ACTIONS(128), + [anon_sym_COLON] = ACTIONS(130), + [anon_sym_COLON_COLON] = ACTIONS(132), + [anon_sym_DQUOTE] = ACTIONS(134), + [sym_nil_lit] = ACTIONS(126), + [aux_sym_sym_lit_token1] = ACTIONS(136), + [anon_sym_CARET] = ACTIONS(122), + [anon_sym_POUND_CARET] = ACTIONS(122), + [anon_sym_LPAREN] = ACTIONS(122), + [anon_sym_RPAREN] = ACTIONS(122), + [anon_sym_POUND0A] = ACTIONS(138), + [anon_sym_POUND0a] = ACTIONS(138), + [anon_sym_POUND_QMARK] = ACTIONS(140), + [anon_sym_POUND_QMARK_AT] = ACTIONS(142), + [anon_sym_POUND_SQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_BQUOTE] = ACTIONS(148), + [anon_sym_COMMA_AT] = ACTIONS(150), + [anon_sym_COMMA] = ACTIONS(152), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(139), - [anon_sym_cl] = ACTIONS(179), - [anon_sym_EQ] = ACTIONS(182), - [aux_sym_accumulation_verb_token1] = ACTIONS(184), - [anon_sym_for] = ACTIONS(184), - [anon_sym_and] = ACTIONS(184), - [anon_sym_as] = ACTIONS(184), - [anon_sym_with] = ACTIONS(184), - [anon_sym_do] = ACTIONS(184), - [anon_sym_while] = ACTIONS(184), - [anon_sym_until] = ACTIONS(184), - [anon_sym_repeat] = ACTIONS(184), - [anon_sym_when] = ACTIONS(184), - [anon_sym_if] = ACTIONS(184), - [anon_sym_unless] = ACTIONS(184), - [anon_sym_always] = ACTIONS(184), - [anon_sym_thereis] = ACTIONS(184), - [anon_sym_never] = ACTIONS(184), - [anon_sym_else] = ACTIONS(184), - [anon_sym_finally] = ACTIONS(184), - [anon_sym_return] = ACTIONS(184), - [anon_sym_initially] = ACTIONS(184), - [anon_sym_POUNDP] = ACTIONS(186), - [anon_sym_POUNDp] = ACTIONS(186), - [sym_self_referential_reader_macro] = ACTIONS(188), - [anon_sym_POUND_PLUS] = ACTIONS(190), - [anon_sym_POUND_DASH] = ACTIONS(190), - [anon_sym_POUNDC] = ACTIONS(192), - [anon_sym_POUNDc] = ACTIONS(192), + [sym_fancy_literal] = ACTIONS(126), + [anon_sym_cl] = ACTIONS(130), + [aux_sym_accumulation_verb_token1] = ACTIONS(130), + [anon_sym_for] = ACTIONS(130), + [anon_sym_and] = ACTIONS(130), + [anon_sym_as] = ACTIONS(130), + [anon_sym_with] = ACTIONS(130), + [anon_sym_do] = ACTIONS(130), + [anon_sym_while] = ACTIONS(130), + [anon_sym_until] = ACTIONS(130), + [anon_sym_repeat] = ACTIONS(130), + [anon_sym_when] = ACTIONS(130), + [anon_sym_if] = ACTIONS(130), + [anon_sym_unless] = ACTIONS(130), + [anon_sym_always] = ACTIONS(130), + [anon_sym_thereis] = ACTIONS(130), + [anon_sym_never] = ACTIONS(130), + [anon_sym_else] = ACTIONS(130), + [anon_sym_finally] = ACTIONS(130), + [anon_sym_return] = ACTIONS(130), + [anon_sym_initially] = ACTIONS(130), + [anon_sym_POUNDP] = ACTIONS(154), + [anon_sym_POUNDp] = ACTIONS(154), + [sym_self_referential_reader_macro] = ACTIONS(156), + [anon_sym_POUND_PLUS] = ACTIONS(158), + [anon_sym_POUND_DASH] = ACTIONS(158), + [anon_sym_POUNDC] = ACTIONS(160), + [anon_sym_POUNDc] = ACTIONS(160), }, [4] = { - [sym__gap] = STATE(15), - [sym_dis_expr] = STATE(15), - [sym__form] = STATE(14), - [sym_num_lit] = STATE(14), - [sym_kwd_lit] = STATE(14), - [sym_str_lit] = STATE(14), - [sym_char_lit] = STATE(14), - [sym_sym_lit] = STATE(1073), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(14), - [sym__bare_list_lit] = STATE(1070), - [sym_vec_lit] = STATE(14), - [sym_set_lit] = STATE(14), - [sym__bare_set_lit] = STATE(1069), - [sym_read_cond_lit] = STATE(14), - [sym_splicing_read_cond_lit] = STATE(14), - [sym_var_quoting_lit] = STATE(14), - [sym_quoting_lit] = STATE(14), - [sym_syn_quoting_lit] = STATE(14), - [sym_unquote_splicing_lit] = STATE(14), - [sym_unquoting_lit] = STATE(14), - [sym_defun] = STATE(1070), - [sym_loop_macro] = STATE(1070), - [sym_path_lit] = STATE(14), - [sym_package_lit] = STATE(14), - [sym_include_reader_macro] = STATE(14), - [sym_complex_num_lit] = STATE(14), - [aux_sym_dis_expr_repeat1] = STATE(15), + [sym__gap] = STATE(896), + [sym_dis_expr] = STATE(896), + [sym__form] = STATE(995), + [sym_num_lit] = STATE(995), + [sym_kwd_lit] = STATE(995), + [sym_str_lit] = STATE(995), + [sym_char_lit] = STATE(995), + [sym_sym_lit] = STATE(1136), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(995), + [sym__bare_list_lit] = STATE(1137), + [sym_vec_lit] = STATE(995), + [sym_set_lit] = STATE(995), + [sym__bare_set_lit] = STATE(1138), + [sym_read_cond_lit] = STATE(995), + [sym_splicing_read_cond_lit] = STATE(995), + [sym_var_quoting_lit] = STATE(995), + [sym_quoting_lit] = STATE(995), + [sym_syn_quoting_lit] = STATE(995), + [sym_unquote_splicing_lit] = STATE(995), + [sym_unquoting_lit] = STATE(995), + [sym_defun] = STATE(1137), + [sym_loop_macro] = STATE(1137), + [sym_path_lit] = STATE(995), + [sym_package_lit] = STATE(995), + [sym_include_reader_macro] = STATE(995), + [sym_complex_num_lit] = STATE(995), + [aux_sym_dis_expr_repeat1] = STATE(896), [aux_sym_list_lit_repeat1] = STATE(2804), - [sym__ws] = ACTIONS(194), - [sym_comment] = ACTIONS(194), - [anon_sym_POUND_] = ACTIONS(197), - [anon_sym_POUND] = ACTIONS(137), - [anon_sym_DOT] = ACTIONS(200), - [aux_sym_num_lit_token1] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(202), - [anon_sym_COLON_COLON] = ACTIONS(146), - [anon_sym_DQUOTE] = ACTIONS(148), - [sym_nil_lit] = ACTIONS(200), - [aux_sym_sym_lit_token1] = ACTIONS(150), - [anon_sym_CARET] = ACTIONS(205), - [anon_sym_POUND_CARET] = ACTIONS(208), - [anon_sym_LPAREN] = ACTIONS(211), - [anon_sym_RPAREN] = ACTIONS(214), - [anon_sym_POUND0A] = ACTIONS(163), - [anon_sym_POUND0a] = ACTIONS(163), - [anon_sym_POUND_QMARK] = ACTIONS(165), - [anon_sym_POUND_QMARK_AT] = ACTIONS(167), - [anon_sym_POUND_SQUOTE] = ACTIONS(169), - [anon_sym_SQUOTE] = ACTIONS(171), - [anon_sym_BQUOTE] = ACTIONS(173), - [anon_sym_COMMA_AT] = ACTIONS(175), - [anon_sym_COMMA] = ACTIONS(177), + [aux_sym_do_clause_repeat1] = STATE(8), + [sym__ws] = ACTIONS(162), + [sym_comment] = ACTIONS(162), + [anon_sym_POUND_] = ACTIONS(162), + [anon_sym_POUND] = ACTIONS(124), + [anon_sym_DOT] = ACTIONS(126), + [aux_sym_num_lit_token1] = ACTIONS(128), + [anon_sym_COLON] = ACTIONS(164), + [anon_sym_COLON_COLON] = ACTIONS(132), + [anon_sym_DQUOTE] = ACTIONS(134), + [sym_nil_lit] = ACTIONS(126), + [aux_sym_sym_lit_token1] = ACTIONS(136), + [anon_sym_CARET] = ACTIONS(162), + [anon_sym_POUND_CARET] = ACTIONS(162), + [anon_sym_LPAREN] = ACTIONS(162), + [anon_sym_RPAREN] = ACTIONS(162), + [anon_sym_POUND0A] = ACTIONS(138), + [anon_sym_POUND0a] = ACTIONS(138), + [anon_sym_POUND_QMARK] = ACTIONS(140), + [anon_sym_POUND_QMARK_AT] = ACTIONS(142), + [anon_sym_POUND_SQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_BQUOTE] = ACTIONS(148), + [anon_sym_COMMA_AT] = ACTIONS(150), + [anon_sym_COMMA] = ACTIONS(152), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(200), - [anon_sym_cl] = ACTIONS(216), - [anon_sym_EQ] = ACTIONS(219), - [aux_sym_accumulation_verb_token1] = ACTIONS(221), - [anon_sym_for] = ACTIONS(221), - [anon_sym_and] = ACTIONS(221), - [anon_sym_as] = ACTIONS(221), - [anon_sym_with] = ACTIONS(221), - [anon_sym_do] = ACTIONS(221), - [anon_sym_while] = ACTIONS(221), - [anon_sym_until] = ACTIONS(221), - [anon_sym_repeat] = ACTIONS(221), - [anon_sym_when] = ACTIONS(221), - [anon_sym_if] = ACTIONS(221), - [anon_sym_unless] = ACTIONS(221), - [anon_sym_always] = ACTIONS(221), - [anon_sym_thereis] = ACTIONS(221), - [anon_sym_never] = ACTIONS(221), - [anon_sym_else] = ACTIONS(221), - [anon_sym_finally] = ACTIONS(221), - [anon_sym_return] = ACTIONS(221), - [anon_sym_initially] = ACTIONS(221), - [anon_sym_POUNDP] = ACTIONS(186), - [anon_sym_POUNDp] = ACTIONS(186), - [sym_self_referential_reader_macro] = ACTIONS(223), - [anon_sym_POUND_PLUS] = ACTIONS(190), - [anon_sym_POUND_DASH] = ACTIONS(190), - [anon_sym_POUNDC] = ACTIONS(192), - [anon_sym_POUNDc] = ACTIONS(192), + [sym_fancy_literal] = ACTIONS(126), + [anon_sym_cl] = ACTIONS(164), + [aux_sym_accumulation_verb_token1] = ACTIONS(164), + [anon_sym_for] = ACTIONS(164), + [anon_sym_and] = ACTIONS(164), + [anon_sym_as] = ACTIONS(164), + [anon_sym_with] = ACTIONS(164), + [anon_sym_do] = ACTIONS(164), + [anon_sym_while] = ACTIONS(164), + [anon_sym_until] = ACTIONS(164), + [anon_sym_repeat] = ACTIONS(164), + [anon_sym_when] = ACTIONS(164), + [anon_sym_if] = ACTIONS(164), + [anon_sym_unless] = ACTIONS(164), + [anon_sym_always] = ACTIONS(164), + [anon_sym_thereis] = ACTIONS(164), + [anon_sym_never] = ACTIONS(164), + [anon_sym_else] = ACTIONS(164), + [anon_sym_finally] = ACTIONS(164), + [anon_sym_return] = ACTIONS(164), + [anon_sym_initially] = ACTIONS(164), + [anon_sym_POUNDP] = ACTIONS(154), + [anon_sym_POUNDp] = ACTIONS(154), + [sym_self_referential_reader_macro] = ACTIONS(156), + [anon_sym_POUND_PLUS] = ACTIONS(158), + [anon_sym_POUND_DASH] = ACTIONS(158), + [anon_sym_POUNDC] = ACTIONS(160), + [anon_sym_POUNDc] = ACTIONS(160), }, [5] = { - [sym__gap] = STATE(13), - [sym_dis_expr] = STATE(13), - [sym__form] = STATE(12), - [sym_num_lit] = STATE(12), - [sym_kwd_lit] = STATE(12), - [sym_str_lit] = STATE(12), - [sym_char_lit] = STATE(12), - [sym_sym_lit] = STATE(1073), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(12), - [sym__bare_list_lit] = STATE(1070), - [sym_vec_lit] = STATE(12), - [sym_set_lit] = STATE(12), - [sym__bare_set_lit] = STATE(1069), - [sym_read_cond_lit] = STATE(12), - [sym_splicing_read_cond_lit] = STATE(12), - [sym_var_quoting_lit] = STATE(12), - [sym_quoting_lit] = STATE(12), - [sym_syn_quoting_lit] = STATE(12), - [sym_unquote_splicing_lit] = STATE(12), - [sym_unquoting_lit] = STATE(12), - [sym_defun] = STATE(1070), - [sym_loop_macro] = STATE(1070), - [sym_path_lit] = STATE(12), - [sym_package_lit] = STATE(12), - [sym_include_reader_macro] = STATE(12), - [sym_complex_num_lit] = STATE(12), - [aux_sym_dis_expr_repeat1] = STATE(13), - [aux_sym_list_lit_repeat1] = STATE(2804), - [sym__ws] = ACTIONS(225), - [sym_comment] = ACTIONS(225), - [anon_sym_POUND_] = ACTIONS(197), - [anon_sym_POUND] = ACTIONS(137), - [anon_sym_DOT] = ACTIONS(228), - [aux_sym_num_lit_token1] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(230), - [anon_sym_COLON_COLON] = ACTIONS(146), - [anon_sym_DQUOTE] = ACTIONS(148), - [sym_nil_lit] = ACTIONS(228), - [aux_sym_sym_lit_token1] = ACTIONS(150), - [anon_sym_CARET] = ACTIONS(205), - [anon_sym_POUND_CARET] = ACTIONS(208), - [anon_sym_LPAREN] = ACTIONS(211), - [anon_sym_RPAREN] = ACTIONS(214), - [anon_sym_POUND0A] = ACTIONS(163), - [anon_sym_POUND0a] = ACTIONS(163), - [anon_sym_POUND_QMARK] = ACTIONS(165), - [anon_sym_POUND_QMARK_AT] = ACTIONS(167), - [anon_sym_POUND_SQUOTE] = ACTIONS(169), - [anon_sym_SQUOTE] = ACTIONS(171), - [anon_sym_BQUOTE] = ACTIONS(173), - [anon_sym_COMMA_AT] = ACTIONS(175), - [anon_sym_COMMA] = ACTIONS(177), + [sym__gap] = STATE(14), + [sym_dis_expr] = STATE(14), + [sym__form] = STATE(2342), + [sym_num_lit] = STATE(2342), + [sym_kwd_lit] = STATE(2342), + [sym_str_lit] = STATE(2342), + [sym_char_lit] = STATE(2342), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2342), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2342), + [sym_set_lit] = STATE(2342), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2342), + [sym_splicing_read_cond_lit] = STATE(2342), + [sym_var_quoting_lit] = STATE(2342), + [sym_quoting_lit] = STATE(2342), + [sym_syn_quoting_lit] = STATE(2342), + [sym_unquote_splicing_lit] = STATE(2342), + [sym_unquoting_lit] = STATE(2342), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2342), + [sym_package_lit] = STATE(2342), + [sym_include_reader_macro] = STATE(2342), + [sym_complex_num_lit] = STATE(2342), + [aux_sym_dis_expr_repeat1] = STATE(14), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(166), + [sym_comment] = ACTIONS(166), + [anon_sym_POUND_] = ACTIONS(170), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(176), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(180), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(176), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(190), + [anon_sym_POUND_CARET] = ACTIONS(194), + [anon_sym_LPAREN] = ACTIONS(198), + [anon_sym_RPAREN] = ACTIONS(202), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(228), - [anon_sym_cl] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(236), - [aux_sym_accumulation_verb_token1] = ACTIONS(221), - [anon_sym_for] = ACTIONS(221), - [anon_sym_and] = ACTIONS(221), - [anon_sym_as] = ACTIONS(221), - [anon_sym_with] = ACTIONS(221), - [anon_sym_do] = ACTIONS(221), - [anon_sym_while] = ACTIONS(221), - [anon_sym_until] = ACTIONS(221), - [anon_sym_repeat] = ACTIONS(221), - [anon_sym_when] = ACTIONS(221), - [anon_sym_if] = ACTIONS(221), - [anon_sym_unless] = ACTIONS(221), - [anon_sym_always] = ACTIONS(221), - [anon_sym_thereis] = ACTIONS(221), - [anon_sym_never] = ACTIONS(221), - [anon_sym_else] = ACTIONS(221), - [anon_sym_finally] = ACTIONS(221), - [anon_sym_return] = ACTIONS(221), - [anon_sym_initially] = ACTIONS(221), - [anon_sym_POUNDP] = ACTIONS(186), - [anon_sym_POUNDp] = ACTIONS(186), - [sym_self_referential_reader_macro] = ACTIONS(238), - [anon_sym_POUND_PLUS] = ACTIONS(190), - [anon_sym_POUND_DASH] = ACTIONS(190), - [anon_sym_POUNDC] = ACTIONS(192), - [anon_sym_POUNDc] = ACTIONS(192), + [sym_fancy_literal] = ACTIONS(176), + [anon_sym_cl] = ACTIONS(221), + [anon_sym_EQ] = ACTIONS(225), + [aux_sym_accumulation_verb_token1] = ACTIONS(227), + [anon_sym_for] = ACTIONS(227), + [anon_sym_and] = ACTIONS(227), + [anon_sym_as] = ACTIONS(227), + [anon_sym_with] = ACTIONS(227), + [anon_sym_do] = ACTIONS(227), + [anon_sym_while] = ACTIONS(227), + [anon_sym_until] = ACTIONS(227), + [anon_sym_repeat] = ACTIONS(227), + [anon_sym_when] = ACTIONS(227), + [anon_sym_if] = ACTIONS(227), + [anon_sym_unless] = ACTIONS(227), + [anon_sym_always] = ACTIONS(227), + [anon_sym_thereis] = ACTIONS(227), + [anon_sym_never] = ACTIONS(227), + [anon_sym_else] = ACTIONS(227), + [anon_sym_finally] = ACTIONS(227), + [anon_sym_return] = ACTIONS(227), + [anon_sym_initially] = ACTIONS(227), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(232), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [6] = { [sym__gap] = STATE(990), [sym_dis_expr] = STATE(990), - [sym__form] = STATE(11), - [sym_num_lit] = STATE(11), - [sym_kwd_lit] = STATE(11), - [sym_str_lit] = STATE(11), - [sym_char_lit] = STATE(11), - [sym_sym_lit] = STATE(1073), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(11), - [sym__bare_list_lit] = STATE(1070), - [sym_vec_lit] = STATE(11), - [sym_set_lit] = STATE(11), - [sym__bare_set_lit] = STATE(1069), - [sym_read_cond_lit] = STATE(11), - [sym_splicing_read_cond_lit] = STATE(11), - [sym_var_quoting_lit] = STATE(11), - [sym_quoting_lit] = STATE(11), - [sym_syn_quoting_lit] = STATE(11), - [sym_unquote_splicing_lit] = STATE(11), - [sym_unquoting_lit] = STATE(11), - [sym_defun] = STATE(1070), - [sym_loop_macro] = STATE(1070), - [sym_path_lit] = STATE(11), - [sym_package_lit] = STATE(11), - [sym_include_reader_macro] = STATE(11), - [sym_complex_num_lit] = STATE(11), + [sym__form] = STATE(15), + [sym_num_lit] = STATE(15), + [sym_kwd_lit] = STATE(15), + [sym_str_lit] = STATE(15), + [sym_char_lit] = STATE(15), + [sym_sym_lit] = STATE(1101), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(15), + [sym__bare_list_lit] = STATE(1109), + [sym_vec_lit] = STATE(15), + [sym_set_lit] = STATE(15), + [sym__bare_set_lit] = STATE(1117), + [sym_read_cond_lit] = STATE(15), + [sym_splicing_read_cond_lit] = STATE(15), + [sym_var_quoting_lit] = STATE(15), + [sym_quoting_lit] = STATE(15), + [sym_syn_quoting_lit] = STATE(15), + [sym_unquote_splicing_lit] = STATE(15), + [sym_unquoting_lit] = STATE(15), + [sym_defun] = STATE(1109), + [sym_loop_macro] = STATE(1109), + [sym_path_lit] = STATE(15), + [sym_package_lit] = STATE(15), + [sym_include_reader_macro] = STATE(15), + [sym_complex_num_lit] = STATE(15), [aux_sym_dis_expr_repeat1] = STATE(990), - [aux_sym_list_lit_repeat1] = STATE(2804), - [sym__ws] = ACTIONS(240), - [sym_comment] = ACTIONS(240), - [anon_sym_POUND_] = ACTIONS(243), - [anon_sym_POUND] = ACTIONS(137), - [anon_sym_DOT] = ACTIONS(246), - [aux_sym_num_lit_token1] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(248), - [anon_sym_COLON_COLON] = ACTIONS(146), - [anon_sym_DQUOTE] = ACTIONS(148), - [sym_nil_lit] = ACTIONS(246), - [aux_sym_sym_lit_token1] = ACTIONS(150), - [anon_sym_CARET] = ACTIONS(251), - [anon_sym_POUND_CARET] = ACTIONS(254), - [anon_sym_LPAREN] = ACTIONS(257), - [anon_sym_RPAREN] = ACTIONS(260), - [anon_sym_POUND0A] = ACTIONS(163), - [anon_sym_POUND0a] = ACTIONS(163), - [anon_sym_POUND_QMARK] = ACTIONS(165), - [anon_sym_POUND_QMARK_AT] = ACTIONS(167), - [anon_sym_POUND_SQUOTE] = ACTIONS(169), - [anon_sym_SQUOTE] = ACTIONS(171), - [anon_sym_BQUOTE] = ACTIONS(173), - [anon_sym_COMMA_AT] = ACTIONS(175), - [anon_sym_COMMA] = ACTIONS(177), + [aux_sym_list_lit_repeat1] = STATE(2812), + [sym__ws] = ACTIONS(238), + [sym_comment] = ACTIONS(238), + [anon_sym_POUND_] = ACTIONS(241), + [anon_sym_POUND] = ACTIONS(65), + [anon_sym_DOT] = ACTIONS(244), + [aux_sym_num_lit_token1] = ACTIONS(69), + [anon_sym_COLON] = ACTIONS(246), + [anon_sym_COLON_COLON] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_nil_lit] = ACTIONS(244), + [aux_sym_sym_lit_token1] = ACTIONS(78), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_POUND_CARET] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(255), + [anon_sym_RPAREN] = ACTIONS(258), + [anon_sym_POUND0A] = ACTIONS(91), + [anon_sym_POUND0a] = ACTIONS(91), + [anon_sym_POUND_QMARK] = ACTIONS(93), + [anon_sym_POUND_QMARK_AT] = ACTIONS(95), + [anon_sym_POUND_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_BQUOTE] = ACTIONS(101), + [anon_sym_COMMA_AT] = ACTIONS(103), + [anon_sym_COMMA] = ACTIONS(105), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(246), - [anon_sym_cl] = ACTIONS(262), - [anon_sym_EQ] = ACTIONS(265), - [aux_sym_accumulation_verb_token1] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_as] = ACTIONS(267), - [anon_sym_with] = ACTIONS(267), - [anon_sym_do] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_until] = ACTIONS(267), - [anon_sym_repeat] = ACTIONS(267), - [anon_sym_when] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_unless] = ACTIONS(267), - [anon_sym_always] = ACTIONS(267), - [anon_sym_thereis] = ACTIONS(267), - [anon_sym_never] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_finally] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_initially] = ACTIONS(267), - [anon_sym_POUNDP] = ACTIONS(186), - [anon_sym_POUNDp] = ACTIONS(186), - [sym_self_referential_reader_macro] = ACTIONS(269), - [anon_sym_POUND_PLUS] = ACTIONS(190), - [anon_sym_POUND_DASH] = ACTIONS(190), - [anon_sym_POUNDC] = ACTIONS(192), - [anon_sym_POUNDc] = ACTIONS(192), + [sym_fancy_literal] = ACTIONS(244), + [anon_sym_cl] = ACTIONS(260), + [anon_sym_EQ] = ACTIONS(263), + [aux_sym_accumulation_verb_token1] = ACTIONS(265), + [anon_sym_for] = ACTIONS(265), + [anon_sym_and] = ACTIONS(265), + [anon_sym_as] = ACTIONS(265), + [anon_sym_with] = ACTIONS(265), + [anon_sym_do] = ACTIONS(265), + [anon_sym_while] = ACTIONS(265), + [anon_sym_until] = ACTIONS(265), + [anon_sym_repeat] = ACTIONS(265), + [anon_sym_when] = ACTIONS(265), + [anon_sym_if] = ACTIONS(265), + [anon_sym_unless] = ACTIONS(265), + [anon_sym_always] = ACTIONS(265), + [anon_sym_thereis] = ACTIONS(265), + [anon_sym_never] = ACTIONS(265), + [anon_sym_else] = ACTIONS(265), + [anon_sym_finally] = ACTIONS(265), + [anon_sym_return] = ACTIONS(265), + [anon_sym_initially] = ACTIONS(265), + [anon_sym_POUNDP] = ACTIONS(114), + [anon_sym_POUNDp] = ACTIONS(114), + [sym_self_referential_reader_macro] = ACTIONS(267), + [anon_sym_POUND_PLUS] = ACTIONS(118), + [anon_sym_POUND_DASH] = ACTIONS(118), + [anon_sym_POUNDC] = ACTIONS(120), + [anon_sym_POUNDc] = ACTIONS(120), }, [7] = { - [sym__gap] = STATE(10), - [sym_dis_expr] = STATE(10), - [sym__form] = STATE(2503), - [sym_num_lit] = STATE(2503), - [sym_kwd_lit] = STATE(2503), - [sym_str_lit] = STATE(2503), - [sym_char_lit] = STATE(2503), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2503), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2503), - [sym_set_lit] = STATE(2503), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2503), - [sym_splicing_read_cond_lit] = STATE(2503), - [sym_var_quoting_lit] = STATE(2503), - [sym_quoting_lit] = STATE(2503), - [sym_syn_quoting_lit] = STATE(2503), - [sym_unquote_splicing_lit] = STATE(2503), - [sym_unquoting_lit] = STATE(2503), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2503), - [sym_package_lit] = STATE(2503), - [sym_include_reader_macro] = STATE(2503), - [sym_complex_num_lit] = STATE(2503), - [aux_sym_dis_expr_repeat1] = STATE(10), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(271), - [sym_comment] = ACTIONS(271), - [anon_sym_POUND_] = ACTIONS(275), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(279), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(281), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(279), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(285), - [anon_sym_POUND_CARET] = ACTIONS(289), - [anon_sym_LPAREN] = ACTIONS(293), - [anon_sym_RPAREN] = ACTIONS(297), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(17), + [sym_dis_expr] = STATE(17), + [sym__form] = STATE(16), + [sym_num_lit] = STATE(16), + [sym_kwd_lit] = STATE(16), + [sym_str_lit] = STATE(16), + [sym_char_lit] = STATE(16), + [sym_sym_lit] = STATE(1101), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(16), + [sym__bare_list_lit] = STATE(1109), + [sym_vec_lit] = STATE(16), + [sym_set_lit] = STATE(16), + [sym__bare_set_lit] = STATE(1117), + [sym_read_cond_lit] = STATE(16), + [sym_splicing_read_cond_lit] = STATE(16), + [sym_var_quoting_lit] = STATE(16), + [sym_quoting_lit] = STATE(16), + [sym_syn_quoting_lit] = STATE(16), + [sym_unquote_splicing_lit] = STATE(16), + [sym_unquoting_lit] = STATE(16), + [sym_defun] = STATE(1109), + [sym_loop_macro] = STATE(1109), + [sym_path_lit] = STATE(16), + [sym_package_lit] = STATE(16), + [sym_include_reader_macro] = STATE(16), + [sym_complex_num_lit] = STATE(16), + [aux_sym_dis_expr_repeat1] = STATE(17), + [aux_sym_list_lit_repeat1] = STATE(2812), + [sym__ws] = ACTIONS(269), + [sym_comment] = ACTIONS(269), + [anon_sym_POUND_] = ACTIONS(272), + [anon_sym_POUND] = ACTIONS(65), + [anon_sym_DOT] = ACTIONS(275), + [aux_sym_num_lit_token1] = ACTIONS(69), + [anon_sym_COLON] = ACTIONS(277), + [anon_sym_COLON_COLON] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_nil_lit] = ACTIONS(275), + [aux_sym_sym_lit_token1] = ACTIONS(78), + [anon_sym_CARET] = ACTIONS(280), + [anon_sym_POUND_CARET] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(286), + [anon_sym_RPAREN] = ACTIONS(289), + [anon_sym_POUND0A] = ACTIONS(91), + [anon_sym_POUND0a] = ACTIONS(91), + [anon_sym_POUND_QMARK] = ACTIONS(93), + [anon_sym_POUND_QMARK_AT] = ACTIONS(95), + [anon_sym_POUND_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_BQUOTE] = ACTIONS(101), + [anon_sym_COMMA_AT] = ACTIONS(103), + [anon_sym_COMMA] = ACTIONS(105), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(279), - [anon_sym_cl] = ACTIONS(300), - [anon_sym_EQ] = ACTIONS(304), - [aux_sym_accumulation_verb_token1] = ACTIONS(306), - [anon_sym_for] = ACTIONS(306), - [anon_sym_and] = ACTIONS(306), - [anon_sym_as] = ACTIONS(306), - [anon_sym_with] = ACTIONS(306), - [anon_sym_do] = ACTIONS(306), - [anon_sym_while] = ACTIONS(306), - [anon_sym_until] = ACTIONS(306), - [anon_sym_repeat] = ACTIONS(306), - [anon_sym_when] = ACTIONS(306), - [anon_sym_if] = ACTIONS(306), - [anon_sym_unless] = ACTIONS(306), - [anon_sym_always] = ACTIONS(306), - [anon_sym_thereis] = ACTIONS(306), - [anon_sym_never] = ACTIONS(306), - [anon_sym_else] = ACTIONS(306), - [anon_sym_finally] = ACTIONS(306), - [anon_sym_return] = ACTIONS(306), - [anon_sym_initially] = ACTIONS(306), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(309), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(275), + [anon_sym_cl] = ACTIONS(291), + [anon_sym_EQ] = ACTIONS(294), + [aux_sym_accumulation_verb_token1] = ACTIONS(296), + [anon_sym_for] = ACTIONS(296), + [anon_sym_and] = ACTIONS(296), + [anon_sym_as] = ACTIONS(296), + [anon_sym_with] = ACTIONS(296), + [anon_sym_do] = ACTIONS(296), + [anon_sym_while] = ACTIONS(296), + [anon_sym_until] = ACTIONS(296), + [anon_sym_repeat] = ACTIONS(296), + [anon_sym_when] = ACTIONS(296), + [anon_sym_if] = ACTIONS(296), + [anon_sym_unless] = ACTIONS(296), + [anon_sym_always] = ACTIONS(296), + [anon_sym_thereis] = ACTIONS(296), + [anon_sym_never] = ACTIONS(296), + [anon_sym_else] = ACTIONS(296), + [anon_sym_finally] = ACTIONS(296), + [anon_sym_return] = ACTIONS(296), + [anon_sym_initially] = ACTIONS(296), + [anon_sym_POUNDP] = ACTIONS(114), + [anon_sym_POUNDp] = ACTIONS(114), + [sym_self_referential_reader_macro] = ACTIONS(298), + [anon_sym_POUND_PLUS] = ACTIONS(118), + [anon_sym_POUND_DASH] = ACTIONS(118), + [anon_sym_POUNDC] = ACTIONS(120), + [anon_sym_POUNDc] = ACTIONS(120), }, [8] = { - [sym__gap] = STATE(18), - [sym_dis_expr] = STATE(18), - [sym__form] = STATE(2510), - [sym_num_lit] = STATE(2510), - [sym_kwd_lit] = STATE(2510), - [sym_str_lit] = STATE(2510), - [sym_char_lit] = STATE(2510), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2510), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2510), - [sym_set_lit] = STATE(2510), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2510), - [sym_splicing_read_cond_lit] = STATE(2510), - [sym_var_quoting_lit] = STATE(2510), - [sym_quoting_lit] = STATE(2510), - [sym_syn_quoting_lit] = STATE(2510), - [sym_unquote_splicing_lit] = STATE(2510), - [sym_unquoting_lit] = STATE(2510), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2510), - [sym_package_lit] = STATE(2510), - [sym_include_reader_macro] = STATE(2510), - [sym_complex_num_lit] = STATE(2510), - [aux_sym_dis_expr_repeat1] = STATE(18), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(311), - [sym_comment] = ACTIONS(311), - [anon_sym_POUND_] = ACTIONS(275), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(315), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(317), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(315), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(285), - [anon_sym_POUND_CARET] = ACTIONS(289), - [anon_sym_LPAREN] = ACTIONS(293), - [anon_sym_RPAREN] = ACTIONS(297), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(896), + [sym_dis_expr] = STATE(896), + [sym__form] = STATE(995), + [sym_num_lit] = STATE(995), + [sym_kwd_lit] = STATE(995), + [sym_str_lit] = STATE(995), + [sym_char_lit] = STATE(995), + [sym_sym_lit] = STATE(1136), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(995), + [sym__bare_list_lit] = STATE(1137), + [sym_vec_lit] = STATE(995), + [sym_set_lit] = STATE(995), + [sym__bare_set_lit] = STATE(1138), + [sym_read_cond_lit] = STATE(995), + [sym_splicing_read_cond_lit] = STATE(995), + [sym_var_quoting_lit] = STATE(995), + [sym_quoting_lit] = STATE(995), + [sym_syn_quoting_lit] = STATE(995), + [sym_unquote_splicing_lit] = STATE(995), + [sym_unquoting_lit] = STATE(995), + [sym_defun] = STATE(1137), + [sym_loop_macro] = STATE(1137), + [sym_path_lit] = STATE(995), + [sym_package_lit] = STATE(995), + [sym_include_reader_macro] = STATE(995), + [sym_complex_num_lit] = STATE(995), + [aux_sym_dis_expr_repeat1] = STATE(896), + [aux_sym_list_lit_repeat1] = STATE(2804), + [aux_sym_do_clause_repeat1] = STATE(8), + [sym__ws] = ACTIONS(300), + [sym_comment] = ACTIONS(300), + [anon_sym_POUND_] = ACTIONS(303), + [anon_sym_POUND] = ACTIONS(306), + [anon_sym_DOT] = ACTIONS(309), + [aux_sym_num_lit_token1] = ACTIONS(312), + [anon_sym_COLON] = ACTIONS(315), + [anon_sym_COLON_COLON] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(321), + [sym_nil_lit] = ACTIONS(309), + [aux_sym_sym_lit_token1] = ACTIONS(324), + [anon_sym_CARET] = ACTIONS(327), + [anon_sym_POUND_CARET] = ACTIONS(330), + [anon_sym_LPAREN] = ACTIONS(333), + [anon_sym_RPAREN] = ACTIONS(336), + [anon_sym_POUND0A] = ACTIONS(338), + [anon_sym_POUND0a] = ACTIONS(338), + [anon_sym_POUND_QMARK] = ACTIONS(341), + [anon_sym_POUND_QMARK_AT] = ACTIONS(344), + [anon_sym_POUND_SQUOTE] = ACTIONS(347), + [anon_sym_SQUOTE] = ACTIONS(350), + [anon_sym_BQUOTE] = ACTIONS(353), + [anon_sym_COMMA_AT] = ACTIONS(356), + [anon_sym_COMMA] = ACTIONS(359), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(315), - [anon_sym_cl] = ACTIONS(321), - [anon_sym_EQ] = ACTIONS(325), - [aux_sym_accumulation_verb_token1] = ACTIONS(306), - [anon_sym_for] = ACTIONS(306), - [anon_sym_and] = ACTIONS(306), - [anon_sym_as] = ACTIONS(306), - [anon_sym_with] = ACTIONS(306), - [anon_sym_do] = ACTIONS(306), - [anon_sym_while] = ACTIONS(306), - [anon_sym_until] = ACTIONS(306), - [anon_sym_repeat] = ACTIONS(306), - [anon_sym_when] = ACTIONS(306), - [anon_sym_if] = ACTIONS(306), - [anon_sym_unless] = ACTIONS(306), - [anon_sym_always] = ACTIONS(306), - [anon_sym_thereis] = ACTIONS(306), - [anon_sym_never] = ACTIONS(306), - [anon_sym_else] = ACTIONS(306), - [anon_sym_finally] = ACTIONS(306), - [anon_sym_return] = ACTIONS(306), - [anon_sym_initially] = ACTIONS(306), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(327), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(309), + [anon_sym_cl] = ACTIONS(362), + [aux_sym_accumulation_verb_token1] = ACTIONS(365), + [anon_sym_for] = ACTIONS(365), + [anon_sym_and] = ACTIONS(365), + [anon_sym_as] = ACTIONS(365), + [anon_sym_with] = ACTIONS(365), + [anon_sym_do] = ACTIONS(365), + [anon_sym_while] = ACTIONS(365), + [anon_sym_until] = ACTIONS(365), + [anon_sym_repeat] = ACTIONS(365), + [anon_sym_when] = ACTIONS(365), + [anon_sym_if] = ACTIONS(365), + [anon_sym_unless] = ACTIONS(365), + [anon_sym_always] = ACTIONS(365), + [anon_sym_thereis] = ACTIONS(365), + [anon_sym_never] = ACTIONS(365), + [anon_sym_else] = ACTIONS(365), + [anon_sym_finally] = ACTIONS(365), + [anon_sym_return] = ACTIONS(365), + [anon_sym_initially] = ACTIONS(365), + [anon_sym_POUNDP] = ACTIONS(367), + [anon_sym_POUNDp] = ACTIONS(367), + [sym_self_referential_reader_macro] = ACTIONS(370), + [anon_sym_POUND_PLUS] = ACTIONS(373), + [anon_sym_POUND_DASH] = ACTIONS(373), + [anon_sym_POUNDC] = ACTIONS(376), + [anon_sym_POUNDc] = ACTIONS(376), }, [9] = { + [sym__gap] = STATE(41), + [sym_dis_expr] = STATE(41), + [sym__form] = STATE(2520), + [sym_num_lit] = STATE(2520), + [sym_kwd_lit] = STATE(2520), + [sym_str_lit] = STATE(2520), + [sym_char_lit] = STATE(2520), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2520), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2520), + [sym_set_lit] = STATE(2520), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2520), + [sym_splicing_read_cond_lit] = STATE(2520), + [sym_var_quoting_lit] = STATE(2520), + [sym_quoting_lit] = STATE(2520), + [sym_syn_quoting_lit] = STATE(2520), + [sym_unquote_splicing_lit] = STATE(2520), + [sym_unquoting_lit] = STATE(2520), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2520), + [sym_package_lit] = STATE(2520), + [sym_include_reader_macro] = STATE(2520), + [sym_complex_num_lit] = STATE(2520), + [aux_sym_dis_expr_repeat1] = STATE(41), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(379), + [sym_comment] = ACTIONS(379), + [anon_sym_POUND_] = ACTIONS(383), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(387), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(389), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(387), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(393), + [anon_sym_POUND_CARET] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_RPAREN] = ACTIONS(405), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(387), + [anon_sym_cl] = ACTIONS(408), + [anon_sym_EQ] = ACTIONS(412), + [aux_sym_accumulation_verb_token1] = ACTIONS(414), + [anon_sym_for] = ACTIONS(414), + [anon_sym_and] = ACTIONS(414), + [anon_sym_as] = ACTIONS(414), + [anon_sym_with] = ACTIONS(414), + [anon_sym_do] = ACTIONS(414), + [anon_sym_while] = ACTIONS(414), + [anon_sym_until] = ACTIONS(414), + [anon_sym_repeat] = ACTIONS(414), + [anon_sym_when] = ACTIONS(414), + [anon_sym_if] = ACTIONS(414), + [anon_sym_unless] = ACTIONS(414), + [anon_sym_always] = ACTIONS(414), + [anon_sym_thereis] = ACTIONS(414), + [anon_sym_never] = ACTIONS(414), + [anon_sym_else] = ACTIONS(414), + [anon_sym_finally] = ACTIONS(414), + [anon_sym_return] = ACTIONS(414), + [anon_sym_initially] = ACTIONS(414), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(417), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), + }, + [10] = { [sym__gap] = STATE(990), [sym_dis_expr] = STATE(990), [sym__form] = STATE(19), @@ -15398,15 +15057,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_kwd_lit] = STATE(19), [sym_str_lit] = STATE(19), [sym_char_lit] = STATE(19), - [sym_sym_lit] = STATE(1073), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1101), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(19), - [sym__bare_list_lit] = STATE(1070), + [sym__bare_list_lit] = STATE(1109), [sym_vec_lit] = STATE(19), [sym_set_lit] = STATE(19), - [sym__bare_set_lit] = STATE(1069), + [sym__bare_set_lit] = STATE(1117), [sym_read_cond_lit] = STATE(19), [sym_splicing_read_cond_lit] = STATE(19), [sym_var_quoting_lit] = STATE(19), @@ -15414,2478 +15073,2391 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(19), [sym_unquote_splicing_lit] = STATE(19), [sym_unquoting_lit] = STATE(19), - [sym_defun] = STATE(1070), - [sym_loop_macro] = STATE(1070), + [sym_defun] = STATE(1109), + [sym_loop_macro] = STATE(1109), [sym_path_lit] = STATE(19), [sym_package_lit] = STATE(19), [sym_include_reader_macro] = STATE(19), [sym_complex_num_lit] = STATE(19), [aux_sym_dis_expr_repeat1] = STATE(990), - [aux_sym_list_lit_repeat1] = STATE(2804), - [sym__ws] = ACTIONS(240), - [sym_comment] = ACTIONS(240), - [anon_sym_POUND_] = ACTIONS(243), - [anon_sym_POUND] = ACTIONS(137), - [anon_sym_DOT] = ACTIONS(329), - [aux_sym_num_lit_token1] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(331), - [anon_sym_COLON_COLON] = ACTIONS(146), - [anon_sym_DQUOTE] = ACTIONS(148), - [sym_nil_lit] = ACTIONS(329), - [aux_sym_sym_lit_token1] = ACTIONS(150), - [anon_sym_CARET] = ACTIONS(251), - [anon_sym_POUND_CARET] = ACTIONS(254), - [anon_sym_LPAREN] = ACTIONS(257), - [anon_sym_RPAREN] = ACTIONS(260), - [anon_sym_POUND0A] = ACTIONS(163), - [anon_sym_POUND0a] = ACTIONS(163), - [anon_sym_POUND_QMARK] = ACTIONS(165), - [anon_sym_POUND_QMARK_AT] = ACTIONS(167), - [anon_sym_POUND_SQUOTE] = ACTIONS(169), - [anon_sym_SQUOTE] = ACTIONS(171), - [anon_sym_BQUOTE] = ACTIONS(173), - [anon_sym_COMMA_AT] = ACTIONS(175), - [anon_sym_COMMA] = ACTIONS(177), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(329), - [anon_sym_cl] = ACTIONS(334), - [anon_sym_EQ] = ACTIONS(337), - [aux_sym_accumulation_verb_token1] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_as] = ACTIONS(267), - [anon_sym_with] = ACTIONS(267), - [anon_sym_do] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_until] = ACTIONS(267), - [anon_sym_repeat] = ACTIONS(267), - [anon_sym_when] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_unless] = ACTIONS(267), - [anon_sym_always] = ACTIONS(267), - [anon_sym_thereis] = ACTIONS(267), - [anon_sym_never] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_finally] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_initially] = ACTIONS(267), - [anon_sym_POUNDP] = ACTIONS(186), - [anon_sym_POUNDp] = ACTIONS(186), - [sym_self_referential_reader_macro] = ACTIONS(339), - [anon_sym_POUND_PLUS] = ACTIONS(190), - [anon_sym_POUND_DASH] = ACTIONS(190), - [anon_sym_POUNDC] = ACTIONS(192), - [anon_sym_POUNDc] = ACTIONS(192), - }, - [10] = { - [sym__gap] = STATE(990), - [sym_dis_expr] = STATE(990), - [sym__form] = STATE(2397), - [sym_num_lit] = STATE(2397), - [sym_kwd_lit] = STATE(2397), - [sym_str_lit] = STATE(2397), - [sym_char_lit] = STATE(2397), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2397), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2397), - [sym_set_lit] = STATE(2397), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2397), - [sym_splicing_read_cond_lit] = STATE(2397), - [sym_var_quoting_lit] = STATE(2397), - [sym_quoting_lit] = STATE(2397), - [sym_syn_quoting_lit] = STATE(2397), - [sym_unquote_splicing_lit] = STATE(2397), - [sym_unquoting_lit] = STATE(2397), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2397), - [sym_package_lit] = STATE(2397), - [sym_include_reader_macro] = STATE(2397), - [sym_complex_num_lit] = STATE(2397), - [aux_sym_dis_expr_repeat1] = STATE(990), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(341), - [sym_comment] = ACTIONS(341), - [anon_sym_POUND_] = ACTIONS(345), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(349), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(351), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(349), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(355), - [anon_sym_POUND_CARET] = ACTIONS(359), - [anon_sym_LPAREN] = ACTIONS(363), - [anon_sym_RPAREN] = ACTIONS(367), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [aux_sym_list_lit_repeat1] = STATE(2812), + [sym__ws] = ACTIONS(419), + [sym_comment] = ACTIONS(419), + [anon_sym_POUND_] = ACTIONS(422), + [anon_sym_POUND] = ACTIONS(65), + [anon_sym_DOT] = ACTIONS(425), + [aux_sym_num_lit_token1] = ACTIONS(69), + [anon_sym_COLON] = ACTIONS(427), + [anon_sym_COLON_COLON] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_nil_lit] = ACTIONS(425), + [aux_sym_sym_lit_token1] = ACTIONS(78), + [anon_sym_CARET] = ACTIONS(430), + [anon_sym_POUND_CARET] = ACTIONS(433), + [anon_sym_LPAREN] = ACTIONS(436), + [anon_sym_RPAREN] = ACTIONS(439), + [anon_sym_POUND0A] = ACTIONS(91), + [anon_sym_POUND0a] = ACTIONS(91), + [anon_sym_POUND_QMARK] = ACTIONS(93), + [anon_sym_POUND_QMARK_AT] = ACTIONS(95), + [anon_sym_POUND_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_BQUOTE] = ACTIONS(101), + [anon_sym_COMMA_AT] = ACTIONS(103), + [anon_sym_COMMA] = ACTIONS(105), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(349), - [anon_sym_cl] = ACTIONS(370), - [anon_sym_EQ] = ACTIONS(374), - [aux_sym_accumulation_verb_token1] = ACTIONS(376), - [anon_sym_for] = ACTIONS(376), - [anon_sym_and] = ACTIONS(376), - [anon_sym_as] = ACTIONS(376), - [anon_sym_with] = ACTIONS(376), - [anon_sym_do] = ACTIONS(376), - [anon_sym_while] = ACTIONS(376), - [anon_sym_until] = ACTIONS(376), - [anon_sym_repeat] = ACTIONS(376), - [anon_sym_when] = ACTIONS(376), - [anon_sym_if] = ACTIONS(376), - [anon_sym_unless] = ACTIONS(376), - [anon_sym_always] = ACTIONS(376), - [anon_sym_thereis] = ACTIONS(376), - [anon_sym_never] = ACTIONS(376), - [anon_sym_else] = ACTIONS(376), - [anon_sym_finally] = ACTIONS(376), - [anon_sym_return] = ACTIONS(376), - [anon_sym_initially] = ACTIONS(376), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(379), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(425), + [anon_sym_cl] = ACTIONS(441), + [anon_sym_EQ] = ACTIONS(444), + [aux_sym_accumulation_verb_token1] = ACTIONS(446), + [anon_sym_for] = ACTIONS(446), + [anon_sym_and] = ACTIONS(446), + [anon_sym_as] = ACTIONS(446), + [anon_sym_with] = ACTIONS(446), + [anon_sym_do] = ACTIONS(446), + [anon_sym_while] = ACTIONS(446), + [anon_sym_until] = ACTIONS(446), + [anon_sym_repeat] = ACTIONS(446), + [anon_sym_when] = ACTIONS(446), + [anon_sym_if] = ACTIONS(446), + [anon_sym_unless] = ACTIONS(446), + [anon_sym_always] = ACTIONS(446), + [anon_sym_thereis] = ACTIONS(446), + [anon_sym_never] = ACTIONS(446), + [anon_sym_else] = ACTIONS(446), + [anon_sym_finally] = ACTIONS(446), + [anon_sym_return] = ACTIONS(446), + [anon_sym_initially] = ACTIONS(446), + [anon_sym_POUNDP] = ACTIONS(114), + [anon_sym_POUNDp] = ACTIONS(114), + [sym_self_referential_reader_macro] = ACTIONS(448), + [anon_sym_POUND_PLUS] = ACTIONS(118), + [anon_sym_POUND_DASH] = ACTIONS(118), + [anon_sym_POUNDC] = ACTIONS(120), + [anon_sym_POUNDc] = ACTIONS(120), }, [11] = { - [sym__gap] = STATE(2), - [sym_dis_expr] = STATE(2), - [sym__form] = STATE(2392), - [sym_num_lit] = STATE(2392), - [sym_kwd_lit] = STATE(2392), - [sym_str_lit] = STATE(2392), - [sym_char_lit] = STATE(2392), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2392), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2392), - [sym_set_lit] = STATE(2392), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2392), - [sym_splicing_read_cond_lit] = STATE(2392), - [sym_var_quoting_lit] = STATE(2392), - [sym_quoting_lit] = STATE(2392), - [sym_syn_quoting_lit] = STATE(2392), - [sym_unquote_splicing_lit] = STATE(2392), - [sym_unquoting_lit] = STATE(2392), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2392), - [sym_package_lit] = STATE(2392), - [sym_include_reader_macro] = STATE(2392), - [sym_complex_num_lit] = STATE(2392), - [aux_sym_dis_expr_repeat1] = STATE(2), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(381), - [sym_comment] = ACTIONS(381), - [anon_sym_POUND_] = ACTIONS(385), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(389), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(391), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(389), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(395), - [anon_sym_POUND_CARET] = ACTIONS(399), - [anon_sym_LPAREN] = ACTIONS(403), - [anon_sym_RPAREN] = ACTIONS(407), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(21), + [sym_dis_expr] = STATE(21), + [sym__form] = STATE(20), + [sym_num_lit] = STATE(20), + [sym_kwd_lit] = STATE(20), + [sym_str_lit] = STATE(20), + [sym_char_lit] = STATE(20), + [sym_sym_lit] = STATE(1101), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(20), + [sym__bare_list_lit] = STATE(1109), + [sym_vec_lit] = STATE(20), + [sym_set_lit] = STATE(20), + [sym__bare_set_lit] = STATE(1117), + [sym_read_cond_lit] = STATE(20), + [sym_splicing_read_cond_lit] = STATE(20), + [sym_var_quoting_lit] = STATE(20), + [sym_quoting_lit] = STATE(20), + [sym_syn_quoting_lit] = STATE(20), + [sym_unquote_splicing_lit] = STATE(20), + [sym_unquoting_lit] = STATE(20), + [sym_defun] = STATE(1109), + [sym_loop_macro] = STATE(1109), + [sym_path_lit] = STATE(20), + [sym_package_lit] = STATE(20), + [sym_include_reader_macro] = STATE(20), + [sym_complex_num_lit] = STATE(20), + [aux_sym_dis_expr_repeat1] = STATE(21), + [aux_sym_list_lit_repeat1] = STATE(2812), + [sym__ws] = ACTIONS(450), + [sym_comment] = ACTIONS(450), + [anon_sym_POUND_] = ACTIONS(453), + [anon_sym_POUND] = ACTIONS(65), + [anon_sym_DOT] = ACTIONS(456), + [aux_sym_num_lit_token1] = ACTIONS(69), + [anon_sym_COLON] = ACTIONS(458), + [anon_sym_COLON_COLON] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_nil_lit] = ACTIONS(456), + [aux_sym_sym_lit_token1] = ACTIONS(78), + [anon_sym_CARET] = ACTIONS(461), + [anon_sym_POUND_CARET] = ACTIONS(464), + [anon_sym_LPAREN] = ACTIONS(467), + [anon_sym_RPAREN] = ACTIONS(470), + [anon_sym_POUND0A] = ACTIONS(91), + [anon_sym_POUND0a] = ACTIONS(91), + [anon_sym_POUND_QMARK] = ACTIONS(93), + [anon_sym_POUND_QMARK_AT] = ACTIONS(95), + [anon_sym_POUND_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_BQUOTE] = ACTIONS(101), + [anon_sym_COMMA_AT] = ACTIONS(103), + [anon_sym_COMMA] = ACTIONS(105), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(389), - [anon_sym_cl] = ACTIONS(410), - [anon_sym_EQ] = ACTIONS(414), - [aux_sym_accumulation_verb_token1] = ACTIONS(416), - [anon_sym_for] = ACTIONS(416), - [anon_sym_and] = ACTIONS(416), - [anon_sym_as] = ACTIONS(416), - [anon_sym_with] = ACTIONS(416), - [anon_sym_do] = ACTIONS(416), - [anon_sym_while] = ACTIONS(416), - [anon_sym_until] = ACTIONS(416), - [anon_sym_repeat] = ACTIONS(416), - [anon_sym_when] = ACTIONS(416), - [anon_sym_if] = ACTIONS(416), - [anon_sym_unless] = ACTIONS(416), - [anon_sym_always] = ACTIONS(416), - [anon_sym_thereis] = ACTIONS(416), - [anon_sym_never] = ACTIONS(416), - [anon_sym_else] = ACTIONS(416), - [anon_sym_finally] = ACTIONS(416), - [anon_sym_return] = ACTIONS(416), - [anon_sym_initially] = ACTIONS(416), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(419), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(456), + [anon_sym_cl] = ACTIONS(472), + [anon_sym_EQ] = ACTIONS(475), + [aux_sym_accumulation_verb_token1] = ACTIONS(477), + [anon_sym_for] = ACTIONS(477), + [anon_sym_and] = ACTIONS(477), + [anon_sym_as] = ACTIONS(477), + [anon_sym_with] = ACTIONS(477), + [anon_sym_do] = ACTIONS(477), + [anon_sym_while] = ACTIONS(477), + [anon_sym_until] = ACTIONS(477), + [anon_sym_repeat] = ACTIONS(477), + [anon_sym_when] = ACTIONS(477), + [anon_sym_if] = ACTIONS(477), + [anon_sym_unless] = ACTIONS(477), + [anon_sym_always] = ACTIONS(477), + [anon_sym_thereis] = ACTIONS(477), + [anon_sym_never] = ACTIONS(477), + [anon_sym_else] = ACTIONS(477), + [anon_sym_finally] = ACTIONS(477), + [anon_sym_return] = ACTIONS(477), + [anon_sym_initially] = ACTIONS(477), + [anon_sym_POUNDP] = ACTIONS(114), + [anon_sym_POUNDp] = ACTIONS(114), + [sym_self_referential_reader_macro] = ACTIONS(479), + [anon_sym_POUND_PLUS] = ACTIONS(118), + [anon_sym_POUND_DASH] = ACTIONS(118), + [anon_sym_POUNDC] = ACTIONS(120), + [anon_sym_POUNDc] = ACTIONS(120), }, [12] = { - [sym__gap] = STATE(16), - [sym_dis_expr] = STATE(16), - [sym__form] = STATE(2387), - [sym_num_lit] = STATE(2387), - [sym_kwd_lit] = STATE(2387), - [sym_str_lit] = STATE(2387), - [sym_char_lit] = STATE(2387), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2387), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2387), - [sym_set_lit] = STATE(2387), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2387), - [sym_splicing_read_cond_lit] = STATE(2387), - [sym_var_quoting_lit] = STATE(2387), - [sym_quoting_lit] = STATE(2387), - [sym_syn_quoting_lit] = STATE(2387), - [sym_unquote_splicing_lit] = STATE(2387), - [sym_unquoting_lit] = STATE(2387), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2387), - [sym_package_lit] = STATE(2387), - [sym_include_reader_macro] = STATE(2387), - [sym_complex_num_lit] = STATE(2387), - [aux_sym_dis_expr_repeat1] = STATE(16), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(421), - [sym_comment] = ACTIONS(421), - [anon_sym_POUND_] = ACTIONS(425), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(429), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(431), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(429), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(435), - [anon_sym_POUND_CARET] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_RPAREN] = ACTIONS(447), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(23), + [sym_dis_expr] = STATE(23), + [sym__form] = STATE(22), + [sym_num_lit] = STATE(22), + [sym_kwd_lit] = STATE(22), + [sym_str_lit] = STATE(22), + [sym_char_lit] = STATE(22), + [sym_sym_lit] = STATE(1101), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(22), + [sym__bare_list_lit] = STATE(1109), + [sym_vec_lit] = STATE(22), + [sym_set_lit] = STATE(22), + [sym__bare_set_lit] = STATE(1117), + [sym_read_cond_lit] = STATE(22), + [sym_splicing_read_cond_lit] = STATE(22), + [sym_var_quoting_lit] = STATE(22), + [sym_quoting_lit] = STATE(22), + [sym_syn_quoting_lit] = STATE(22), + [sym_unquote_splicing_lit] = STATE(22), + [sym_unquoting_lit] = STATE(22), + [sym_defun] = STATE(1109), + [sym_loop_macro] = STATE(1109), + [sym_path_lit] = STATE(22), + [sym_package_lit] = STATE(22), + [sym_include_reader_macro] = STATE(22), + [sym_complex_num_lit] = STATE(22), + [aux_sym_dis_expr_repeat1] = STATE(23), + [aux_sym_list_lit_repeat1] = STATE(2812), + [sym__ws] = ACTIONS(481), + [sym_comment] = ACTIONS(481), + [anon_sym_POUND_] = ACTIONS(453), + [anon_sym_POUND] = ACTIONS(65), + [anon_sym_DOT] = ACTIONS(484), + [aux_sym_num_lit_token1] = ACTIONS(69), + [anon_sym_COLON] = ACTIONS(486), + [anon_sym_COLON_COLON] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_nil_lit] = ACTIONS(484), + [aux_sym_sym_lit_token1] = ACTIONS(78), + [anon_sym_CARET] = ACTIONS(461), + [anon_sym_POUND_CARET] = ACTIONS(464), + [anon_sym_LPAREN] = ACTIONS(467), + [anon_sym_RPAREN] = ACTIONS(470), + [anon_sym_POUND0A] = ACTIONS(91), + [anon_sym_POUND0a] = ACTIONS(91), + [anon_sym_POUND_QMARK] = ACTIONS(93), + [anon_sym_POUND_QMARK_AT] = ACTIONS(95), + [anon_sym_POUND_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_BQUOTE] = ACTIONS(101), + [anon_sym_COMMA_AT] = ACTIONS(103), + [anon_sym_COMMA] = ACTIONS(105), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(429), - [anon_sym_cl] = ACTIONS(450), - [anon_sym_EQ] = ACTIONS(454), - [aux_sym_accumulation_verb_token1] = ACTIONS(456), - [anon_sym_for] = ACTIONS(456), - [anon_sym_and] = ACTIONS(456), - [anon_sym_as] = ACTIONS(456), - [anon_sym_with] = ACTIONS(456), - [anon_sym_do] = ACTIONS(456), - [anon_sym_while] = ACTIONS(456), - [anon_sym_until] = ACTIONS(456), - [anon_sym_repeat] = ACTIONS(456), - [anon_sym_when] = ACTIONS(456), - [anon_sym_if] = ACTIONS(456), - [anon_sym_unless] = ACTIONS(456), - [anon_sym_always] = ACTIONS(456), - [anon_sym_thereis] = ACTIONS(456), - [anon_sym_never] = ACTIONS(456), - [anon_sym_else] = ACTIONS(456), - [anon_sym_finally] = ACTIONS(456), - [anon_sym_return] = ACTIONS(456), - [anon_sym_initially] = ACTIONS(456), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(459), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(484), + [anon_sym_cl] = ACTIONS(489), + [anon_sym_EQ] = ACTIONS(492), + [aux_sym_accumulation_verb_token1] = ACTIONS(477), + [anon_sym_for] = ACTIONS(477), + [anon_sym_and] = ACTIONS(477), + [anon_sym_as] = ACTIONS(477), + [anon_sym_with] = ACTIONS(477), + [anon_sym_do] = ACTIONS(477), + [anon_sym_while] = ACTIONS(477), + [anon_sym_until] = ACTIONS(477), + [anon_sym_repeat] = ACTIONS(477), + [anon_sym_when] = ACTIONS(477), + [anon_sym_if] = ACTIONS(477), + [anon_sym_unless] = ACTIONS(477), + [anon_sym_always] = ACTIONS(477), + [anon_sym_thereis] = ACTIONS(477), + [anon_sym_never] = ACTIONS(477), + [anon_sym_else] = ACTIONS(477), + [anon_sym_finally] = ACTIONS(477), + [anon_sym_return] = ACTIONS(477), + [anon_sym_initially] = ACTIONS(477), + [anon_sym_POUNDP] = ACTIONS(114), + [anon_sym_POUNDp] = ACTIONS(114), + [sym_self_referential_reader_macro] = ACTIONS(494), + [anon_sym_POUND_PLUS] = ACTIONS(118), + [anon_sym_POUND_DASH] = ACTIONS(118), + [anon_sym_POUNDC] = ACTIONS(120), + [anon_sym_POUNDc] = ACTIONS(120), }, [13] = { - [sym__gap] = STATE(990), - [sym_dis_expr] = STATE(990), - [sym__form] = STATE(23), - [sym_num_lit] = STATE(23), - [sym_kwd_lit] = STATE(23), - [sym_str_lit] = STATE(23), - [sym_char_lit] = STATE(23), - [sym_sym_lit] = STATE(1073), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(23), - [sym__bare_list_lit] = STATE(1070), - [sym_vec_lit] = STATE(23), - [sym_set_lit] = STATE(23), - [sym__bare_set_lit] = STATE(1069), - [sym_read_cond_lit] = STATE(23), - [sym_splicing_read_cond_lit] = STATE(23), - [sym_var_quoting_lit] = STATE(23), - [sym_quoting_lit] = STATE(23), - [sym_syn_quoting_lit] = STATE(23), - [sym_unquote_splicing_lit] = STATE(23), - [sym_unquoting_lit] = STATE(23), - [sym_defun] = STATE(1070), - [sym_loop_macro] = STATE(1070), - [sym_path_lit] = STATE(23), - [sym_package_lit] = STATE(23), - [sym_include_reader_macro] = STATE(23), - [sym_complex_num_lit] = STATE(23), - [aux_sym_dis_expr_repeat1] = STATE(990), + [sym__gap] = STATE(896), + [sym_dis_expr] = STATE(896), + [sym__form] = STATE(995), + [sym_num_lit] = STATE(995), + [sym_kwd_lit] = STATE(995), + [sym_str_lit] = STATE(995), + [sym_char_lit] = STATE(995), + [sym_sym_lit] = STATE(1136), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(995), + [sym__bare_list_lit] = STATE(1137), + [sym_vec_lit] = STATE(995), + [sym_set_lit] = STATE(995), + [sym__bare_set_lit] = STATE(1138), + [sym_read_cond_lit] = STATE(995), + [sym_splicing_read_cond_lit] = STATE(995), + [sym_var_quoting_lit] = STATE(995), + [sym_quoting_lit] = STATE(995), + [sym_syn_quoting_lit] = STATE(995), + [sym_unquote_splicing_lit] = STATE(995), + [sym_unquoting_lit] = STATE(995), + [sym_defun] = STATE(1137), + [sym_loop_macro] = STATE(1137), + [sym_path_lit] = STATE(995), + [sym_package_lit] = STATE(995), + [sym_include_reader_macro] = STATE(995), + [sym_complex_num_lit] = STATE(995), + [aux_sym_dis_expr_repeat1] = STATE(896), [aux_sym_list_lit_repeat1] = STATE(2804), - [sym__ws] = ACTIONS(461), - [sym_comment] = ACTIONS(461), - [anon_sym_POUND_] = ACTIONS(464), - [anon_sym_POUND] = ACTIONS(137), - [anon_sym_DOT] = ACTIONS(467), - [aux_sym_num_lit_token1] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(469), - [anon_sym_COLON_COLON] = ACTIONS(146), - [anon_sym_DQUOTE] = ACTIONS(148), - [sym_nil_lit] = ACTIONS(467), - [aux_sym_sym_lit_token1] = ACTIONS(150), - [anon_sym_CARET] = ACTIONS(472), - [anon_sym_POUND_CARET] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(478), - [anon_sym_RPAREN] = ACTIONS(481), - [anon_sym_POUND0A] = ACTIONS(163), - [anon_sym_POUND0a] = ACTIONS(163), - [anon_sym_POUND_QMARK] = ACTIONS(165), - [anon_sym_POUND_QMARK_AT] = ACTIONS(167), - [anon_sym_POUND_SQUOTE] = ACTIONS(169), - [anon_sym_SQUOTE] = ACTIONS(171), - [anon_sym_BQUOTE] = ACTIONS(173), - [anon_sym_COMMA_AT] = ACTIONS(175), - [anon_sym_COMMA] = ACTIONS(177), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(467), - [anon_sym_cl] = ACTIONS(483), - [anon_sym_EQ] = ACTIONS(486), - [aux_sym_accumulation_verb_token1] = ACTIONS(488), - [anon_sym_for] = ACTIONS(488), - [anon_sym_and] = ACTIONS(488), - [anon_sym_as] = ACTIONS(488), - [anon_sym_with] = ACTIONS(488), - [anon_sym_do] = ACTIONS(488), - [anon_sym_while] = ACTIONS(488), - [anon_sym_until] = ACTIONS(488), - [anon_sym_repeat] = ACTIONS(488), - [anon_sym_when] = ACTIONS(488), - [anon_sym_if] = ACTIONS(488), - [anon_sym_unless] = ACTIONS(488), - [anon_sym_always] = ACTIONS(488), - [anon_sym_thereis] = ACTIONS(488), - [anon_sym_never] = ACTIONS(488), - [anon_sym_else] = ACTIONS(488), - [anon_sym_finally] = ACTIONS(488), - [anon_sym_return] = ACTIONS(488), - [anon_sym_initially] = ACTIONS(488), - [anon_sym_POUNDP] = ACTIONS(186), - [anon_sym_POUNDp] = ACTIONS(186), - [sym_self_referential_reader_macro] = ACTIONS(490), - [anon_sym_POUND_PLUS] = ACTIONS(190), - [anon_sym_POUND_DASH] = ACTIONS(190), - [anon_sym_POUNDC] = ACTIONS(192), - [anon_sym_POUNDc] = ACTIONS(192), - }, - [14] = { - [sym__gap] = STATE(22), - [sym_dis_expr] = STATE(22), - [sym__form] = STATE(2378), - [sym_num_lit] = STATE(2378), - [sym_kwd_lit] = STATE(2378), - [sym_str_lit] = STATE(2378), - [sym_char_lit] = STATE(2378), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2378), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2378), - [sym_set_lit] = STATE(2378), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2378), - [sym_splicing_read_cond_lit] = STATE(2378), - [sym_var_quoting_lit] = STATE(2378), - [sym_quoting_lit] = STATE(2378), - [sym_syn_quoting_lit] = STATE(2378), - [sym_unquote_splicing_lit] = STATE(2378), - [sym_unquoting_lit] = STATE(2378), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2378), - [sym_package_lit] = STATE(2378), - [sym_include_reader_macro] = STATE(2378), - [sym_complex_num_lit] = STATE(2378), - [aux_sym_dis_expr_repeat1] = STATE(22), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(492), - [sym_comment] = ACTIONS(492), - [anon_sym_POUND_] = ACTIONS(425), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(496), - [aux_sym_num_lit_token1] = ACTIONS(71), + [aux_sym_do_clause_repeat1] = STATE(8), + [sym__ws] = ACTIONS(496), + [sym_comment] = ACTIONS(496), + [anon_sym_POUND_] = ACTIONS(496), + [anon_sym_POUND] = ACTIONS(124), + [anon_sym_DOT] = ACTIONS(126), + [aux_sym_num_lit_token1] = ACTIONS(128), [anon_sym_COLON] = ACTIONS(498), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(496), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(435), - [anon_sym_POUND_CARET] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_RPAREN] = ACTIONS(447), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [anon_sym_COLON_COLON] = ACTIONS(132), + [anon_sym_DQUOTE] = ACTIONS(134), + [sym_nil_lit] = ACTIONS(126), + [aux_sym_sym_lit_token1] = ACTIONS(136), + [anon_sym_CARET] = ACTIONS(496), + [anon_sym_POUND_CARET] = ACTIONS(496), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_RPAREN] = ACTIONS(496), + [anon_sym_POUND0A] = ACTIONS(138), + [anon_sym_POUND0a] = ACTIONS(138), + [anon_sym_POUND_QMARK] = ACTIONS(140), + [anon_sym_POUND_QMARK_AT] = ACTIONS(142), + [anon_sym_POUND_SQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_BQUOTE] = ACTIONS(148), + [anon_sym_COMMA_AT] = ACTIONS(150), + [anon_sym_COMMA] = ACTIONS(152), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(496), - [anon_sym_cl] = ACTIONS(502), - [anon_sym_EQ] = ACTIONS(506), - [aux_sym_accumulation_verb_token1] = ACTIONS(456), - [anon_sym_for] = ACTIONS(456), - [anon_sym_and] = ACTIONS(456), - [anon_sym_as] = ACTIONS(456), - [anon_sym_with] = ACTIONS(456), - [anon_sym_do] = ACTIONS(456), - [anon_sym_while] = ACTIONS(456), - [anon_sym_until] = ACTIONS(456), - [anon_sym_repeat] = ACTIONS(456), - [anon_sym_when] = ACTIONS(456), - [anon_sym_if] = ACTIONS(456), - [anon_sym_unless] = ACTIONS(456), - [anon_sym_always] = ACTIONS(456), - [anon_sym_thereis] = ACTIONS(456), - [anon_sym_never] = ACTIONS(456), - [anon_sym_else] = ACTIONS(456), - [anon_sym_finally] = ACTIONS(456), - [anon_sym_return] = ACTIONS(456), - [anon_sym_initially] = ACTIONS(456), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(508), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(126), + [anon_sym_cl] = ACTIONS(498), + [aux_sym_accumulation_verb_token1] = ACTIONS(498), + [anon_sym_for] = ACTIONS(498), + [anon_sym_and] = ACTIONS(498), + [anon_sym_as] = ACTIONS(498), + [anon_sym_with] = ACTIONS(498), + [anon_sym_do] = ACTIONS(498), + [anon_sym_while] = ACTIONS(498), + [anon_sym_until] = ACTIONS(498), + [anon_sym_repeat] = ACTIONS(498), + [anon_sym_when] = ACTIONS(498), + [anon_sym_if] = ACTIONS(498), + [anon_sym_unless] = ACTIONS(498), + [anon_sym_always] = ACTIONS(498), + [anon_sym_thereis] = ACTIONS(498), + [anon_sym_never] = ACTIONS(498), + [anon_sym_else] = ACTIONS(498), + [anon_sym_finally] = ACTIONS(498), + [anon_sym_return] = ACTIONS(498), + [anon_sym_initially] = ACTIONS(498), + [anon_sym_POUNDP] = ACTIONS(154), + [anon_sym_POUNDp] = ACTIONS(154), + [sym_self_referential_reader_macro] = ACTIONS(156), + [anon_sym_POUND_PLUS] = ACTIONS(158), + [anon_sym_POUND_DASH] = ACTIONS(158), + [anon_sym_POUNDC] = ACTIONS(160), + [anon_sym_POUNDc] = ACTIONS(160), }, - [15] = { + [14] = { [sym__gap] = STATE(990), [sym_dis_expr] = STATE(990), - [sym__form] = STATE(28), - [sym_num_lit] = STATE(28), - [sym_kwd_lit] = STATE(28), - [sym_str_lit] = STATE(28), - [sym_char_lit] = STATE(28), - [sym_sym_lit] = STATE(1073), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(28), - [sym__bare_list_lit] = STATE(1070), - [sym_vec_lit] = STATE(28), - [sym_set_lit] = STATE(28), - [sym__bare_set_lit] = STATE(1069), - [sym_read_cond_lit] = STATE(28), - [sym_splicing_read_cond_lit] = STATE(28), - [sym_var_quoting_lit] = STATE(28), - [sym_quoting_lit] = STATE(28), - [sym_syn_quoting_lit] = STATE(28), - [sym_unquote_splicing_lit] = STATE(28), - [sym_unquoting_lit] = STATE(28), - [sym_defun] = STATE(1070), - [sym_loop_macro] = STATE(1070), - [sym_path_lit] = STATE(28), - [sym_package_lit] = STATE(28), - [sym_include_reader_macro] = STATE(28), - [sym_complex_num_lit] = STATE(28), + [sym__form] = STATE(2534), + [sym_num_lit] = STATE(2534), + [sym_kwd_lit] = STATE(2534), + [sym_str_lit] = STATE(2534), + [sym_char_lit] = STATE(2534), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2534), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2534), + [sym_set_lit] = STATE(2534), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2534), + [sym_splicing_read_cond_lit] = STATE(2534), + [sym_var_quoting_lit] = STATE(2534), + [sym_quoting_lit] = STATE(2534), + [sym_syn_quoting_lit] = STATE(2534), + [sym_unquote_splicing_lit] = STATE(2534), + [sym_unquoting_lit] = STATE(2534), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2534), + [sym_package_lit] = STATE(2534), + [sym_include_reader_macro] = STATE(2534), + [sym_complex_num_lit] = STATE(2534), [aux_sym_dis_expr_repeat1] = STATE(990), - [aux_sym_list_lit_repeat1] = STATE(2804), - [sym__ws] = ACTIONS(461), - [sym_comment] = ACTIONS(461), - [anon_sym_POUND_] = ACTIONS(464), - [anon_sym_POUND] = ACTIONS(137), - [anon_sym_DOT] = ACTIONS(510), - [aux_sym_num_lit_token1] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(512), - [anon_sym_COLON_COLON] = ACTIONS(146), - [anon_sym_DQUOTE] = ACTIONS(148), - [sym_nil_lit] = ACTIONS(510), - [aux_sym_sym_lit_token1] = ACTIONS(150), - [anon_sym_CARET] = ACTIONS(472), - [anon_sym_POUND_CARET] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(478), - [anon_sym_RPAREN] = ACTIONS(481), - [anon_sym_POUND0A] = ACTIONS(163), - [anon_sym_POUND0a] = ACTIONS(163), - [anon_sym_POUND_QMARK] = ACTIONS(165), - [anon_sym_POUND_QMARK_AT] = ACTIONS(167), - [anon_sym_POUND_SQUOTE] = ACTIONS(169), - [anon_sym_SQUOTE] = ACTIONS(171), - [anon_sym_BQUOTE] = ACTIONS(173), - [anon_sym_COMMA_AT] = ACTIONS(175), - [anon_sym_COMMA] = ACTIONS(177), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(500), + [sym_comment] = ACTIONS(500), + [anon_sym_POUND_] = ACTIONS(504), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(508), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(510), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(508), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(514), + [anon_sym_POUND_CARET] = ACTIONS(518), + [anon_sym_LPAREN] = ACTIONS(522), + [anon_sym_RPAREN] = ACTIONS(526), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(508), + [anon_sym_cl] = ACTIONS(529), + [anon_sym_EQ] = ACTIONS(533), + [aux_sym_accumulation_verb_token1] = ACTIONS(535), + [anon_sym_for] = ACTIONS(535), + [anon_sym_and] = ACTIONS(535), + [anon_sym_as] = ACTIONS(535), + [anon_sym_with] = ACTIONS(535), + [anon_sym_do] = ACTIONS(535), + [anon_sym_while] = ACTIONS(535), + [anon_sym_until] = ACTIONS(535), + [anon_sym_repeat] = ACTIONS(535), + [anon_sym_when] = ACTIONS(535), + [anon_sym_if] = ACTIONS(535), + [anon_sym_unless] = ACTIONS(535), + [anon_sym_always] = ACTIONS(535), + [anon_sym_thereis] = ACTIONS(535), + [anon_sym_never] = ACTIONS(535), + [anon_sym_else] = ACTIONS(535), + [anon_sym_finally] = ACTIONS(535), + [anon_sym_return] = ACTIONS(535), + [anon_sym_initially] = ACTIONS(535), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(538), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), + }, + [15] = { + [sym__gap] = STATE(25), + [sym_dis_expr] = STATE(25), + [sym__form] = STATE(2539), + [sym_num_lit] = STATE(2539), + [sym_kwd_lit] = STATE(2539), + [sym_str_lit] = STATE(2539), + [sym_char_lit] = STATE(2539), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2539), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2539), + [sym_set_lit] = STATE(2539), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2539), + [sym_splicing_read_cond_lit] = STATE(2539), + [sym_var_quoting_lit] = STATE(2539), + [sym_quoting_lit] = STATE(2539), + [sym_syn_quoting_lit] = STATE(2539), + [sym_unquote_splicing_lit] = STATE(2539), + [sym_unquoting_lit] = STATE(2539), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2539), + [sym_package_lit] = STATE(2539), + [sym_include_reader_macro] = STATE(2539), + [sym_complex_num_lit] = STATE(2539), + [aux_sym_dis_expr_repeat1] = STATE(25), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(540), + [sym_comment] = ACTIONS(540), + [anon_sym_POUND_] = ACTIONS(544), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(548), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(550), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(548), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(554), + [anon_sym_POUND_CARET] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(562), + [anon_sym_RPAREN] = ACTIONS(566), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(510), - [anon_sym_cl] = ACTIONS(515), - [anon_sym_EQ] = ACTIONS(518), - [aux_sym_accumulation_verb_token1] = ACTIONS(488), - [anon_sym_for] = ACTIONS(488), - [anon_sym_and] = ACTIONS(488), - [anon_sym_as] = ACTIONS(488), - [anon_sym_with] = ACTIONS(488), - [anon_sym_do] = ACTIONS(488), - [anon_sym_while] = ACTIONS(488), - [anon_sym_until] = ACTIONS(488), - [anon_sym_repeat] = ACTIONS(488), - [anon_sym_when] = ACTIONS(488), - [anon_sym_if] = ACTIONS(488), - [anon_sym_unless] = ACTIONS(488), - [anon_sym_always] = ACTIONS(488), - [anon_sym_thereis] = ACTIONS(488), - [anon_sym_never] = ACTIONS(488), - [anon_sym_else] = ACTIONS(488), - [anon_sym_finally] = ACTIONS(488), - [anon_sym_return] = ACTIONS(488), - [anon_sym_initially] = ACTIONS(488), - [anon_sym_POUNDP] = ACTIONS(186), - [anon_sym_POUNDp] = ACTIONS(186), - [sym_self_referential_reader_macro] = ACTIONS(520), - [anon_sym_POUND_PLUS] = ACTIONS(190), - [anon_sym_POUND_DASH] = ACTIONS(190), - [anon_sym_POUNDC] = ACTIONS(192), - [anon_sym_POUNDc] = ACTIONS(192), + [sym_fancy_literal] = ACTIONS(548), + [anon_sym_cl] = ACTIONS(569), + [anon_sym_EQ] = ACTIONS(573), + [aux_sym_accumulation_verb_token1] = ACTIONS(575), + [anon_sym_for] = ACTIONS(575), + [anon_sym_and] = ACTIONS(575), + [anon_sym_as] = ACTIONS(575), + [anon_sym_with] = ACTIONS(575), + [anon_sym_do] = ACTIONS(575), + [anon_sym_while] = ACTIONS(575), + [anon_sym_until] = ACTIONS(575), + [anon_sym_repeat] = ACTIONS(575), + [anon_sym_when] = ACTIONS(575), + [anon_sym_if] = ACTIONS(575), + [anon_sym_unless] = ACTIONS(575), + [anon_sym_always] = ACTIONS(575), + [anon_sym_thereis] = ACTIONS(575), + [anon_sym_never] = ACTIONS(575), + [anon_sym_else] = ACTIONS(575), + [anon_sym_finally] = ACTIONS(575), + [anon_sym_return] = ACTIONS(575), + [anon_sym_initially] = ACTIONS(575), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(578), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [16] = { - [sym__gap] = STATE(990), - [sym_dis_expr] = STATE(990), - [sym__form] = STATE(2276), - [sym_num_lit] = STATE(2276), - [sym_kwd_lit] = STATE(2276), - [sym_str_lit] = STATE(2276), - [sym_char_lit] = STATE(2276), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2276), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2276), - [sym_set_lit] = STATE(2276), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2276), - [sym_splicing_read_cond_lit] = STATE(2276), - [sym_var_quoting_lit] = STATE(2276), - [sym_quoting_lit] = STATE(2276), - [sym_syn_quoting_lit] = STATE(2276), - [sym_unquote_splicing_lit] = STATE(2276), - [sym_unquoting_lit] = STATE(2276), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2276), - [sym_package_lit] = STATE(2276), - [sym_include_reader_macro] = STATE(2276), - [sym_complex_num_lit] = STATE(2276), - [aux_sym_dis_expr_repeat1] = STATE(990), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(522), - [sym_comment] = ACTIONS(522), - [anon_sym_POUND_] = ACTIONS(526), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(530), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(532), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(530), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(536), - [anon_sym_POUND_CARET] = ACTIONS(540), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_RPAREN] = ACTIONS(548), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(26), + [sym_dis_expr] = STATE(26), + [sym__form] = STATE(2247), + [sym_num_lit] = STATE(2247), + [sym_kwd_lit] = STATE(2247), + [sym_str_lit] = STATE(2247), + [sym_char_lit] = STATE(2247), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2247), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2247), + [sym_set_lit] = STATE(2247), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2247), + [sym_splicing_read_cond_lit] = STATE(2247), + [sym_var_quoting_lit] = STATE(2247), + [sym_quoting_lit] = STATE(2247), + [sym_syn_quoting_lit] = STATE(2247), + [sym_unquote_splicing_lit] = STATE(2247), + [sym_unquoting_lit] = STATE(2247), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2247), + [sym_package_lit] = STATE(2247), + [sym_include_reader_macro] = STATE(2247), + [sym_complex_num_lit] = STATE(2247), + [aux_sym_dis_expr_repeat1] = STATE(26), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(580), + [sym_comment] = ACTIONS(580), + [anon_sym_POUND_] = ACTIONS(383), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(584), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(586), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(584), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(393), + [anon_sym_POUND_CARET] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_RPAREN] = ACTIONS(405), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(530), - [anon_sym_cl] = ACTIONS(551), - [anon_sym_EQ] = ACTIONS(555), - [aux_sym_accumulation_verb_token1] = ACTIONS(557), - [anon_sym_for] = ACTIONS(557), - [anon_sym_and] = ACTIONS(557), - [anon_sym_as] = ACTIONS(557), - [anon_sym_with] = ACTIONS(557), - [anon_sym_do] = ACTIONS(557), - [anon_sym_while] = ACTIONS(557), - [anon_sym_until] = ACTIONS(557), - [anon_sym_repeat] = ACTIONS(557), - [anon_sym_when] = ACTIONS(557), - [anon_sym_if] = ACTIONS(557), - [anon_sym_unless] = ACTIONS(557), - [anon_sym_always] = ACTIONS(557), - [anon_sym_thereis] = ACTIONS(557), - [anon_sym_never] = ACTIONS(557), - [anon_sym_else] = ACTIONS(557), - [anon_sym_finally] = ACTIONS(557), - [anon_sym_return] = ACTIONS(557), - [anon_sym_initially] = ACTIONS(557), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(560), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(584), + [anon_sym_cl] = ACTIONS(590), + [anon_sym_EQ] = ACTIONS(594), + [aux_sym_accumulation_verb_token1] = ACTIONS(414), + [anon_sym_for] = ACTIONS(414), + [anon_sym_and] = ACTIONS(414), + [anon_sym_as] = ACTIONS(414), + [anon_sym_with] = ACTIONS(414), + [anon_sym_do] = ACTIONS(414), + [anon_sym_while] = ACTIONS(414), + [anon_sym_until] = ACTIONS(414), + [anon_sym_repeat] = ACTIONS(414), + [anon_sym_when] = ACTIONS(414), + [anon_sym_if] = ACTIONS(414), + [anon_sym_unless] = ACTIONS(414), + [anon_sym_always] = ACTIONS(414), + [anon_sym_thereis] = ACTIONS(414), + [anon_sym_never] = ACTIONS(414), + [anon_sym_else] = ACTIONS(414), + [anon_sym_finally] = ACTIONS(414), + [anon_sym_return] = ACTIONS(414), + [anon_sym_initially] = ACTIONS(414), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(596), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [17] = { [sym__gap] = STATE(990), [sym_dis_expr] = STATE(990), - [sym__form] = STATE(2356), - [sym_num_lit] = STATE(2356), - [sym_kwd_lit] = STATE(2356), - [sym_str_lit] = STATE(2356), - [sym_char_lit] = STATE(2356), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2356), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2356), - [sym_set_lit] = STATE(2356), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2356), - [sym_splicing_read_cond_lit] = STATE(2356), - [sym_var_quoting_lit] = STATE(2356), - [sym_quoting_lit] = STATE(2356), - [sym_syn_quoting_lit] = STATE(2356), - [sym_unquote_splicing_lit] = STATE(2356), - [sym_unquoting_lit] = STATE(2356), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2356), - [sym_package_lit] = STATE(2356), - [sym_include_reader_macro] = STATE(2356), - [sym_complex_num_lit] = STATE(2356), + [sym__form] = STATE(27), + [sym_num_lit] = STATE(27), + [sym_kwd_lit] = STATE(27), + [sym_str_lit] = STATE(27), + [sym_char_lit] = STATE(27), + [sym_sym_lit] = STATE(1101), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(27), + [sym__bare_list_lit] = STATE(1109), + [sym_vec_lit] = STATE(27), + [sym_set_lit] = STATE(27), + [sym__bare_set_lit] = STATE(1117), + [sym_read_cond_lit] = STATE(27), + [sym_splicing_read_cond_lit] = STATE(27), + [sym_var_quoting_lit] = STATE(27), + [sym_quoting_lit] = STATE(27), + [sym_syn_quoting_lit] = STATE(27), + [sym_unquote_splicing_lit] = STATE(27), + [sym_unquoting_lit] = STATE(27), + [sym_defun] = STATE(1109), + [sym_loop_macro] = STATE(1109), + [sym_path_lit] = STATE(27), + [sym_package_lit] = STATE(27), + [sym_include_reader_macro] = STATE(27), + [sym_complex_num_lit] = STATE(27), [aux_sym_dis_expr_repeat1] = STATE(990), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(562), - [sym_comment] = ACTIONS(562), - [anon_sym_POUND_] = ACTIONS(566), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(570), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(572), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(570), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(576), - [anon_sym_POUND_CARET] = ACTIONS(580), - [anon_sym_LPAREN] = ACTIONS(584), - [anon_sym_RPAREN] = ACTIONS(588), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [aux_sym_list_lit_repeat1] = STATE(2812), + [sym__ws] = ACTIONS(419), + [sym_comment] = ACTIONS(419), + [anon_sym_POUND_] = ACTIONS(422), + [anon_sym_POUND] = ACTIONS(65), + [anon_sym_DOT] = ACTIONS(598), + [aux_sym_num_lit_token1] = ACTIONS(69), + [anon_sym_COLON] = ACTIONS(600), + [anon_sym_COLON_COLON] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_nil_lit] = ACTIONS(598), + [aux_sym_sym_lit_token1] = ACTIONS(78), + [anon_sym_CARET] = ACTIONS(430), + [anon_sym_POUND_CARET] = ACTIONS(433), + [anon_sym_LPAREN] = ACTIONS(436), + [anon_sym_RPAREN] = ACTIONS(439), + [anon_sym_POUND0A] = ACTIONS(91), + [anon_sym_POUND0a] = ACTIONS(91), + [anon_sym_POUND_QMARK] = ACTIONS(93), + [anon_sym_POUND_QMARK_AT] = ACTIONS(95), + [anon_sym_POUND_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_BQUOTE] = ACTIONS(101), + [anon_sym_COMMA_AT] = ACTIONS(103), + [anon_sym_COMMA] = ACTIONS(105), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(570), - [anon_sym_cl] = ACTIONS(591), - [anon_sym_EQ] = ACTIONS(595), - [aux_sym_accumulation_verb_token1] = ACTIONS(597), - [anon_sym_for] = ACTIONS(597), - [anon_sym_and] = ACTIONS(597), - [anon_sym_as] = ACTIONS(597), - [anon_sym_with] = ACTIONS(597), - [anon_sym_do] = ACTIONS(597), - [anon_sym_while] = ACTIONS(597), - [anon_sym_until] = ACTIONS(597), - [anon_sym_repeat] = ACTIONS(597), - [anon_sym_when] = ACTIONS(597), - [anon_sym_if] = ACTIONS(597), - [anon_sym_unless] = ACTIONS(597), - [anon_sym_always] = ACTIONS(597), - [anon_sym_thereis] = ACTIONS(597), - [anon_sym_never] = ACTIONS(597), - [anon_sym_else] = ACTIONS(597), - [anon_sym_finally] = ACTIONS(597), - [anon_sym_return] = ACTIONS(597), - [anon_sym_initially] = ACTIONS(597), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(600), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(598), + [anon_sym_cl] = ACTIONS(603), + [anon_sym_EQ] = ACTIONS(606), + [aux_sym_accumulation_verb_token1] = ACTIONS(446), + [anon_sym_for] = ACTIONS(446), + [anon_sym_and] = ACTIONS(446), + [anon_sym_as] = ACTIONS(446), + [anon_sym_with] = ACTIONS(446), + [anon_sym_do] = ACTIONS(446), + [anon_sym_while] = ACTIONS(446), + [anon_sym_until] = ACTIONS(446), + [anon_sym_repeat] = ACTIONS(446), + [anon_sym_when] = ACTIONS(446), + [anon_sym_if] = ACTIONS(446), + [anon_sym_unless] = ACTIONS(446), + [anon_sym_always] = ACTIONS(446), + [anon_sym_thereis] = ACTIONS(446), + [anon_sym_never] = ACTIONS(446), + [anon_sym_else] = ACTIONS(446), + [anon_sym_finally] = ACTIONS(446), + [anon_sym_return] = ACTIONS(446), + [anon_sym_initially] = ACTIONS(446), + [anon_sym_POUNDP] = ACTIONS(114), + [anon_sym_POUNDp] = ACTIONS(114), + [sym_self_referential_reader_macro] = ACTIONS(608), + [anon_sym_POUND_PLUS] = ACTIONS(118), + [anon_sym_POUND_DASH] = ACTIONS(118), + [anon_sym_POUNDC] = ACTIONS(120), + [anon_sym_POUNDc] = ACTIONS(120), }, [18] = { - [sym__gap] = STATE(990), - [sym_dis_expr] = STATE(990), - [sym__form] = STATE(2258), - [sym_num_lit] = STATE(2258), - [sym_kwd_lit] = STATE(2258), - [sym_str_lit] = STATE(2258), - [sym_char_lit] = STATE(2258), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2258), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2258), - [sym_set_lit] = STATE(2258), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2258), - [sym_splicing_read_cond_lit] = STATE(2258), - [sym_var_quoting_lit] = STATE(2258), - [sym_quoting_lit] = STATE(2258), - [sym_syn_quoting_lit] = STATE(2258), - [sym_unquote_splicing_lit] = STATE(2258), - [sym_unquoting_lit] = STATE(2258), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2258), - [sym_package_lit] = STATE(2258), - [sym_include_reader_macro] = STATE(2258), - [sym_complex_num_lit] = STATE(2258), - [aux_sym_dis_expr_repeat1] = STATE(990), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(341), - [sym_comment] = ACTIONS(341), - [anon_sym_POUND_] = ACTIONS(345), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(602), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(602), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(355), - [anon_sym_POUND_CARET] = ACTIONS(359), - [anon_sym_LPAREN] = ACTIONS(363), - [anon_sym_RPAREN] = ACTIONS(367), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(6), + [sym_dis_expr] = STATE(6), + [sym__form] = STATE(5), + [sym_num_lit] = STATE(5), + [sym_kwd_lit] = STATE(5), + [sym_str_lit] = STATE(5), + [sym_char_lit] = STATE(5), + [sym_sym_lit] = STATE(1101), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(5), + [sym__bare_list_lit] = STATE(1109), + [sym_vec_lit] = STATE(5), + [sym_set_lit] = STATE(5), + [sym__bare_set_lit] = STATE(1117), + [sym_read_cond_lit] = STATE(5), + [sym_splicing_read_cond_lit] = STATE(5), + [sym_var_quoting_lit] = STATE(5), + [sym_quoting_lit] = STATE(5), + [sym_syn_quoting_lit] = STATE(5), + [sym_unquote_splicing_lit] = STATE(5), + [sym_unquoting_lit] = STATE(5), + [sym_defun] = STATE(1109), + [sym_loop_macro] = STATE(1109), + [sym_path_lit] = STATE(5), + [sym_package_lit] = STATE(5), + [sym_include_reader_macro] = STATE(5), + [sym_complex_num_lit] = STATE(5), + [aux_sym_dis_expr_repeat1] = STATE(6), + [aux_sym_list_lit_repeat1] = STATE(2812), + [sym__ws] = ACTIONS(610), + [sym_comment] = ACTIONS(610), + [anon_sym_POUND_] = ACTIONS(613), + [anon_sym_POUND] = ACTIONS(65), + [anon_sym_DOT] = ACTIONS(616), + [aux_sym_num_lit_token1] = ACTIONS(69), + [anon_sym_COLON] = ACTIONS(618), + [anon_sym_COLON_COLON] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_nil_lit] = ACTIONS(616), + [aux_sym_sym_lit_token1] = ACTIONS(78), + [anon_sym_CARET] = ACTIONS(621), + [anon_sym_POUND_CARET] = ACTIONS(624), + [anon_sym_LPAREN] = ACTIONS(627), + [anon_sym_RPAREN] = ACTIONS(630), + [anon_sym_POUND0A] = ACTIONS(91), + [anon_sym_POUND0a] = ACTIONS(91), + [anon_sym_POUND_QMARK] = ACTIONS(93), + [anon_sym_POUND_QMARK_AT] = ACTIONS(95), + [anon_sym_POUND_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_BQUOTE] = ACTIONS(101), + [anon_sym_COMMA_AT] = ACTIONS(103), + [anon_sym_COMMA] = ACTIONS(105), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(602), - [anon_sym_cl] = ACTIONS(608), - [anon_sym_EQ] = ACTIONS(612), - [aux_sym_accumulation_verb_token1] = ACTIONS(376), - [anon_sym_for] = ACTIONS(376), - [anon_sym_and] = ACTIONS(376), - [anon_sym_as] = ACTIONS(376), - [anon_sym_with] = ACTIONS(376), - [anon_sym_do] = ACTIONS(376), - [anon_sym_while] = ACTIONS(376), - [anon_sym_until] = ACTIONS(376), - [anon_sym_repeat] = ACTIONS(376), - [anon_sym_when] = ACTIONS(376), - [anon_sym_if] = ACTIONS(376), - [anon_sym_unless] = ACTIONS(376), - [anon_sym_always] = ACTIONS(376), - [anon_sym_thereis] = ACTIONS(376), - [anon_sym_never] = ACTIONS(376), - [anon_sym_else] = ACTIONS(376), - [anon_sym_finally] = ACTIONS(376), - [anon_sym_return] = ACTIONS(376), - [anon_sym_initially] = ACTIONS(376), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(614), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(616), + [anon_sym_cl] = ACTIONS(632), + [anon_sym_EQ] = ACTIONS(635), + [aux_sym_accumulation_verb_token1] = ACTIONS(637), + [anon_sym_for] = ACTIONS(637), + [anon_sym_and] = ACTIONS(637), + [anon_sym_as] = ACTIONS(637), + [anon_sym_with] = ACTIONS(637), + [anon_sym_do] = ACTIONS(637), + [anon_sym_while] = ACTIONS(637), + [anon_sym_until] = ACTIONS(637), + [anon_sym_repeat] = ACTIONS(637), + [anon_sym_when] = ACTIONS(637), + [anon_sym_if] = ACTIONS(637), + [anon_sym_unless] = ACTIONS(637), + [anon_sym_always] = ACTIONS(637), + [anon_sym_thereis] = ACTIONS(637), + [anon_sym_never] = ACTIONS(637), + [anon_sym_else] = ACTIONS(637), + [anon_sym_finally] = ACTIONS(637), + [anon_sym_return] = ACTIONS(637), + [anon_sym_initially] = ACTIONS(637), + [anon_sym_POUNDP] = ACTIONS(114), + [anon_sym_POUNDp] = ACTIONS(114), + [sym_self_referential_reader_macro] = ACTIONS(639), + [anon_sym_POUND_PLUS] = ACTIONS(118), + [anon_sym_POUND_DASH] = ACTIONS(118), + [anon_sym_POUNDC] = ACTIONS(120), + [anon_sym_POUNDc] = ACTIONS(120), }, [19] = { - [sym__gap] = STATE(34), - [sym_dis_expr] = STATE(34), - [sym__form] = STATE(2342), - [sym_num_lit] = STATE(2342), - [sym_kwd_lit] = STATE(2342), - [sym_str_lit] = STATE(2342), - [sym_char_lit] = STATE(2342), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2342), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2342), - [sym_set_lit] = STATE(2342), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2342), - [sym_splicing_read_cond_lit] = STATE(2342), - [sym_var_quoting_lit] = STATE(2342), - [sym_quoting_lit] = STATE(2342), - [sym_syn_quoting_lit] = STATE(2342), - [sym_unquote_splicing_lit] = STATE(2342), - [sym_unquoting_lit] = STATE(2342), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2342), - [sym_package_lit] = STATE(2342), - [sym_include_reader_macro] = STATE(2342), - [sym_complex_num_lit] = STATE(2342), - [aux_sym_dis_expr_repeat1] = STATE(34), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(616), - [sym_comment] = ACTIONS(616), - [anon_sym_POUND_] = ACTIONS(385), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(620), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(622), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(620), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(395), - [anon_sym_POUND_CARET] = ACTIONS(399), - [anon_sym_LPAREN] = ACTIONS(403), - [anon_sym_RPAREN] = ACTIONS(407), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(28), + [sym_dis_expr] = STATE(28), + [sym__form] = STATE(2107), + [sym_num_lit] = STATE(2107), + [sym_kwd_lit] = STATE(2107), + [sym_str_lit] = STATE(2107), + [sym_char_lit] = STATE(2107), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2107), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2107), + [sym_set_lit] = STATE(2107), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2107), + [sym_splicing_read_cond_lit] = STATE(2107), + [sym_var_quoting_lit] = STATE(2107), + [sym_quoting_lit] = STATE(2107), + [sym_syn_quoting_lit] = STATE(2107), + [sym_unquote_splicing_lit] = STATE(2107), + [sym_unquoting_lit] = STATE(2107), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2107), + [sym_package_lit] = STATE(2107), + [sym_include_reader_macro] = STATE(2107), + [sym_complex_num_lit] = STATE(2107), + [aux_sym_dis_expr_repeat1] = STATE(28), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(641), + [sym_comment] = ACTIONS(641), + [anon_sym_POUND_] = ACTIONS(645), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(649), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(651), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(649), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(655), + [anon_sym_POUND_CARET] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(663), + [anon_sym_RPAREN] = ACTIONS(667), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(620), - [anon_sym_cl] = ACTIONS(626), - [anon_sym_EQ] = ACTIONS(630), - [aux_sym_accumulation_verb_token1] = ACTIONS(416), - [anon_sym_for] = ACTIONS(416), - [anon_sym_and] = ACTIONS(416), - [anon_sym_as] = ACTIONS(416), - [anon_sym_with] = ACTIONS(416), - [anon_sym_do] = ACTIONS(416), - [anon_sym_while] = ACTIONS(416), - [anon_sym_until] = ACTIONS(416), - [anon_sym_repeat] = ACTIONS(416), - [anon_sym_when] = ACTIONS(416), - [anon_sym_if] = ACTIONS(416), - [anon_sym_unless] = ACTIONS(416), - [anon_sym_always] = ACTIONS(416), - [anon_sym_thereis] = ACTIONS(416), - [anon_sym_never] = ACTIONS(416), - [anon_sym_else] = ACTIONS(416), - [anon_sym_finally] = ACTIONS(416), - [anon_sym_return] = ACTIONS(416), - [anon_sym_initially] = ACTIONS(416), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(632), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(649), + [anon_sym_cl] = ACTIONS(670), + [anon_sym_EQ] = ACTIONS(674), + [aux_sym_accumulation_verb_token1] = ACTIONS(676), + [anon_sym_for] = ACTIONS(676), + [anon_sym_and] = ACTIONS(676), + [anon_sym_as] = ACTIONS(676), + [anon_sym_with] = ACTIONS(676), + [anon_sym_do] = ACTIONS(676), + [anon_sym_while] = ACTIONS(676), + [anon_sym_until] = ACTIONS(676), + [anon_sym_repeat] = ACTIONS(676), + [anon_sym_when] = ACTIONS(676), + [anon_sym_if] = ACTIONS(676), + [anon_sym_unless] = ACTIONS(676), + [anon_sym_always] = ACTIONS(676), + [anon_sym_thereis] = ACTIONS(676), + [anon_sym_never] = ACTIONS(676), + [anon_sym_else] = ACTIONS(676), + [anon_sym_finally] = ACTIONS(676), + [anon_sym_return] = ACTIONS(676), + [anon_sym_initially] = ACTIONS(676), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(679), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [20] = { - [sym__gap] = STATE(908), - [sym_dis_expr] = STATE(908), - [sym__form] = STATE(994), - [sym_num_lit] = STATE(994), - [sym_kwd_lit] = STATE(994), - [sym_str_lit] = STATE(994), - [sym_char_lit] = STATE(994), - [sym_sym_lit] = STATE(1186), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(994), - [sym__bare_list_lit] = STATE(1187), - [sym_vec_lit] = STATE(994), - [sym_set_lit] = STATE(994), - [sym__bare_set_lit] = STATE(1191), - [sym_read_cond_lit] = STATE(994), - [sym_splicing_read_cond_lit] = STATE(994), - [sym_var_quoting_lit] = STATE(994), - [sym_quoting_lit] = STATE(994), - [sym_syn_quoting_lit] = STATE(994), - [sym_unquote_splicing_lit] = STATE(994), - [sym_unquoting_lit] = STATE(994), - [sym_defun] = STATE(1187), - [sym_loop_macro] = STATE(1187), - [sym_path_lit] = STATE(994), - [sym_package_lit] = STATE(994), - [sym_include_reader_macro] = STATE(994), - [sym_complex_num_lit] = STATE(994), - [aux_sym_dis_expr_repeat1] = STATE(908), - [aux_sym_list_lit_repeat1] = STATE(2827), - [aux_sym_do_clause_repeat1] = STATE(27), - [sym__ws] = ACTIONS(634), - [sym_comment] = ACTIONS(634), - [anon_sym_POUND_] = ACTIONS(634), - [anon_sym_POUND] = ACTIONS(636), - [anon_sym_DOT] = ACTIONS(638), - [aux_sym_num_lit_token1] = ACTIONS(640), - [anon_sym_COLON] = ACTIONS(642), - [anon_sym_COLON_COLON] = ACTIONS(644), - [anon_sym_DQUOTE] = ACTIONS(646), - [sym_nil_lit] = ACTIONS(638), - [aux_sym_sym_lit_token1] = ACTIONS(648), - [anon_sym_CARET] = ACTIONS(634), - [anon_sym_POUND_CARET] = ACTIONS(634), - [anon_sym_LPAREN] = ACTIONS(634), - [anon_sym_RPAREN] = ACTIONS(634), - [anon_sym_POUND0A] = ACTIONS(650), - [anon_sym_POUND0a] = ACTIONS(650), - [anon_sym_POUND_QMARK] = ACTIONS(652), - [anon_sym_POUND_QMARK_AT] = ACTIONS(654), - [anon_sym_POUND_SQUOTE] = ACTIONS(656), - [anon_sym_SQUOTE] = ACTIONS(658), - [anon_sym_BQUOTE] = ACTIONS(660), - [anon_sym_COMMA_AT] = ACTIONS(662), - [anon_sym_COMMA] = ACTIONS(664), + [sym__gap] = STATE(29), + [sym_dis_expr] = STATE(29), + [sym__form] = STATE(2115), + [sym_num_lit] = STATE(2115), + [sym_kwd_lit] = STATE(2115), + [sym_str_lit] = STATE(2115), + [sym_char_lit] = STATE(2115), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2115), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2115), + [sym_set_lit] = STATE(2115), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2115), + [sym_splicing_read_cond_lit] = STATE(2115), + [sym_var_quoting_lit] = STATE(2115), + [sym_quoting_lit] = STATE(2115), + [sym_syn_quoting_lit] = STATE(2115), + [sym_unquote_splicing_lit] = STATE(2115), + [sym_unquoting_lit] = STATE(2115), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2115), + [sym_package_lit] = STATE(2115), + [sym_include_reader_macro] = STATE(2115), + [sym_complex_num_lit] = STATE(2115), + [aux_sym_dis_expr_repeat1] = STATE(29), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(681), + [sym_comment] = ACTIONS(681), + [anon_sym_POUND_] = ACTIONS(685), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(689), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(691), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(689), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(695), + [anon_sym_POUND_CARET] = ACTIONS(699), + [anon_sym_LPAREN] = ACTIONS(703), + [anon_sym_RPAREN] = ACTIONS(707), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(638), - [anon_sym_cl] = ACTIONS(642), - [aux_sym_accumulation_verb_token1] = ACTIONS(642), - [anon_sym_for] = ACTIONS(642), - [anon_sym_and] = ACTIONS(642), - [anon_sym_as] = ACTIONS(642), - [anon_sym_with] = ACTIONS(642), - [anon_sym_do] = ACTIONS(642), - [anon_sym_while] = ACTIONS(642), - [anon_sym_until] = ACTIONS(642), - [anon_sym_repeat] = ACTIONS(642), - [anon_sym_when] = ACTIONS(642), - [anon_sym_if] = ACTIONS(642), - [anon_sym_unless] = ACTIONS(642), - [anon_sym_always] = ACTIONS(642), - [anon_sym_thereis] = ACTIONS(642), - [anon_sym_never] = ACTIONS(642), - [anon_sym_else] = ACTIONS(642), - [anon_sym_finally] = ACTIONS(642), - [anon_sym_return] = ACTIONS(642), - [anon_sym_initially] = ACTIONS(642), - [anon_sym_POUNDP] = ACTIONS(666), - [anon_sym_POUNDp] = ACTIONS(666), - [sym_self_referential_reader_macro] = ACTIONS(668), - [anon_sym_POUND_PLUS] = ACTIONS(670), - [anon_sym_POUND_DASH] = ACTIONS(670), - [anon_sym_POUNDC] = ACTIONS(672), - [anon_sym_POUNDc] = ACTIONS(672), + [sym_fancy_literal] = ACTIONS(689), + [anon_sym_cl] = ACTIONS(710), + [anon_sym_EQ] = ACTIONS(714), + [aux_sym_accumulation_verb_token1] = ACTIONS(716), + [anon_sym_for] = ACTIONS(716), + [anon_sym_and] = ACTIONS(716), + [anon_sym_as] = ACTIONS(716), + [anon_sym_with] = ACTIONS(716), + [anon_sym_do] = ACTIONS(716), + [anon_sym_while] = ACTIONS(716), + [anon_sym_until] = ACTIONS(716), + [anon_sym_repeat] = ACTIONS(716), + [anon_sym_when] = ACTIONS(716), + [anon_sym_if] = ACTIONS(716), + [anon_sym_unless] = ACTIONS(716), + [anon_sym_always] = ACTIONS(716), + [anon_sym_thereis] = ACTIONS(716), + [anon_sym_never] = ACTIONS(716), + [anon_sym_else] = ACTIONS(716), + [anon_sym_finally] = ACTIONS(716), + [anon_sym_return] = ACTIONS(716), + [anon_sym_initially] = ACTIONS(716), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(719), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [21] = { [sym__gap] = STATE(990), [sym_dis_expr] = STATE(990), - [sym__form] = STATE(2123), - [sym_num_lit] = STATE(2123), - [sym_kwd_lit] = STATE(2123), - [sym_str_lit] = STATE(2123), - [sym_char_lit] = STATE(2123), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2123), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2123), - [sym_set_lit] = STATE(2123), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2123), - [sym_splicing_read_cond_lit] = STATE(2123), - [sym_var_quoting_lit] = STATE(2123), - [sym_quoting_lit] = STATE(2123), - [sym_syn_quoting_lit] = STATE(2123), - [sym_unquote_splicing_lit] = STATE(2123), - [sym_unquoting_lit] = STATE(2123), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2123), - [sym_package_lit] = STATE(2123), - [sym_include_reader_macro] = STATE(2123), - [sym_complex_num_lit] = STATE(2123), + [sym__form] = STATE(30), + [sym_num_lit] = STATE(30), + [sym_kwd_lit] = STATE(30), + [sym_str_lit] = STATE(30), + [sym_char_lit] = STATE(30), + [sym_sym_lit] = STATE(1101), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(30), + [sym__bare_list_lit] = STATE(1109), + [sym_vec_lit] = STATE(30), + [sym_set_lit] = STATE(30), + [sym__bare_set_lit] = STATE(1117), + [sym_read_cond_lit] = STATE(30), + [sym_splicing_read_cond_lit] = STATE(30), + [sym_var_quoting_lit] = STATE(30), + [sym_quoting_lit] = STATE(30), + [sym_syn_quoting_lit] = STATE(30), + [sym_unquote_splicing_lit] = STATE(30), + [sym_unquoting_lit] = STATE(30), + [sym_defun] = STATE(1109), + [sym_loop_macro] = STATE(1109), + [sym_path_lit] = STATE(30), + [sym_package_lit] = STATE(30), + [sym_include_reader_macro] = STATE(30), + [sym_complex_num_lit] = STATE(30), [aux_sym_dis_expr_repeat1] = STATE(990), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(674), - [sym_comment] = ACTIONS(674), - [anon_sym_POUND_] = ACTIONS(678), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(682), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(684), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(682), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(688), - [anon_sym_POUND_CARET] = ACTIONS(692), - [anon_sym_LPAREN] = ACTIONS(696), - [anon_sym_RPAREN] = ACTIONS(700), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [aux_sym_list_lit_repeat1] = STATE(2812), + [sym__ws] = ACTIONS(721), + [sym_comment] = ACTIONS(721), + [anon_sym_POUND_] = ACTIONS(724), + [anon_sym_POUND] = ACTIONS(65), + [anon_sym_DOT] = ACTIONS(727), + [aux_sym_num_lit_token1] = ACTIONS(69), + [anon_sym_COLON] = ACTIONS(729), + [anon_sym_COLON_COLON] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_nil_lit] = ACTIONS(727), + [aux_sym_sym_lit_token1] = ACTIONS(78), + [anon_sym_CARET] = ACTIONS(732), + [anon_sym_POUND_CARET] = ACTIONS(735), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_RPAREN] = ACTIONS(741), + [anon_sym_POUND0A] = ACTIONS(91), + [anon_sym_POUND0a] = ACTIONS(91), + [anon_sym_POUND_QMARK] = ACTIONS(93), + [anon_sym_POUND_QMARK_AT] = ACTIONS(95), + [anon_sym_POUND_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_BQUOTE] = ACTIONS(101), + [anon_sym_COMMA_AT] = ACTIONS(103), + [anon_sym_COMMA] = ACTIONS(105), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(682), - [anon_sym_cl] = ACTIONS(703), - [anon_sym_EQ] = ACTIONS(707), - [aux_sym_accumulation_verb_token1] = ACTIONS(709), - [anon_sym_for] = ACTIONS(709), - [anon_sym_and] = ACTIONS(709), - [anon_sym_as] = ACTIONS(709), - [anon_sym_with] = ACTIONS(709), - [anon_sym_do] = ACTIONS(709), - [anon_sym_while] = ACTIONS(709), - [anon_sym_until] = ACTIONS(709), - [anon_sym_repeat] = ACTIONS(709), - [anon_sym_when] = ACTIONS(709), - [anon_sym_if] = ACTIONS(709), - [anon_sym_unless] = ACTIONS(709), - [anon_sym_always] = ACTIONS(709), - [anon_sym_thereis] = ACTIONS(709), - [anon_sym_never] = ACTIONS(709), - [anon_sym_else] = ACTIONS(709), - [anon_sym_finally] = ACTIONS(709), - [anon_sym_return] = ACTIONS(709), - [anon_sym_initially] = ACTIONS(709), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(712), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(727), + [anon_sym_cl] = ACTIONS(743), + [anon_sym_EQ] = ACTIONS(746), + [aux_sym_accumulation_verb_token1] = ACTIONS(748), + [anon_sym_for] = ACTIONS(748), + [anon_sym_and] = ACTIONS(748), + [anon_sym_as] = ACTIONS(748), + [anon_sym_with] = ACTIONS(748), + [anon_sym_do] = ACTIONS(748), + [anon_sym_while] = ACTIONS(748), + [anon_sym_until] = ACTIONS(748), + [anon_sym_repeat] = ACTIONS(748), + [anon_sym_when] = ACTIONS(748), + [anon_sym_if] = ACTIONS(748), + [anon_sym_unless] = ACTIONS(748), + [anon_sym_always] = ACTIONS(748), + [anon_sym_thereis] = ACTIONS(748), + [anon_sym_never] = ACTIONS(748), + [anon_sym_else] = ACTIONS(748), + [anon_sym_finally] = ACTIONS(748), + [anon_sym_return] = ACTIONS(748), + [anon_sym_initially] = ACTIONS(748), + [anon_sym_POUNDP] = ACTIONS(114), + [anon_sym_POUNDp] = ACTIONS(114), + [sym_self_referential_reader_macro] = ACTIONS(750), + [anon_sym_POUND_PLUS] = ACTIONS(118), + [anon_sym_POUND_DASH] = ACTIONS(118), + [anon_sym_POUNDC] = ACTIONS(120), + [anon_sym_POUNDc] = ACTIONS(120), }, [22] = { - [sym__gap] = STATE(990), - [sym_dis_expr] = STATE(990), - [sym__form] = STATE(2261), - [sym_num_lit] = STATE(2261), - [sym_kwd_lit] = STATE(2261), - [sym_str_lit] = STATE(2261), - [sym_char_lit] = STATE(2261), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2261), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2261), - [sym_set_lit] = STATE(2261), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2261), - [sym_splicing_read_cond_lit] = STATE(2261), - [sym_var_quoting_lit] = STATE(2261), - [sym_quoting_lit] = STATE(2261), - [sym_syn_quoting_lit] = STATE(2261), - [sym_unquote_splicing_lit] = STATE(2261), - [sym_unquoting_lit] = STATE(2261), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2261), - [sym_package_lit] = STATE(2261), - [sym_include_reader_macro] = STATE(2261), - [sym_complex_num_lit] = STATE(2261), - [aux_sym_dis_expr_repeat1] = STATE(990), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(522), - [sym_comment] = ACTIONS(522), - [anon_sym_POUND_] = ACTIONS(526), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(714), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(716), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(714), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(536), - [anon_sym_POUND_CARET] = ACTIONS(540), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_RPAREN] = ACTIONS(548), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(31), + [sym_dis_expr] = STATE(31), + [sym__form] = STATE(2139), + [sym_num_lit] = STATE(2139), + [sym_kwd_lit] = STATE(2139), + [sym_str_lit] = STATE(2139), + [sym_char_lit] = STATE(2139), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2139), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2139), + [sym_set_lit] = STATE(2139), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2139), + [sym_splicing_read_cond_lit] = STATE(2139), + [sym_var_quoting_lit] = STATE(2139), + [sym_quoting_lit] = STATE(2139), + [sym_syn_quoting_lit] = STATE(2139), + [sym_unquote_splicing_lit] = STATE(2139), + [sym_unquoting_lit] = STATE(2139), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2139), + [sym_package_lit] = STATE(2139), + [sym_include_reader_macro] = STATE(2139), + [sym_complex_num_lit] = STATE(2139), + [aux_sym_dis_expr_repeat1] = STATE(31), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(752), + [sym_comment] = ACTIONS(752), + [anon_sym_POUND_] = ACTIONS(685), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(756), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(758), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(756), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(695), + [anon_sym_POUND_CARET] = ACTIONS(699), + [anon_sym_LPAREN] = ACTIONS(703), + [anon_sym_RPAREN] = ACTIONS(707), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(714), - [anon_sym_cl] = ACTIONS(720), - [anon_sym_EQ] = ACTIONS(724), - [aux_sym_accumulation_verb_token1] = ACTIONS(557), - [anon_sym_for] = ACTIONS(557), - [anon_sym_and] = ACTIONS(557), - [anon_sym_as] = ACTIONS(557), - [anon_sym_with] = ACTIONS(557), - [anon_sym_do] = ACTIONS(557), - [anon_sym_while] = ACTIONS(557), - [anon_sym_until] = ACTIONS(557), - [anon_sym_repeat] = ACTIONS(557), - [anon_sym_when] = ACTIONS(557), - [anon_sym_if] = ACTIONS(557), - [anon_sym_unless] = ACTIONS(557), - [anon_sym_always] = ACTIONS(557), - [anon_sym_thereis] = ACTIONS(557), - [anon_sym_never] = ACTIONS(557), - [anon_sym_else] = ACTIONS(557), - [anon_sym_finally] = ACTIONS(557), - [anon_sym_return] = ACTIONS(557), - [anon_sym_initially] = ACTIONS(557), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(726), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(756), + [anon_sym_cl] = ACTIONS(762), + [anon_sym_EQ] = ACTIONS(766), + [aux_sym_accumulation_verb_token1] = ACTIONS(716), + [anon_sym_for] = ACTIONS(716), + [anon_sym_and] = ACTIONS(716), + [anon_sym_as] = ACTIONS(716), + [anon_sym_with] = ACTIONS(716), + [anon_sym_do] = ACTIONS(716), + [anon_sym_while] = ACTIONS(716), + [anon_sym_until] = ACTIONS(716), + [anon_sym_repeat] = ACTIONS(716), + [anon_sym_when] = ACTIONS(716), + [anon_sym_if] = ACTIONS(716), + [anon_sym_unless] = ACTIONS(716), + [anon_sym_always] = ACTIONS(716), + [anon_sym_thereis] = ACTIONS(716), + [anon_sym_never] = ACTIONS(716), + [anon_sym_else] = ACTIONS(716), + [anon_sym_finally] = ACTIONS(716), + [anon_sym_return] = ACTIONS(716), + [anon_sym_initially] = ACTIONS(716), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(768), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [23] = { - [sym__gap] = STATE(35), - [sym_dis_expr] = STATE(35), - [sym__form] = STATE(2271), - [sym_num_lit] = STATE(2271), - [sym_kwd_lit] = STATE(2271), - [sym_str_lit] = STATE(2271), - [sym_char_lit] = STATE(2271), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2271), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2271), - [sym_set_lit] = STATE(2271), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2271), - [sym_splicing_read_cond_lit] = STATE(2271), - [sym_var_quoting_lit] = STATE(2271), - [sym_quoting_lit] = STATE(2271), - [sym_syn_quoting_lit] = STATE(2271), - [sym_unquote_splicing_lit] = STATE(2271), - [sym_unquoting_lit] = STATE(2271), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2271), - [sym_package_lit] = STATE(2271), - [sym_include_reader_macro] = STATE(2271), - [sym_complex_num_lit] = STATE(2271), - [aux_sym_dis_expr_repeat1] = STATE(35), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(728), - [sym_comment] = ACTIONS(728), - [anon_sym_POUND_] = ACTIONS(732), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(736), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(738), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(736), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(742), - [anon_sym_POUND_CARET] = ACTIONS(746), - [anon_sym_LPAREN] = ACTIONS(750), - [anon_sym_RPAREN] = ACTIONS(754), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(990), + [sym_dis_expr] = STATE(990), + [sym__form] = STATE(32), + [sym_num_lit] = STATE(32), + [sym_kwd_lit] = STATE(32), + [sym_str_lit] = STATE(32), + [sym_char_lit] = STATE(32), + [sym_sym_lit] = STATE(1101), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(32), + [sym__bare_list_lit] = STATE(1109), + [sym_vec_lit] = STATE(32), + [sym_set_lit] = STATE(32), + [sym__bare_set_lit] = STATE(1117), + [sym_read_cond_lit] = STATE(32), + [sym_splicing_read_cond_lit] = STATE(32), + [sym_var_quoting_lit] = STATE(32), + [sym_quoting_lit] = STATE(32), + [sym_syn_quoting_lit] = STATE(32), + [sym_unquote_splicing_lit] = STATE(32), + [sym_unquoting_lit] = STATE(32), + [sym_defun] = STATE(1109), + [sym_loop_macro] = STATE(1109), + [sym_path_lit] = STATE(32), + [sym_package_lit] = STATE(32), + [sym_include_reader_macro] = STATE(32), + [sym_complex_num_lit] = STATE(32), + [aux_sym_dis_expr_repeat1] = STATE(990), + [aux_sym_list_lit_repeat1] = STATE(2812), + [sym__ws] = ACTIONS(721), + [sym_comment] = ACTIONS(721), + [anon_sym_POUND_] = ACTIONS(724), + [anon_sym_POUND] = ACTIONS(65), + [anon_sym_DOT] = ACTIONS(770), + [aux_sym_num_lit_token1] = ACTIONS(69), + [anon_sym_COLON] = ACTIONS(772), + [anon_sym_COLON_COLON] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_nil_lit] = ACTIONS(770), + [aux_sym_sym_lit_token1] = ACTIONS(78), + [anon_sym_CARET] = ACTIONS(732), + [anon_sym_POUND_CARET] = ACTIONS(735), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_RPAREN] = ACTIONS(741), + [anon_sym_POUND0A] = ACTIONS(91), + [anon_sym_POUND0a] = ACTIONS(91), + [anon_sym_POUND_QMARK] = ACTIONS(93), + [anon_sym_POUND_QMARK_AT] = ACTIONS(95), + [anon_sym_POUND_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_BQUOTE] = ACTIONS(101), + [anon_sym_COMMA_AT] = ACTIONS(103), + [anon_sym_COMMA] = ACTIONS(105), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(736), - [anon_sym_cl] = ACTIONS(757), - [anon_sym_EQ] = ACTIONS(761), - [aux_sym_accumulation_verb_token1] = ACTIONS(763), - [anon_sym_for] = ACTIONS(763), - [anon_sym_and] = ACTIONS(763), - [anon_sym_as] = ACTIONS(763), - [anon_sym_with] = ACTIONS(763), - [anon_sym_do] = ACTIONS(763), - [anon_sym_while] = ACTIONS(763), - [anon_sym_until] = ACTIONS(763), - [anon_sym_repeat] = ACTIONS(763), - [anon_sym_when] = ACTIONS(763), - [anon_sym_if] = ACTIONS(763), - [anon_sym_unless] = ACTIONS(763), - [anon_sym_always] = ACTIONS(763), - [anon_sym_thereis] = ACTIONS(763), - [anon_sym_never] = ACTIONS(763), - [anon_sym_else] = ACTIONS(763), - [anon_sym_finally] = ACTIONS(763), - [anon_sym_return] = ACTIONS(763), - [anon_sym_initially] = ACTIONS(763), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(766), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(770), + [anon_sym_cl] = ACTIONS(775), + [anon_sym_EQ] = ACTIONS(778), + [aux_sym_accumulation_verb_token1] = ACTIONS(748), + [anon_sym_for] = ACTIONS(748), + [anon_sym_and] = ACTIONS(748), + [anon_sym_as] = ACTIONS(748), + [anon_sym_with] = ACTIONS(748), + [anon_sym_do] = ACTIONS(748), + [anon_sym_while] = ACTIONS(748), + [anon_sym_until] = ACTIONS(748), + [anon_sym_repeat] = ACTIONS(748), + [anon_sym_when] = ACTIONS(748), + [anon_sym_if] = ACTIONS(748), + [anon_sym_unless] = ACTIONS(748), + [anon_sym_always] = ACTIONS(748), + [anon_sym_thereis] = ACTIONS(748), + [anon_sym_never] = ACTIONS(748), + [anon_sym_else] = ACTIONS(748), + [anon_sym_finally] = ACTIONS(748), + [anon_sym_return] = ACTIONS(748), + [anon_sym_initially] = ACTIONS(748), + [anon_sym_POUNDP] = ACTIONS(114), + [anon_sym_POUNDp] = ACTIONS(114), + [sym_self_referential_reader_macro] = ACTIONS(780), + [anon_sym_POUND_PLUS] = ACTIONS(118), + [anon_sym_POUND_DASH] = ACTIONS(118), + [anon_sym_POUNDC] = ACTIONS(120), + [anon_sym_POUNDc] = ACTIONS(120), }, [24] = { - [sym__gap] = STATE(9), - [sym_dis_expr] = STATE(9), - [sym__form] = STATE(8), - [sym_num_lit] = STATE(8), - [sym_kwd_lit] = STATE(8), - [sym_str_lit] = STATE(8), - [sym_char_lit] = STATE(8), - [sym_sym_lit] = STATE(1073), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(8), - [sym__bare_list_lit] = STATE(1070), - [sym_vec_lit] = STATE(8), - [sym_set_lit] = STATE(8), - [sym__bare_set_lit] = STATE(1069), - [sym_read_cond_lit] = STATE(8), - [sym_splicing_read_cond_lit] = STATE(8), - [sym_var_quoting_lit] = STATE(8), - [sym_quoting_lit] = STATE(8), - [sym_syn_quoting_lit] = STATE(8), - [sym_unquote_splicing_lit] = STATE(8), - [sym_unquoting_lit] = STATE(8), - [sym_defun] = STATE(1070), - [sym_loop_macro] = STATE(1070), - [sym_path_lit] = STATE(8), - [sym_package_lit] = STATE(8), - [sym_include_reader_macro] = STATE(8), - [sym_complex_num_lit] = STATE(8), - [aux_sym_dis_expr_repeat1] = STATE(9), - [aux_sym_list_lit_repeat1] = STATE(2804), - [sym__ws] = ACTIONS(768), - [sym_comment] = ACTIONS(768), - [anon_sym_POUND_] = ACTIONS(771), - [anon_sym_POUND] = ACTIONS(137), - [anon_sym_DOT] = ACTIONS(774), - [aux_sym_num_lit_token1] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(776), - [anon_sym_COLON_COLON] = ACTIONS(146), - [anon_sym_DQUOTE] = ACTIONS(148), - [sym_nil_lit] = ACTIONS(774), - [aux_sym_sym_lit_token1] = ACTIONS(150), - [anon_sym_CARET] = ACTIONS(779), - [anon_sym_POUND_CARET] = ACTIONS(782), - [anon_sym_LPAREN] = ACTIONS(785), - [anon_sym_RPAREN] = ACTIONS(788), - [anon_sym_POUND0A] = ACTIONS(163), - [anon_sym_POUND0a] = ACTIONS(163), - [anon_sym_POUND_QMARK] = ACTIONS(165), - [anon_sym_POUND_QMARK_AT] = ACTIONS(167), - [anon_sym_POUND_SQUOTE] = ACTIONS(169), - [anon_sym_SQUOTE] = ACTIONS(171), - [anon_sym_BQUOTE] = ACTIONS(173), - [anon_sym_COMMA_AT] = ACTIONS(175), - [anon_sym_COMMA] = ACTIONS(177), + [sym__gap] = STATE(2), + [sym_dis_expr] = STATE(2), + [sym__form] = STATE(33), + [sym_num_lit] = STATE(33), + [sym_kwd_lit] = STATE(33), + [sym_str_lit] = STATE(33), + [sym_char_lit] = STATE(33), + [sym_sym_lit] = STATE(1101), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(33), + [sym__bare_list_lit] = STATE(1109), + [sym_vec_lit] = STATE(33), + [sym_set_lit] = STATE(33), + [sym__bare_set_lit] = STATE(1117), + [sym_read_cond_lit] = STATE(33), + [sym_splicing_read_cond_lit] = STATE(33), + [sym_var_quoting_lit] = STATE(33), + [sym_quoting_lit] = STATE(33), + [sym_syn_quoting_lit] = STATE(33), + [sym_unquote_splicing_lit] = STATE(33), + [sym_unquoting_lit] = STATE(33), + [sym_defun] = STATE(1109), + [sym_loop_macro] = STATE(1109), + [sym_path_lit] = STATE(33), + [sym_package_lit] = STATE(33), + [sym_include_reader_macro] = STATE(33), + [sym_complex_num_lit] = STATE(33), + [aux_sym_dis_expr_repeat1] = STATE(2), + [aux_sym_list_lit_repeat1] = STATE(2812), + [sym__ws] = ACTIONS(782), + [sym_comment] = ACTIONS(782), + [anon_sym_POUND_] = ACTIONS(785), + [anon_sym_POUND] = ACTIONS(65), + [anon_sym_DOT] = ACTIONS(788), + [aux_sym_num_lit_token1] = ACTIONS(69), + [anon_sym_COLON] = ACTIONS(790), + [anon_sym_COLON_COLON] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_nil_lit] = ACTIONS(788), + [aux_sym_sym_lit_token1] = ACTIONS(78), + [anon_sym_CARET] = ACTIONS(793), + [anon_sym_POUND_CARET] = ACTIONS(796), + [anon_sym_LPAREN] = ACTIONS(799), + [anon_sym_RPAREN] = ACTIONS(802), + [anon_sym_POUND0A] = ACTIONS(91), + [anon_sym_POUND0a] = ACTIONS(91), + [anon_sym_POUND_QMARK] = ACTIONS(93), + [anon_sym_POUND_QMARK_AT] = ACTIONS(95), + [anon_sym_POUND_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_BQUOTE] = ACTIONS(101), + [anon_sym_COMMA_AT] = ACTIONS(103), + [anon_sym_COMMA] = ACTIONS(105), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(774), - [anon_sym_cl] = ACTIONS(790), - [anon_sym_EQ] = ACTIONS(793), - [aux_sym_accumulation_verb_token1] = ACTIONS(795), - [anon_sym_for] = ACTIONS(795), - [anon_sym_and] = ACTIONS(795), - [anon_sym_as] = ACTIONS(795), - [anon_sym_with] = ACTIONS(795), - [anon_sym_do] = ACTIONS(795), - [anon_sym_while] = ACTIONS(795), - [anon_sym_until] = ACTIONS(795), - [anon_sym_repeat] = ACTIONS(795), - [anon_sym_when] = ACTIONS(795), - [anon_sym_if] = ACTIONS(795), - [anon_sym_unless] = ACTIONS(795), - [anon_sym_always] = ACTIONS(795), - [anon_sym_thereis] = ACTIONS(795), - [anon_sym_never] = ACTIONS(795), - [anon_sym_else] = ACTIONS(795), - [anon_sym_finally] = ACTIONS(795), - [anon_sym_return] = ACTIONS(795), - [anon_sym_initially] = ACTIONS(795), - [anon_sym_POUNDP] = ACTIONS(186), - [anon_sym_POUNDp] = ACTIONS(186), - [sym_self_referential_reader_macro] = ACTIONS(797), - [anon_sym_POUND_PLUS] = ACTIONS(190), - [anon_sym_POUND_DASH] = ACTIONS(190), - [anon_sym_POUNDC] = ACTIONS(192), - [anon_sym_POUNDc] = ACTIONS(192), + [sym_fancy_literal] = ACTIONS(788), + [anon_sym_cl] = ACTIONS(804), + [anon_sym_EQ] = ACTIONS(807), + [aux_sym_accumulation_verb_token1] = ACTIONS(809), + [anon_sym_for] = ACTIONS(809), + [anon_sym_and] = ACTIONS(809), + [anon_sym_as] = ACTIONS(809), + [anon_sym_with] = ACTIONS(809), + [anon_sym_do] = ACTIONS(809), + [anon_sym_while] = ACTIONS(809), + [anon_sym_until] = ACTIONS(809), + [anon_sym_repeat] = ACTIONS(809), + [anon_sym_when] = ACTIONS(809), + [anon_sym_if] = ACTIONS(809), + [anon_sym_unless] = ACTIONS(809), + [anon_sym_always] = ACTIONS(809), + [anon_sym_thereis] = ACTIONS(809), + [anon_sym_never] = ACTIONS(809), + [anon_sym_else] = ACTIONS(809), + [anon_sym_finally] = ACTIONS(809), + [anon_sym_return] = ACTIONS(809), + [anon_sym_initially] = ACTIONS(809), + [anon_sym_POUNDP] = ACTIONS(114), + [anon_sym_POUNDp] = ACTIONS(114), + [sym_self_referential_reader_macro] = ACTIONS(811), + [anon_sym_POUND_PLUS] = ACTIONS(118), + [anon_sym_POUND_DASH] = ACTIONS(118), + [anon_sym_POUNDC] = ACTIONS(120), + [anon_sym_POUNDc] = ACTIONS(120), }, [25] = { [sym__gap] = STATE(990), [sym_dis_expr] = STATE(990), - [sym__form] = STATE(31), - [sym_num_lit] = STATE(31), - [sym_kwd_lit] = STATE(31), - [sym_str_lit] = STATE(31), - [sym_char_lit] = STATE(31), - [sym_sym_lit] = STATE(1073), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(31), - [sym__bare_list_lit] = STATE(1070), - [sym_vec_lit] = STATE(31), - [sym_set_lit] = STATE(31), - [sym__bare_set_lit] = STATE(1069), - [sym_read_cond_lit] = STATE(31), - [sym_splicing_read_cond_lit] = STATE(31), - [sym_var_quoting_lit] = STATE(31), - [sym_quoting_lit] = STATE(31), - [sym_syn_quoting_lit] = STATE(31), - [sym_unquote_splicing_lit] = STATE(31), - [sym_unquoting_lit] = STATE(31), - [sym_defun] = STATE(1070), - [sym_loop_macro] = STATE(1070), - [sym_path_lit] = STATE(31), - [sym_package_lit] = STATE(31), - [sym_include_reader_macro] = STATE(31), - [sym_complex_num_lit] = STATE(31), + [sym__form] = STATE(2506), + [sym_num_lit] = STATE(2506), + [sym_kwd_lit] = STATE(2506), + [sym_str_lit] = STATE(2506), + [sym_char_lit] = STATE(2506), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2506), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2506), + [sym_set_lit] = STATE(2506), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2506), + [sym_splicing_read_cond_lit] = STATE(2506), + [sym_var_quoting_lit] = STATE(2506), + [sym_quoting_lit] = STATE(2506), + [sym_syn_quoting_lit] = STATE(2506), + [sym_unquote_splicing_lit] = STATE(2506), + [sym_unquoting_lit] = STATE(2506), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2506), + [sym_package_lit] = STATE(2506), + [sym_include_reader_macro] = STATE(2506), + [sym_complex_num_lit] = STATE(2506), [aux_sym_dis_expr_repeat1] = STATE(990), - [aux_sym_list_lit_repeat1] = STATE(2804), - [sym__ws] = ACTIONS(799), - [sym_comment] = ACTIONS(799), - [anon_sym_POUND_] = ACTIONS(802), - [anon_sym_POUND] = ACTIONS(137), - [anon_sym_DOT] = ACTIONS(805), - [aux_sym_num_lit_token1] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(807), - [anon_sym_COLON_COLON] = ACTIONS(146), - [anon_sym_DQUOTE] = ACTIONS(148), - [sym_nil_lit] = ACTIONS(805), - [aux_sym_sym_lit_token1] = ACTIONS(150), - [anon_sym_CARET] = ACTIONS(810), - [anon_sym_POUND_CARET] = ACTIONS(813), - [anon_sym_LPAREN] = ACTIONS(816), - [anon_sym_RPAREN] = ACTIONS(819), - [anon_sym_POUND0A] = ACTIONS(163), - [anon_sym_POUND0a] = ACTIONS(163), - [anon_sym_POUND_QMARK] = ACTIONS(165), - [anon_sym_POUND_QMARK_AT] = ACTIONS(167), - [anon_sym_POUND_SQUOTE] = ACTIONS(169), - [anon_sym_SQUOTE] = ACTIONS(171), - [anon_sym_BQUOTE] = ACTIONS(173), - [anon_sym_COMMA_AT] = ACTIONS(175), - [anon_sym_COMMA] = ACTIONS(177), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(813), + [sym_comment] = ACTIONS(813), + [anon_sym_POUND_] = ACTIONS(817), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(821), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(823), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(821), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(827), + [anon_sym_POUND_CARET] = ACTIONS(831), + [anon_sym_LPAREN] = ACTIONS(835), + [anon_sym_RPAREN] = ACTIONS(839), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(805), - [anon_sym_cl] = ACTIONS(821), - [anon_sym_EQ] = ACTIONS(824), - [aux_sym_accumulation_verb_token1] = ACTIONS(826), - [anon_sym_for] = ACTIONS(826), - [anon_sym_and] = ACTIONS(826), - [anon_sym_as] = ACTIONS(826), - [anon_sym_with] = ACTIONS(826), - [anon_sym_do] = ACTIONS(826), - [anon_sym_while] = ACTIONS(826), - [anon_sym_until] = ACTIONS(826), - [anon_sym_repeat] = ACTIONS(826), - [anon_sym_when] = ACTIONS(826), - [anon_sym_if] = ACTIONS(826), - [anon_sym_unless] = ACTIONS(826), - [anon_sym_always] = ACTIONS(826), - [anon_sym_thereis] = ACTIONS(826), - [anon_sym_never] = ACTIONS(826), - [anon_sym_else] = ACTIONS(826), - [anon_sym_finally] = ACTIONS(826), - [anon_sym_return] = ACTIONS(826), - [anon_sym_initially] = ACTIONS(826), - [anon_sym_POUNDP] = ACTIONS(186), - [anon_sym_POUNDp] = ACTIONS(186), - [sym_self_referential_reader_macro] = ACTIONS(828), - [anon_sym_POUND_PLUS] = ACTIONS(190), - [anon_sym_POUND_DASH] = ACTIONS(190), - [anon_sym_POUNDC] = ACTIONS(192), - [anon_sym_POUNDc] = ACTIONS(192), + [sym_fancy_literal] = ACTIONS(821), + [anon_sym_cl] = ACTIONS(842), + [anon_sym_EQ] = ACTIONS(846), + [aux_sym_accumulation_verb_token1] = ACTIONS(848), + [anon_sym_for] = ACTIONS(848), + [anon_sym_and] = ACTIONS(848), + [anon_sym_as] = ACTIONS(848), + [anon_sym_with] = ACTIONS(848), + [anon_sym_do] = ACTIONS(848), + [anon_sym_while] = ACTIONS(848), + [anon_sym_until] = ACTIONS(848), + [anon_sym_repeat] = ACTIONS(848), + [anon_sym_when] = ACTIONS(848), + [anon_sym_if] = ACTIONS(848), + [anon_sym_unless] = ACTIONS(848), + [anon_sym_always] = ACTIONS(848), + [anon_sym_thereis] = ACTIONS(848), + [anon_sym_never] = ACTIONS(848), + [anon_sym_else] = ACTIONS(848), + [anon_sym_finally] = ACTIONS(848), + [anon_sym_return] = ACTIONS(848), + [anon_sym_initially] = ACTIONS(848), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(851), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [26] = { - [sym__gap] = STATE(41), - [sym_dis_expr] = STATE(41), - [sym__form] = STATE(2430), - [sym_num_lit] = STATE(2430), - [sym_kwd_lit] = STATE(2430), - [sym_str_lit] = STATE(2430), - [sym_char_lit] = STATE(2430), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2430), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2430), - [sym_set_lit] = STATE(2430), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2430), - [sym_splicing_read_cond_lit] = STATE(2430), - [sym_var_quoting_lit] = STATE(2430), - [sym_quoting_lit] = STATE(2430), - [sym_syn_quoting_lit] = STATE(2430), - [sym_unquote_splicing_lit] = STATE(2430), - [sym_unquoting_lit] = STATE(2430), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2430), - [sym_package_lit] = STATE(2430), - [sym_include_reader_macro] = STATE(2430), - [sym_complex_num_lit] = STATE(2430), - [aux_sym_dis_expr_repeat1] = STATE(41), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(830), - [sym_comment] = ACTIONS(830), - [anon_sym_POUND_] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(838), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(840), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(838), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(844), - [anon_sym_POUND_CARET] = ACTIONS(848), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_RPAREN] = ACTIONS(856), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(990), + [sym_dis_expr] = STATE(990), + [sym__form] = STATE(2544), + [sym_num_lit] = STATE(2544), + [sym_kwd_lit] = STATE(2544), + [sym_str_lit] = STATE(2544), + [sym_char_lit] = STATE(2544), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2544), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2544), + [sym_set_lit] = STATE(2544), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2544), + [sym_splicing_read_cond_lit] = STATE(2544), + [sym_var_quoting_lit] = STATE(2544), + [sym_quoting_lit] = STATE(2544), + [sym_syn_quoting_lit] = STATE(2544), + [sym_unquote_splicing_lit] = STATE(2544), + [sym_unquoting_lit] = STATE(2544), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2544), + [sym_package_lit] = STATE(2544), + [sym_include_reader_macro] = STATE(2544), + [sym_complex_num_lit] = STATE(2544), + [aux_sym_dis_expr_repeat1] = STATE(990), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(853), + [sym_comment] = ACTIONS(853), + [anon_sym_POUND_] = ACTIONS(857), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(861), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(863), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(861), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(867), + [anon_sym_POUND_CARET] = ACTIONS(871), + [anon_sym_LPAREN] = ACTIONS(875), + [anon_sym_RPAREN] = ACTIONS(879), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(838), - [anon_sym_cl] = ACTIONS(859), - [anon_sym_EQ] = ACTIONS(863), - [aux_sym_accumulation_verb_token1] = ACTIONS(865), - [anon_sym_for] = ACTIONS(865), - [anon_sym_and] = ACTIONS(865), - [anon_sym_as] = ACTIONS(865), - [anon_sym_with] = ACTIONS(865), - [anon_sym_do] = ACTIONS(865), - [anon_sym_while] = ACTIONS(865), - [anon_sym_until] = ACTIONS(865), - [anon_sym_repeat] = ACTIONS(865), - [anon_sym_when] = ACTIONS(865), - [anon_sym_if] = ACTIONS(865), - [anon_sym_unless] = ACTIONS(865), - [anon_sym_always] = ACTIONS(865), - [anon_sym_thereis] = ACTIONS(865), - [anon_sym_never] = ACTIONS(865), - [anon_sym_else] = ACTIONS(865), - [anon_sym_finally] = ACTIONS(865), - [anon_sym_return] = ACTIONS(865), - [anon_sym_initially] = ACTIONS(865), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(868), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(861), + [anon_sym_cl] = ACTIONS(882), + [anon_sym_EQ] = ACTIONS(886), + [aux_sym_accumulation_verb_token1] = ACTIONS(888), + [anon_sym_for] = ACTIONS(888), + [anon_sym_and] = ACTIONS(888), + [anon_sym_as] = ACTIONS(888), + [anon_sym_with] = ACTIONS(888), + [anon_sym_do] = ACTIONS(888), + [anon_sym_while] = ACTIONS(888), + [anon_sym_until] = ACTIONS(888), + [anon_sym_repeat] = ACTIONS(888), + [anon_sym_when] = ACTIONS(888), + [anon_sym_if] = ACTIONS(888), + [anon_sym_unless] = ACTIONS(888), + [anon_sym_always] = ACTIONS(888), + [anon_sym_thereis] = ACTIONS(888), + [anon_sym_never] = ACTIONS(888), + [anon_sym_else] = ACTIONS(888), + [anon_sym_finally] = ACTIONS(888), + [anon_sym_return] = ACTIONS(888), + [anon_sym_initially] = ACTIONS(888), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(891), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [27] = { - [sym__gap] = STATE(908), - [sym_dis_expr] = STATE(908), - [sym__form] = STATE(994), - [sym_num_lit] = STATE(994), - [sym_kwd_lit] = STATE(994), - [sym_str_lit] = STATE(994), - [sym_char_lit] = STATE(994), - [sym_sym_lit] = STATE(1186), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(994), - [sym__bare_list_lit] = STATE(1187), - [sym_vec_lit] = STATE(994), - [sym_set_lit] = STATE(994), - [sym__bare_set_lit] = STATE(1191), - [sym_read_cond_lit] = STATE(994), - [sym_splicing_read_cond_lit] = STATE(994), - [sym_var_quoting_lit] = STATE(994), - [sym_quoting_lit] = STATE(994), - [sym_syn_quoting_lit] = STATE(994), - [sym_unquote_splicing_lit] = STATE(994), - [sym_unquoting_lit] = STATE(994), - [sym_defun] = STATE(1187), - [sym_loop_macro] = STATE(1187), - [sym_path_lit] = STATE(994), - [sym_package_lit] = STATE(994), - [sym_include_reader_macro] = STATE(994), - [sym_complex_num_lit] = STATE(994), - [aux_sym_dis_expr_repeat1] = STATE(908), - [aux_sym_list_lit_repeat1] = STATE(2827), - [aux_sym_do_clause_repeat1] = STATE(27), - [sym__ws] = ACTIONS(870), - [sym_comment] = ACTIONS(870), - [anon_sym_POUND_] = ACTIONS(873), - [anon_sym_POUND] = ACTIONS(876), - [anon_sym_DOT] = ACTIONS(879), - [aux_sym_num_lit_token1] = ACTIONS(882), - [anon_sym_COLON] = ACTIONS(885), - [anon_sym_COLON_COLON] = ACTIONS(888), - [anon_sym_DQUOTE] = ACTIONS(891), - [sym_nil_lit] = ACTIONS(879), - [aux_sym_sym_lit_token1] = ACTIONS(894), - [anon_sym_CARET] = ACTIONS(897), - [anon_sym_POUND_CARET] = ACTIONS(900), - [anon_sym_LPAREN] = ACTIONS(903), - [anon_sym_RPAREN] = ACTIONS(906), - [anon_sym_POUND0A] = ACTIONS(908), - [anon_sym_POUND0a] = ACTIONS(908), - [anon_sym_POUND_QMARK] = ACTIONS(911), - [anon_sym_POUND_QMARK_AT] = ACTIONS(914), - [anon_sym_POUND_SQUOTE] = ACTIONS(917), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_BQUOTE] = ACTIONS(923), - [anon_sym_COMMA_AT] = ACTIONS(926), - [anon_sym_COMMA] = ACTIONS(929), + [sym__gap] = STATE(35), + [sym_dis_expr] = STATE(35), + [sym__form] = STATE(2046), + [sym_num_lit] = STATE(2046), + [sym_kwd_lit] = STATE(2046), + [sym_str_lit] = STATE(2046), + [sym_char_lit] = STATE(2046), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2046), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2046), + [sym_set_lit] = STATE(2046), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2046), + [sym_splicing_read_cond_lit] = STATE(2046), + [sym_var_quoting_lit] = STATE(2046), + [sym_quoting_lit] = STATE(2046), + [sym_syn_quoting_lit] = STATE(2046), + [sym_unquote_splicing_lit] = STATE(2046), + [sym_unquoting_lit] = STATE(2046), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2046), + [sym_package_lit] = STATE(2046), + [sym_include_reader_macro] = STATE(2046), + [sym_complex_num_lit] = STATE(2046), + [aux_sym_dis_expr_repeat1] = STATE(35), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(893), + [sym_comment] = ACTIONS(893), + [anon_sym_POUND_] = ACTIONS(645), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(897), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(899), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(897), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(655), + [anon_sym_POUND_CARET] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(663), + [anon_sym_RPAREN] = ACTIONS(667), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(879), - [anon_sym_cl] = ACTIONS(932), - [aux_sym_accumulation_verb_token1] = ACTIONS(935), - [anon_sym_for] = ACTIONS(935), - [anon_sym_and] = ACTIONS(935), - [anon_sym_as] = ACTIONS(935), - [anon_sym_with] = ACTIONS(935), - [anon_sym_do] = ACTIONS(935), - [anon_sym_while] = ACTIONS(935), - [anon_sym_until] = ACTIONS(935), - [anon_sym_repeat] = ACTIONS(935), - [anon_sym_when] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_unless] = ACTIONS(935), - [anon_sym_always] = ACTIONS(935), - [anon_sym_thereis] = ACTIONS(935), - [anon_sym_never] = ACTIONS(935), - [anon_sym_else] = ACTIONS(935), - [anon_sym_finally] = ACTIONS(935), - [anon_sym_return] = ACTIONS(935), - [anon_sym_initially] = ACTIONS(935), - [anon_sym_POUNDP] = ACTIONS(937), - [anon_sym_POUNDp] = ACTIONS(937), - [sym_self_referential_reader_macro] = ACTIONS(940), - [anon_sym_POUND_PLUS] = ACTIONS(943), - [anon_sym_POUND_DASH] = ACTIONS(943), - [anon_sym_POUNDC] = ACTIONS(946), - [anon_sym_POUNDc] = ACTIONS(946), + [sym_fancy_literal] = ACTIONS(897), + [anon_sym_cl] = ACTIONS(903), + [anon_sym_EQ] = ACTIONS(907), + [aux_sym_accumulation_verb_token1] = ACTIONS(676), + [anon_sym_for] = ACTIONS(676), + [anon_sym_and] = ACTIONS(676), + [anon_sym_as] = ACTIONS(676), + [anon_sym_with] = ACTIONS(676), + [anon_sym_do] = ACTIONS(676), + [anon_sym_while] = ACTIONS(676), + [anon_sym_until] = ACTIONS(676), + [anon_sym_repeat] = ACTIONS(676), + [anon_sym_when] = ACTIONS(676), + [anon_sym_if] = ACTIONS(676), + [anon_sym_unless] = ACTIONS(676), + [anon_sym_always] = ACTIONS(676), + [anon_sym_thereis] = ACTIONS(676), + [anon_sym_never] = ACTIONS(676), + [anon_sym_else] = ACTIONS(676), + [anon_sym_finally] = ACTIONS(676), + [anon_sym_return] = ACTIONS(676), + [anon_sym_initially] = ACTIONS(676), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(909), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [28] = { - [sym__gap] = STATE(36), - [sym_dis_expr] = STATE(36), - [sym__form] = STATE(2256), - [sym_num_lit] = STATE(2256), - [sym_kwd_lit] = STATE(2256), - [sym_str_lit] = STATE(2256), - [sym_char_lit] = STATE(2256), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2256), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2256), - [sym_set_lit] = STATE(2256), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2256), - [sym_splicing_read_cond_lit] = STATE(2256), - [sym_var_quoting_lit] = STATE(2256), - [sym_quoting_lit] = STATE(2256), - [sym_syn_quoting_lit] = STATE(2256), - [sym_unquote_splicing_lit] = STATE(2256), - [sym_unquoting_lit] = STATE(2256), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2256), - [sym_package_lit] = STATE(2256), - [sym_include_reader_macro] = STATE(2256), - [sym_complex_num_lit] = STATE(2256), - [aux_sym_dis_expr_repeat1] = STATE(36), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(949), - [sym_comment] = ACTIONS(949), - [anon_sym_POUND_] = ACTIONS(732), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(953), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(955), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(953), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(742), - [anon_sym_POUND_CARET] = ACTIONS(746), - [anon_sym_LPAREN] = ACTIONS(750), - [anon_sym_RPAREN] = ACTIONS(754), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(990), + [sym_dis_expr] = STATE(990), + [sym__form] = STATE(2142), + [sym_num_lit] = STATE(2142), + [sym_kwd_lit] = STATE(2142), + [sym_str_lit] = STATE(2142), + [sym_char_lit] = STATE(2142), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2142), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2142), + [sym_set_lit] = STATE(2142), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2142), + [sym_splicing_read_cond_lit] = STATE(2142), + [sym_var_quoting_lit] = STATE(2142), + [sym_quoting_lit] = STATE(2142), + [sym_syn_quoting_lit] = STATE(2142), + [sym_unquote_splicing_lit] = STATE(2142), + [sym_unquoting_lit] = STATE(2142), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2142), + [sym_package_lit] = STATE(2142), + [sym_include_reader_macro] = STATE(2142), + [sym_complex_num_lit] = STATE(2142), + [aux_sym_dis_expr_repeat1] = STATE(990), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(911), + [sym_comment] = ACTIONS(911), + [anon_sym_POUND_] = ACTIONS(915), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(919), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(921), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(919), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(925), + [anon_sym_POUND_CARET] = ACTIONS(929), + [anon_sym_LPAREN] = ACTIONS(933), + [anon_sym_RPAREN] = ACTIONS(937), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(953), - [anon_sym_cl] = ACTIONS(959), - [anon_sym_EQ] = ACTIONS(963), - [aux_sym_accumulation_verb_token1] = ACTIONS(763), - [anon_sym_for] = ACTIONS(763), - [anon_sym_and] = ACTIONS(763), - [anon_sym_as] = ACTIONS(763), - [anon_sym_with] = ACTIONS(763), - [anon_sym_do] = ACTIONS(763), - [anon_sym_while] = ACTIONS(763), - [anon_sym_until] = ACTIONS(763), - [anon_sym_repeat] = ACTIONS(763), - [anon_sym_when] = ACTIONS(763), - [anon_sym_if] = ACTIONS(763), - [anon_sym_unless] = ACTIONS(763), - [anon_sym_always] = ACTIONS(763), - [anon_sym_thereis] = ACTIONS(763), - [anon_sym_never] = ACTIONS(763), - [anon_sym_else] = ACTIONS(763), - [anon_sym_finally] = ACTIONS(763), - [anon_sym_return] = ACTIONS(763), - [anon_sym_initially] = ACTIONS(763), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(965), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(919), + [anon_sym_cl] = ACTIONS(940), + [anon_sym_EQ] = ACTIONS(944), + [aux_sym_accumulation_verb_token1] = ACTIONS(946), + [anon_sym_for] = ACTIONS(946), + [anon_sym_and] = ACTIONS(946), + [anon_sym_as] = ACTIONS(946), + [anon_sym_with] = ACTIONS(946), + [anon_sym_do] = ACTIONS(946), + [anon_sym_while] = ACTIONS(946), + [anon_sym_until] = ACTIONS(946), + [anon_sym_repeat] = ACTIONS(946), + [anon_sym_when] = ACTIONS(946), + [anon_sym_if] = ACTIONS(946), + [anon_sym_unless] = ACTIONS(946), + [anon_sym_always] = ACTIONS(946), + [anon_sym_thereis] = ACTIONS(946), + [anon_sym_never] = ACTIONS(946), + [anon_sym_else] = ACTIONS(946), + [anon_sym_finally] = ACTIONS(946), + [anon_sym_return] = ACTIONS(946), + [anon_sym_initially] = ACTIONS(946), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(949), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [29] = { - [sym__gap] = STATE(39), - [sym_dis_expr] = STATE(39), - [sym__form] = STATE(2169), - [sym_num_lit] = STATE(2169), - [sym_kwd_lit] = STATE(2169), - [sym_str_lit] = STATE(2169), - [sym_char_lit] = STATE(2169), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2169), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2169), - [sym_set_lit] = STATE(2169), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2169), - [sym_splicing_read_cond_lit] = STATE(2169), - [sym_var_quoting_lit] = STATE(2169), - [sym_quoting_lit] = STATE(2169), - [sym_syn_quoting_lit] = STATE(2169), - [sym_unquote_splicing_lit] = STATE(2169), - [sym_unquoting_lit] = STATE(2169), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2169), - [sym_package_lit] = STATE(2169), - [sym_include_reader_macro] = STATE(2169), - [sym_complex_num_lit] = STATE(2169), - [aux_sym_dis_expr_repeat1] = STATE(39), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(967), - [sym_comment] = ACTIONS(967), - [anon_sym_POUND_] = ACTIONS(971), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(975), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(975), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(981), - [anon_sym_POUND_CARET] = ACTIONS(985), - [anon_sym_LPAREN] = ACTIONS(989), - [anon_sym_RPAREN] = ACTIONS(993), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(975), - [anon_sym_cl] = ACTIONS(996), - [anon_sym_EQ] = ACTIONS(1000), - [aux_sym_accumulation_verb_token1] = ACTIONS(1002), - [anon_sym_for] = ACTIONS(1002), - [anon_sym_and] = ACTIONS(1002), - [anon_sym_as] = ACTIONS(1002), - [anon_sym_with] = ACTIONS(1002), - [anon_sym_do] = ACTIONS(1002), - [anon_sym_while] = ACTIONS(1002), - [anon_sym_until] = ACTIONS(1002), - [anon_sym_repeat] = ACTIONS(1002), - [anon_sym_when] = ACTIONS(1002), - [anon_sym_if] = ACTIONS(1002), - [anon_sym_unless] = ACTIONS(1002), - [anon_sym_always] = ACTIONS(1002), - [anon_sym_thereis] = ACTIONS(1002), - [anon_sym_never] = ACTIONS(1002), - [anon_sym_else] = ACTIONS(1002), - [anon_sym_finally] = ACTIONS(1002), - [anon_sym_return] = ACTIONS(1002), - [anon_sym_initially] = ACTIONS(1002), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(1005), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), - }, - [30] = { [sym__gap] = STATE(990), [sym_dis_expr] = STATE(990), - [sym__form] = STATE(40), - [sym_num_lit] = STATE(40), - [sym_kwd_lit] = STATE(40), - [sym_str_lit] = STATE(40), - [sym_char_lit] = STATE(40), - [sym_sym_lit] = STATE(1073), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(40), - [sym__bare_list_lit] = STATE(1070), - [sym_vec_lit] = STATE(40), - [sym_set_lit] = STATE(40), - [sym__bare_set_lit] = STATE(1069), - [sym_read_cond_lit] = STATE(40), - [sym_splicing_read_cond_lit] = STATE(40), - [sym_var_quoting_lit] = STATE(40), - [sym_quoting_lit] = STATE(40), - [sym_syn_quoting_lit] = STATE(40), - [sym_unquote_splicing_lit] = STATE(40), - [sym_unquoting_lit] = STATE(40), - [sym_defun] = STATE(1070), - [sym_loop_macro] = STATE(1070), - [sym_path_lit] = STATE(40), - [sym_package_lit] = STATE(40), - [sym_include_reader_macro] = STATE(40), - [sym_complex_num_lit] = STATE(40), + [sym__form] = STATE(2152), + [sym_num_lit] = STATE(2152), + [sym_kwd_lit] = STATE(2152), + [sym_str_lit] = STATE(2152), + [sym_char_lit] = STATE(2152), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2152), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2152), + [sym_set_lit] = STATE(2152), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2152), + [sym_splicing_read_cond_lit] = STATE(2152), + [sym_var_quoting_lit] = STATE(2152), + [sym_quoting_lit] = STATE(2152), + [sym_syn_quoting_lit] = STATE(2152), + [sym_unquote_splicing_lit] = STATE(2152), + [sym_unquoting_lit] = STATE(2152), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2152), + [sym_package_lit] = STATE(2152), + [sym_include_reader_macro] = STATE(2152), + [sym_complex_num_lit] = STATE(2152), [aux_sym_dis_expr_repeat1] = STATE(990), - [aux_sym_list_lit_repeat1] = STATE(2804), - [sym__ws] = ACTIONS(1007), - [sym_comment] = ACTIONS(1007), - [anon_sym_POUND_] = ACTIONS(1010), - [anon_sym_POUND] = ACTIONS(137), - [anon_sym_DOT] = ACTIONS(1013), - [aux_sym_num_lit_token1] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1015), - [anon_sym_COLON_COLON] = ACTIONS(146), - [anon_sym_DQUOTE] = ACTIONS(148), - [sym_nil_lit] = ACTIONS(1013), - [aux_sym_sym_lit_token1] = ACTIONS(150), - [anon_sym_CARET] = ACTIONS(1018), - [anon_sym_POUND_CARET] = ACTIONS(1021), - [anon_sym_LPAREN] = ACTIONS(1024), - [anon_sym_RPAREN] = ACTIONS(1027), - [anon_sym_POUND0A] = ACTIONS(163), - [anon_sym_POUND0a] = ACTIONS(163), - [anon_sym_POUND_QMARK] = ACTIONS(165), - [anon_sym_POUND_QMARK_AT] = ACTIONS(167), - [anon_sym_POUND_SQUOTE] = ACTIONS(169), - [anon_sym_SQUOTE] = ACTIONS(171), - [anon_sym_BQUOTE] = ACTIONS(173), - [anon_sym_COMMA_AT] = ACTIONS(175), - [anon_sym_COMMA] = ACTIONS(177), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(951), + [sym_comment] = ACTIONS(951), + [anon_sym_POUND_] = ACTIONS(955), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(959), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(959), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(965), + [anon_sym_POUND_CARET] = ACTIONS(969), + [anon_sym_LPAREN] = ACTIONS(973), + [anon_sym_RPAREN] = ACTIONS(977), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(959), + [anon_sym_cl] = ACTIONS(980), + [anon_sym_EQ] = ACTIONS(984), + [aux_sym_accumulation_verb_token1] = ACTIONS(986), + [anon_sym_for] = ACTIONS(986), + [anon_sym_and] = ACTIONS(986), + [anon_sym_as] = ACTIONS(986), + [anon_sym_with] = ACTIONS(986), + [anon_sym_do] = ACTIONS(986), + [anon_sym_while] = ACTIONS(986), + [anon_sym_until] = ACTIONS(986), + [anon_sym_repeat] = ACTIONS(986), + [anon_sym_when] = ACTIONS(986), + [anon_sym_if] = ACTIONS(986), + [anon_sym_unless] = ACTIONS(986), + [anon_sym_always] = ACTIONS(986), + [anon_sym_thereis] = ACTIONS(986), + [anon_sym_never] = ACTIONS(986), + [anon_sym_else] = ACTIONS(986), + [anon_sym_finally] = ACTIONS(986), + [anon_sym_return] = ACTIONS(986), + [anon_sym_initially] = ACTIONS(986), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(989), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), + }, + [30] = { + [sym__gap] = STATE(36), + [sym_dis_expr] = STATE(36), + [sym__form] = STATE(2155), + [sym_num_lit] = STATE(2155), + [sym_kwd_lit] = STATE(2155), + [sym_str_lit] = STATE(2155), + [sym_char_lit] = STATE(2155), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2155), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2155), + [sym_set_lit] = STATE(2155), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2155), + [sym_splicing_read_cond_lit] = STATE(2155), + [sym_var_quoting_lit] = STATE(2155), + [sym_quoting_lit] = STATE(2155), + [sym_syn_quoting_lit] = STATE(2155), + [sym_unquote_splicing_lit] = STATE(2155), + [sym_unquoting_lit] = STATE(2155), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2155), + [sym_package_lit] = STATE(2155), + [sym_include_reader_macro] = STATE(2155), + [sym_complex_num_lit] = STATE(2155), + [aux_sym_dis_expr_repeat1] = STATE(36), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(991), + [sym_comment] = ACTIONS(991), + [anon_sym_POUND_] = ACTIONS(995), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(999), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(1001), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(999), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(1005), + [anon_sym_POUND_CARET] = ACTIONS(1009), + [anon_sym_LPAREN] = ACTIONS(1013), + [anon_sym_RPAREN] = ACTIONS(1017), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(1013), - [anon_sym_cl] = ACTIONS(1029), - [anon_sym_EQ] = ACTIONS(1032), - [aux_sym_accumulation_verb_token1] = ACTIONS(1034), - [anon_sym_for] = ACTIONS(1034), - [anon_sym_and] = ACTIONS(1034), - [anon_sym_as] = ACTIONS(1034), - [anon_sym_with] = ACTIONS(1034), - [anon_sym_do] = ACTIONS(1034), - [anon_sym_while] = ACTIONS(1034), - [anon_sym_until] = ACTIONS(1034), - [anon_sym_repeat] = ACTIONS(1034), - [anon_sym_when] = ACTIONS(1034), - [anon_sym_if] = ACTIONS(1034), - [anon_sym_unless] = ACTIONS(1034), - [anon_sym_always] = ACTIONS(1034), - [anon_sym_thereis] = ACTIONS(1034), - [anon_sym_never] = ACTIONS(1034), - [anon_sym_else] = ACTIONS(1034), - [anon_sym_finally] = ACTIONS(1034), - [anon_sym_return] = ACTIONS(1034), - [anon_sym_initially] = ACTIONS(1034), - [anon_sym_POUNDP] = ACTIONS(186), - [anon_sym_POUNDp] = ACTIONS(186), - [sym_self_referential_reader_macro] = ACTIONS(1036), - [anon_sym_POUND_PLUS] = ACTIONS(190), - [anon_sym_POUND_DASH] = ACTIONS(190), - [anon_sym_POUNDC] = ACTIONS(192), - [anon_sym_POUNDc] = ACTIONS(192), + [sym_fancy_literal] = ACTIONS(999), + [anon_sym_cl] = ACTIONS(1020), + [anon_sym_EQ] = ACTIONS(1024), + [aux_sym_accumulation_verb_token1] = ACTIONS(1026), + [anon_sym_for] = ACTIONS(1026), + [anon_sym_and] = ACTIONS(1026), + [anon_sym_as] = ACTIONS(1026), + [anon_sym_with] = ACTIONS(1026), + [anon_sym_do] = ACTIONS(1026), + [anon_sym_while] = ACTIONS(1026), + [anon_sym_until] = ACTIONS(1026), + [anon_sym_repeat] = ACTIONS(1026), + [anon_sym_when] = ACTIONS(1026), + [anon_sym_if] = ACTIONS(1026), + [anon_sym_unless] = ACTIONS(1026), + [anon_sym_always] = ACTIONS(1026), + [anon_sym_thereis] = ACTIONS(1026), + [anon_sym_never] = ACTIONS(1026), + [anon_sym_else] = ACTIONS(1026), + [anon_sym_finally] = ACTIONS(1026), + [anon_sym_return] = ACTIONS(1026), + [anon_sym_initially] = ACTIONS(1026), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(1029), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [31] = { - [sym__gap] = STATE(17), - [sym_dis_expr] = STATE(17), - [sym__form] = STATE(2530), - [sym_num_lit] = STATE(2530), - [sym_kwd_lit] = STATE(2530), - [sym_str_lit] = STATE(2530), - [sym_char_lit] = STATE(2530), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2530), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2530), - [sym_set_lit] = STATE(2530), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2530), - [sym_splicing_read_cond_lit] = STATE(2530), - [sym_var_quoting_lit] = STATE(2530), - [sym_quoting_lit] = STATE(2530), - [sym_syn_quoting_lit] = STATE(2530), - [sym_unquote_splicing_lit] = STATE(2530), - [sym_unquoting_lit] = STATE(2530), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2530), - [sym_package_lit] = STATE(2530), - [sym_include_reader_macro] = STATE(2530), - [sym_complex_num_lit] = STATE(2530), - [aux_sym_dis_expr_repeat1] = STATE(17), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(1038), - [sym_comment] = ACTIONS(1038), - [anon_sym_POUND_] = ACTIONS(1042), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(1046), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(1048), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(1046), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1052), - [anon_sym_POUND_CARET] = ACTIONS(1056), - [anon_sym_LPAREN] = ACTIONS(1060), - [anon_sym_RPAREN] = ACTIONS(1064), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(990), + [sym_dis_expr] = STATE(990), + [sym__form] = STATE(2163), + [sym_num_lit] = STATE(2163), + [sym_kwd_lit] = STATE(2163), + [sym_str_lit] = STATE(2163), + [sym_char_lit] = STATE(2163), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2163), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2163), + [sym_set_lit] = STATE(2163), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2163), + [sym_splicing_read_cond_lit] = STATE(2163), + [sym_var_quoting_lit] = STATE(2163), + [sym_quoting_lit] = STATE(2163), + [sym_syn_quoting_lit] = STATE(2163), + [sym_unquote_splicing_lit] = STATE(2163), + [sym_unquoting_lit] = STATE(2163), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2163), + [sym_package_lit] = STATE(2163), + [sym_include_reader_macro] = STATE(2163), + [sym_complex_num_lit] = STATE(2163), + [aux_sym_dis_expr_repeat1] = STATE(990), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(951), + [sym_comment] = ACTIONS(951), + [anon_sym_POUND_] = ACTIONS(955), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(1031), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(1033), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(1031), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(965), + [anon_sym_POUND_CARET] = ACTIONS(969), + [anon_sym_LPAREN] = ACTIONS(973), + [anon_sym_RPAREN] = ACTIONS(977), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(1046), - [anon_sym_cl] = ACTIONS(1067), - [anon_sym_EQ] = ACTIONS(1071), - [aux_sym_accumulation_verb_token1] = ACTIONS(1073), - [anon_sym_for] = ACTIONS(1073), - [anon_sym_and] = ACTIONS(1073), - [anon_sym_as] = ACTIONS(1073), - [anon_sym_with] = ACTIONS(1073), - [anon_sym_do] = ACTIONS(1073), - [anon_sym_while] = ACTIONS(1073), - [anon_sym_until] = ACTIONS(1073), - [anon_sym_repeat] = ACTIONS(1073), - [anon_sym_when] = ACTIONS(1073), - [anon_sym_if] = ACTIONS(1073), - [anon_sym_unless] = ACTIONS(1073), - [anon_sym_always] = ACTIONS(1073), - [anon_sym_thereis] = ACTIONS(1073), - [anon_sym_never] = ACTIONS(1073), - [anon_sym_else] = ACTIONS(1073), - [anon_sym_finally] = ACTIONS(1073), - [anon_sym_return] = ACTIONS(1073), - [anon_sym_initially] = ACTIONS(1073), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(1076), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(1031), + [anon_sym_cl] = ACTIONS(1037), + [anon_sym_EQ] = ACTIONS(1041), + [aux_sym_accumulation_verb_token1] = ACTIONS(986), + [anon_sym_for] = ACTIONS(986), + [anon_sym_and] = ACTIONS(986), + [anon_sym_as] = ACTIONS(986), + [anon_sym_with] = ACTIONS(986), + [anon_sym_do] = ACTIONS(986), + [anon_sym_while] = ACTIONS(986), + [anon_sym_until] = ACTIONS(986), + [anon_sym_repeat] = ACTIONS(986), + [anon_sym_when] = ACTIONS(986), + [anon_sym_if] = ACTIONS(986), + [anon_sym_unless] = ACTIONS(986), + [anon_sym_always] = ACTIONS(986), + [anon_sym_thereis] = ACTIONS(986), + [anon_sym_never] = ACTIONS(986), + [anon_sym_else] = ACTIONS(986), + [anon_sym_finally] = ACTIONS(986), + [anon_sym_return] = ACTIONS(986), + [anon_sym_initially] = ACTIONS(986), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(1043), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [32] = { - [sym__gap] = STATE(908), - [sym_dis_expr] = STATE(908), - [sym__form] = STATE(994), - [sym_num_lit] = STATE(994), - [sym_kwd_lit] = STATE(994), - [sym_str_lit] = STATE(994), - [sym_char_lit] = STATE(994), - [sym_sym_lit] = STATE(1186), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(994), - [sym__bare_list_lit] = STATE(1187), - [sym_vec_lit] = STATE(994), - [sym_set_lit] = STATE(994), - [sym__bare_set_lit] = STATE(1191), - [sym_read_cond_lit] = STATE(994), - [sym_splicing_read_cond_lit] = STATE(994), - [sym_var_quoting_lit] = STATE(994), - [sym_quoting_lit] = STATE(994), - [sym_syn_quoting_lit] = STATE(994), - [sym_unquote_splicing_lit] = STATE(994), - [sym_unquoting_lit] = STATE(994), - [sym_defun] = STATE(1187), - [sym_loop_macro] = STATE(1187), - [sym_path_lit] = STATE(994), - [sym_package_lit] = STATE(994), - [sym_include_reader_macro] = STATE(994), - [sym_complex_num_lit] = STATE(994), - [aux_sym_dis_expr_repeat1] = STATE(908), - [aux_sym_list_lit_repeat1] = STATE(2827), - [aux_sym_do_clause_repeat1] = STATE(27), - [sym__ws] = ACTIONS(1078), - [sym_comment] = ACTIONS(1078), - [anon_sym_POUND_] = ACTIONS(1078), - [anon_sym_POUND] = ACTIONS(636), - [anon_sym_DOT] = ACTIONS(638), - [aux_sym_num_lit_token1] = ACTIONS(640), - [anon_sym_COLON] = ACTIONS(1080), - [anon_sym_COLON_COLON] = ACTIONS(644), - [anon_sym_DQUOTE] = ACTIONS(646), - [sym_nil_lit] = ACTIONS(638), - [aux_sym_sym_lit_token1] = ACTIONS(648), - [anon_sym_CARET] = ACTIONS(1078), - [anon_sym_POUND_CARET] = ACTIONS(1078), - [anon_sym_LPAREN] = ACTIONS(1078), - [anon_sym_RPAREN] = ACTIONS(1078), - [anon_sym_POUND0A] = ACTIONS(650), - [anon_sym_POUND0a] = ACTIONS(650), - [anon_sym_POUND_QMARK] = ACTIONS(652), - [anon_sym_POUND_QMARK_AT] = ACTIONS(654), - [anon_sym_POUND_SQUOTE] = ACTIONS(656), - [anon_sym_SQUOTE] = ACTIONS(658), - [anon_sym_BQUOTE] = ACTIONS(660), - [anon_sym_COMMA_AT] = ACTIONS(662), - [anon_sym_COMMA] = ACTIONS(664), + [sym__gap] = STATE(37), + [sym_dis_expr] = STATE(37), + [sym__form] = STATE(2165), + [sym_num_lit] = STATE(2165), + [sym_kwd_lit] = STATE(2165), + [sym_str_lit] = STATE(2165), + [sym_char_lit] = STATE(2165), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2165), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2165), + [sym_set_lit] = STATE(2165), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2165), + [sym_splicing_read_cond_lit] = STATE(2165), + [sym_var_quoting_lit] = STATE(2165), + [sym_quoting_lit] = STATE(2165), + [sym_syn_quoting_lit] = STATE(2165), + [sym_unquote_splicing_lit] = STATE(2165), + [sym_unquoting_lit] = STATE(2165), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2165), + [sym_package_lit] = STATE(2165), + [sym_include_reader_macro] = STATE(2165), + [sym_complex_num_lit] = STATE(2165), + [aux_sym_dis_expr_repeat1] = STATE(37), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(1045), + [sym_comment] = ACTIONS(1045), + [anon_sym_POUND_] = ACTIONS(995), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(1049), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(1051), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(1049), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(1005), + [anon_sym_POUND_CARET] = ACTIONS(1009), + [anon_sym_LPAREN] = ACTIONS(1013), + [anon_sym_RPAREN] = ACTIONS(1017), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(638), - [anon_sym_cl] = ACTIONS(1080), - [aux_sym_accumulation_verb_token1] = ACTIONS(1080), - [anon_sym_for] = ACTIONS(1080), - [anon_sym_and] = ACTIONS(1080), - [anon_sym_as] = ACTIONS(1080), - [anon_sym_with] = ACTIONS(1080), - [anon_sym_do] = ACTIONS(1080), - [anon_sym_while] = ACTIONS(1080), - [anon_sym_until] = ACTIONS(1080), - [anon_sym_repeat] = ACTIONS(1080), - [anon_sym_when] = ACTIONS(1080), - [anon_sym_if] = ACTIONS(1080), - [anon_sym_unless] = ACTIONS(1080), - [anon_sym_always] = ACTIONS(1080), - [anon_sym_thereis] = ACTIONS(1080), - [anon_sym_never] = ACTIONS(1080), - [anon_sym_else] = ACTIONS(1080), - [anon_sym_finally] = ACTIONS(1080), - [anon_sym_return] = ACTIONS(1080), - [anon_sym_initially] = ACTIONS(1080), - [anon_sym_POUNDP] = ACTIONS(666), - [anon_sym_POUNDp] = ACTIONS(666), - [sym_self_referential_reader_macro] = ACTIONS(668), - [anon_sym_POUND_PLUS] = ACTIONS(670), - [anon_sym_POUND_DASH] = ACTIONS(670), - [anon_sym_POUNDC] = ACTIONS(672), - [anon_sym_POUNDc] = ACTIONS(672), + [sym_fancy_literal] = ACTIONS(1049), + [anon_sym_cl] = ACTIONS(1055), + [anon_sym_EQ] = ACTIONS(1059), + [aux_sym_accumulation_verb_token1] = ACTIONS(1026), + [anon_sym_for] = ACTIONS(1026), + [anon_sym_and] = ACTIONS(1026), + [anon_sym_as] = ACTIONS(1026), + [anon_sym_with] = ACTIONS(1026), + [anon_sym_do] = ACTIONS(1026), + [anon_sym_while] = ACTIONS(1026), + [anon_sym_until] = ACTIONS(1026), + [anon_sym_repeat] = ACTIONS(1026), + [anon_sym_when] = ACTIONS(1026), + [anon_sym_if] = ACTIONS(1026), + [anon_sym_unless] = ACTIONS(1026), + [anon_sym_always] = ACTIONS(1026), + [anon_sym_thereis] = ACTIONS(1026), + [anon_sym_never] = ACTIONS(1026), + [anon_sym_else] = ACTIONS(1026), + [anon_sym_finally] = ACTIONS(1026), + [anon_sym_return] = ACTIONS(1026), + [anon_sym_initially] = ACTIONS(1026), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(1061), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [33] = { - [sym__gap] = STATE(6), - [sym_dis_expr] = STATE(6), - [sym__form] = STATE(7), - [sym_num_lit] = STATE(7), - [sym_kwd_lit] = STATE(7), - [sym_str_lit] = STATE(7), - [sym_char_lit] = STATE(7), - [sym_sym_lit] = STATE(1073), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(7), - [sym__bare_list_lit] = STATE(1070), - [sym_vec_lit] = STATE(7), - [sym_set_lit] = STATE(7), - [sym__bare_set_lit] = STATE(1069), - [sym_read_cond_lit] = STATE(7), - [sym_splicing_read_cond_lit] = STATE(7), - [sym_var_quoting_lit] = STATE(7), - [sym_quoting_lit] = STATE(7), - [sym_syn_quoting_lit] = STATE(7), - [sym_unquote_splicing_lit] = STATE(7), - [sym_unquoting_lit] = STATE(7), - [sym_defun] = STATE(1070), - [sym_loop_macro] = STATE(1070), - [sym_path_lit] = STATE(7), - [sym_package_lit] = STATE(7), - [sym_include_reader_macro] = STATE(7), - [sym_complex_num_lit] = STATE(7), - [aux_sym_dis_expr_repeat1] = STATE(6), - [aux_sym_list_lit_repeat1] = STATE(2804), - [sym__ws] = ACTIONS(1082), - [sym_comment] = ACTIONS(1082), - [anon_sym_POUND_] = ACTIONS(771), - [anon_sym_POUND] = ACTIONS(137), - [anon_sym_DOT] = ACTIONS(1085), - [aux_sym_num_lit_token1] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1087), - [anon_sym_COLON_COLON] = ACTIONS(146), - [anon_sym_DQUOTE] = ACTIONS(148), - [sym_nil_lit] = ACTIONS(1085), - [aux_sym_sym_lit_token1] = ACTIONS(150), - [anon_sym_CARET] = ACTIONS(779), - [anon_sym_POUND_CARET] = ACTIONS(782), - [anon_sym_LPAREN] = ACTIONS(785), - [anon_sym_RPAREN] = ACTIONS(788), - [anon_sym_POUND0A] = ACTIONS(163), - [anon_sym_POUND0a] = ACTIONS(163), - [anon_sym_POUND_QMARK] = ACTIONS(165), - [anon_sym_POUND_QMARK_AT] = ACTIONS(167), - [anon_sym_POUND_SQUOTE] = ACTIONS(169), - [anon_sym_SQUOTE] = ACTIONS(171), - [anon_sym_BQUOTE] = ACTIONS(173), - [anon_sym_COMMA_AT] = ACTIONS(175), - [anon_sym_COMMA] = ACTIONS(177), + [sym__gap] = STATE(38), + [sym_dis_expr] = STATE(38), + [sym__form] = STATE(2168), + [sym_num_lit] = STATE(2168), + [sym_kwd_lit] = STATE(2168), + [sym_str_lit] = STATE(2168), + [sym_char_lit] = STATE(2168), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2168), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2168), + [sym_set_lit] = STATE(2168), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2168), + [sym_splicing_read_cond_lit] = STATE(2168), + [sym_var_quoting_lit] = STATE(2168), + [sym_quoting_lit] = STATE(2168), + [sym_syn_quoting_lit] = STATE(2168), + [sym_unquote_splicing_lit] = STATE(2168), + [sym_unquoting_lit] = STATE(2168), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2168), + [sym_package_lit] = STATE(2168), + [sym_include_reader_macro] = STATE(2168), + [sym_complex_num_lit] = STATE(2168), + [aux_sym_dis_expr_repeat1] = STATE(38), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(1063), + [sym_comment] = ACTIONS(1063), + [anon_sym_POUND_] = ACTIONS(1067), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(1071), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(1073), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(1071), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(1077), + [anon_sym_POUND_CARET] = ACTIONS(1081), + [anon_sym_LPAREN] = ACTIONS(1085), + [anon_sym_RPAREN] = ACTIONS(1089), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(1085), - [anon_sym_cl] = ACTIONS(1090), - [anon_sym_EQ] = ACTIONS(1093), - [aux_sym_accumulation_verb_token1] = ACTIONS(795), - [anon_sym_for] = ACTIONS(795), - [anon_sym_and] = ACTIONS(795), - [anon_sym_as] = ACTIONS(795), - [anon_sym_with] = ACTIONS(795), - [anon_sym_do] = ACTIONS(795), - [anon_sym_while] = ACTIONS(795), - [anon_sym_until] = ACTIONS(795), - [anon_sym_repeat] = ACTIONS(795), - [anon_sym_when] = ACTIONS(795), - [anon_sym_if] = ACTIONS(795), - [anon_sym_unless] = ACTIONS(795), - [anon_sym_always] = ACTIONS(795), - [anon_sym_thereis] = ACTIONS(795), - [anon_sym_never] = ACTIONS(795), - [anon_sym_else] = ACTIONS(795), - [anon_sym_finally] = ACTIONS(795), - [anon_sym_return] = ACTIONS(795), - [anon_sym_initially] = ACTIONS(795), - [anon_sym_POUNDP] = ACTIONS(186), - [anon_sym_POUNDp] = ACTIONS(186), - [sym_self_referential_reader_macro] = ACTIONS(1095), - [anon_sym_POUND_PLUS] = ACTIONS(190), - [anon_sym_POUND_DASH] = ACTIONS(190), - [anon_sym_POUNDC] = ACTIONS(192), - [anon_sym_POUNDc] = ACTIONS(192), + [sym_fancy_literal] = ACTIONS(1071), + [anon_sym_cl] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1096), + [aux_sym_accumulation_verb_token1] = ACTIONS(1098), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_and] = ACTIONS(1098), + [anon_sym_as] = ACTIONS(1098), + [anon_sym_with] = ACTIONS(1098), + [anon_sym_do] = ACTIONS(1098), + [anon_sym_while] = ACTIONS(1098), + [anon_sym_until] = ACTIONS(1098), + [anon_sym_repeat] = ACTIONS(1098), + [anon_sym_when] = ACTIONS(1098), + [anon_sym_if] = ACTIONS(1098), + [anon_sym_unless] = ACTIONS(1098), + [anon_sym_always] = ACTIONS(1098), + [anon_sym_thereis] = ACTIONS(1098), + [anon_sym_never] = ACTIONS(1098), + [anon_sym_else] = ACTIONS(1098), + [anon_sym_finally] = ACTIONS(1098), + [anon_sym_return] = ACTIONS(1098), + [anon_sym_initially] = ACTIONS(1098), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(1101), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [34] = { - [sym__gap] = STATE(990), - [sym_dis_expr] = STATE(990), - [sym__form] = STATE(2211), - [sym_num_lit] = STATE(2211), - [sym_kwd_lit] = STATE(2211), - [sym_str_lit] = STATE(2211), - [sym_char_lit] = STATE(2211), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2211), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2211), - [sym_set_lit] = STATE(2211), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2211), - [sym_splicing_read_cond_lit] = STATE(2211), - [sym_var_quoting_lit] = STATE(2211), - [sym_quoting_lit] = STATE(2211), - [sym_syn_quoting_lit] = STATE(2211), - [sym_unquote_splicing_lit] = STATE(2211), - [sym_unquoting_lit] = STATE(2211), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2211), - [sym_package_lit] = STATE(2211), - [sym_include_reader_macro] = STATE(2211), - [sym_complex_num_lit] = STATE(2211), - [aux_sym_dis_expr_repeat1] = STATE(990), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(59), - [sym_comment] = ACTIONS(59), - [anon_sym_POUND_] = ACTIONS(63), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(1097), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(1099), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(1097), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(83), - [anon_sym_POUND_CARET] = ACTIONS(87), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_RPAREN] = ACTIONS(95), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(10), + [sym_dis_expr] = STATE(10), + [sym__form] = STATE(9), + [sym_num_lit] = STATE(9), + [sym_kwd_lit] = STATE(9), + [sym_str_lit] = STATE(9), + [sym_char_lit] = STATE(9), + [sym_sym_lit] = STATE(1101), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(9), + [sym__bare_list_lit] = STATE(1109), + [sym_vec_lit] = STATE(9), + [sym_set_lit] = STATE(9), + [sym__bare_set_lit] = STATE(1117), + [sym_read_cond_lit] = STATE(9), + [sym_splicing_read_cond_lit] = STATE(9), + [sym_var_quoting_lit] = STATE(9), + [sym_quoting_lit] = STATE(9), + [sym_syn_quoting_lit] = STATE(9), + [sym_unquote_splicing_lit] = STATE(9), + [sym_unquoting_lit] = STATE(9), + [sym_defun] = STATE(1109), + [sym_loop_macro] = STATE(1109), + [sym_path_lit] = STATE(9), + [sym_package_lit] = STATE(9), + [sym_include_reader_macro] = STATE(9), + [sym_complex_num_lit] = STATE(9), + [aux_sym_dis_expr_repeat1] = STATE(10), + [aux_sym_list_lit_repeat1] = STATE(2812), + [sym__ws] = ACTIONS(1103), + [sym_comment] = ACTIONS(1103), + [anon_sym_POUND_] = ACTIONS(272), + [anon_sym_POUND] = ACTIONS(65), + [anon_sym_DOT] = ACTIONS(1106), + [aux_sym_num_lit_token1] = ACTIONS(69), + [anon_sym_COLON] = ACTIONS(1108), + [anon_sym_COLON_COLON] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_nil_lit] = ACTIONS(1106), + [aux_sym_sym_lit_token1] = ACTIONS(78), + [anon_sym_CARET] = ACTIONS(280), + [anon_sym_POUND_CARET] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(286), + [anon_sym_RPAREN] = ACTIONS(289), + [anon_sym_POUND0A] = ACTIONS(91), + [anon_sym_POUND0a] = ACTIONS(91), + [anon_sym_POUND_QMARK] = ACTIONS(93), + [anon_sym_POUND_QMARK_AT] = ACTIONS(95), + [anon_sym_POUND_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_BQUOTE] = ACTIONS(101), + [anon_sym_COMMA_AT] = ACTIONS(103), + [anon_sym_COMMA] = ACTIONS(105), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(1097), - [anon_sym_cl] = ACTIONS(1103), - [anon_sym_EQ] = ACTIONS(1107), - [aux_sym_accumulation_verb_token1] = ACTIONS(120), - [anon_sym_for] = ACTIONS(120), - [anon_sym_and] = ACTIONS(120), - [anon_sym_as] = ACTIONS(120), - [anon_sym_with] = ACTIONS(120), - [anon_sym_do] = ACTIONS(120), - [anon_sym_while] = ACTIONS(120), - [anon_sym_until] = ACTIONS(120), - [anon_sym_repeat] = ACTIONS(120), - [anon_sym_when] = ACTIONS(120), - [anon_sym_if] = ACTIONS(120), - [anon_sym_unless] = ACTIONS(120), - [anon_sym_always] = ACTIONS(120), - [anon_sym_thereis] = ACTIONS(120), - [anon_sym_never] = ACTIONS(120), - [anon_sym_else] = ACTIONS(120), - [anon_sym_finally] = ACTIONS(120), - [anon_sym_return] = ACTIONS(120), - [anon_sym_initially] = ACTIONS(120), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(1109), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(1106), + [anon_sym_cl] = ACTIONS(1111), + [anon_sym_EQ] = ACTIONS(1114), + [aux_sym_accumulation_verb_token1] = ACTIONS(296), + [anon_sym_for] = ACTIONS(296), + [anon_sym_and] = ACTIONS(296), + [anon_sym_as] = ACTIONS(296), + [anon_sym_with] = ACTIONS(296), + [anon_sym_do] = ACTIONS(296), + [anon_sym_while] = ACTIONS(296), + [anon_sym_until] = ACTIONS(296), + [anon_sym_repeat] = ACTIONS(296), + [anon_sym_when] = ACTIONS(296), + [anon_sym_if] = ACTIONS(296), + [anon_sym_unless] = ACTIONS(296), + [anon_sym_always] = ACTIONS(296), + [anon_sym_thereis] = ACTIONS(296), + [anon_sym_never] = ACTIONS(296), + [anon_sym_else] = ACTIONS(296), + [anon_sym_finally] = ACTIONS(296), + [anon_sym_return] = ACTIONS(296), + [anon_sym_initially] = ACTIONS(296), + [anon_sym_POUNDP] = ACTIONS(114), + [anon_sym_POUNDp] = ACTIONS(114), + [sym_self_referential_reader_macro] = ACTIONS(1116), + [anon_sym_POUND_PLUS] = ACTIONS(118), + [anon_sym_POUND_DASH] = ACTIONS(118), + [anon_sym_POUNDC] = ACTIONS(120), + [anon_sym_POUNDc] = ACTIONS(120), }, [35] = { [sym__gap] = STATE(990), [sym_dis_expr] = STATE(990), - [sym__form] = STATE(2153), - [sym_num_lit] = STATE(2153), - [sym_kwd_lit] = STATE(2153), - [sym_str_lit] = STATE(2153), - [sym_char_lit] = STATE(2153), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2153), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2153), - [sym_set_lit] = STATE(2153), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2153), - [sym_splicing_read_cond_lit] = STATE(2153), - [sym_var_quoting_lit] = STATE(2153), - [sym_quoting_lit] = STATE(2153), - [sym_syn_quoting_lit] = STATE(2153), - [sym_unquote_splicing_lit] = STATE(2153), - [sym_unquoting_lit] = STATE(2153), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2153), - [sym_package_lit] = STATE(2153), - [sym_include_reader_macro] = STATE(2153), - [sym_complex_num_lit] = STATE(2153), + [sym__form] = STATE(2276), + [sym_num_lit] = STATE(2276), + [sym_kwd_lit] = STATE(2276), + [sym_str_lit] = STATE(2276), + [sym_char_lit] = STATE(2276), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2276), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2276), + [sym_set_lit] = STATE(2276), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2276), + [sym_splicing_read_cond_lit] = STATE(2276), + [sym_var_quoting_lit] = STATE(2276), + [sym_quoting_lit] = STATE(2276), + [sym_syn_quoting_lit] = STATE(2276), + [sym_unquote_splicing_lit] = STATE(2276), + [sym_unquoting_lit] = STATE(2276), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2276), + [sym_package_lit] = STATE(2276), + [sym_include_reader_macro] = STATE(2276), + [sym_complex_num_lit] = STATE(2276), [aux_sym_dis_expr_repeat1] = STATE(990), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(1111), - [sym_comment] = ACTIONS(1111), - [anon_sym_POUND_] = ACTIONS(1115), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(1119), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(1121), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(1119), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1125), - [anon_sym_POUND_CARET] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1133), - [anon_sym_RPAREN] = ACTIONS(1137), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(911), + [sym_comment] = ACTIONS(911), + [anon_sym_POUND_] = ACTIONS(915), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(1118), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(1120), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(1118), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(925), + [anon_sym_POUND_CARET] = ACTIONS(929), + [anon_sym_LPAREN] = ACTIONS(933), + [anon_sym_RPAREN] = ACTIONS(937), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(1119), - [anon_sym_cl] = ACTIONS(1140), - [anon_sym_EQ] = ACTIONS(1144), - [aux_sym_accumulation_verb_token1] = ACTIONS(1146), - [anon_sym_for] = ACTIONS(1146), - [anon_sym_and] = ACTIONS(1146), - [anon_sym_as] = ACTIONS(1146), - [anon_sym_with] = ACTIONS(1146), - [anon_sym_do] = ACTIONS(1146), - [anon_sym_while] = ACTIONS(1146), - [anon_sym_until] = ACTIONS(1146), - [anon_sym_repeat] = ACTIONS(1146), - [anon_sym_when] = ACTIONS(1146), - [anon_sym_if] = ACTIONS(1146), - [anon_sym_unless] = ACTIONS(1146), - [anon_sym_always] = ACTIONS(1146), - [anon_sym_thereis] = ACTIONS(1146), - [anon_sym_never] = ACTIONS(1146), - [anon_sym_else] = ACTIONS(1146), - [anon_sym_finally] = ACTIONS(1146), - [anon_sym_return] = ACTIONS(1146), - [anon_sym_initially] = ACTIONS(1146), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(1149), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(1118), + [anon_sym_cl] = ACTIONS(1124), + [anon_sym_EQ] = ACTIONS(1128), + [aux_sym_accumulation_verb_token1] = ACTIONS(946), + [anon_sym_for] = ACTIONS(946), + [anon_sym_and] = ACTIONS(946), + [anon_sym_as] = ACTIONS(946), + [anon_sym_with] = ACTIONS(946), + [anon_sym_do] = ACTIONS(946), + [anon_sym_while] = ACTIONS(946), + [anon_sym_until] = ACTIONS(946), + [anon_sym_repeat] = ACTIONS(946), + [anon_sym_when] = ACTIONS(946), + [anon_sym_if] = ACTIONS(946), + [anon_sym_unless] = ACTIONS(946), + [anon_sym_always] = ACTIONS(946), + [anon_sym_thereis] = ACTIONS(946), + [anon_sym_never] = ACTIONS(946), + [anon_sym_else] = ACTIONS(946), + [anon_sym_finally] = ACTIONS(946), + [anon_sym_return] = ACTIONS(946), + [anon_sym_initially] = ACTIONS(946), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(1130), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [36] = { [sym__gap] = STATE(990), [sym_dis_expr] = STATE(990), - [sym__form] = STATE(2134), - [sym_num_lit] = STATE(2134), - [sym_kwd_lit] = STATE(2134), - [sym_str_lit] = STATE(2134), - [sym_char_lit] = STATE(2134), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2134), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2134), - [sym_set_lit] = STATE(2134), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2134), - [sym_splicing_read_cond_lit] = STATE(2134), - [sym_var_quoting_lit] = STATE(2134), - [sym_quoting_lit] = STATE(2134), - [sym_syn_quoting_lit] = STATE(2134), - [sym_unquote_splicing_lit] = STATE(2134), - [sym_unquoting_lit] = STATE(2134), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2134), - [sym_package_lit] = STATE(2134), - [sym_include_reader_macro] = STATE(2134), - [sym_complex_num_lit] = STATE(2134), + [sym__form] = STATE(2545), + [sym_num_lit] = STATE(2545), + [sym_kwd_lit] = STATE(2545), + [sym_str_lit] = STATE(2545), + [sym_char_lit] = STATE(2545), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2545), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2545), + [sym_set_lit] = STATE(2545), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2545), + [sym_splicing_read_cond_lit] = STATE(2545), + [sym_var_quoting_lit] = STATE(2545), + [sym_quoting_lit] = STATE(2545), + [sym_syn_quoting_lit] = STATE(2545), + [sym_unquote_splicing_lit] = STATE(2545), + [sym_unquoting_lit] = STATE(2545), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2545), + [sym_package_lit] = STATE(2545), + [sym_include_reader_macro] = STATE(2545), + [sym_complex_num_lit] = STATE(2545), [aux_sym_dis_expr_repeat1] = STATE(990), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(1111), - [sym_comment] = ACTIONS(1111), - [anon_sym_POUND_] = ACTIONS(1115), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(1151), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(1153), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(1151), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1125), - [anon_sym_POUND_CARET] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1133), - [anon_sym_RPAREN] = ACTIONS(1137), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(1132), + [sym_comment] = ACTIONS(1132), + [anon_sym_POUND_] = ACTIONS(1136), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(1140), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(1142), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(1140), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(1146), + [anon_sym_POUND_CARET] = ACTIONS(1150), + [anon_sym_LPAREN] = ACTIONS(1154), + [anon_sym_RPAREN] = ACTIONS(1158), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(1151), - [anon_sym_cl] = ACTIONS(1157), - [anon_sym_EQ] = ACTIONS(1161), - [aux_sym_accumulation_verb_token1] = ACTIONS(1146), - [anon_sym_for] = ACTIONS(1146), - [anon_sym_and] = ACTIONS(1146), - [anon_sym_as] = ACTIONS(1146), - [anon_sym_with] = ACTIONS(1146), - [anon_sym_do] = ACTIONS(1146), - [anon_sym_while] = ACTIONS(1146), - [anon_sym_until] = ACTIONS(1146), - [anon_sym_repeat] = ACTIONS(1146), - [anon_sym_when] = ACTIONS(1146), - [anon_sym_if] = ACTIONS(1146), - [anon_sym_unless] = ACTIONS(1146), - [anon_sym_always] = ACTIONS(1146), - [anon_sym_thereis] = ACTIONS(1146), - [anon_sym_never] = ACTIONS(1146), - [anon_sym_else] = ACTIONS(1146), - [anon_sym_finally] = ACTIONS(1146), - [anon_sym_return] = ACTIONS(1146), - [anon_sym_initially] = ACTIONS(1146), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(1163), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(1140), + [anon_sym_cl] = ACTIONS(1161), + [anon_sym_EQ] = ACTIONS(1165), + [aux_sym_accumulation_verb_token1] = ACTIONS(1167), + [anon_sym_for] = ACTIONS(1167), + [anon_sym_and] = ACTIONS(1167), + [anon_sym_as] = ACTIONS(1167), + [anon_sym_with] = ACTIONS(1167), + [anon_sym_do] = ACTIONS(1167), + [anon_sym_while] = ACTIONS(1167), + [anon_sym_until] = ACTIONS(1167), + [anon_sym_repeat] = ACTIONS(1167), + [anon_sym_when] = ACTIONS(1167), + [anon_sym_if] = ACTIONS(1167), + [anon_sym_unless] = ACTIONS(1167), + [anon_sym_always] = ACTIONS(1167), + [anon_sym_thereis] = ACTIONS(1167), + [anon_sym_never] = ACTIONS(1167), + [anon_sym_else] = ACTIONS(1167), + [anon_sym_finally] = ACTIONS(1167), + [anon_sym_return] = ACTIONS(1167), + [anon_sym_initially] = ACTIONS(1167), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(1170), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [37] = { - [sym__gap] = STATE(908), - [sym_dis_expr] = STATE(908), - [sym__form] = STATE(994), - [sym_num_lit] = STATE(994), - [sym_kwd_lit] = STATE(994), - [sym_str_lit] = STATE(994), - [sym_char_lit] = STATE(994), - [sym_sym_lit] = STATE(1186), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(994), - [sym__bare_list_lit] = STATE(1187), - [sym_vec_lit] = STATE(994), - [sym_set_lit] = STATE(994), - [sym__bare_set_lit] = STATE(1191), - [sym_read_cond_lit] = STATE(994), - [sym_splicing_read_cond_lit] = STATE(994), - [sym_var_quoting_lit] = STATE(994), - [sym_quoting_lit] = STATE(994), - [sym_syn_quoting_lit] = STATE(994), - [sym_unquote_splicing_lit] = STATE(994), - [sym_unquoting_lit] = STATE(994), - [sym_defun] = STATE(1187), - [sym_loop_macro] = STATE(1187), - [sym_path_lit] = STATE(994), - [sym_package_lit] = STATE(994), - [sym_include_reader_macro] = STATE(994), - [sym_complex_num_lit] = STATE(994), - [aux_sym_dis_expr_repeat1] = STATE(908), - [aux_sym_list_lit_repeat1] = STATE(2827), - [aux_sym_do_clause_repeat1] = STATE(27), - [sym__ws] = ACTIONS(1165), - [sym_comment] = ACTIONS(1165), - [anon_sym_POUND_] = ACTIONS(1165), - [anon_sym_POUND] = ACTIONS(636), - [anon_sym_DOT] = ACTIONS(638), - [aux_sym_num_lit_token1] = ACTIONS(640), - [anon_sym_COLON] = ACTIONS(1167), - [anon_sym_COLON_COLON] = ACTIONS(644), - [anon_sym_DQUOTE] = ACTIONS(646), - [sym_nil_lit] = ACTIONS(638), - [aux_sym_sym_lit_token1] = ACTIONS(648), - [anon_sym_CARET] = ACTIONS(1165), - [anon_sym_POUND_CARET] = ACTIONS(1165), - [anon_sym_LPAREN] = ACTIONS(1165), - [anon_sym_RPAREN] = ACTIONS(1165), - [anon_sym_POUND0A] = ACTIONS(650), - [anon_sym_POUND0a] = ACTIONS(650), - [anon_sym_POUND_QMARK] = ACTIONS(652), - [anon_sym_POUND_QMARK_AT] = ACTIONS(654), - [anon_sym_POUND_SQUOTE] = ACTIONS(656), - [anon_sym_SQUOTE] = ACTIONS(658), - [anon_sym_BQUOTE] = ACTIONS(660), - [anon_sym_COMMA_AT] = ACTIONS(662), - [anon_sym_COMMA] = ACTIONS(664), + [sym__gap] = STATE(990), + [sym_dis_expr] = STATE(990), + [sym__form] = STATE(2058), + [sym_num_lit] = STATE(2058), + [sym_kwd_lit] = STATE(2058), + [sym_str_lit] = STATE(2058), + [sym_char_lit] = STATE(2058), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2058), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2058), + [sym_set_lit] = STATE(2058), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2058), + [sym_splicing_read_cond_lit] = STATE(2058), + [sym_var_quoting_lit] = STATE(2058), + [sym_quoting_lit] = STATE(2058), + [sym_syn_quoting_lit] = STATE(2058), + [sym_unquote_splicing_lit] = STATE(2058), + [sym_unquoting_lit] = STATE(2058), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2058), + [sym_package_lit] = STATE(2058), + [sym_include_reader_macro] = STATE(2058), + [sym_complex_num_lit] = STATE(2058), + [aux_sym_dis_expr_repeat1] = STATE(990), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(1132), + [sym_comment] = ACTIONS(1132), + [anon_sym_POUND_] = ACTIONS(1136), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(1172), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(1174), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(1172), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(1146), + [anon_sym_POUND_CARET] = ACTIONS(1150), + [anon_sym_LPAREN] = ACTIONS(1154), + [anon_sym_RPAREN] = ACTIONS(1158), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(638), - [anon_sym_cl] = ACTIONS(1167), + [sym_fancy_literal] = ACTIONS(1172), + [anon_sym_cl] = ACTIONS(1178), + [anon_sym_EQ] = ACTIONS(1182), [aux_sym_accumulation_verb_token1] = ACTIONS(1167), [anon_sym_for] = ACTIONS(1167), [anon_sym_and] = ACTIONS(1167), @@ -17905,418 +17477,418 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_finally] = ACTIONS(1167), [anon_sym_return] = ACTIONS(1167), [anon_sym_initially] = ACTIONS(1167), - [anon_sym_POUNDP] = ACTIONS(666), - [anon_sym_POUNDp] = ACTIONS(666), - [sym_self_referential_reader_macro] = ACTIONS(668), - [anon_sym_POUND_PLUS] = ACTIONS(670), - [anon_sym_POUND_DASH] = ACTIONS(670), - [anon_sym_POUNDC] = ACTIONS(672), - [anon_sym_POUNDc] = ACTIONS(672), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(1184), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [38] = { - [sym__gap] = STATE(25), - [sym_dis_expr] = STATE(25), - [sym__form] = STATE(26), - [sym_num_lit] = STATE(26), - [sym_kwd_lit] = STATE(26), - [sym_str_lit] = STATE(26), - [sym_char_lit] = STATE(26), - [sym_sym_lit] = STATE(1073), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(26), - [sym__bare_list_lit] = STATE(1070), - [sym_vec_lit] = STATE(26), - [sym_set_lit] = STATE(26), - [sym__bare_set_lit] = STATE(1069), - [sym_read_cond_lit] = STATE(26), - [sym_splicing_read_cond_lit] = STATE(26), - [sym_var_quoting_lit] = STATE(26), - [sym_quoting_lit] = STATE(26), - [sym_syn_quoting_lit] = STATE(26), - [sym_unquote_splicing_lit] = STATE(26), - [sym_unquoting_lit] = STATE(26), - [sym_defun] = STATE(1070), - [sym_loop_macro] = STATE(1070), - [sym_path_lit] = STATE(26), - [sym_package_lit] = STATE(26), - [sym_include_reader_macro] = STATE(26), - [sym_complex_num_lit] = STATE(26), - [aux_sym_dis_expr_repeat1] = STATE(25), - [aux_sym_list_lit_repeat1] = STATE(2804), - [sym__ws] = ACTIONS(1169), - [sym_comment] = ACTIONS(1169), - [anon_sym_POUND_] = ACTIONS(1172), - [anon_sym_POUND] = ACTIONS(137), - [anon_sym_DOT] = ACTIONS(1175), - [aux_sym_num_lit_token1] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1177), - [anon_sym_COLON_COLON] = ACTIONS(146), - [anon_sym_DQUOTE] = ACTIONS(148), - [sym_nil_lit] = ACTIONS(1175), - [aux_sym_sym_lit_token1] = ACTIONS(150), - [anon_sym_CARET] = ACTIONS(1180), - [anon_sym_POUND_CARET] = ACTIONS(1183), - [anon_sym_LPAREN] = ACTIONS(1186), - [anon_sym_RPAREN] = ACTIONS(1189), - [anon_sym_POUND0A] = ACTIONS(163), - [anon_sym_POUND0a] = ACTIONS(163), - [anon_sym_POUND_QMARK] = ACTIONS(165), - [anon_sym_POUND_QMARK_AT] = ACTIONS(167), - [anon_sym_POUND_SQUOTE] = ACTIONS(169), - [anon_sym_SQUOTE] = ACTIONS(171), - [anon_sym_BQUOTE] = ACTIONS(173), - [anon_sym_COMMA_AT] = ACTIONS(175), - [anon_sym_COMMA] = ACTIONS(177), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(1175), - [anon_sym_cl] = ACTIONS(1191), - [anon_sym_EQ] = ACTIONS(1194), - [aux_sym_accumulation_verb_token1] = ACTIONS(1196), - [anon_sym_for] = ACTIONS(1196), - [anon_sym_and] = ACTIONS(1196), - [anon_sym_as] = ACTIONS(1196), - [anon_sym_with] = ACTIONS(1196), - [anon_sym_do] = ACTIONS(1196), - [anon_sym_while] = ACTIONS(1196), - [anon_sym_until] = ACTIONS(1196), - [anon_sym_repeat] = ACTIONS(1196), - [anon_sym_when] = ACTIONS(1196), - [anon_sym_if] = ACTIONS(1196), - [anon_sym_unless] = ACTIONS(1196), - [anon_sym_always] = ACTIONS(1196), - [anon_sym_thereis] = ACTIONS(1196), - [anon_sym_never] = ACTIONS(1196), - [anon_sym_else] = ACTIONS(1196), - [anon_sym_finally] = ACTIONS(1196), - [anon_sym_return] = ACTIONS(1196), - [anon_sym_initially] = ACTIONS(1196), - [anon_sym_POUNDP] = ACTIONS(186), - [anon_sym_POUNDp] = ACTIONS(186), - [sym_self_referential_reader_macro] = ACTIONS(1198), - [anon_sym_POUND_PLUS] = ACTIONS(190), - [anon_sym_POUND_DASH] = ACTIONS(190), - [anon_sym_POUNDC] = ACTIONS(192), - [anon_sym_POUNDc] = ACTIONS(192), - }, - [39] = { [sym__gap] = STATE(990), [sym_dis_expr] = STATE(990), - [sym__form] = STATE(2059), - [sym_num_lit] = STATE(2059), - [sym_kwd_lit] = STATE(2059), - [sym_str_lit] = STATE(2059), - [sym_char_lit] = STATE(2059), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2059), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2059), - [sym_set_lit] = STATE(2059), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2059), - [sym_splicing_read_cond_lit] = STATE(2059), - [sym_var_quoting_lit] = STATE(2059), - [sym_quoting_lit] = STATE(2059), - [sym_syn_quoting_lit] = STATE(2059), - [sym_unquote_splicing_lit] = STATE(2059), - [sym_unquoting_lit] = STATE(2059), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2059), - [sym_package_lit] = STATE(2059), - [sym_include_reader_macro] = STATE(2059), - [sym_complex_num_lit] = STATE(2059), + [sym__form] = STATE(2064), + [sym_num_lit] = STATE(2064), + [sym_kwd_lit] = STATE(2064), + [sym_str_lit] = STATE(2064), + [sym_char_lit] = STATE(2064), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2064), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2064), + [sym_set_lit] = STATE(2064), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2064), + [sym_splicing_read_cond_lit] = STATE(2064), + [sym_var_quoting_lit] = STATE(2064), + [sym_quoting_lit] = STATE(2064), + [sym_syn_quoting_lit] = STATE(2064), + [sym_unquote_splicing_lit] = STATE(2064), + [sym_unquoting_lit] = STATE(2064), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2064), + [sym_package_lit] = STATE(2064), + [sym_include_reader_macro] = STATE(2064), + [sym_complex_num_lit] = STATE(2064), [aux_sym_dis_expr_repeat1] = STATE(990), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(1200), - [sym_comment] = ACTIONS(1200), - [anon_sym_POUND_] = ACTIONS(1204), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(1208), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(1210), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(1208), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1214), - [anon_sym_POUND_CARET] = ACTIONS(1218), - [anon_sym_LPAREN] = ACTIONS(1222), - [anon_sym_RPAREN] = ACTIONS(1226), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(1186), + [sym_comment] = ACTIONS(1186), + [anon_sym_POUND_] = ACTIONS(1190), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(1194), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(1196), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(1194), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(1200), + [anon_sym_POUND_CARET] = ACTIONS(1204), + [anon_sym_LPAREN] = ACTIONS(1208), + [anon_sym_RPAREN] = ACTIONS(1212), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(1194), + [anon_sym_cl] = ACTIONS(1215), + [anon_sym_EQ] = ACTIONS(1219), + [aux_sym_accumulation_verb_token1] = ACTIONS(1221), + [anon_sym_for] = ACTIONS(1221), + [anon_sym_and] = ACTIONS(1221), + [anon_sym_as] = ACTIONS(1221), + [anon_sym_with] = ACTIONS(1221), + [anon_sym_do] = ACTIONS(1221), + [anon_sym_while] = ACTIONS(1221), + [anon_sym_until] = ACTIONS(1221), + [anon_sym_repeat] = ACTIONS(1221), + [anon_sym_when] = ACTIONS(1221), + [anon_sym_if] = ACTIONS(1221), + [anon_sym_unless] = ACTIONS(1221), + [anon_sym_always] = ACTIONS(1221), + [anon_sym_thereis] = ACTIONS(1221), + [anon_sym_never] = ACTIONS(1221), + [anon_sym_else] = ACTIONS(1221), + [anon_sym_finally] = ACTIONS(1221), + [anon_sym_return] = ACTIONS(1221), + [anon_sym_initially] = ACTIONS(1221), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(1224), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), + }, + [39] = { + [sym__gap] = STATE(40), + [sym_dis_expr] = STATE(40), + [sym__form] = STATE(2067), + [sym_num_lit] = STATE(2067), + [sym_kwd_lit] = STATE(2067), + [sym_str_lit] = STATE(2067), + [sym_char_lit] = STATE(2067), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2067), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2067), + [sym_set_lit] = STATE(2067), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2067), + [sym_splicing_read_cond_lit] = STATE(2067), + [sym_var_quoting_lit] = STATE(2067), + [sym_quoting_lit] = STATE(2067), + [sym_syn_quoting_lit] = STATE(2067), + [sym_unquote_splicing_lit] = STATE(2067), + [sym_unquoting_lit] = STATE(2067), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2067), + [sym_package_lit] = STATE(2067), + [sym_include_reader_macro] = STATE(2067), + [sym_complex_num_lit] = STATE(2067), + [aux_sym_dis_expr_repeat1] = STATE(40), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(1226), + [sym_comment] = ACTIONS(1226), + [anon_sym_POUND_] = ACTIONS(1230), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(1234), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(1236), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(1234), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(1240), + [anon_sym_POUND_CARET] = ACTIONS(1244), + [anon_sym_LPAREN] = ACTIONS(1248), + [anon_sym_RPAREN] = ACTIONS(1252), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(1208), - [anon_sym_cl] = ACTIONS(1229), - [anon_sym_EQ] = ACTIONS(1233), - [aux_sym_accumulation_verb_token1] = ACTIONS(1235), - [anon_sym_for] = ACTIONS(1235), - [anon_sym_and] = ACTIONS(1235), - [anon_sym_as] = ACTIONS(1235), - [anon_sym_with] = ACTIONS(1235), - [anon_sym_do] = ACTIONS(1235), - [anon_sym_while] = ACTIONS(1235), - [anon_sym_until] = ACTIONS(1235), - [anon_sym_repeat] = ACTIONS(1235), - [anon_sym_when] = ACTIONS(1235), - [anon_sym_if] = ACTIONS(1235), - [anon_sym_unless] = ACTIONS(1235), - [anon_sym_always] = ACTIONS(1235), - [anon_sym_thereis] = ACTIONS(1235), - [anon_sym_never] = ACTIONS(1235), - [anon_sym_else] = ACTIONS(1235), - [anon_sym_finally] = ACTIONS(1235), - [anon_sym_return] = ACTIONS(1235), - [anon_sym_initially] = ACTIONS(1235), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(1238), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(1234), + [anon_sym_cl] = ACTIONS(1255), + [anon_sym_EQ] = ACTIONS(1259), + [aux_sym_accumulation_verb_token1] = ACTIONS(1261), + [anon_sym_for] = ACTIONS(1261), + [anon_sym_and] = ACTIONS(1261), + [anon_sym_as] = ACTIONS(1261), + [anon_sym_with] = ACTIONS(1261), + [anon_sym_do] = ACTIONS(1261), + [anon_sym_while] = ACTIONS(1261), + [anon_sym_until] = ACTIONS(1261), + [anon_sym_repeat] = ACTIONS(1261), + [anon_sym_when] = ACTIONS(1261), + [anon_sym_if] = ACTIONS(1261), + [anon_sym_unless] = ACTIONS(1261), + [anon_sym_always] = ACTIONS(1261), + [anon_sym_thereis] = ACTIONS(1261), + [anon_sym_never] = ACTIONS(1261), + [anon_sym_else] = ACTIONS(1261), + [anon_sym_finally] = ACTIONS(1261), + [anon_sym_return] = ACTIONS(1261), + [anon_sym_initially] = ACTIONS(1261), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(1264), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [40] = { - [sym__gap] = STATE(21), - [sym_dis_expr] = STATE(21), - [sym__form] = STATE(2196), - [sym_num_lit] = STATE(2196), - [sym_kwd_lit] = STATE(2196), - [sym_str_lit] = STATE(2196), - [sym_char_lit] = STATE(2196), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2196), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2196), - [sym_set_lit] = STATE(2196), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2196), - [sym_splicing_read_cond_lit] = STATE(2196), - [sym_var_quoting_lit] = STATE(2196), - [sym_quoting_lit] = STATE(2196), - [sym_syn_quoting_lit] = STATE(2196), - [sym_unquote_splicing_lit] = STATE(2196), - [sym_unquoting_lit] = STATE(2196), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2196), - [sym_package_lit] = STATE(2196), - [sym_include_reader_macro] = STATE(2196), - [sym_complex_num_lit] = STATE(2196), - [aux_sym_dis_expr_repeat1] = STATE(21), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(1240), - [sym_comment] = ACTIONS(1240), - [anon_sym_POUND_] = ACTIONS(1244), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(1248), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(1250), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(1248), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1254), - [anon_sym_POUND_CARET] = ACTIONS(1258), - [anon_sym_LPAREN] = ACTIONS(1262), - [anon_sym_RPAREN] = ACTIONS(1266), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(990), + [sym_dis_expr] = STATE(990), + [sym__form] = STATE(2280), + [sym_num_lit] = STATE(2280), + [sym_kwd_lit] = STATE(2280), + [sym_str_lit] = STATE(2280), + [sym_char_lit] = STATE(2280), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2280), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2280), + [sym_set_lit] = STATE(2280), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2280), + [sym_splicing_read_cond_lit] = STATE(2280), + [sym_var_quoting_lit] = STATE(2280), + [sym_quoting_lit] = STATE(2280), + [sym_syn_quoting_lit] = STATE(2280), + [sym_unquote_splicing_lit] = STATE(2280), + [sym_unquoting_lit] = STATE(2280), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2280), + [sym_package_lit] = STATE(2280), + [sym_include_reader_macro] = STATE(2280), + [sym_complex_num_lit] = STATE(2280), + [aux_sym_dis_expr_repeat1] = STATE(990), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(1266), + [sym_comment] = ACTIONS(1266), + [anon_sym_POUND_] = ACTIONS(1270), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(1274), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(1276), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(1274), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(1280), + [anon_sym_POUND_CARET] = ACTIONS(1284), + [anon_sym_LPAREN] = ACTIONS(1288), + [anon_sym_RPAREN] = ACTIONS(1292), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(1248), - [anon_sym_cl] = ACTIONS(1269), - [anon_sym_EQ] = ACTIONS(1273), - [aux_sym_accumulation_verb_token1] = ACTIONS(1275), - [anon_sym_for] = ACTIONS(1275), - [anon_sym_and] = ACTIONS(1275), - [anon_sym_as] = ACTIONS(1275), - [anon_sym_with] = ACTIONS(1275), - [anon_sym_do] = ACTIONS(1275), - [anon_sym_while] = ACTIONS(1275), - [anon_sym_until] = ACTIONS(1275), - [anon_sym_repeat] = ACTIONS(1275), - [anon_sym_when] = ACTIONS(1275), - [anon_sym_if] = ACTIONS(1275), - [anon_sym_unless] = ACTIONS(1275), - [anon_sym_always] = ACTIONS(1275), - [anon_sym_thereis] = ACTIONS(1275), - [anon_sym_never] = ACTIONS(1275), - [anon_sym_else] = ACTIONS(1275), - [anon_sym_finally] = ACTIONS(1275), - [anon_sym_return] = ACTIONS(1275), - [anon_sym_initially] = ACTIONS(1275), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(1278), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(1274), + [anon_sym_cl] = ACTIONS(1295), + [anon_sym_EQ] = ACTIONS(1299), + [aux_sym_accumulation_verb_token1] = ACTIONS(1301), + [anon_sym_for] = ACTIONS(1301), + [anon_sym_and] = ACTIONS(1301), + [anon_sym_as] = ACTIONS(1301), + [anon_sym_with] = ACTIONS(1301), + [anon_sym_do] = ACTIONS(1301), + [anon_sym_while] = ACTIONS(1301), + [anon_sym_until] = ACTIONS(1301), + [anon_sym_repeat] = ACTIONS(1301), + [anon_sym_when] = ACTIONS(1301), + [anon_sym_if] = ACTIONS(1301), + [anon_sym_unless] = ACTIONS(1301), + [anon_sym_always] = ACTIONS(1301), + [anon_sym_thereis] = ACTIONS(1301), + [anon_sym_never] = ACTIONS(1301), + [anon_sym_else] = ACTIONS(1301), + [anon_sym_finally] = ACTIONS(1301), + [anon_sym_return] = ACTIONS(1301), + [anon_sym_initially] = ACTIONS(1301), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(1304), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [41] = { [sym__gap] = STATE(990), [sym_dis_expr] = STATE(990), - [sym__form] = STATE(2536), - [sym_num_lit] = STATE(2536), - [sym_kwd_lit] = STATE(2536), - [sym_str_lit] = STATE(2536), - [sym_char_lit] = STATE(2536), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2536), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2536), - [sym_set_lit] = STATE(2536), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2536), - [sym_splicing_read_cond_lit] = STATE(2536), - [sym_var_quoting_lit] = STATE(2536), - [sym_quoting_lit] = STATE(2536), - [sym_syn_quoting_lit] = STATE(2536), - [sym_unquote_splicing_lit] = STATE(2536), - [sym_unquoting_lit] = STATE(2536), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2536), - [sym_package_lit] = STATE(2536), - [sym_include_reader_macro] = STATE(2536), - [sym_complex_num_lit] = STATE(2536), + [sym__form] = STATE(2104), + [sym_num_lit] = STATE(2104), + [sym_kwd_lit] = STATE(2104), + [sym_str_lit] = STATE(2104), + [sym_char_lit] = STATE(2104), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2104), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2104), + [sym_set_lit] = STATE(2104), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2104), + [sym_splicing_read_cond_lit] = STATE(2104), + [sym_var_quoting_lit] = STATE(2104), + [sym_quoting_lit] = STATE(2104), + [sym_syn_quoting_lit] = STATE(2104), + [sym_unquote_splicing_lit] = STATE(2104), + [sym_unquoting_lit] = STATE(2104), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2104), + [sym_package_lit] = STATE(2104), + [sym_include_reader_macro] = STATE(2104), + [sym_complex_num_lit] = STATE(2104), [aux_sym_dis_expr_repeat1] = STATE(990), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(1280), - [sym_comment] = ACTIONS(1280), - [anon_sym_POUND_] = ACTIONS(1284), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(1288), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(1290), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(1288), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1294), - [anon_sym_POUND_CARET] = ACTIONS(1298), - [anon_sym_LPAREN] = ACTIONS(1302), - [anon_sym_RPAREN] = ACTIONS(1306), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(853), + [sym_comment] = ACTIONS(853), + [anon_sym_POUND_] = ACTIONS(857), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(1306), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(1308), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(1306), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(867), + [anon_sym_POUND_CARET] = ACTIONS(871), + [anon_sym_LPAREN] = ACTIONS(875), + [anon_sym_RPAREN] = ACTIONS(879), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(1288), - [anon_sym_cl] = ACTIONS(1309), - [anon_sym_EQ] = ACTIONS(1313), - [aux_sym_accumulation_verb_token1] = ACTIONS(1315), - [anon_sym_for] = ACTIONS(1315), - [anon_sym_and] = ACTIONS(1315), - [anon_sym_as] = ACTIONS(1315), - [anon_sym_with] = ACTIONS(1315), - [anon_sym_do] = ACTIONS(1315), - [anon_sym_while] = ACTIONS(1315), - [anon_sym_until] = ACTIONS(1315), - [anon_sym_repeat] = ACTIONS(1315), - [anon_sym_when] = ACTIONS(1315), - [anon_sym_if] = ACTIONS(1315), - [anon_sym_unless] = ACTIONS(1315), - [anon_sym_always] = ACTIONS(1315), - [anon_sym_thereis] = ACTIONS(1315), - [anon_sym_never] = ACTIONS(1315), - [anon_sym_else] = ACTIONS(1315), - [anon_sym_finally] = ACTIONS(1315), - [anon_sym_return] = ACTIONS(1315), - [anon_sym_initially] = ACTIONS(1315), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), + [sym_fancy_literal] = ACTIONS(1306), + [anon_sym_cl] = ACTIONS(1312), + [anon_sym_EQ] = ACTIONS(1316), + [aux_sym_accumulation_verb_token1] = ACTIONS(888), + [anon_sym_for] = ACTIONS(888), + [anon_sym_and] = ACTIONS(888), + [anon_sym_as] = ACTIONS(888), + [anon_sym_with] = ACTIONS(888), + [anon_sym_do] = ACTIONS(888), + [anon_sym_while] = ACTIONS(888), + [anon_sym_until] = ACTIONS(888), + [anon_sym_repeat] = ACTIONS(888), + [anon_sym_when] = ACTIONS(888), + [anon_sym_if] = ACTIONS(888), + [anon_sym_unless] = ACTIONS(888), + [anon_sym_always] = ACTIONS(888), + [anon_sym_thereis] = ACTIONS(888), + [anon_sym_never] = ACTIONS(888), + [anon_sym_else] = ACTIONS(888), + [anon_sym_finally] = ACTIONS(888), + [anon_sym_return] = ACTIONS(888), + [anon_sym_initially] = ACTIONS(888), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), [sym_self_referential_reader_macro] = ACTIONS(1318), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [42] = { - [sym__gap] = STATE(204), - [sym_dis_expr] = STATE(204), - [sym__form] = STATE(2225), - [sym_num_lit] = STATE(2225), - [sym_kwd_lit] = STATE(2225), - [sym_str_lit] = STATE(2225), - [sym_char_lit] = STATE(2225), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2225), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2225), - [sym_set_lit] = STATE(2225), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2225), - [sym_splicing_read_cond_lit] = STATE(2225), - [sym_var_quoting_lit] = STATE(2225), - [sym_quoting_lit] = STATE(2225), - [sym_syn_quoting_lit] = STATE(2225), - [sym_unquote_splicing_lit] = STATE(2225), - [sym_unquoting_lit] = STATE(2225), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2225), - [sym_package_lit] = STATE(2225), - [sym_include_reader_macro] = STATE(2225), - [sym_complex_num_lit] = STATE(2225), - [aux_sym_dis_expr_repeat1] = STATE(204), - [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2444), + [sym_num_lit] = STATE(2444), + [sym_kwd_lit] = STATE(2444), + [sym_str_lit] = STATE(2444), + [sym_char_lit] = STATE(2444), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2444), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2444), + [sym_set_lit] = STATE(2444), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2444), + [sym_splicing_read_cond_lit] = STATE(2444), + [sym_var_quoting_lit] = STATE(2444), + [sym_quoting_lit] = STATE(2444), + [sym_syn_quoting_lit] = STATE(2444), + [sym_unquote_splicing_lit] = STATE(2444), + [sym_unquoting_lit] = STATE(2444), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2444), + [sym_package_lit] = STATE(2444), + [sym_include_reader_macro] = STATE(2444), + [sym_complex_num_lit] = STATE(2444), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), [sym__ws] = ACTIONS(1320), [sym_comment] = ACTIONS(1320), [anon_sym_POUND_] = ACTIONS(1323), - [anon_sym_POUND] = ACTIONS(67), + [anon_sym_POUND] = ACTIONS(174), [anon_sym_DOT] = ACTIONS(1326), - [aux_sym_num_lit_token1] = ACTIONS(71), + [aux_sym_num_lit_token1] = ACTIONS(178), [anon_sym_COLON] = ACTIONS(1328), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), [sym_nil_lit] = ACTIONS(1326), - [aux_sym_sym_lit_token1] = ACTIONS(81), + [aux_sym_sym_lit_token1] = ACTIONS(188), [anon_sym_CARET] = ACTIONS(1331), [anon_sym_POUND_CARET] = ACTIONS(1334), [anon_sym_LPAREN] = ACTIONS(1337), [anon_sym_RPAREN] = ACTIONS(1340), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), [sym_fancy_literal] = ACTIONS(1326), [anon_sym_cl] = ACTIONS(1342), @@ -18339,70 +17911,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_finally] = ACTIONS(1345), [anon_sym_return] = ACTIONS(1345), [anon_sym_initially] = ACTIONS(1345), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), [sym_self_referential_reader_macro] = ACTIONS(1347), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [43] = { - [sym__gap] = STATE(61), - [sym_dis_expr] = STATE(61), - [sym__form] = STATE(2311), - [sym_num_lit] = STATE(2311), - [sym_kwd_lit] = STATE(2311), - [sym_str_lit] = STATE(2311), - [sym_char_lit] = STATE(2311), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2311), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2311), - [sym_set_lit] = STATE(2311), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2311), - [sym_splicing_read_cond_lit] = STATE(2311), - [sym_var_quoting_lit] = STATE(2311), - [sym_quoting_lit] = STATE(2311), - [sym_syn_quoting_lit] = STATE(2311), - [sym_unquote_splicing_lit] = STATE(2311), - [sym_unquoting_lit] = STATE(2311), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2311), - [sym_package_lit] = STATE(2311), - [sym_include_reader_macro] = STATE(2311), - [sym_complex_num_lit] = STATE(2311), - [aux_sym_dis_expr_repeat1] = STATE(61), - [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2489), + [sym_num_lit] = STATE(2489), + [sym_kwd_lit] = STATE(2489), + [sym_str_lit] = STATE(2489), + [sym_char_lit] = STATE(2489), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2489), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2489), + [sym_set_lit] = STATE(2489), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2489), + [sym_splicing_read_cond_lit] = STATE(2489), + [sym_var_quoting_lit] = STATE(2489), + [sym_quoting_lit] = STATE(2489), + [sym_syn_quoting_lit] = STATE(2489), + [sym_unquote_splicing_lit] = STATE(2489), + [sym_unquoting_lit] = STATE(2489), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2489), + [sym_package_lit] = STATE(2489), + [sym_include_reader_macro] = STATE(2489), + [sym_complex_num_lit] = STATE(2489), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), [sym__ws] = ACTIONS(1349), [sym_comment] = ACTIONS(1349), [anon_sym_POUND_] = ACTIONS(1352), - [anon_sym_POUND] = ACTIONS(67), + [anon_sym_POUND] = ACTIONS(174), [anon_sym_DOT] = ACTIONS(1355), - [aux_sym_num_lit_token1] = ACTIONS(71), + [aux_sym_num_lit_token1] = ACTIONS(178), [anon_sym_COLON] = ACTIONS(1357), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), [sym_nil_lit] = ACTIONS(1355), - [aux_sym_sym_lit_token1] = ACTIONS(81), + [aux_sym_sym_lit_token1] = ACTIONS(188), [anon_sym_CARET] = ACTIONS(1360), [anon_sym_POUND_CARET] = ACTIONS(1363), [anon_sym_LPAREN] = ACTIONS(1366), [anon_sym_RPAREN] = ACTIONS(1369), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), [sym_fancy_literal] = ACTIONS(1355), [anon_sym_cl] = ACTIONS(1371), @@ -18425,70 +17997,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_finally] = ACTIONS(1374), [anon_sym_return] = ACTIONS(1374), [anon_sym_initially] = ACTIONS(1374), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), [sym_self_referential_reader_macro] = ACTIONS(1376), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [44] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2135), - [sym_num_lit] = STATE(2135), - [sym_kwd_lit] = STATE(2135), - [sym_str_lit] = STATE(2135), - [sym_char_lit] = STATE(2135), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2135), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2135), - [sym_set_lit] = STATE(2135), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2135), - [sym_splicing_read_cond_lit] = STATE(2135), - [sym_var_quoting_lit] = STATE(2135), - [sym_quoting_lit] = STATE(2135), - [sym_syn_quoting_lit] = STATE(2135), - [sym_unquote_splicing_lit] = STATE(2135), - [sym_unquoting_lit] = STATE(2135), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2135), - [sym_package_lit] = STATE(2135), - [sym_include_reader_macro] = STATE(2135), - [sym_complex_num_lit] = STATE(2135), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__gap] = STATE(70), + [sym_dis_expr] = STATE(70), + [sym__form] = STATE(2154), + [sym_num_lit] = STATE(2154), + [sym_kwd_lit] = STATE(2154), + [sym_str_lit] = STATE(2154), + [sym_char_lit] = STATE(2154), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2154), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2154), + [sym_set_lit] = STATE(2154), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2154), + [sym_splicing_read_cond_lit] = STATE(2154), + [sym_var_quoting_lit] = STATE(2154), + [sym_quoting_lit] = STATE(2154), + [sym_syn_quoting_lit] = STATE(2154), + [sym_unquote_splicing_lit] = STATE(2154), + [sym_unquoting_lit] = STATE(2154), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2154), + [sym_package_lit] = STATE(2154), + [sym_include_reader_macro] = STATE(2154), + [sym_complex_num_lit] = STATE(2154), + [aux_sym_dis_expr_repeat1] = STATE(70), + [aux_sym_list_lit_repeat1] = STATE(2803), [sym__ws] = ACTIONS(1378), [sym_comment] = ACTIONS(1378), [anon_sym_POUND_] = ACTIONS(1381), - [anon_sym_POUND] = ACTIONS(67), + [anon_sym_POUND] = ACTIONS(174), [anon_sym_DOT] = ACTIONS(1384), - [aux_sym_num_lit_token1] = ACTIONS(71), + [aux_sym_num_lit_token1] = ACTIONS(178), [anon_sym_COLON] = ACTIONS(1386), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), [sym_nil_lit] = ACTIONS(1384), - [aux_sym_sym_lit_token1] = ACTIONS(81), + [aux_sym_sym_lit_token1] = ACTIONS(188), [anon_sym_CARET] = ACTIONS(1389), [anon_sym_POUND_CARET] = ACTIONS(1392), [anon_sym_LPAREN] = ACTIONS(1395), [anon_sym_RPAREN] = ACTIONS(1398), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), [sym_fancy_literal] = ACTIONS(1384), [anon_sym_cl] = ACTIONS(1400), @@ -18511,10007 +18083,9749 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_finally] = ACTIONS(1403), [anon_sym_return] = ACTIONS(1403), [anon_sym_initially] = ACTIONS(1403), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), [sym_self_referential_reader_macro] = ACTIONS(1405), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [45] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2130), - [sym_num_lit] = STATE(2130), - [sym_kwd_lit] = STATE(2130), - [sym_str_lit] = STATE(2130), - [sym_char_lit] = STATE(2130), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2130), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2130), - [sym_set_lit] = STATE(2130), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2130), - [sym_splicing_read_cond_lit] = STATE(2130), - [sym_var_quoting_lit] = STATE(2130), - [sym_quoting_lit] = STATE(2130), - [sym_syn_quoting_lit] = STATE(2130), - [sym_unquote_splicing_lit] = STATE(2130), - [sym_unquoting_lit] = STATE(2130), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2130), - [sym_package_lit] = STATE(2130), - [sym_include_reader_macro] = STATE(2130), - [sym_complex_num_lit] = STATE(2130), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2255), + [sym_num_lit] = STATE(2255), + [sym_kwd_lit] = STATE(2255), + [sym_str_lit] = STATE(2255), + [sym_char_lit] = STATE(2255), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2255), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2255), + [sym_set_lit] = STATE(2255), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2255), + [sym_splicing_read_cond_lit] = STATE(2255), + [sym_var_quoting_lit] = STATE(2255), + [sym_quoting_lit] = STATE(2255), + [sym_syn_quoting_lit] = STATE(2255), + [sym_unquote_splicing_lit] = STATE(2255), + [sym_unquoting_lit] = STATE(2255), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2255), + [sym_package_lit] = STATE(2255), + [sym_include_reader_macro] = STATE(2255), + [sym_complex_num_lit] = STATE(2255), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), [sym__ws] = ACTIONS(1407), [sym_comment] = ACTIONS(1407), - [anon_sym_POUND_] = ACTIONS(1410), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(1413), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(1415), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(1413), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_POUND_CARET] = ACTIONS(1421), - [anon_sym_LPAREN] = ACTIONS(1424), - [anon_sym_RPAREN] = ACTIONS(1427), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [anon_sym_POUND_] = ACTIONS(1381), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(1410), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(1386), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(1410), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(1389), + [anon_sym_POUND_CARET] = ACTIONS(1392), + [anon_sym_LPAREN] = ACTIONS(1395), + [anon_sym_RPAREN] = ACTIONS(1398), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(1413), - [anon_sym_cl] = ACTIONS(1429), - [aux_sym_accumulation_verb_token1] = ACTIONS(1432), - [anon_sym_for] = ACTIONS(1432), - [anon_sym_and] = ACTIONS(1432), - [anon_sym_as] = ACTIONS(1432), - [anon_sym_with] = ACTIONS(1432), - [anon_sym_do] = ACTIONS(1432), - [anon_sym_while] = ACTIONS(1432), - [anon_sym_until] = ACTIONS(1432), - [anon_sym_repeat] = ACTIONS(1432), - [anon_sym_when] = ACTIONS(1432), - [anon_sym_if] = ACTIONS(1432), - [anon_sym_unless] = ACTIONS(1432), - [anon_sym_always] = ACTIONS(1432), - [anon_sym_thereis] = ACTIONS(1432), - [anon_sym_never] = ACTIONS(1432), - [anon_sym_else] = ACTIONS(1432), - [anon_sym_finally] = ACTIONS(1432), - [anon_sym_return] = ACTIONS(1432), - [anon_sym_initially] = ACTIONS(1432), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(1434), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(1410), + [anon_sym_cl] = ACTIONS(1400), + [aux_sym_accumulation_verb_token1] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1403), + [anon_sym_and] = ACTIONS(1403), + [anon_sym_as] = ACTIONS(1403), + [anon_sym_with] = ACTIONS(1403), + [anon_sym_do] = ACTIONS(1403), + [anon_sym_while] = ACTIONS(1403), + [anon_sym_until] = ACTIONS(1403), + [anon_sym_repeat] = ACTIONS(1403), + [anon_sym_when] = ACTIONS(1403), + [anon_sym_if] = ACTIONS(1403), + [anon_sym_unless] = ACTIONS(1403), + [anon_sym_always] = ACTIONS(1403), + [anon_sym_thereis] = ACTIONS(1403), + [anon_sym_never] = ACTIONS(1403), + [anon_sym_else] = ACTIONS(1403), + [anon_sym_finally] = ACTIONS(1403), + [anon_sym_return] = ACTIONS(1403), + [anon_sym_initially] = ACTIONS(1403), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(1412), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [46] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2423), - [sym_num_lit] = STATE(2423), - [sym_kwd_lit] = STATE(2423), - [sym_str_lit] = STATE(2423), - [sym_char_lit] = STATE(2423), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2423), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2423), - [sym_set_lit] = STATE(2423), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2423), - [sym_splicing_read_cond_lit] = STATE(2423), - [sym_var_quoting_lit] = STATE(2423), - [sym_quoting_lit] = STATE(2423), - [sym_syn_quoting_lit] = STATE(2423), - [sym_unquote_splicing_lit] = STATE(2423), - [sym_unquoting_lit] = STATE(2423), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2423), - [sym_package_lit] = STATE(2423), - [sym_include_reader_macro] = STATE(2423), - [sym_complex_num_lit] = STATE(2423), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(1436), - [sym_comment] = ACTIONS(1436), - [anon_sym_POUND_] = ACTIONS(1439), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(1442), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(1444), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(1442), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1447), - [anon_sym_POUND_CARET] = ACTIONS(1450), - [anon_sym_LPAREN] = ACTIONS(1453), - [anon_sym_RPAREN] = ACTIONS(1456), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(73), + [sym_dis_expr] = STATE(73), + [sym__form] = STATE(2047), + [sym_num_lit] = STATE(2047), + [sym_kwd_lit] = STATE(2047), + [sym_str_lit] = STATE(2047), + [sym_char_lit] = STATE(2047), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2047), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2047), + [sym_set_lit] = STATE(2047), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2047), + [sym_splicing_read_cond_lit] = STATE(2047), + [sym_var_quoting_lit] = STATE(2047), + [sym_quoting_lit] = STATE(2047), + [sym_syn_quoting_lit] = STATE(2047), + [sym_unquote_splicing_lit] = STATE(2047), + [sym_unquoting_lit] = STATE(2047), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2047), + [sym_package_lit] = STATE(2047), + [sym_include_reader_macro] = STATE(2047), + [sym_complex_num_lit] = STATE(2047), + [aux_sym_dis_expr_repeat1] = STATE(73), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(1414), + [sym_comment] = ACTIONS(1414), + [anon_sym_POUND_] = ACTIONS(1417), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(1420), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(1422), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(1420), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(1425), + [anon_sym_POUND_CARET] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1431), + [anon_sym_RPAREN] = ACTIONS(1434), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(1442), - [anon_sym_cl] = ACTIONS(1458), - [aux_sym_accumulation_verb_token1] = ACTIONS(1461), - [anon_sym_for] = ACTIONS(1461), - [anon_sym_and] = ACTIONS(1461), - [anon_sym_as] = ACTIONS(1461), - [anon_sym_with] = ACTIONS(1461), - [anon_sym_do] = ACTIONS(1461), - [anon_sym_while] = ACTIONS(1461), - [anon_sym_until] = ACTIONS(1461), - [anon_sym_repeat] = ACTIONS(1461), - [anon_sym_when] = ACTIONS(1461), - [anon_sym_if] = ACTIONS(1461), - [anon_sym_unless] = ACTIONS(1461), - [anon_sym_always] = ACTIONS(1461), - [anon_sym_thereis] = ACTIONS(1461), - [anon_sym_never] = ACTIONS(1461), - [anon_sym_else] = ACTIONS(1461), - [anon_sym_finally] = ACTIONS(1461), - [anon_sym_return] = ACTIONS(1461), - [anon_sym_initially] = ACTIONS(1461), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(1463), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(1420), + [anon_sym_cl] = ACTIONS(1436), + [aux_sym_accumulation_verb_token1] = ACTIONS(1439), + [anon_sym_for] = ACTIONS(1439), + [anon_sym_and] = ACTIONS(1439), + [anon_sym_as] = ACTIONS(1439), + [anon_sym_with] = ACTIONS(1439), + [anon_sym_do] = ACTIONS(1439), + [anon_sym_while] = ACTIONS(1439), + [anon_sym_until] = ACTIONS(1439), + [anon_sym_repeat] = ACTIONS(1439), + [anon_sym_when] = ACTIONS(1439), + [anon_sym_if] = ACTIONS(1439), + [anon_sym_unless] = ACTIONS(1439), + [anon_sym_always] = ACTIONS(1439), + [anon_sym_thereis] = ACTIONS(1439), + [anon_sym_never] = ACTIONS(1439), + [anon_sym_else] = ACTIONS(1439), + [anon_sym_finally] = ACTIONS(1439), + [anon_sym_return] = ACTIONS(1439), + [anon_sym_initially] = ACTIONS(1439), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(1441), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [47] = { - [sym__gap] = STATE(116), - [sym_dis_expr] = STATE(116), - [sym__form] = STATE(2543), - [sym_num_lit] = STATE(2543), - [sym_kwd_lit] = STATE(2543), - [sym_str_lit] = STATE(2543), - [sym_char_lit] = STATE(2543), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2543), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2543), - [sym_set_lit] = STATE(2543), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2543), - [sym_splicing_read_cond_lit] = STATE(2543), - [sym_var_quoting_lit] = STATE(2543), - [sym_quoting_lit] = STATE(2543), - [sym_syn_quoting_lit] = STATE(2543), - [sym_unquote_splicing_lit] = STATE(2543), - [sym_unquoting_lit] = STATE(2543), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2543), - [sym_package_lit] = STATE(2543), - [sym_include_reader_macro] = STATE(2543), - [sym_complex_num_lit] = STATE(2543), - [aux_sym_dis_expr_repeat1] = STATE(116), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(1465), - [sym_comment] = ACTIONS(1465), - [anon_sym_POUND_] = ACTIONS(1468), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(1471), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(1473), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(1471), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1476), - [anon_sym_POUND_CARET] = ACTIONS(1479), - [anon_sym_LPAREN] = ACTIONS(1482), - [anon_sym_RPAREN] = ACTIONS(1485), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(76), + [sym_dis_expr] = STATE(76), + [sym__form] = STATE(2105), + [sym_num_lit] = STATE(2105), + [sym_kwd_lit] = STATE(2105), + [sym_str_lit] = STATE(2105), + [sym_char_lit] = STATE(2105), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2105), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2105), + [sym_set_lit] = STATE(2105), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2105), + [sym_splicing_read_cond_lit] = STATE(2105), + [sym_var_quoting_lit] = STATE(2105), + [sym_quoting_lit] = STATE(2105), + [sym_syn_quoting_lit] = STATE(2105), + [sym_unquote_splicing_lit] = STATE(2105), + [sym_unquoting_lit] = STATE(2105), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2105), + [sym_package_lit] = STATE(2105), + [sym_include_reader_macro] = STATE(2105), + [sym_complex_num_lit] = STATE(2105), + [aux_sym_dis_expr_repeat1] = STATE(76), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(1443), + [sym_comment] = ACTIONS(1443), + [anon_sym_POUND_] = ACTIONS(1381), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(1446), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(1386), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(1446), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(1389), + [anon_sym_POUND_CARET] = ACTIONS(1392), + [anon_sym_LPAREN] = ACTIONS(1395), + [anon_sym_RPAREN] = ACTIONS(1398), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(1471), - [anon_sym_cl] = ACTIONS(1487), - [aux_sym_accumulation_verb_token1] = ACTIONS(1490), - [anon_sym_for] = ACTIONS(1490), - [anon_sym_and] = ACTIONS(1490), - [anon_sym_as] = ACTIONS(1490), - [anon_sym_with] = ACTIONS(1490), - [anon_sym_do] = ACTIONS(1490), - [anon_sym_while] = ACTIONS(1490), - [anon_sym_until] = ACTIONS(1490), - [anon_sym_repeat] = ACTIONS(1490), - [anon_sym_when] = ACTIONS(1490), - [anon_sym_if] = ACTIONS(1490), - [anon_sym_unless] = ACTIONS(1490), - [anon_sym_always] = ACTIONS(1490), - [anon_sym_thereis] = ACTIONS(1490), - [anon_sym_never] = ACTIONS(1490), - [anon_sym_else] = ACTIONS(1490), - [anon_sym_finally] = ACTIONS(1490), - [anon_sym_return] = ACTIONS(1490), - [anon_sym_initially] = ACTIONS(1490), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(1492), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(1446), + [anon_sym_cl] = ACTIONS(1400), + [aux_sym_accumulation_verb_token1] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1403), + [anon_sym_and] = ACTIONS(1403), + [anon_sym_as] = ACTIONS(1403), + [anon_sym_with] = ACTIONS(1403), + [anon_sym_do] = ACTIONS(1403), + [anon_sym_while] = ACTIONS(1403), + [anon_sym_until] = ACTIONS(1403), + [anon_sym_repeat] = ACTIONS(1403), + [anon_sym_when] = ACTIONS(1403), + [anon_sym_if] = ACTIONS(1403), + [anon_sym_unless] = ACTIONS(1403), + [anon_sym_always] = ACTIONS(1403), + [anon_sym_thereis] = ACTIONS(1403), + [anon_sym_never] = ACTIONS(1403), + [anon_sym_else] = ACTIONS(1403), + [anon_sym_finally] = ACTIONS(1403), + [anon_sym_return] = ACTIONS(1403), + [anon_sym_initially] = ACTIONS(1403), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(1448), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [48] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2100), - [sym_num_lit] = STATE(2100), - [sym_kwd_lit] = STATE(2100), - [sym_str_lit] = STATE(2100), - [sym_char_lit] = STATE(2100), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2100), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2100), - [sym_set_lit] = STATE(2100), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2100), - [sym_splicing_read_cond_lit] = STATE(2100), - [sym_var_quoting_lit] = STATE(2100), - [sym_quoting_lit] = STATE(2100), - [sym_syn_quoting_lit] = STATE(2100), - [sym_unquote_splicing_lit] = STATE(2100), - [sym_unquoting_lit] = STATE(2100), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2100), - [sym_package_lit] = STATE(2100), - [sym_include_reader_macro] = STATE(2100), - [sym_complex_num_lit] = STATE(2100), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(1494), - [sym_comment] = ACTIONS(1494), - [anon_sym_POUND_] = ACTIONS(1497), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(1500), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(1502), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(1500), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1505), - [anon_sym_POUND_CARET] = ACTIONS(1508), - [anon_sym_LPAREN] = ACTIONS(1511), - [anon_sym_RPAREN] = ACTIONS(1514), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(276), + [sym_dis_expr] = STATE(276), + [sym__form] = STATE(2735), + [sym_num_lit] = STATE(2735), + [sym_kwd_lit] = STATE(2735), + [sym_str_lit] = STATE(2735), + [sym_char_lit] = STATE(2735), + [sym_sym_lit] = STATE(2766), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2735), + [sym__bare_list_lit] = STATE(1975), + [sym_vec_lit] = STATE(2735), + [sym_set_lit] = STATE(2735), + [sym__bare_set_lit] = STATE(1976), + [sym_read_cond_lit] = STATE(2735), + [sym_splicing_read_cond_lit] = STATE(2735), + [sym_var_quoting_lit] = STATE(2735), + [sym_quoting_lit] = STATE(2735), + [sym_syn_quoting_lit] = STATE(2735), + [sym_unquote_splicing_lit] = STATE(2735), + [sym_unquoting_lit] = STATE(2735), + [sym_defun] = STATE(1975), + [sym_for_clause_word] = STATE(419), + [sym__for_part] = STATE(1555), + [sym_loop_macro] = STATE(1975), + [sym_path_lit] = STATE(2735), + [sym_package_lit] = STATE(2735), + [sym_include_reader_macro] = STATE(2735), + [sym_complex_num_lit] = STATE(2735), + [aux_sym_dis_expr_repeat1] = STATE(276), + [aux_sym_list_lit_repeat1] = STATE(2830), + [aux_sym_for_clause_repeat1] = STATE(1261), + [sym__ws] = ACTIONS(1450), + [sym_comment] = ACTIONS(1450), + [anon_sym_POUND_] = ACTIONS(1452), + [anon_sym_POUND] = ACTIONS(1454), + [anon_sym_DOT] = ACTIONS(1456), + [aux_sym_num_lit_token1] = ACTIONS(1458), + [anon_sym_COLON] = ACTIONS(1460), + [anon_sym_COLON_COLON] = ACTIONS(1462), + [anon_sym_DQUOTE] = ACTIONS(1464), + [sym_nil_lit] = ACTIONS(1456), + [aux_sym_sym_lit_token1] = ACTIONS(1466), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(1468), + [anon_sym_POUND0A] = ACTIONS(1470), + [anon_sym_POUND0a] = ACTIONS(1470), + [anon_sym_POUND_QMARK] = ACTIONS(1472), + [anon_sym_POUND_QMARK_AT] = ACTIONS(1474), + [anon_sym_POUND_SQUOTE] = ACTIONS(1476), + [anon_sym_SQUOTE] = ACTIONS(1478), + [anon_sym_BQUOTE] = ACTIONS(1480), + [anon_sym_COMMA_AT] = ACTIONS(1482), + [anon_sym_COMMA] = ACTIONS(1484), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(1500), - [anon_sym_cl] = ACTIONS(1516), - [aux_sym_accumulation_verb_token1] = ACTIONS(1519), - [anon_sym_for] = ACTIONS(1519), - [anon_sym_and] = ACTIONS(1519), - [anon_sym_as] = ACTIONS(1519), - [anon_sym_with] = ACTIONS(1519), - [anon_sym_do] = ACTIONS(1519), - [anon_sym_while] = ACTIONS(1519), - [anon_sym_until] = ACTIONS(1519), - [anon_sym_repeat] = ACTIONS(1519), - [anon_sym_when] = ACTIONS(1519), - [anon_sym_if] = ACTIONS(1519), - [anon_sym_unless] = ACTIONS(1519), - [anon_sym_always] = ACTIONS(1519), - [anon_sym_thereis] = ACTIONS(1519), - [anon_sym_never] = ACTIONS(1519), - [anon_sym_else] = ACTIONS(1519), - [anon_sym_finally] = ACTIONS(1519), - [anon_sym_return] = ACTIONS(1519), - [anon_sym_initially] = ACTIONS(1519), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(1521), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(1456), + [anon_sym_cl] = ACTIONS(1486), + [anon_sym_in] = ACTIONS(1488), + [anon_sym_across] = ACTIONS(1488), + [anon_sym_being] = ACTIONS(1488), + [anon_sym_using] = ACTIONS(1488), + [aux_sym_for_clause_word_token1] = ACTIONS(1490), + [anon_sym_below] = ACTIONS(1488), + [anon_sym_above] = ACTIONS(1488), + [anon_sym_from] = ACTIONS(1488), + [anon_sym_to] = ACTIONS(1488), + [anon_sym_upto] = ACTIONS(1488), + [anon_sym_upfrom] = ACTIONS(1488), + [anon_sym_downto] = ACTIONS(1488), + [anon_sym_downfrom] = ACTIONS(1488), + [anon_sym_on] = ACTIONS(1488), + [anon_sym_by] = ACTIONS(1488), + [anon_sym_then] = ACTIONS(1488), + [anon_sym_EQ] = ACTIONS(1488), + [anon_sym_POUNDP] = ACTIONS(1492), + [anon_sym_POUNDp] = ACTIONS(1492), + [sym_self_referential_reader_macro] = ACTIONS(1494), + [anon_sym_POUND_PLUS] = ACTIONS(1496), + [anon_sym_POUND_DASH] = ACTIONS(1496), + [anon_sym_POUNDC] = ACTIONS(1498), + [anon_sym_POUNDc] = ACTIONS(1498), }, [49] = { - [sym__gap] = STATE(111), - [sym_dis_expr] = STATE(111), - [sym__form] = STATE(2534), - [sym_num_lit] = STATE(2534), - [sym_kwd_lit] = STATE(2534), - [sym_str_lit] = STATE(2534), - [sym_char_lit] = STATE(2534), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2534), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2534), - [sym_set_lit] = STATE(2534), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2534), - [sym_splicing_read_cond_lit] = STATE(2534), - [sym_var_quoting_lit] = STATE(2534), - [sym_quoting_lit] = STATE(2534), - [sym_syn_quoting_lit] = STATE(2534), - [sym_unquote_splicing_lit] = STATE(2534), - [sym_unquoting_lit] = STATE(2534), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2534), - [sym_package_lit] = STATE(2534), - [sym_include_reader_macro] = STATE(2534), - [sym_complex_num_lit] = STATE(2534), - [aux_sym_dis_expr_repeat1] = STATE(111), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(1523), - [sym_comment] = ACTIONS(1523), - [anon_sym_POUND_] = ACTIONS(1526), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(1529), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(1531), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(1529), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1534), - [anon_sym_POUND_CARET] = ACTIONS(1537), - [anon_sym_LPAREN] = ACTIONS(1540), - [anon_sym_RPAREN] = ACTIONS(1543), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(80), + [sym_dis_expr] = STATE(80), + [sym__form] = STATE(2110), + [sym_num_lit] = STATE(2110), + [sym_kwd_lit] = STATE(2110), + [sym_str_lit] = STATE(2110), + [sym_char_lit] = STATE(2110), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2110), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2110), + [sym_set_lit] = STATE(2110), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2110), + [sym_splicing_read_cond_lit] = STATE(2110), + [sym_var_quoting_lit] = STATE(2110), + [sym_quoting_lit] = STATE(2110), + [sym_syn_quoting_lit] = STATE(2110), + [sym_unquote_splicing_lit] = STATE(2110), + [sym_unquoting_lit] = STATE(2110), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2110), + [sym_package_lit] = STATE(2110), + [sym_include_reader_macro] = STATE(2110), + [sym_complex_num_lit] = STATE(2110), + [aux_sym_dis_expr_repeat1] = STATE(80), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(1500), + [sym_comment] = ACTIONS(1500), + [anon_sym_POUND_] = ACTIONS(1503), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(1506), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(1508), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(1506), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(732), + [anon_sym_POUND_CARET] = ACTIONS(735), + [anon_sym_LPAREN] = ACTIONS(1511), + [anon_sym_RPAREN] = ACTIONS(741), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(1529), - [anon_sym_cl] = ACTIONS(1545), - [aux_sym_accumulation_verb_token1] = ACTIONS(1548), - [anon_sym_for] = ACTIONS(1548), - [anon_sym_and] = ACTIONS(1548), - [anon_sym_as] = ACTIONS(1548), - [anon_sym_with] = ACTIONS(1548), - [anon_sym_do] = ACTIONS(1548), - [anon_sym_while] = ACTIONS(1548), - [anon_sym_until] = ACTIONS(1548), - [anon_sym_repeat] = ACTIONS(1548), - [anon_sym_when] = ACTIONS(1548), - [anon_sym_if] = ACTIONS(1548), - [anon_sym_unless] = ACTIONS(1548), - [anon_sym_always] = ACTIONS(1548), - [anon_sym_thereis] = ACTIONS(1548), - [anon_sym_never] = ACTIONS(1548), - [anon_sym_else] = ACTIONS(1548), - [anon_sym_finally] = ACTIONS(1548), - [anon_sym_return] = ACTIONS(1548), - [anon_sym_initially] = ACTIONS(1548), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(1550), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(1506), + [anon_sym_cl] = ACTIONS(1514), + [aux_sym_accumulation_verb_token1] = ACTIONS(748), + [anon_sym_for] = ACTIONS(748), + [anon_sym_and] = ACTIONS(748), + [anon_sym_as] = ACTIONS(748), + [anon_sym_with] = ACTIONS(748), + [anon_sym_do] = ACTIONS(748), + [anon_sym_while] = ACTIONS(748), + [anon_sym_until] = ACTIONS(748), + [anon_sym_repeat] = ACTIONS(748), + [anon_sym_when] = ACTIONS(748), + [anon_sym_if] = ACTIONS(748), + [anon_sym_unless] = ACTIONS(748), + [anon_sym_always] = ACTIONS(748), + [anon_sym_thereis] = ACTIONS(748), + [anon_sym_never] = ACTIONS(748), + [anon_sym_else] = ACTIONS(748), + [anon_sym_finally] = ACTIONS(748), + [anon_sym_return] = ACTIONS(748), + [anon_sym_initially] = ACTIONS(748), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(1517), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [50] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2524), - [sym_num_lit] = STATE(2524), - [sym_kwd_lit] = STATE(2524), - [sym_str_lit] = STATE(2524), - [sym_char_lit] = STATE(2524), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2524), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2524), - [sym_set_lit] = STATE(2524), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2524), - [sym_splicing_read_cond_lit] = STATE(2524), - [sym_var_quoting_lit] = STATE(2524), - [sym_quoting_lit] = STATE(2524), - [sym_syn_quoting_lit] = STATE(2524), - [sym_unquote_splicing_lit] = STATE(2524), - [sym_unquoting_lit] = STATE(2524), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2524), - [sym_package_lit] = STATE(2524), - [sym_include_reader_macro] = STATE(2524), - [sym_complex_num_lit] = STATE(2524), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(1552), - [sym_comment] = ACTIONS(1552), - [anon_sym_POUND_] = ACTIONS(1468), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(1555), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(1473), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(1555), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1476), - [anon_sym_POUND_CARET] = ACTIONS(1479), - [anon_sym_LPAREN] = ACTIONS(1482), - [anon_sym_RPAREN] = ACTIONS(1485), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(271), + [sym_dis_expr] = STATE(271), + [sym__form] = STATE(2683), + [sym_num_lit] = STATE(2683), + [sym_kwd_lit] = STATE(2683), + [sym_str_lit] = STATE(2683), + [sym_char_lit] = STATE(2683), + [sym_sym_lit] = STATE(2766), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2683), + [sym__bare_list_lit] = STATE(1975), + [sym_vec_lit] = STATE(2683), + [sym_set_lit] = STATE(2683), + [sym__bare_set_lit] = STATE(1976), + [sym_read_cond_lit] = STATE(2683), + [sym_splicing_read_cond_lit] = STATE(2683), + [sym_var_quoting_lit] = STATE(2683), + [sym_quoting_lit] = STATE(2683), + [sym_syn_quoting_lit] = STATE(2683), + [sym_unquote_splicing_lit] = STATE(2683), + [sym_unquoting_lit] = STATE(2683), + [sym_defun] = STATE(1975), + [sym_for_clause_word] = STATE(419), + [sym__for_part] = STATE(1555), + [sym_loop_macro] = STATE(1975), + [sym_path_lit] = STATE(2683), + [sym_package_lit] = STATE(2683), + [sym_include_reader_macro] = STATE(2683), + [sym_complex_num_lit] = STATE(2683), + [aux_sym_dis_expr_repeat1] = STATE(271), + [aux_sym_list_lit_repeat1] = STATE(2830), + [aux_sym_for_clause_repeat1] = STATE(1255), + [sym__ws] = ACTIONS(1519), + [sym_comment] = ACTIONS(1519), + [anon_sym_POUND_] = ACTIONS(1452), + [anon_sym_POUND] = ACTIONS(1454), + [anon_sym_DOT] = ACTIONS(1521), + [aux_sym_num_lit_token1] = ACTIONS(1458), + [anon_sym_COLON] = ACTIONS(1460), + [anon_sym_COLON_COLON] = ACTIONS(1462), + [anon_sym_DQUOTE] = ACTIONS(1464), + [sym_nil_lit] = ACTIONS(1521), + [aux_sym_sym_lit_token1] = ACTIONS(1466), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(1468), + [anon_sym_POUND0A] = ACTIONS(1470), + [anon_sym_POUND0a] = ACTIONS(1470), + [anon_sym_POUND_QMARK] = ACTIONS(1472), + [anon_sym_POUND_QMARK_AT] = ACTIONS(1474), + [anon_sym_POUND_SQUOTE] = ACTIONS(1476), + [anon_sym_SQUOTE] = ACTIONS(1478), + [anon_sym_BQUOTE] = ACTIONS(1480), + [anon_sym_COMMA_AT] = ACTIONS(1482), + [anon_sym_COMMA] = ACTIONS(1484), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(1555), - [anon_sym_cl] = ACTIONS(1487), - [aux_sym_accumulation_verb_token1] = ACTIONS(1490), - [anon_sym_for] = ACTIONS(1490), - [anon_sym_and] = ACTIONS(1490), - [anon_sym_as] = ACTIONS(1490), - [anon_sym_with] = ACTIONS(1490), - [anon_sym_do] = ACTIONS(1490), - [anon_sym_while] = ACTIONS(1490), - [anon_sym_until] = ACTIONS(1490), - [anon_sym_repeat] = ACTIONS(1490), - [anon_sym_when] = ACTIONS(1490), - [anon_sym_if] = ACTIONS(1490), - [anon_sym_unless] = ACTIONS(1490), - [anon_sym_always] = ACTIONS(1490), - [anon_sym_thereis] = ACTIONS(1490), - [anon_sym_never] = ACTIONS(1490), - [anon_sym_else] = ACTIONS(1490), - [anon_sym_finally] = ACTIONS(1490), - [anon_sym_return] = ACTIONS(1490), - [anon_sym_initially] = ACTIONS(1490), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(1557), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(1521), + [anon_sym_cl] = ACTIONS(1486), + [anon_sym_in] = ACTIONS(1488), + [anon_sym_across] = ACTIONS(1488), + [anon_sym_being] = ACTIONS(1488), + [anon_sym_using] = ACTIONS(1488), + [aux_sym_for_clause_word_token1] = ACTIONS(1490), + [anon_sym_below] = ACTIONS(1488), + [anon_sym_above] = ACTIONS(1488), + [anon_sym_from] = ACTIONS(1488), + [anon_sym_to] = ACTIONS(1488), + [anon_sym_upto] = ACTIONS(1488), + [anon_sym_upfrom] = ACTIONS(1488), + [anon_sym_downto] = ACTIONS(1488), + [anon_sym_downfrom] = ACTIONS(1488), + [anon_sym_on] = ACTIONS(1488), + [anon_sym_by] = ACTIONS(1488), + [anon_sym_then] = ACTIONS(1488), + [anon_sym_EQ] = ACTIONS(1488), + [anon_sym_POUNDP] = ACTIONS(1492), + [anon_sym_POUNDp] = ACTIONS(1492), + [sym_self_referential_reader_macro] = ACTIONS(1523), + [anon_sym_POUND_PLUS] = ACTIONS(1496), + [anon_sym_POUND_DASH] = ACTIONS(1496), + [anon_sym_POUNDC] = ACTIONS(1498), + [anon_sym_POUNDc] = ACTIONS(1498), }, [51] = { - [sym__gap] = STATE(108), - [sym_dis_expr] = STATE(108), - [sym__form] = STATE(2520), - [sym_num_lit] = STATE(2520), - [sym_kwd_lit] = STATE(2520), - [sym_str_lit] = STATE(2520), - [sym_char_lit] = STATE(2520), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2520), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2520), - [sym_set_lit] = STATE(2520), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2520), - [sym_splicing_read_cond_lit] = STATE(2520), - [sym_var_quoting_lit] = STATE(2520), - [sym_quoting_lit] = STATE(2520), - [sym_syn_quoting_lit] = STATE(2520), - [sym_unquote_splicing_lit] = STATE(2520), - [sym_unquoting_lit] = STATE(2520), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2520), - [sym_package_lit] = STATE(2520), - [sym_include_reader_macro] = STATE(2520), - [sym_complex_num_lit] = STATE(2520), - [aux_sym_dis_expr_repeat1] = STATE(108), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(1559), - [sym_comment] = ACTIONS(1559), - [anon_sym_POUND_] = ACTIONS(1468), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(1562), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(1473), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(1562), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1476), - [anon_sym_POUND_CARET] = ACTIONS(1479), - [anon_sym_LPAREN] = ACTIONS(1482), - [anon_sym_RPAREN] = ACTIONS(1485), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(274), + [sym_dis_expr] = STATE(274), + [sym__form] = STATE(2693), + [sym_num_lit] = STATE(2693), + [sym_kwd_lit] = STATE(2693), + [sym_str_lit] = STATE(2693), + [sym_char_lit] = STATE(2693), + [sym_sym_lit] = STATE(2766), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2693), + [sym__bare_list_lit] = STATE(1975), + [sym_vec_lit] = STATE(2693), + [sym_set_lit] = STATE(2693), + [sym__bare_set_lit] = STATE(1976), + [sym_read_cond_lit] = STATE(2693), + [sym_splicing_read_cond_lit] = STATE(2693), + [sym_var_quoting_lit] = STATE(2693), + [sym_quoting_lit] = STATE(2693), + [sym_syn_quoting_lit] = STATE(2693), + [sym_unquote_splicing_lit] = STATE(2693), + [sym_unquoting_lit] = STATE(2693), + [sym_defun] = STATE(1975), + [sym_for_clause_word] = STATE(419), + [sym__for_part] = STATE(1555), + [sym_loop_macro] = STATE(1975), + [sym_path_lit] = STATE(2693), + [sym_package_lit] = STATE(2693), + [sym_include_reader_macro] = STATE(2693), + [sym_complex_num_lit] = STATE(2693), + [aux_sym_dis_expr_repeat1] = STATE(274), + [aux_sym_list_lit_repeat1] = STATE(2830), + [aux_sym_for_clause_repeat1] = STATE(1275), + [sym__ws] = ACTIONS(1525), + [sym_comment] = ACTIONS(1525), + [anon_sym_POUND_] = ACTIONS(1452), + [anon_sym_POUND] = ACTIONS(1454), + [anon_sym_DOT] = ACTIONS(1527), + [aux_sym_num_lit_token1] = ACTIONS(1458), + [anon_sym_COLON] = ACTIONS(1460), + [anon_sym_COLON_COLON] = ACTIONS(1462), + [anon_sym_DQUOTE] = ACTIONS(1464), + [sym_nil_lit] = ACTIONS(1527), + [aux_sym_sym_lit_token1] = ACTIONS(1466), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(1468), + [anon_sym_POUND0A] = ACTIONS(1470), + [anon_sym_POUND0a] = ACTIONS(1470), + [anon_sym_POUND_QMARK] = ACTIONS(1472), + [anon_sym_POUND_QMARK_AT] = ACTIONS(1474), + [anon_sym_POUND_SQUOTE] = ACTIONS(1476), + [anon_sym_SQUOTE] = ACTIONS(1478), + [anon_sym_BQUOTE] = ACTIONS(1480), + [anon_sym_COMMA_AT] = ACTIONS(1482), + [anon_sym_COMMA] = ACTIONS(1484), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(1562), - [anon_sym_cl] = ACTIONS(1487), - [aux_sym_accumulation_verb_token1] = ACTIONS(1490), - [anon_sym_for] = ACTIONS(1490), - [anon_sym_and] = ACTIONS(1490), - [anon_sym_as] = ACTIONS(1490), - [anon_sym_with] = ACTIONS(1490), - [anon_sym_do] = ACTIONS(1490), - [anon_sym_while] = ACTIONS(1490), - [anon_sym_until] = ACTIONS(1490), - [anon_sym_repeat] = ACTIONS(1490), - [anon_sym_when] = ACTIONS(1490), - [anon_sym_if] = ACTIONS(1490), - [anon_sym_unless] = ACTIONS(1490), - [anon_sym_always] = ACTIONS(1490), - [anon_sym_thereis] = ACTIONS(1490), - [anon_sym_never] = ACTIONS(1490), - [anon_sym_else] = ACTIONS(1490), - [anon_sym_finally] = ACTIONS(1490), - [anon_sym_return] = ACTIONS(1490), - [anon_sym_initially] = ACTIONS(1490), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(1564), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(1527), + [anon_sym_cl] = ACTIONS(1486), + [anon_sym_in] = ACTIONS(1488), + [anon_sym_across] = ACTIONS(1488), + [anon_sym_being] = ACTIONS(1488), + [anon_sym_using] = ACTIONS(1488), + [aux_sym_for_clause_word_token1] = ACTIONS(1490), + [anon_sym_below] = ACTIONS(1488), + [anon_sym_above] = ACTIONS(1488), + [anon_sym_from] = ACTIONS(1488), + [anon_sym_to] = ACTIONS(1488), + [anon_sym_upto] = ACTIONS(1488), + [anon_sym_upfrom] = ACTIONS(1488), + [anon_sym_downto] = ACTIONS(1488), + [anon_sym_downfrom] = ACTIONS(1488), + [anon_sym_on] = ACTIONS(1488), + [anon_sym_by] = ACTIONS(1488), + [anon_sym_then] = ACTIONS(1488), + [anon_sym_EQ] = ACTIONS(1488), + [anon_sym_POUNDP] = ACTIONS(1492), + [anon_sym_POUNDp] = ACTIONS(1492), + [sym_self_referential_reader_macro] = ACTIONS(1529), + [anon_sym_POUND_PLUS] = ACTIONS(1496), + [anon_sym_POUND_DASH] = ACTIONS(1496), + [anon_sym_POUNDC] = ACTIONS(1498), + [anon_sym_POUNDc] = ACTIONS(1498), }, [52] = { - [sym__gap] = STATE(92), - [sym_dis_expr] = STATE(92), - [sym__form] = STATE(2419), - [sym_num_lit] = STATE(2419), - [sym_kwd_lit] = STATE(2419), - [sym_str_lit] = STATE(2419), - [sym_char_lit] = STATE(2419), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2419), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2419), - [sym_set_lit] = STATE(2419), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2419), - [sym_splicing_read_cond_lit] = STATE(2419), - [sym_var_quoting_lit] = STATE(2419), - [sym_quoting_lit] = STATE(2419), - [sym_syn_quoting_lit] = STATE(2419), - [sym_unquote_splicing_lit] = STATE(2419), - [sym_unquoting_lit] = STATE(2419), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2419), - [sym_package_lit] = STATE(2419), - [sym_include_reader_macro] = STATE(2419), - [sym_complex_num_lit] = STATE(2419), - [aux_sym_dis_expr_repeat1] = STATE(92), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(1566), - [sym_comment] = ACTIONS(1566), - [anon_sym_POUND_] = ACTIONS(1439), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(1569), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(1444), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(1569), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1447), - [anon_sym_POUND_CARET] = ACTIONS(1450), - [anon_sym_LPAREN] = ACTIONS(1453), - [anon_sym_RPAREN] = ACTIONS(1456), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(86), + [sym_dis_expr] = STATE(86), + [sym__form] = STATE(2126), + [sym_num_lit] = STATE(2126), + [sym_kwd_lit] = STATE(2126), + [sym_str_lit] = STATE(2126), + [sym_char_lit] = STATE(2126), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2126), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2126), + [sym_set_lit] = STATE(2126), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2126), + [sym_splicing_read_cond_lit] = STATE(2126), + [sym_var_quoting_lit] = STATE(2126), + [sym_quoting_lit] = STATE(2126), + [sym_syn_quoting_lit] = STATE(2126), + [sym_unquote_splicing_lit] = STATE(2126), + [sym_unquoting_lit] = STATE(2126), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2126), + [sym_package_lit] = STATE(2126), + [sym_include_reader_macro] = STATE(2126), + [sym_complex_num_lit] = STATE(2126), + [aux_sym_dis_expr_repeat1] = STATE(86), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(1531), + [sym_comment] = ACTIONS(1531), + [anon_sym_POUND_] = ACTIONS(1503), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(1534), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(1508), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(1534), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(732), + [anon_sym_POUND_CARET] = ACTIONS(735), + [anon_sym_LPAREN] = ACTIONS(1511), + [anon_sym_RPAREN] = ACTIONS(741), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(1569), - [anon_sym_cl] = ACTIONS(1458), - [aux_sym_accumulation_verb_token1] = ACTIONS(1461), - [anon_sym_for] = ACTIONS(1461), - [anon_sym_and] = ACTIONS(1461), - [anon_sym_as] = ACTIONS(1461), - [anon_sym_with] = ACTIONS(1461), - [anon_sym_do] = ACTIONS(1461), - [anon_sym_while] = ACTIONS(1461), - [anon_sym_until] = ACTIONS(1461), - [anon_sym_repeat] = ACTIONS(1461), - [anon_sym_when] = ACTIONS(1461), - [anon_sym_if] = ACTIONS(1461), - [anon_sym_unless] = ACTIONS(1461), - [anon_sym_always] = ACTIONS(1461), - [anon_sym_thereis] = ACTIONS(1461), - [anon_sym_never] = ACTIONS(1461), - [anon_sym_else] = ACTIONS(1461), - [anon_sym_finally] = ACTIONS(1461), - [anon_sym_return] = ACTIONS(1461), - [anon_sym_initially] = ACTIONS(1461), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(1571), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(1534), + [anon_sym_cl] = ACTIONS(1514), + [aux_sym_accumulation_verb_token1] = ACTIONS(748), + [anon_sym_for] = ACTIONS(748), + [anon_sym_and] = ACTIONS(748), + [anon_sym_as] = ACTIONS(748), + [anon_sym_with] = ACTIONS(748), + [anon_sym_do] = ACTIONS(748), + [anon_sym_while] = ACTIONS(748), + [anon_sym_until] = ACTIONS(748), + [anon_sym_repeat] = ACTIONS(748), + [anon_sym_when] = ACTIONS(748), + [anon_sym_if] = ACTIONS(748), + [anon_sym_unless] = ACTIONS(748), + [anon_sym_always] = ACTIONS(748), + [anon_sym_thereis] = ACTIONS(748), + [anon_sym_never] = ACTIONS(748), + [anon_sym_else] = ACTIONS(748), + [anon_sym_finally] = ACTIONS(748), + [anon_sym_return] = ACTIONS(748), + [anon_sym_initially] = ACTIONS(748), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(1536), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [53] = { - [sym__gap] = STATE(91), - [sym_dis_expr] = STATE(91), - [sym__form] = STATE(2412), - [sym_num_lit] = STATE(2412), - [sym_kwd_lit] = STATE(2412), - [sym_str_lit] = STATE(2412), - [sym_char_lit] = STATE(2412), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2412), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2412), - [sym_set_lit] = STATE(2412), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2412), - [sym_splicing_read_cond_lit] = STATE(2412), - [sym_var_quoting_lit] = STATE(2412), - [sym_quoting_lit] = STATE(2412), - [sym_syn_quoting_lit] = STATE(2412), - [sym_unquote_splicing_lit] = STATE(2412), - [sym_unquoting_lit] = STATE(2412), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2412), - [sym_package_lit] = STATE(2412), - [sym_include_reader_macro] = STATE(2412), - [sym_complex_num_lit] = STATE(2412), - [aux_sym_dis_expr_repeat1] = STATE(91), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(1573), - [sym_comment] = ACTIONS(1573), - [anon_sym_POUND_] = ACTIONS(1439), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(1576), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(1444), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(1576), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1447), - [anon_sym_POUND_CARET] = ACTIONS(1450), - [anon_sym_LPAREN] = ACTIONS(1453), - [anon_sym_RPAREN] = ACTIONS(1456), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(270), + [sym_dis_expr] = STATE(270), + [sym__form] = STATE(2715), + [sym_num_lit] = STATE(2715), + [sym_kwd_lit] = STATE(2715), + [sym_str_lit] = STATE(2715), + [sym_char_lit] = STATE(2715), + [sym_sym_lit] = STATE(2766), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2715), + [sym__bare_list_lit] = STATE(1975), + [sym_vec_lit] = STATE(2715), + [sym_set_lit] = STATE(2715), + [sym__bare_set_lit] = STATE(1976), + [sym_read_cond_lit] = STATE(2715), + [sym_splicing_read_cond_lit] = STATE(2715), + [sym_var_quoting_lit] = STATE(2715), + [sym_quoting_lit] = STATE(2715), + [sym_syn_quoting_lit] = STATE(2715), + [sym_unquote_splicing_lit] = STATE(2715), + [sym_unquoting_lit] = STATE(2715), + [sym_defun] = STATE(1975), + [sym_for_clause_word] = STATE(419), + [sym__for_part] = STATE(1555), + [sym_loop_macro] = STATE(1975), + [sym_path_lit] = STATE(2715), + [sym_package_lit] = STATE(2715), + [sym_include_reader_macro] = STATE(2715), + [sym_complex_num_lit] = STATE(2715), + [aux_sym_dis_expr_repeat1] = STATE(270), + [aux_sym_list_lit_repeat1] = STATE(2830), + [aux_sym_for_clause_repeat1] = STATE(1278), + [sym__ws] = ACTIONS(1538), + [sym_comment] = ACTIONS(1538), + [anon_sym_POUND_] = ACTIONS(1452), + [anon_sym_POUND] = ACTIONS(1454), + [anon_sym_DOT] = ACTIONS(1540), + [aux_sym_num_lit_token1] = ACTIONS(1458), + [anon_sym_COLON] = ACTIONS(1460), + [anon_sym_COLON_COLON] = ACTIONS(1462), + [anon_sym_DQUOTE] = ACTIONS(1464), + [sym_nil_lit] = ACTIONS(1540), + [aux_sym_sym_lit_token1] = ACTIONS(1466), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(1468), + [anon_sym_POUND0A] = ACTIONS(1470), + [anon_sym_POUND0a] = ACTIONS(1470), + [anon_sym_POUND_QMARK] = ACTIONS(1472), + [anon_sym_POUND_QMARK_AT] = ACTIONS(1474), + [anon_sym_POUND_SQUOTE] = ACTIONS(1476), + [anon_sym_SQUOTE] = ACTIONS(1478), + [anon_sym_BQUOTE] = ACTIONS(1480), + [anon_sym_COMMA_AT] = ACTIONS(1482), + [anon_sym_COMMA] = ACTIONS(1484), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(1576), - [anon_sym_cl] = ACTIONS(1458), - [aux_sym_accumulation_verb_token1] = ACTIONS(1461), - [anon_sym_for] = ACTIONS(1461), - [anon_sym_and] = ACTIONS(1461), - [anon_sym_as] = ACTIONS(1461), - [anon_sym_with] = ACTIONS(1461), - [anon_sym_do] = ACTIONS(1461), - [anon_sym_while] = ACTIONS(1461), - [anon_sym_until] = ACTIONS(1461), - [anon_sym_repeat] = ACTIONS(1461), - [anon_sym_when] = ACTIONS(1461), - [anon_sym_if] = ACTIONS(1461), - [anon_sym_unless] = ACTIONS(1461), - [anon_sym_always] = ACTIONS(1461), - [anon_sym_thereis] = ACTIONS(1461), - [anon_sym_never] = ACTIONS(1461), - [anon_sym_else] = ACTIONS(1461), - [anon_sym_finally] = ACTIONS(1461), - [anon_sym_return] = ACTIONS(1461), - [anon_sym_initially] = ACTIONS(1461), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(1578), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(1540), + [anon_sym_cl] = ACTIONS(1486), + [anon_sym_in] = ACTIONS(1488), + [anon_sym_across] = ACTIONS(1488), + [anon_sym_being] = ACTIONS(1488), + [anon_sym_using] = ACTIONS(1488), + [aux_sym_for_clause_word_token1] = ACTIONS(1490), + [anon_sym_below] = ACTIONS(1488), + [anon_sym_above] = ACTIONS(1488), + [anon_sym_from] = ACTIONS(1488), + [anon_sym_to] = ACTIONS(1488), + [anon_sym_upto] = ACTIONS(1488), + [anon_sym_upfrom] = ACTIONS(1488), + [anon_sym_downto] = ACTIONS(1488), + [anon_sym_downfrom] = ACTIONS(1488), + [anon_sym_on] = ACTIONS(1488), + [anon_sym_by] = ACTIONS(1488), + [anon_sym_then] = ACTIONS(1488), + [anon_sym_EQ] = ACTIONS(1488), + [anon_sym_POUNDP] = ACTIONS(1492), + [anon_sym_POUNDp] = ACTIONS(1492), + [sym_self_referential_reader_macro] = ACTIONS(1542), + [anon_sym_POUND_PLUS] = ACTIONS(1496), + [anon_sym_POUND_DASH] = ACTIONS(1496), + [anon_sym_POUNDC] = ACTIONS(1498), + [anon_sym_POUNDc] = ACTIONS(1498), }, [54] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2090), - [sym_num_lit] = STATE(2090), - [sym_kwd_lit] = STATE(2090), - [sym_str_lit] = STATE(2090), - [sym_char_lit] = STATE(2090), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2090), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2090), - [sym_set_lit] = STATE(2090), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2090), - [sym_splicing_read_cond_lit] = STATE(2090), - [sym_var_quoting_lit] = STATE(2090), - [sym_quoting_lit] = STATE(2090), - [sym_syn_quoting_lit] = STATE(2090), - [sym_unquote_splicing_lit] = STATE(2090), - [sym_unquoting_lit] = STATE(2090), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2090), - [sym_package_lit] = STATE(2090), - [sym_include_reader_macro] = STATE(2090), - [sym_complex_num_lit] = STATE(2090), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(1580), - [sym_comment] = ACTIONS(1580), - [anon_sym_POUND_] = ACTIONS(1352), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(1583), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(1357), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(1583), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1360), - [anon_sym_POUND_CARET] = ACTIONS(1363), - [anon_sym_LPAREN] = ACTIONS(1366), - [anon_sym_RPAREN] = ACTIONS(1369), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(45), + [sym_dis_expr] = STATE(45), + [sym__form] = STATE(2518), + [sym_num_lit] = STATE(2518), + [sym_kwd_lit] = STATE(2518), + [sym_str_lit] = STATE(2518), + [sym_char_lit] = STATE(2518), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2518), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2518), + [sym_set_lit] = STATE(2518), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2518), + [sym_splicing_read_cond_lit] = STATE(2518), + [sym_var_quoting_lit] = STATE(2518), + [sym_quoting_lit] = STATE(2518), + [sym_syn_quoting_lit] = STATE(2518), + [sym_unquote_splicing_lit] = STATE(2518), + [sym_unquoting_lit] = STATE(2518), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2518), + [sym_package_lit] = STATE(2518), + [sym_include_reader_macro] = STATE(2518), + [sym_complex_num_lit] = STATE(2518), + [aux_sym_dis_expr_repeat1] = STATE(45), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(1544), + [sym_comment] = ACTIONS(1544), + [anon_sym_POUND_] = ACTIONS(1547), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(1550), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(1552), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(1550), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(430), + [anon_sym_POUND_CARET] = ACTIONS(433), + [anon_sym_LPAREN] = ACTIONS(1555), + [anon_sym_RPAREN] = ACTIONS(439), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(1583), - [anon_sym_cl] = ACTIONS(1371), - [aux_sym_accumulation_verb_token1] = ACTIONS(1374), - [anon_sym_for] = ACTIONS(1374), - [anon_sym_and] = ACTIONS(1374), - [anon_sym_as] = ACTIONS(1374), - [anon_sym_with] = ACTIONS(1374), - [anon_sym_do] = ACTIONS(1374), - [anon_sym_while] = ACTIONS(1374), - [anon_sym_until] = ACTIONS(1374), - [anon_sym_repeat] = ACTIONS(1374), - [anon_sym_when] = ACTIONS(1374), - [anon_sym_if] = ACTIONS(1374), - [anon_sym_unless] = ACTIONS(1374), - [anon_sym_always] = ACTIONS(1374), - [anon_sym_thereis] = ACTIONS(1374), - [anon_sym_never] = ACTIONS(1374), - [anon_sym_else] = ACTIONS(1374), - [anon_sym_finally] = ACTIONS(1374), - [anon_sym_return] = ACTIONS(1374), - [anon_sym_initially] = ACTIONS(1374), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(1585), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(1550), + [anon_sym_cl] = ACTIONS(1558), + [aux_sym_accumulation_verb_token1] = ACTIONS(446), + [anon_sym_for] = ACTIONS(446), + [anon_sym_and] = ACTIONS(446), + [anon_sym_as] = ACTIONS(446), + [anon_sym_with] = ACTIONS(446), + [anon_sym_do] = ACTIONS(446), + [anon_sym_while] = ACTIONS(446), + [anon_sym_until] = ACTIONS(446), + [anon_sym_repeat] = ACTIONS(446), + [anon_sym_when] = ACTIONS(446), + [anon_sym_if] = ACTIONS(446), + [anon_sym_unless] = ACTIONS(446), + [anon_sym_always] = ACTIONS(446), + [anon_sym_thereis] = ACTIONS(446), + [anon_sym_never] = ACTIONS(446), + [anon_sym_else] = ACTIONS(446), + [anon_sym_finally] = ACTIONS(446), + [anon_sym_return] = ACTIONS(446), + [anon_sym_initially] = ACTIONS(446), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(1561), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [55] = { - [sym__gap] = STATE(181), - [sym_dis_expr] = STATE(181), - [sym__form] = STATE(2089), - [sym_num_lit] = STATE(2089), - [sym_kwd_lit] = STATE(2089), - [sym_str_lit] = STATE(2089), - [sym_char_lit] = STATE(2089), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2089), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2089), - [sym_set_lit] = STATE(2089), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2089), - [sym_splicing_read_cond_lit] = STATE(2089), - [sym_var_quoting_lit] = STATE(2089), - [sym_quoting_lit] = STATE(2089), - [sym_syn_quoting_lit] = STATE(2089), - [sym_unquote_splicing_lit] = STATE(2089), - [sym_unquoting_lit] = STATE(2089), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2089), - [sym_package_lit] = STATE(2089), - [sym_include_reader_macro] = STATE(2089), - [sym_complex_num_lit] = STATE(2089), - [aux_sym_dis_expr_repeat1] = STATE(181), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(1587), - [sym_comment] = ACTIONS(1587), - [anon_sym_POUND_] = ACTIONS(1352), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(1590), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(1357), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(1590), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1360), - [anon_sym_POUND_CARET] = ACTIONS(1363), - [anon_sym_LPAREN] = ACTIONS(1366), - [anon_sym_RPAREN] = ACTIONS(1369), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2161), + [sym_num_lit] = STATE(2161), + [sym_kwd_lit] = STATE(2161), + [sym_str_lit] = STATE(2161), + [sym_char_lit] = STATE(2161), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2161), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2161), + [sym_set_lit] = STATE(2161), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2161), + [sym_splicing_read_cond_lit] = STATE(2161), + [sym_var_quoting_lit] = STATE(2161), + [sym_quoting_lit] = STATE(2161), + [sym_syn_quoting_lit] = STATE(2161), + [sym_unquote_splicing_lit] = STATE(2161), + [sym_unquoting_lit] = STATE(2161), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2161), + [sym_package_lit] = STATE(2161), + [sym_include_reader_macro] = STATE(2161), + [sym_complex_num_lit] = STATE(2161), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(1563), + [sym_comment] = ACTIONS(1563), + [anon_sym_POUND_] = ACTIONS(1566), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(1569), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(1571), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(1569), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(1574), + [anon_sym_POUND_CARET] = ACTIONS(1577), + [anon_sym_LPAREN] = ACTIONS(1580), + [anon_sym_RPAREN] = ACTIONS(1583), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(1590), - [anon_sym_cl] = ACTIONS(1371), - [aux_sym_accumulation_verb_token1] = ACTIONS(1374), - [anon_sym_for] = ACTIONS(1374), - [anon_sym_and] = ACTIONS(1374), - [anon_sym_as] = ACTIONS(1374), - [anon_sym_with] = ACTIONS(1374), - [anon_sym_do] = ACTIONS(1374), - [anon_sym_while] = ACTIONS(1374), - [anon_sym_until] = ACTIONS(1374), - [anon_sym_repeat] = ACTIONS(1374), - [anon_sym_when] = ACTIONS(1374), - [anon_sym_if] = ACTIONS(1374), - [anon_sym_unless] = ACTIONS(1374), - [anon_sym_always] = ACTIONS(1374), - [anon_sym_thereis] = ACTIONS(1374), - [anon_sym_never] = ACTIONS(1374), - [anon_sym_else] = ACTIONS(1374), - [anon_sym_finally] = ACTIONS(1374), - [anon_sym_return] = ACTIONS(1374), - [anon_sym_initially] = ACTIONS(1374), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(1592), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(1569), + [anon_sym_cl] = ACTIONS(1585), + [aux_sym_accumulation_verb_token1] = ACTIONS(1588), + [anon_sym_for] = ACTIONS(1588), + [anon_sym_and] = ACTIONS(1588), + [anon_sym_as] = ACTIONS(1588), + [anon_sym_with] = ACTIONS(1588), + [anon_sym_do] = ACTIONS(1588), + [anon_sym_while] = ACTIONS(1588), + [anon_sym_until] = ACTIONS(1588), + [anon_sym_repeat] = ACTIONS(1588), + [anon_sym_when] = ACTIONS(1588), + [anon_sym_if] = ACTIONS(1588), + [anon_sym_unless] = ACTIONS(1588), + [anon_sym_always] = ACTIONS(1588), + [anon_sym_thereis] = ACTIONS(1588), + [anon_sym_never] = ACTIONS(1588), + [anon_sym_else] = ACTIONS(1588), + [anon_sym_finally] = ACTIONS(1588), + [anon_sym_return] = ACTIONS(1588), + [anon_sym_initially] = ACTIONS(1588), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(1590), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [56] = { - [sym__gap] = STATE(275), - [sym_dis_expr] = STATE(275), - [sym__form] = STATE(2698), - [sym_num_lit] = STATE(2698), - [sym_kwd_lit] = STATE(2698), - [sym_str_lit] = STATE(2698), - [sym_char_lit] = STATE(2698), - [sym_sym_lit] = STATE(2762), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2698), - [sym__bare_list_lit] = STATE(1892), - [sym_vec_lit] = STATE(2698), - [sym_set_lit] = STATE(2698), - [sym__bare_set_lit] = STATE(1893), - [sym_read_cond_lit] = STATE(2698), - [sym_splicing_read_cond_lit] = STATE(2698), - [sym_var_quoting_lit] = STATE(2698), - [sym_quoting_lit] = STATE(2698), - [sym_syn_quoting_lit] = STATE(2698), - [sym_unquote_splicing_lit] = STATE(2698), - [sym_unquoting_lit] = STATE(2698), - [sym_defun] = STATE(1892), - [sym_for_clause_word] = STATE(405), - [sym__for_part] = STATE(1611), - [sym_loop_macro] = STATE(1892), - [sym_path_lit] = STATE(2698), - [sym_package_lit] = STATE(2698), - [sym_include_reader_macro] = STATE(2698), - [sym_complex_num_lit] = STATE(2698), - [aux_sym_dis_expr_repeat1] = STATE(275), - [aux_sym_list_lit_repeat1] = STATE(2840), - [aux_sym_for_clause_repeat1] = STATE(1264), - [sym__ws] = ACTIONS(1594), - [sym_comment] = ACTIONS(1594), - [anon_sym_POUND_] = ACTIONS(1596), - [anon_sym_POUND] = ACTIONS(1598), - [anon_sym_DOT] = ACTIONS(1600), - [aux_sym_num_lit_token1] = ACTIONS(1602), - [anon_sym_COLON] = ACTIONS(1604), - [anon_sym_COLON_COLON] = ACTIONS(1606), - [anon_sym_DQUOTE] = ACTIONS(1608), - [sym_nil_lit] = ACTIONS(1600), - [aux_sym_sym_lit_token1] = ACTIONS(1610), - [anon_sym_CARET] = ACTIONS(25), - [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(1612), - [anon_sym_POUND0A] = ACTIONS(1614), - [anon_sym_POUND0a] = ACTIONS(1614), - [anon_sym_POUND_QMARK] = ACTIONS(1616), - [anon_sym_POUND_QMARK_AT] = ACTIONS(1618), - [anon_sym_POUND_SQUOTE] = ACTIONS(1620), - [anon_sym_SQUOTE] = ACTIONS(1622), - [anon_sym_BQUOTE] = ACTIONS(1624), - [anon_sym_COMMA_AT] = ACTIONS(1626), - [anon_sym_COMMA] = ACTIONS(1628), + [sym__gap] = STATE(92), + [sym_dis_expr] = STATE(92), + [sym__form] = STATE(2166), + [sym_num_lit] = STATE(2166), + [sym_kwd_lit] = STATE(2166), + [sym_str_lit] = STATE(2166), + [sym_char_lit] = STATE(2166), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2166), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2166), + [sym_set_lit] = STATE(2166), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2166), + [sym_splicing_read_cond_lit] = STATE(2166), + [sym_var_quoting_lit] = STATE(2166), + [sym_quoting_lit] = STATE(2166), + [sym_syn_quoting_lit] = STATE(2166), + [sym_unquote_splicing_lit] = STATE(2166), + [sym_unquoting_lit] = STATE(2166), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2166), + [sym_package_lit] = STATE(2166), + [sym_include_reader_macro] = STATE(2166), + [sym_complex_num_lit] = STATE(2166), + [aux_sym_dis_expr_repeat1] = STATE(92), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(1592), + [sym_comment] = ACTIONS(1592), + [anon_sym_POUND_] = ACTIONS(1566), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(1595), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(1571), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(1595), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(1574), + [anon_sym_POUND_CARET] = ACTIONS(1577), + [anon_sym_LPAREN] = ACTIONS(1580), + [anon_sym_RPAREN] = ACTIONS(1583), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(1600), - [anon_sym_cl] = ACTIONS(1630), - [anon_sym_in] = ACTIONS(1632), - [anon_sym_across] = ACTIONS(1632), - [anon_sym_being] = ACTIONS(1632), - [anon_sym_using] = ACTIONS(1632), - [aux_sym_for_clause_word_token1] = ACTIONS(1634), - [anon_sym_below] = ACTIONS(1632), - [anon_sym_above] = ACTIONS(1632), - [anon_sym_from] = ACTIONS(1632), - [anon_sym_to] = ACTIONS(1632), - [anon_sym_upto] = ACTIONS(1632), - [anon_sym_upfrom] = ACTIONS(1632), - [anon_sym_downto] = ACTIONS(1632), - [anon_sym_downfrom] = ACTIONS(1632), - [anon_sym_on] = ACTIONS(1632), - [anon_sym_by] = ACTIONS(1632), - [anon_sym_then] = ACTIONS(1632), - [anon_sym_EQ] = ACTIONS(1632), - [anon_sym_POUNDP] = ACTIONS(1636), - [anon_sym_POUNDp] = ACTIONS(1636), - [sym_self_referential_reader_macro] = ACTIONS(1638), - [anon_sym_POUND_PLUS] = ACTIONS(1640), - [anon_sym_POUND_DASH] = ACTIONS(1640), - [anon_sym_POUNDC] = ACTIONS(1642), - [anon_sym_POUNDc] = ACTIONS(1642), + [sym_fancy_literal] = ACTIONS(1595), + [anon_sym_cl] = ACTIONS(1585), + [aux_sym_accumulation_verb_token1] = ACTIONS(1588), + [anon_sym_for] = ACTIONS(1588), + [anon_sym_and] = ACTIONS(1588), + [anon_sym_as] = ACTIONS(1588), + [anon_sym_with] = ACTIONS(1588), + [anon_sym_do] = ACTIONS(1588), + [anon_sym_while] = ACTIONS(1588), + [anon_sym_until] = ACTIONS(1588), + [anon_sym_repeat] = ACTIONS(1588), + [anon_sym_when] = ACTIONS(1588), + [anon_sym_if] = ACTIONS(1588), + [anon_sym_unless] = ACTIONS(1588), + [anon_sym_always] = ACTIONS(1588), + [anon_sym_thereis] = ACTIONS(1588), + [anon_sym_never] = ACTIONS(1588), + [anon_sym_else] = ACTIONS(1588), + [anon_sym_finally] = ACTIONS(1588), + [anon_sym_return] = ACTIONS(1588), + [anon_sym_initially] = ACTIONS(1588), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(1597), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [57] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2409), - [sym_num_lit] = STATE(2409), - [sym_kwd_lit] = STATE(2409), - [sym_str_lit] = STATE(2409), - [sym_char_lit] = STATE(2409), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2409), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2409), - [sym_set_lit] = STATE(2409), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2409), - [sym_splicing_read_cond_lit] = STATE(2409), - [sym_var_quoting_lit] = STATE(2409), - [sym_quoting_lit] = STATE(2409), - [sym_syn_quoting_lit] = STATE(2409), - [sym_unquote_splicing_lit] = STATE(2409), - [sym_unquoting_lit] = STATE(2409), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2409), - [sym_package_lit] = STATE(2409), - [sym_include_reader_macro] = STATE(2409), - [sym_complex_num_lit] = STATE(2409), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(1436), - [sym_comment] = ACTIONS(1436), - [anon_sym_POUND_] = ACTIONS(1439), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(1644), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(1444), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(1644), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1447), - [anon_sym_POUND_CARET] = ACTIONS(1450), - [anon_sym_LPAREN] = ACTIONS(1453), - [anon_sym_RPAREN] = ACTIONS(1456), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(93), + [sym_dis_expr] = STATE(93), + [sym__form] = STATE(2200), + [sym_num_lit] = STATE(2200), + [sym_kwd_lit] = STATE(2200), + [sym_str_lit] = STATE(2200), + [sym_char_lit] = STATE(2200), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2200), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2200), + [sym_set_lit] = STATE(2200), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2200), + [sym_splicing_read_cond_lit] = STATE(2200), + [sym_var_quoting_lit] = STATE(2200), + [sym_quoting_lit] = STATE(2200), + [sym_syn_quoting_lit] = STATE(2200), + [sym_unquote_splicing_lit] = STATE(2200), + [sym_unquoting_lit] = STATE(2200), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2200), + [sym_package_lit] = STATE(2200), + [sym_include_reader_macro] = STATE(2200), + [sym_complex_num_lit] = STATE(2200), + [aux_sym_dis_expr_repeat1] = STATE(93), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(1599), + [sym_comment] = ACTIONS(1599), + [anon_sym_POUND_] = ACTIONS(1602), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(1605), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(1607), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(1605), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(1610), + [anon_sym_POUND_CARET] = ACTIONS(1613), + [anon_sym_LPAREN] = ACTIONS(1616), + [anon_sym_RPAREN] = ACTIONS(1619), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(1644), - [anon_sym_cl] = ACTIONS(1458), - [aux_sym_accumulation_verb_token1] = ACTIONS(1461), - [anon_sym_for] = ACTIONS(1461), - [anon_sym_and] = ACTIONS(1461), - [anon_sym_as] = ACTIONS(1461), - [anon_sym_with] = ACTIONS(1461), - [anon_sym_do] = ACTIONS(1461), - [anon_sym_while] = ACTIONS(1461), - [anon_sym_until] = ACTIONS(1461), - [anon_sym_repeat] = ACTIONS(1461), - [anon_sym_when] = ACTIONS(1461), - [anon_sym_if] = ACTIONS(1461), - [anon_sym_unless] = ACTIONS(1461), - [anon_sym_always] = ACTIONS(1461), - [anon_sym_thereis] = ACTIONS(1461), - [anon_sym_never] = ACTIONS(1461), - [anon_sym_else] = ACTIONS(1461), - [anon_sym_finally] = ACTIONS(1461), - [anon_sym_return] = ACTIONS(1461), - [anon_sym_initially] = ACTIONS(1461), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(1646), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(1605), + [anon_sym_cl] = ACTIONS(1621), + [aux_sym_accumulation_verb_token1] = ACTIONS(1624), + [anon_sym_for] = ACTIONS(1624), + [anon_sym_and] = ACTIONS(1624), + [anon_sym_as] = ACTIONS(1624), + [anon_sym_with] = ACTIONS(1624), + [anon_sym_do] = ACTIONS(1624), + [anon_sym_while] = ACTIONS(1624), + [anon_sym_until] = ACTIONS(1624), + [anon_sym_repeat] = ACTIONS(1624), + [anon_sym_when] = ACTIONS(1624), + [anon_sym_if] = ACTIONS(1624), + [anon_sym_unless] = ACTIONS(1624), + [anon_sym_always] = ACTIONS(1624), + [anon_sym_thereis] = ACTIONS(1624), + [anon_sym_never] = ACTIONS(1624), + [anon_sym_else] = ACTIONS(1624), + [anon_sym_finally] = ACTIONS(1624), + [anon_sym_return] = ACTIONS(1624), + [anon_sym_initially] = ACTIONS(1624), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(1626), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [58] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2402), - [sym_num_lit] = STATE(2402), - [sym_kwd_lit] = STATE(2402), - [sym_str_lit] = STATE(2402), - [sym_char_lit] = STATE(2402), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2402), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2402), - [sym_set_lit] = STATE(2402), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2402), - [sym_splicing_read_cond_lit] = STATE(2402), - [sym_var_quoting_lit] = STATE(2402), - [sym_quoting_lit] = STATE(2402), - [sym_syn_quoting_lit] = STATE(2402), - [sym_unquote_splicing_lit] = STATE(2402), - [sym_unquoting_lit] = STATE(2402), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2402), - [sym_package_lit] = STATE(2402), - [sym_include_reader_macro] = STATE(2402), - [sym_complex_num_lit] = STATE(2402), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(1648), - [sym_comment] = ACTIONS(1648), - [anon_sym_POUND_] = ACTIONS(1651), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(1654), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(1656), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(1654), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1659), - [anon_sym_POUND_CARET] = ACTIONS(1662), - [anon_sym_LPAREN] = ACTIONS(1665), - [anon_sym_RPAREN] = ACTIONS(1668), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2279), + [sym_num_lit] = STATE(2279), + [sym_kwd_lit] = STATE(2279), + [sym_str_lit] = STATE(2279), + [sym_char_lit] = STATE(2279), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2279), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2279), + [sym_set_lit] = STATE(2279), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2279), + [sym_splicing_read_cond_lit] = STATE(2279), + [sym_var_quoting_lit] = STATE(2279), + [sym_quoting_lit] = STATE(2279), + [sym_syn_quoting_lit] = STATE(2279), + [sym_unquote_splicing_lit] = STATE(2279), + [sym_unquoting_lit] = STATE(2279), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2279), + [sym_package_lit] = STATE(2279), + [sym_include_reader_macro] = STATE(2279), + [sym_complex_num_lit] = STATE(2279), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(1628), + [sym_comment] = ACTIONS(1628), + [anon_sym_POUND_] = ACTIONS(1602), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(1631), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(1607), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(1631), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(1610), + [anon_sym_POUND_CARET] = ACTIONS(1613), + [anon_sym_LPAREN] = ACTIONS(1616), + [anon_sym_RPAREN] = ACTIONS(1619), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(1654), - [anon_sym_cl] = ACTIONS(1670), - [aux_sym_accumulation_verb_token1] = ACTIONS(1673), - [anon_sym_for] = ACTIONS(1673), - [anon_sym_and] = ACTIONS(1673), - [anon_sym_as] = ACTIONS(1673), - [anon_sym_with] = ACTIONS(1673), - [anon_sym_do] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1673), - [anon_sym_until] = ACTIONS(1673), - [anon_sym_repeat] = ACTIONS(1673), - [anon_sym_when] = ACTIONS(1673), - [anon_sym_if] = ACTIONS(1673), - [anon_sym_unless] = ACTIONS(1673), - [anon_sym_always] = ACTIONS(1673), - [anon_sym_thereis] = ACTIONS(1673), - [anon_sym_never] = ACTIONS(1673), - [anon_sym_else] = ACTIONS(1673), - [anon_sym_finally] = ACTIONS(1673), - [anon_sym_return] = ACTIONS(1673), - [anon_sym_initially] = ACTIONS(1673), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(1675), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(1631), + [anon_sym_cl] = ACTIONS(1621), + [aux_sym_accumulation_verb_token1] = ACTIONS(1624), + [anon_sym_for] = ACTIONS(1624), + [anon_sym_and] = ACTIONS(1624), + [anon_sym_as] = ACTIONS(1624), + [anon_sym_with] = ACTIONS(1624), + [anon_sym_do] = ACTIONS(1624), + [anon_sym_while] = ACTIONS(1624), + [anon_sym_until] = ACTIONS(1624), + [anon_sym_repeat] = ACTIONS(1624), + [anon_sym_when] = ACTIONS(1624), + [anon_sym_if] = ACTIONS(1624), + [anon_sym_unless] = ACTIONS(1624), + [anon_sym_always] = ACTIONS(1624), + [anon_sym_thereis] = ACTIONS(1624), + [anon_sym_never] = ACTIONS(1624), + [anon_sym_else] = ACTIONS(1624), + [anon_sym_finally] = ACTIONS(1624), + [anon_sym_return] = ACTIONS(1624), + [anon_sym_initially] = ACTIONS(1624), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(1633), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [59] = { - [sym__gap] = STATE(89), - [sym_dis_expr] = STATE(89), - [sym__form] = STATE(2393), - [sym_num_lit] = STATE(2393), - [sym_kwd_lit] = STATE(2393), - [sym_str_lit] = STATE(2393), - [sym_char_lit] = STATE(2393), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2393), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2393), - [sym_set_lit] = STATE(2393), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2393), - [sym_splicing_read_cond_lit] = STATE(2393), - [sym_var_quoting_lit] = STATE(2393), - [sym_quoting_lit] = STATE(2393), - [sym_syn_quoting_lit] = STATE(2393), - [sym_unquote_splicing_lit] = STATE(2393), - [sym_unquoting_lit] = STATE(2393), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2393), - [sym_package_lit] = STATE(2393), - [sym_include_reader_macro] = STATE(2393), - [sym_complex_num_lit] = STATE(2393), - [aux_sym_dis_expr_repeat1] = STATE(89), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(1677), - [sym_comment] = ACTIONS(1677), - [anon_sym_POUND_] = ACTIONS(1680), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(1683), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(1685), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(1683), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1688), - [anon_sym_POUND_CARET] = ACTIONS(1691), - [anon_sym_LPAREN] = ACTIONS(1694), - [anon_sym_RPAREN] = ACTIONS(1697), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(96), + [sym_dis_expr] = STATE(96), + [sym__form] = STATE(2339), + [sym_num_lit] = STATE(2339), + [sym_kwd_lit] = STATE(2339), + [sym_str_lit] = STATE(2339), + [sym_char_lit] = STATE(2339), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2339), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2339), + [sym_set_lit] = STATE(2339), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2339), + [sym_splicing_read_cond_lit] = STATE(2339), + [sym_var_quoting_lit] = STATE(2339), + [sym_quoting_lit] = STATE(2339), + [sym_syn_quoting_lit] = STATE(2339), + [sym_unquote_splicing_lit] = STATE(2339), + [sym_unquoting_lit] = STATE(2339), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2339), + [sym_package_lit] = STATE(2339), + [sym_include_reader_macro] = STATE(2339), + [sym_complex_num_lit] = STATE(2339), + [aux_sym_dis_expr_repeat1] = STATE(96), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(1635), + [sym_comment] = ACTIONS(1635), + [anon_sym_POUND_] = ACTIONS(1602), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(1638), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(1607), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(1638), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(1610), + [anon_sym_POUND_CARET] = ACTIONS(1613), + [anon_sym_LPAREN] = ACTIONS(1616), + [anon_sym_RPAREN] = ACTIONS(1619), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(1683), - [anon_sym_cl] = ACTIONS(1699), - [aux_sym_accumulation_verb_token1] = ACTIONS(1702), - [anon_sym_for] = ACTIONS(1702), - [anon_sym_and] = ACTIONS(1702), - [anon_sym_as] = ACTIONS(1702), - [anon_sym_with] = ACTIONS(1702), - [anon_sym_do] = ACTIONS(1702), - [anon_sym_while] = ACTIONS(1702), - [anon_sym_until] = ACTIONS(1702), - [anon_sym_repeat] = ACTIONS(1702), - [anon_sym_when] = ACTIONS(1702), - [anon_sym_if] = ACTIONS(1702), - [anon_sym_unless] = ACTIONS(1702), - [anon_sym_always] = ACTIONS(1702), - [anon_sym_thereis] = ACTIONS(1702), - [anon_sym_never] = ACTIONS(1702), - [anon_sym_else] = ACTIONS(1702), - [anon_sym_finally] = ACTIONS(1702), - [anon_sym_return] = ACTIONS(1702), - [anon_sym_initially] = ACTIONS(1702), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(1704), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(1638), + [anon_sym_cl] = ACTIONS(1621), + [aux_sym_accumulation_verb_token1] = ACTIONS(1624), + [anon_sym_for] = ACTIONS(1624), + [anon_sym_and] = ACTIONS(1624), + [anon_sym_as] = ACTIONS(1624), + [anon_sym_with] = ACTIONS(1624), + [anon_sym_do] = ACTIONS(1624), + [anon_sym_while] = ACTIONS(1624), + [anon_sym_until] = ACTIONS(1624), + [anon_sym_repeat] = ACTIONS(1624), + [anon_sym_when] = ACTIONS(1624), + [anon_sym_if] = ACTIONS(1624), + [anon_sym_unless] = ACTIONS(1624), + [anon_sym_always] = ACTIONS(1624), + [anon_sym_thereis] = ACTIONS(1624), + [anon_sym_never] = ACTIONS(1624), + [anon_sym_else] = ACTIONS(1624), + [anon_sym_finally] = ACTIONS(1624), + [anon_sym_return] = ACTIONS(1624), + [anon_sym_initially] = ACTIONS(1624), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(1640), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [60] = { - [sym__gap] = STATE(274), - [sym_dis_expr] = STATE(274), - [sym__form] = STATE(2697), - [sym_num_lit] = STATE(2697), - [sym_kwd_lit] = STATE(2697), - [sym_str_lit] = STATE(2697), - [sym_char_lit] = STATE(2697), - [sym_sym_lit] = STATE(2762), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2697), - [sym__bare_list_lit] = STATE(1892), - [sym_vec_lit] = STATE(2697), - [sym_set_lit] = STATE(2697), - [sym__bare_set_lit] = STATE(1893), - [sym_read_cond_lit] = STATE(2697), - [sym_splicing_read_cond_lit] = STATE(2697), - [sym_var_quoting_lit] = STATE(2697), - [sym_quoting_lit] = STATE(2697), - [sym_syn_quoting_lit] = STATE(2697), - [sym_unquote_splicing_lit] = STATE(2697), - [sym_unquoting_lit] = STATE(2697), - [sym_defun] = STATE(1892), - [sym_for_clause_word] = STATE(405), - [sym__for_part] = STATE(1611), - [sym_loop_macro] = STATE(1892), - [sym_path_lit] = STATE(2697), - [sym_package_lit] = STATE(2697), - [sym_include_reader_macro] = STATE(2697), - [sym_complex_num_lit] = STATE(2697), - [aux_sym_dis_expr_repeat1] = STATE(274), - [aux_sym_list_lit_repeat1] = STATE(2840), - [aux_sym_for_clause_repeat1] = STATE(1265), - [sym__ws] = ACTIONS(1706), - [sym_comment] = ACTIONS(1706), - [anon_sym_POUND_] = ACTIONS(1596), - [anon_sym_POUND] = ACTIONS(1598), - [anon_sym_DOT] = ACTIONS(1708), - [aux_sym_num_lit_token1] = ACTIONS(1602), - [anon_sym_COLON] = ACTIONS(1604), - [anon_sym_COLON_COLON] = ACTIONS(1606), - [anon_sym_DQUOTE] = ACTIONS(1608), - [sym_nil_lit] = ACTIONS(1708), - [aux_sym_sym_lit_token1] = ACTIONS(1610), - [anon_sym_CARET] = ACTIONS(25), - [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(1612), - [anon_sym_POUND0A] = ACTIONS(1614), - [anon_sym_POUND0a] = ACTIONS(1614), - [anon_sym_POUND_QMARK] = ACTIONS(1616), - [anon_sym_POUND_QMARK_AT] = ACTIONS(1618), - [anon_sym_POUND_SQUOTE] = ACTIONS(1620), - [anon_sym_SQUOTE] = ACTIONS(1622), - [anon_sym_BQUOTE] = ACTIONS(1624), - [anon_sym_COMMA_AT] = ACTIONS(1626), - [anon_sym_COMMA] = ACTIONS(1628), + [sym__gap] = STATE(97), + [sym_dis_expr] = STATE(97), + [sym__form] = STATE(2363), + [sym_num_lit] = STATE(2363), + [sym_kwd_lit] = STATE(2363), + [sym_str_lit] = STATE(2363), + [sym_char_lit] = STATE(2363), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2363), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2363), + [sym_set_lit] = STATE(2363), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2363), + [sym_splicing_read_cond_lit] = STATE(2363), + [sym_var_quoting_lit] = STATE(2363), + [sym_quoting_lit] = STATE(2363), + [sym_syn_quoting_lit] = STATE(2363), + [sym_unquote_splicing_lit] = STATE(2363), + [sym_unquoting_lit] = STATE(2363), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2363), + [sym_package_lit] = STATE(2363), + [sym_include_reader_macro] = STATE(2363), + [sym_complex_num_lit] = STATE(2363), + [aux_sym_dis_expr_repeat1] = STATE(97), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(1642), + [sym_comment] = ACTIONS(1642), + [anon_sym_POUND_] = ACTIONS(1566), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(1645), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(1571), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(1645), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(1574), + [anon_sym_POUND_CARET] = ACTIONS(1577), + [anon_sym_LPAREN] = ACTIONS(1580), + [anon_sym_RPAREN] = ACTIONS(1583), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(1708), - [anon_sym_cl] = ACTIONS(1630), - [anon_sym_in] = ACTIONS(1632), - [anon_sym_across] = ACTIONS(1632), - [anon_sym_being] = ACTIONS(1632), - [anon_sym_using] = ACTIONS(1632), - [aux_sym_for_clause_word_token1] = ACTIONS(1634), - [anon_sym_below] = ACTIONS(1632), - [anon_sym_above] = ACTIONS(1632), - [anon_sym_from] = ACTIONS(1632), - [anon_sym_to] = ACTIONS(1632), - [anon_sym_upto] = ACTIONS(1632), - [anon_sym_upfrom] = ACTIONS(1632), - [anon_sym_downto] = ACTIONS(1632), - [anon_sym_downfrom] = ACTIONS(1632), - [anon_sym_on] = ACTIONS(1632), - [anon_sym_by] = ACTIONS(1632), - [anon_sym_then] = ACTIONS(1632), - [anon_sym_EQ] = ACTIONS(1632), - [anon_sym_POUNDP] = ACTIONS(1636), - [anon_sym_POUNDp] = ACTIONS(1636), - [sym_self_referential_reader_macro] = ACTIONS(1710), - [anon_sym_POUND_PLUS] = ACTIONS(1640), - [anon_sym_POUND_DASH] = ACTIONS(1640), - [anon_sym_POUNDC] = ACTIONS(1642), - [anon_sym_POUNDc] = ACTIONS(1642), + [sym_fancy_literal] = ACTIONS(1645), + [anon_sym_cl] = ACTIONS(1585), + [aux_sym_accumulation_verb_token1] = ACTIONS(1588), + [anon_sym_for] = ACTIONS(1588), + [anon_sym_and] = ACTIONS(1588), + [anon_sym_as] = ACTIONS(1588), + [anon_sym_with] = ACTIONS(1588), + [anon_sym_do] = ACTIONS(1588), + [anon_sym_while] = ACTIONS(1588), + [anon_sym_until] = ACTIONS(1588), + [anon_sym_repeat] = ACTIONS(1588), + [anon_sym_when] = ACTIONS(1588), + [anon_sym_if] = ACTIONS(1588), + [anon_sym_unless] = ACTIONS(1588), + [anon_sym_always] = ACTIONS(1588), + [anon_sym_thereis] = ACTIONS(1588), + [anon_sym_never] = ACTIONS(1588), + [anon_sym_else] = ACTIONS(1588), + [anon_sym_finally] = ACTIONS(1588), + [anon_sym_return] = ACTIONS(1588), + [anon_sym_initially] = ACTIONS(1588), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(1647), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [61] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2080), - [sym_num_lit] = STATE(2080), - [sym_kwd_lit] = STATE(2080), - [sym_str_lit] = STATE(2080), - [sym_char_lit] = STATE(2080), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2080), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2080), - [sym_set_lit] = STATE(2080), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2080), - [sym_splicing_read_cond_lit] = STATE(2080), - [sym_var_quoting_lit] = STATE(2080), - [sym_quoting_lit] = STATE(2080), - [sym_syn_quoting_lit] = STATE(2080), - [sym_unquote_splicing_lit] = STATE(2080), - [sym_unquoting_lit] = STATE(2080), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2080), - [sym_package_lit] = STATE(2080), - [sym_include_reader_macro] = STATE(2080), - [sym_complex_num_lit] = STATE(2080), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(1712), - [sym_comment] = ACTIONS(1712), - [anon_sym_POUND_] = ACTIONS(1715), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(1718), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(1720), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(1718), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1723), - [anon_sym_POUND_CARET] = ACTIONS(1726), - [anon_sym_LPAREN] = ACTIONS(1729), - [anon_sym_RPAREN] = ACTIONS(1732), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2375), + [sym_num_lit] = STATE(2375), + [sym_kwd_lit] = STATE(2375), + [sym_str_lit] = STATE(2375), + [sym_char_lit] = STATE(2375), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2375), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2375), + [sym_set_lit] = STATE(2375), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2375), + [sym_splicing_read_cond_lit] = STATE(2375), + [sym_var_quoting_lit] = STATE(2375), + [sym_quoting_lit] = STATE(2375), + [sym_syn_quoting_lit] = STATE(2375), + [sym_unquote_splicing_lit] = STATE(2375), + [sym_unquoting_lit] = STATE(2375), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2375), + [sym_package_lit] = STATE(2375), + [sym_include_reader_macro] = STATE(2375), + [sym_complex_num_lit] = STATE(2375), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(1563), + [sym_comment] = ACTIONS(1563), + [anon_sym_POUND_] = ACTIONS(1566), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(1649), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(1571), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(1649), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(1574), + [anon_sym_POUND_CARET] = ACTIONS(1577), + [anon_sym_LPAREN] = ACTIONS(1580), + [anon_sym_RPAREN] = ACTIONS(1583), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(1718), - [anon_sym_cl] = ACTIONS(1734), - [aux_sym_accumulation_verb_token1] = ACTIONS(1737), - [anon_sym_for] = ACTIONS(1737), - [anon_sym_and] = ACTIONS(1737), - [anon_sym_as] = ACTIONS(1737), - [anon_sym_with] = ACTIONS(1737), - [anon_sym_do] = ACTIONS(1737), - [anon_sym_while] = ACTIONS(1737), - [anon_sym_until] = ACTIONS(1737), - [anon_sym_repeat] = ACTIONS(1737), - [anon_sym_when] = ACTIONS(1737), - [anon_sym_if] = ACTIONS(1737), - [anon_sym_unless] = ACTIONS(1737), - [anon_sym_always] = ACTIONS(1737), - [anon_sym_thereis] = ACTIONS(1737), - [anon_sym_never] = ACTIONS(1737), - [anon_sym_else] = ACTIONS(1737), - [anon_sym_finally] = ACTIONS(1737), - [anon_sym_return] = ACTIONS(1737), - [anon_sym_initially] = ACTIONS(1737), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(1739), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(1649), + [anon_sym_cl] = ACTIONS(1585), + [aux_sym_accumulation_verb_token1] = ACTIONS(1588), + [anon_sym_for] = ACTIONS(1588), + [anon_sym_and] = ACTIONS(1588), + [anon_sym_as] = ACTIONS(1588), + [anon_sym_with] = ACTIONS(1588), + [anon_sym_do] = ACTIONS(1588), + [anon_sym_while] = ACTIONS(1588), + [anon_sym_until] = ACTIONS(1588), + [anon_sym_repeat] = ACTIONS(1588), + [anon_sym_when] = ACTIONS(1588), + [anon_sym_if] = ACTIONS(1588), + [anon_sym_unless] = ACTIONS(1588), + [anon_sym_always] = ACTIONS(1588), + [anon_sym_thereis] = ACTIONS(1588), + [anon_sym_never] = ACTIONS(1588), + [anon_sym_else] = ACTIONS(1588), + [anon_sym_finally] = ACTIONS(1588), + [anon_sym_return] = ACTIONS(1588), + [anon_sym_initially] = ACTIONS(1588), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(1651), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [62] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2391), - [sym_num_lit] = STATE(2391), - [sym_kwd_lit] = STATE(2391), - [sym_str_lit] = STATE(2391), - [sym_char_lit] = STATE(2391), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2391), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2391), - [sym_set_lit] = STATE(2391), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2391), - [sym_splicing_read_cond_lit] = STATE(2391), - [sym_var_quoting_lit] = STATE(2391), - [sym_quoting_lit] = STATE(2391), - [sym_syn_quoting_lit] = STATE(2391), - [sym_unquote_splicing_lit] = STATE(2391), - [sym_unquoting_lit] = STATE(2391), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2391), - [sym_package_lit] = STATE(2391), - [sym_include_reader_macro] = STATE(2391), - [sym_complex_num_lit] = STATE(2391), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(1741), - [sym_comment] = ACTIONS(1741), - [anon_sym_POUND_] = ACTIONS(1680), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(1744), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(1685), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(1744), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1688), - [anon_sym_POUND_CARET] = ACTIONS(1691), - [anon_sym_LPAREN] = ACTIONS(1694), - [anon_sym_RPAREN] = ACTIONS(1697), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(100), + [sym_dis_expr] = STATE(100), + [sym__form] = STATE(2448), + [sym_num_lit] = STATE(2448), + [sym_kwd_lit] = STATE(2448), + [sym_str_lit] = STATE(2448), + [sym_char_lit] = STATE(2448), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2448), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2448), + [sym_set_lit] = STATE(2448), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2448), + [sym_splicing_read_cond_lit] = STATE(2448), + [sym_var_quoting_lit] = STATE(2448), + [sym_quoting_lit] = STATE(2448), + [sym_syn_quoting_lit] = STATE(2448), + [sym_unquote_splicing_lit] = STATE(2448), + [sym_unquoting_lit] = STATE(2448), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2448), + [sym_package_lit] = STATE(2448), + [sym_include_reader_macro] = STATE(2448), + [sym_complex_num_lit] = STATE(2448), + [aux_sym_dis_expr_repeat1] = STATE(100), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(1653), + [sym_comment] = ACTIONS(1653), + [anon_sym_POUND_] = ACTIONS(1656), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(1659), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(1661), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(1659), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(1664), + [anon_sym_POUND_CARET] = ACTIONS(1667), + [anon_sym_LPAREN] = ACTIONS(1670), + [anon_sym_RPAREN] = ACTIONS(1673), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(1744), - [anon_sym_cl] = ACTIONS(1699), - [aux_sym_accumulation_verb_token1] = ACTIONS(1702), - [anon_sym_for] = ACTIONS(1702), - [anon_sym_and] = ACTIONS(1702), - [anon_sym_as] = ACTIONS(1702), - [anon_sym_with] = ACTIONS(1702), - [anon_sym_do] = ACTIONS(1702), - [anon_sym_while] = ACTIONS(1702), - [anon_sym_until] = ACTIONS(1702), - [anon_sym_repeat] = ACTIONS(1702), - [anon_sym_when] = ACTIONS(1702), - [anon_sym_if] = ACTIONS(1702), - [anon_sym_unless] = ACTIONS(1702), - [anon_sym_always] = ACTIONS(1702), - [anon_sym_thereis] = ACTIONS(1702), - [anon_sym_never] = ACTIONS(1702), - [anon_sym_else] = ACTIONS(1702), - [anon_sym_finally] = ACTIONS(1702), - [anon_sym_return] = ACTIONS(1702), - [anon_sym_initially] = ACTIONS(1702), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(1746), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(1659), + [anon_sym_cl] = ACTIONS(1675), + [aux_sym_accumulation_verb_token1] = ACTIONS(1678), + [anon_sym_for] = ACTIONS(1678), + [anon_sym_and] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1678), + [anon_sym_with] = ACTIONS(1678), + [anon_sym_do] = ACTIONS(1678), + [anon_sym_while] = ACTIONS(1678), + [anon_sym_until] = ACTIONS(1678), + [anon_sym_repeat] = ACTIONS(1678), + [anon_sym_when] = ACTIONS(1678), + [anon_sym_if] = ACTIONS(1678), + [anon_sym_unless] = ACTIONS(1678), + [anon_sym_always] = ACTIONS(1678), + [anon_sym_thereis] = ACTIONS(1678), + [anon_sym_never] = ACTIONS(1678), + [anon_sym_else] = ACTIONS(1678), + [anon_sym_finally] = ACTIONS(1678), + [anon_sym_return] = ACTIONS(1678), + [anon_sym_initially] = ACTIONS(1678), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(1680), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [63] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2075), - [sym_num_lit] = STATE(2075), - [sym_kwd_lit] = STATE(2075), - [sym_str_lit] = STATE(2075), - [sym_char_lit] = STATE(2075), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2075), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2075), - [sym_set_lit] = STATE(2075), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2075), - [sym_splicing_read_cond_lit] = STATE(2075), - [sym_var_quoting_lit] = STATE(2075), - [sym_quoting_lit] = STATE(2075), - [sym_syn_quoting_lit] = STATE(2075), - [sym_unquote_splicing_lit] = STATE(2075), - [sym_unquoting_lit] = STATE(2075), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2075), - [sym_package_lit] = STATE(2075), - [sym_include_reader_macro] = STATE(2075), - [sym_complex_num_lit] = STATE(2075), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(1748), - [sym_comment] = ACTIONS(1748), - [anon_sym_POUND_] = ACTIONS(1751), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(1754), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(1756), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(1754), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1759), - [anon_sym_POUND_CARET] = ACTIONS(1762), - [anon_sym_LPAREN] = ACTIONS(1765), - [anon_sym_RPAREN] = ACTIONS(1768), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(941), + [sym_dis_expr] = STATE(941), + [sym__form] = STATE(50), + [sym_num_lit] = STATE(50), + [sym_kwd_lit] = STATE(50), + [sym_str_lit] = STATE(50), + [sym_char_lit] = STATE(50), + [sym_sym_lit] = STATE(1288), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(50), + [sym__bare_list_lit] = STATE(1289), + [sym_vec_lit] = STATE(50), + [sym_set_lit] = STATE(50), + [sym__bare_set_lit] = STATE(1290), + [sym_read_cond_lit] = STATE(50), + [sym_splicing_read_cond_lit] = STATE(50), + [sym_var_quoting_lit] = STATE(50), + [sym_quoting_lit] = STATE(50), + [sym_syn_quoting_lit] = STATE(50), + [sym_unquote_splicing_lit] = STATE(50), + [sym_unquoting_lit] = STATE(50), + [sym_defun] = STATE(1289), + [sym_loop_macro] = STATE(1289), + [sym_path_lit] = STATE(50), + [sym_package_lit] = STATE(50), + [sym_include_reader_macro] = STATE(50), + [sym_complex_num_lit] = STATE(50), + [aux_sym_dis_expr_repeat1] = STATE(941), + [aux_sym_list_lit_repeat1] = STATE(2808), + [sym__ws] = ACTIONS(1682), + [sym_comment] = ACTIONS(1682), + [anon_sym_POUND_] = ACTIONS(1685), + [anon_sym_POUND] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [aux_sym_num_lit_token1] = ACTIONS(1692), + [anon_sym_COLON] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1697), + [anon_sym_DQUOTE] = ACTIONS(1699), + [sym_nil_lit] = ACTIONS(1690), + [aux_sym_sym_lit_token1] = ACTIONS(1701), + [anon_sym_CARET] = ACTIONS(1703), + [anon_sym_POUND_CARET] = ACTIONS(1706), + [anon_sym_LPAREN] = ACTIONS(1709), + [anon_sym_RPAREN] = ACTIONS(1712), + [anon_sym_POUND0A] = ACTIONS(1714), + [anon_sym_POUND0a] = ACTIONS(1714), + [anon_sym_POUND_QMARK] = ACTIONS(1716), + [anon_sym_POUND_QMARK_AT] = ACTIONS(1718), + [anon_sym_POUND_SQUOTE] = ACTIONS(1720), + [anon_sym_SQUOTE] = ACTIONS(1722), + [anon_sym_BQUOTE] = ACTIONS(1724), + [anon_sym_COMMA_AT] = ACTIONS(1726), + [anon_sym_COMMA] = ACTIONS(1728), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(1754), - [anon_sym_cl] = ACTIONS(1770), - [aux_sym_accumulation_verb_token1] = ACTIONS(1773), - [anon_sym_for] = ACTIONS(1773), - [anon_sym_and] = ACTIONS(1773), - [anon_sym_as] = ACTIONS(1773), - [anon_sym_with] = ACTIONS(1773), - [anon_sym_do] = ACTIONS(1773), - [anon_sym_while] = ACTIONS(1773), - [anon_sym_until] = ACTIONS(1773), - [anon_sym_repeat] = ACTIONS(1773), - [anon_sym_when] = ACTIONS(1773), - [anon_sym_if] = ACTIONS(1773), - [anon_sym_unless] = ACTIONS(1773), - [anon_sym_always] = ACTIONS(1773), - [anon_sym_thereis] = ACTIONS(1773), - [anon_sym_never] = ACTIONS(1773), - [anon_sym_else] = ACTIONS(1773), - [anon_sym_finally] = ACTIONS(1773), - [anon_sym_return] = ACTIONS(1773), - [anon_sym_initially] = ACTIONS(1773), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(1775), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(1690), + [anon_sym_cl] = ACTIONS(1730), + [aux_sym_accumulation_verb_token1] = ACTIONS(1733), + [anon_sym_for] = ACTIONS(1733), + [anon_sym_and] = ACTIONS(1733), + [anon_sym_as] = ACTIONS(1733), + [anon_sym_with] = ACTIONS(1733), + [anon_sym_do] = ACTIONS(1733), + [anon_sym_while] = ACTIONS(1733), + [anon_sym_until] = ACTIONS(1733), + [anon_sym_repeat] = ACTIONS(1733), + [anon_sym_when] = ACTIONS(1733), + [anon_sym_if] = ACTIONS(1733), + [anon_sym_unless] = ACTIONS(1733), + [anon_sym_always] = ACTIONS(1733), + [anon_sym_thereis] = ACTIONS(1733), + [anon_sym_never] = ACTIONS(1733), + [anon_sym_else] = ACTIONS(1733), + [anon_sym_finally] = ACTIONS(1733), + [anon_sym_return] = ACTIONS(1733), + [anon_sym_initially] = ACTIONS(1733), + [anon_sym_POUNDP] = ACTIONS(1735), + [anon_sym_POUNDp] = ACTIONS(1735), + [sym_self_referential_reader_macro] = ACTIONS(1737), + [anon_sym_POUND_PLUS] = ACTIONS(1739), + [anon_sym_POUND_DASH] = ACTIONS(1739), + [anon_sym_POUNDC] = ACTIONS(1741), + [anon_sym_POUNDc] = ACTIONS(1741), }, [64] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2388), - [sym_num_lit] = STATE(2388), - [sym_kwd_lit] = STATE(2388), - [sym_str_lit] = STATE(2388), - [sym_char_lit] = STATE(2388), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2388), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2388), - [sym_set_lit] = STATE(2388), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2388), - [sym_splicing_read_cond_lit] = STATE(2388), - [sym_var_quoting_lit] = STATE(2388), - [sym_quoting_lit] = STATE(2388), - [sym_syn_quoting_lit] = STATE(2388), - [sym_unquote_splicing_lit] = STATE(2388), - [sym_unquoting_lit] = STATE(2388), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2388), - [sym_package_lit] = STATE(2388), - [sym_include_reader_macro] = STATE(2388), - [sym_complex_num_lit] = STATE(2388), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(1741), - [sym_comment] = ACTIONS(1741), - [anon_sym_POUND_] = ACTIONS(1680), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(1777), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(1685), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(1777), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1688), - [anon_sym_POUND_CARET] = ACTIONS(1691), - [anon_sym_LPAREN] = ACTIONS(1694), - [anon_sym_RPAREN] = ACTIONS(1697), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(102), + [sym_dis_expr] = STATE(102), + [sym__form] = STATE(2511), + [sym_num_lit] = STATE(2511), + [sym_kwd_lit] = STATE(2511), + [sym_str_lit] = STATE(2511), + [sym_char_lit] = STATE(2511), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2511), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2511), + [sym_set_lit] = STATE(2511), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2511), + [sym_splicing_read_cond_lit] = STATE(2511), + [sym_var_quoting_lit] = STATE(2511), + [sym_quoting_lit] = STATE(2511), + [sym_syn_quoting_lit] = STATE(2511), + [sym_unquote_splicing_lit] = STATE(2511), + [sym_unquoting_lit] = STATE(2511), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2511), + [sym_package_lit] = STATE(2511), + [sym_include_reader_macro] = STATE(2511), + [sym_complex_num_lit] = STATE(2511), + [aux_sym_dis_expr_repeat1] = STATE(102), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(1743), + [sym_comment] = ACTIONS(1743), + [anon_sym_POUND_] = ACTIONS(1381), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(1746), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(1386), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(1746), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(1389), + [anon_sym_POUND_CARET] = ACTIONS(1392), + [anon_sym_LPAREN] = ACTIONS(1395), + [anon_sym_RPAREN] = ACTIONS(1398), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(1777), - [anon_sym_cl] = ACTIONS(1699), - [aux_sym_accumulation_verb_token1] = ACTIONS(1702), - [anon_sym_for] = ACTIONS(1702), - [anon_sym_and] = ACTIONS(1702), - [anon_sym_as] = ACTIONS(1702), - [anon_sym_with] = ACTIONS(1702), - [anon_sym_do] = ACTIONS(1702), - [anon_sym_while] = ACTIONS(1702), - [anon_sym_until] = ACTIONS(1702), - [anon_sym_repeat] = ACTIONS(1702), - [anon_sym_when] = ACTIONS(1702), - [anon_sym_if] = ACTIONS(1702), - [anon_sym_unless] = ACTIONS(1702), - [anon_sym_always] = ACTIONS(1702), - [anon_sym_thereis] = ACTIONS(1702), - [anon_sym_never] = ACTIONS(1702), - [anon_sym_else] = ACTIONS(1702), - [anon_sym_finally] = ACTIONS(1702), - [anon_sym_return] = ACTIONS(1702), - [anon_sym_initially] = ACTIONS(1702), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(1779), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(1746), + [anon_sym_cl] = ACTIONS(1400), + [aux_sym_accumulation_verb_token1] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1403), + [anon_sym_and] = ACTIONS(1403), + [anon_sym_as] = ACTIONS(1403), + [anon_sym_with] = ACTIONS(1403), + [anon_sym_do] = ACTIONS(1403), + [anon_sym_while] = ACTIONS(1403), + [anon_sym_until] = ACTIONS(1403), + [anon_sym_repeat] = ACTIONS(1403), + [anon_sym_when] = ACTIONS(1403), + [anon_sym_if] = ACTIONS(1403), + [anon_sym_unless] = ACTIONS(1403), + [anon_sym_always] = ACTIONS(1403), + [anon_sym_thereis] = ACTIONS(1403), + [anon_sym_never] = ACTIONS(1403), + [anon_sym_else] = ACTIONS(1403), + [anon_sym_finally] = ACTIONS(1403), + [anon_sym_return] = ACTIONS(1403), + [anon_sym_initially] = ACTIONS(1403), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(1748), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [65] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2382), - [sym_num_lit] = STATE(2382), - [sym_kwd_lit] = STATE(2382), - [sym_str_lit] = STATE(2382), - [sym_char_lit] = STATE(2382), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2382), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2382), - [sym_set_lit] = STATE(2382), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2382), - [sym_splicing_read_cond_lit] = STATE(2382), - [sym_var_quoting_lit] = STATE(2382), - [sym_quoting_lit] = STATE(2382), - [sym_syn_quoting_lit] = STATE(2382), - [sym_unquote_splicing_lit] = STATE(2382), - [sym_unquoting_lit] = STATE(2382), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2382), - [sym_package_lit] = STATE(2382), - [sym_include_reader_macro] = STATE(2382), - [sym_complex_num_lit] = STATE(2382), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(1436), - [sym_comment] = ACTIONS(1436), - [anon_sym_POUND_] = ACTIONS(1439), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(1781), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(1444), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(1781), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1447), - [anon_sym_POUND_CARET] = ACTIONS(1450), - [anon_sym_LPAREN] = ACTIONS(1453), - [anon_sym_RPAREN] = ACTIONS(1456), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2522), + [sym_num_lit] = STATE(2522), + [sym_kwd_lit] = STATE(2522), + [sym_str_lit] = STATE(2522), + [sym_char_lit] = STATE(2522), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2522), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2522), + [sym_set_lit] = STATE(2522), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2522), + [sym_splicing_read_cond_lit] = STATE(2522), + [sym_var_quoting_lit] = STATE(2522), + [sym_quoting_lit] = STATE(2522), + [sym_syn_quoting_lit] = STATE(2522), + [sym_unquote_splicing_lit] = STATE(2522), + [sym_unquoting_lit] = STATE(2522), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2522), + [sym_package_lit] = STATE(2522), + [sym_include_reader_macro] = STATE(2522), + [sym_complex_num_lit] = STATE(2522), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(1407), + [sym_comment] = ACTIONS(1407), + [anon_sym_POUND_] = ACTIONS(1381), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(1750), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(1386), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(1750), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(1389), + [anon_sym_POUND_CARET] = ACTIONS(1392), + [anon_sym_LPAREN] = ACTIONS(1395), + [anon_sym_RPAREN] = ACTIONS(1398), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(1781), - [anon_sym_cl] = ACTIONS(1458), - [aux_sym_accumulation_verb_token1] = ACTIONS(1461), - [anon_sym_for] = ACTIONS(1461), - [anon_sym_and] = ACTIONS(1461), - [anon_sym_as] = ACTIONS(1461), - [anon_sym_with] = ACTIONS(1461), - [anon_sym_do] = ACTIONS(1461), - [anon_sym_while] = ACTIONS(1461), - [anon_sym_until] = ACTIONS(1461), - [anon_sym_repeat] = ACTIONS(1461), - [anon_sym_when] = ACTIONS(1461), - [anon_sym_if] = ACTIONS(1461), - [anon_sym_unless] = ACTIONS(1461), - [anon_sym_always] = ACTIONS(1461), - [anon_sym_thereis] = ACTIONS(1461), - [anon_sym_never] = ACTIONS(1461), - [anon_sym_else] = ACTIONS(1461), - [anon_sym_finally] = ACTIONS(1461), - [anon_sym_return] = ACTIONS(1461), - [anon_sym_initially] = ACTIONS(1461), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(1783), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(1750), + [anon_sym_cl] = ACTIONS(1400), + [aux_sym_accumulation_verb_token1] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1403), + [anon_sym_and] = ACTIONS(1403), + [anon_sym_as] = ACTIONS(1403), + [anon_sym_with] = ACTIONS(1403), + [anon_sym_do] = ACTIONS(1403), + [anon_sym_while] = ACTIONS(1403), + [anon_sym_until] = ACTIONS(1403), + [anon_sym_repeat] = ACTIONS(1403), + [anon_sym_when] = ACTIONS(1403), + [anon_sym_if] = ACTIONS(1403), + [anon_sym_unless] = ACTIONS(1403), + [anon_sym_always] = ACTIONS(1403), + [anon_sym_thereis] = ACTIONS(1403), + [anon_sym_never] = ACTIONS(1403), + [anon_sym_else] = ACTIONS(1403), + [anon_sym_finally] = ACTIONS(1403), + [anon_sym_return] = ACTIONS(1403), + [anon_sym_initially] = ACTIONS(1403), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(1752), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [66] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2071), - [sym_num_lit] = STATE(2071), - [sym_kwd_lit] = STATE(2071), - [sym_str_lit] = STATE(2071), - [sym_char_lit] = STATE(2071), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2071), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2071), - [sym_set_lit] = STATE(2071), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2071), - [sym_splicing_read_cond_lit] = STATE(2071), - [sym_var_quoting_lit] = STATE(2071), - [sym_quoting_lit] = STATE(2071), - [sym_syn_quoting_lit] = STATE(2071), - [sym_unquote_splicing_lit] = STATE(2071), - [sym_unquoting_lit] = STATE(2071), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2071), - [sym_package_lit] = STATE(2071), - [sym_include_reader_macro] = STATE(2071), - [sym_complex_num_lit] = STATE(2071), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(1785), - [sym_comment] = ACTIONS(1785), - [anon_sym_POUND_] = ACTIONS(1788), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(1791), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(1793), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(1791), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1796), - [anon_sym_POUND_CARET] = ACTIONS(1799), - [anon_sym_LPAREN] = ACTIONS(1802), - [anon_sym_RPAREN] = ACTIONS(1805), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(105), + [sym_dis_expr] = STATE(105), + [sym__form] = STATE(2523), + [sym_num_lit] = STATE(2523), + [sym_kwd_lit] = STATE(2523), + [sym_str_lit] = STATE(2523), + [sym_char_lit] = STATE(2523), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2523), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2523), + [sym_set_lit] = STATE(2523), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2523), + [sym_splicing_read_cond_lit] = STATE(2523), + [sym_var_quoting_lit] = STATE(2523), + [sym_quoting_lit] = STATE(2523), + [sym_syn_quoting_lit] = STATE(2523), + [sym_unquote_splicing_lit] = STATE(2523), + [sym_unquoting_lit] = STATE(2523), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2523), + [sym_package_lit] = STATE(2523), + [sym_include_reader_macro] = STATE(2523), + [sym_complex_num_lit] = STATE(2523), + [aux_sym_dis_expr_repeat1] = STATE(105), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(1754), + [sym_comment] = ACTIONS(1754), + [anon_sym_POUND_] = ACTIONS(1417), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(1757), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(1422), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(1757), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(1425), + [anon_sym_POUND_CARET] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1431), + [anon_sym_RPAREN] = ACTIONS(1434), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(1791), - [anon_sym_cl] = ACTIONS(1807), - [aux_sym_accumulation_verb_token1] = ACTIONS(1810), - [anon_sym_for] = ACTIONS(1810), - [anon_sym_and] = ACTIONS(1810), - [anon_sym_as] = ACTIONS(1810), - [anon_sym_with] = ACTIONS(1810), - [anon_sym_do] = ACTIONS(1810), - [anon_sym_while] = ACTIONS(1810), - [anon_sym_until] = ACTIONS(1810), - [anon_sym_repeat] = ACTIONS(1810), - [anon_sym_when] = ACTIONS(1810), - [anon_sym_if] = ACTIONS(1810), - [anon_sym_unless] = ACTIONS(1810), - [anon_sym_always] = ACTIONS(1810), - [anon_sym_thereis] = ACTIONS(1810), - [anon_sym_never] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1810), - [anon_sym_finally] = ACTIONS(1810), - [anon_sym_return] = ACTIONS(1810), - [anon_sym_initially] = ACTIONS(1810), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(1812), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(1757), + [anon_sym_cl] = ACTIONS(1436), + [aux_sym_accumulation_verb_token1] = ACTIONS(1439), + [anon_sym_for] = ACTIONS(1439), + [anon_sym_and] = ACTIONS(1439), + [anon_sym_as] = ACTIONS(1439), + [anon_sym_with] = ACTIONS(1439), + [anon_sym_do] = ACTIONS(1439), + [anon_sym_while] = ACTIONS(1439), + [anon_sym_until] = ACTIONS(1439), + [anon_sym_repeat] = ACTIONS(1439), + [anon_sym_when] = ACTIONS(1439), + [anon_sym_if] = ACTIONS(1439), + [anon_sym_unless] = ACTIONS(1439), + [anon_sym_always] = ACTIONS(1439), + [anon_sym_thereis] = ACTIONS(1439), + [anon_sym_never] = ACTIONS(1439), + [anon_sym_else] = ACTIONS(1439), + [anon_sym_finally] = ACTIONS(1439), + [anon_sym_return] = ACTIONS(1439), + [anon_sym_initially] = ACTIONS(1439), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(1759), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [67] = { - [sym__gap] = STATE(76), - [sym_dis_expr] = STATE(76), - [sym__form] = STATE(2502), - [sym_num_lit] = STATE(2502), - [sym_kwd_lit] = STATE(2502), - [sym_str_lit] = STATE(2502), - [sym_char_lit] = STATE(2502), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2502), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2502), - [sym_set_lit] = STATE(2502), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2502), - [sym_splicing_read_cond_lit] = STATE(2502), - [sym_var_quoting_lit] = STATE(2502), - [sym_quoting_lit] = STATE(2502), - [sym_syn_quoting_lit] = STATE(2502), - [sym_unquote_splicing_lit] = STATE(2502), - [sym_unquoting_lit] = STATE(2502), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2502), - [sym_package_lit] = STATE(2502), - [sym_include_reader_macro] = STATE(2502), - [sym_complex_num_lit] = STATE(2502), - [aux_sym_dis_expr_repeat1] = STATE(76), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(1814), - [sym_comment] = ACTIONS(1814), - [anon_sym_POUND_] = ACTIONS(1817), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(1820), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(1822), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(1820), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(251), - [anon_sym_POUND_CARET] = ACTIONS(254), - [anon_sym_LPAREN] = ACTIONS(1825), - [anon_sym_RPAREN] = ACTIONS(260), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(278), + [sym_dis_expr] = STATE(278), + [sym__form] = STATE(2719), + [sym_num_lit] = STATE(2719), + [sym_kwd_lit] = STATE(2719), + [sym_str_lit] = STATE(2719), + [sym_char_lit] = STATE(2719), + [sym_sym_lit] = STATE(2766), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2719), + [sym__bare_list_lit] = STATE(1975), + [sym_vec_lit] = STATE(2719), + [sym_set_lit] = STATE(2719), + [sym__bare_set_lit] = STATE(1976), + [sym_read_cond_lit] = STATE(2719), + [sym_splicing_read_cond_lit] = STATE(2719), + [sym_var_quoting_lit] = STATE(2719), + [sym_quoting_lit] = STATE(2719), + [sym_syn_quoting_lit] = STATE(2719), + [sym_unquote_splicing_lit] = STATE(2719), + [sym_unquoting_lit] = STATE(2719), + [sym_defun] = STATE(1975), + [sym_for_clause_word] = STATE(419), + [sym__for_part] = STATE(1555), + [sym_loop_macro] = STATE(1975), + [sym_path_lit] = STATE(2719), + [sym_package_lit] = STATE(2719), + [sym_include_reader_macro] = STATE(2719), + [sym_complex_num_lit] = STATE(2719), + [aux_sym_dis_expr_repeat1] = STATE(278), + [aux_sym_list_lit_repeat1] = STATE(2830), + [aux_sym_for_clause_repeat1] = STATE(1273), + [sym__ws] = ACTIONS(1761), + [sym_comment] = ACTIONS(1761), + [anon_sym_POUND_] = ACTIONS(1452), + [anon_sym_POUND] = ACTIONS(1454), + [anon_sym_DOT] = ACTIONS(1763), + [aux_sym_num_lit_token1] = ACTIONS(1458), + [anon_sym_COLON] = ACTIONS(1460), + [anon_sym_COLON_COLON] = ACTIONS(1462), + [anon_sym_DQUOTE] = ACTIONS(1464), + [sym_nil_lit] = ACTIONS(1763), + [aux_sym_sym_lit_token1] = ACTIONS(1466), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(1468), + [anon_sym_POUND0A] = ACTIONS(1470), + [anon_sym_POUND0a] = ACTIONS(1470), + [anon_sym_POUND_QMARK] = ACTIONS(1472), + [anon_sym_POUND_QMARK_AT] = ACTIONS(1474), + [anon_sym_POUND_SQUOTE] = ACTIONS(1476), + [anon_sym_SQUOTE] = ACTIONS(1478), + [anon_sym_BQUOTE] = ACTIONS(1480), + [anon_sym_COMMA_AT] = ACTIONS(1482), + [anon_sym_COMMA] = ACTIONS(1484), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(1820), - [anon_sym_cl] = ACTIONS(1828), - [aux_sym_accumulation_verb_token1] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_as] = ACTIONS(267), - [anon_sym_with] = ACTIONS(267), - [anon_sym_do] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_until] = ACTIONS(267), - [anon_sym_repeat] = ACTIONS(267), - [anon_sym_when] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_unless] = ACTIONS(267), - [anon_sym_always] = ACTIONS(267), - [anon_sym_thereis] = ACTIONS(267), - [anon_sym_never] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_finally] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_initially] = ACTIONS(267), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(1831), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(1763), + [anon_sym_cl] = ACTIONS(1486), + [anon_sym_in] = ACTIONS(1488), + [anon_sym_across] = ACTIONS(1488), + [anon_sym_being] = ACTIONS(1488), + [anon_sym_using] = ACTIONS(1488), + [aux_sym_for_clause_word_token1] = ACTIONS(1490), + [anon_sym_below] = ACTIONS(1488), + [anon_sym_above] = ACTIONS(1488), + [anon_sym_from] = ACTIONS(1488), + [anon_sym_to] = ACTIONS(1488), + [anon_sym_upto] = ACTIONS(1488), + [anon_sym_upfrom] = ACTIONS(1488), + [anon_sym_downto] = ACTIONS(1488), + [anon_sym_downfrom] = ACTIONS(1488), + [anon_sym_on] = ACTIONS(1488), + [anon_sym_by] = ACTIONS(1488), + [anon_sym_then] = ACTIONS(1488), + [anon_sym_EQ] = ACTIONS(1488), + [anon_sym_POUNDP] = ACTIONS(1492), + [anon_sym_POUNDp] = ACTIONS(1492), + [sym_self_referential_reader_macro] = ACTIONS(1765), + [anon_sym_POUND_PLUS] = ACTIONS(1496), + [anon_sym_POUND_DASH] = ACTIONS(1496), + [anon_sym_POUNDC] = ACTIONS(1498), + [anon_sym_POUNDc] = ACTIONS(1498), }, [68] = { - [sym__gap] = STATE(71), - [sym_dis_expr] = STATE(71), - [sym__form] = STATE(2358), - [sym_num_lit] = STATE(2358), - [sym_kwd_lit] = STATE(2358), - [sym_str_lit] = STATE(2358), - [sym_char_lit] = STATE(2358), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2358), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2358), - [sym_set_lit] = STATE(2358), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2358), - [sym_splicing_read_cond_lit] = STATE(2358), - [sym_var_quoting_lit] = STATE(2358), - [sym_quoting_lit] = STATE(2358), - [sym_syn_quoting_lit] = STATE(2358), - [sym_unquote_splicing_lit] = STATE(2358), - [sym_unquoting_lit] = STATE(2358), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2358), - [sym_package_lit] = STATE(2358), - [sym_include_reader_macro] = STATE(2358), - [sym_complex_num_lit] = STATE(2358), - [aux_sym_dis_expr_repeat1] = STATE(71), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(1833), - [sym_comment] = ACTIONS(1833), - [anon_sym_POUND_] = ACTIONS(1439), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(1836), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(1444), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(1836), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1447), - [anon_sym_POUND_CARET] = ACTIONS(1450), - [anon_sym_LPAREN] = ACTIONS(1453), - [anon_sym_RPAREN] = ACTIONS(1456), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(108), + [sym_dis_expr] = STATE(108), + [sym__form] = STATE(2546), + [sym_num_lit] = STATE(2546), + [sym_kwd_lit] = STATE(2546), + [sym_str_lit] = STATE(2546), + [sym_char_lit] = STATE(2546), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2546), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2546), + [sym_set_lit] = STATE(2546), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2546), + [sym_splicing_read_cond_lit] = STATE(2546), + [sym_var_quoting_lit] = STATE(2546), + [sym_quoting_lit] = STATE(2546), + [sym_syn_quoting_lit] = STATE(2546), + [sym_unquote_splicing_lit] = STATE(2546), + [sym_unquoting_lit] = STATE(2546), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2546), + [sym_package_lit] = STATE(2546), + [sym_include_reader_macro] = STATE(2546), + [sym_complex_num_lit] = STATE(2546), + [aux_sym_dis_expr_repeat1] = STATE(108), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(1767), + [sym_comment] = ACTIONS(1767), + [anon_sym_POUND_] = ACTIONS(1381), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(1770), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(1386), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(1770), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(1389), + [anon_sym_POUND_CARET] = ACTIONS(1392), + [anon_sym_LPAREN] = ACTIONS(1395), + [anon_sym_RPAREN] = ACTIONS(1398), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(1836), - [anon_sym_cl] = ACTIONS(1458), - [aux_sym_accumulation_verb_token1] = ACTIONS(1461), - [anon_sym_for] = ACTIONS(1461), - [anon_sym_and] = ACTIONS(1461), - [anon_sym_as] = ACTIONS(1461), - [anon_sym_with] = ACTIONS(1461), - [anon_sym_do] = ACTIONS(1461), - [anon_sym_while] = ACTIONS(1461), - [anon_sym_until] = ACTIONS(1461), - [anon_sym_repeat] = ACTIONS(1461), - [anon_sym_when] = ACTIONS(1461), - [anon_sym_if] = ACTIONS(1461), - [anon_sym_unless] = ACTIONS(1461), - [anon_sym_always] = ACTIONS(1461), - [anon_sym_thereis] = ACTIONS(1461), - [anon_sym_never] = ACTIONS(1461), - [anon_sym_else] = ACTIONS(1461), - [anon_sym_finally] = ACTIONS(1461), - [anon_sym_return] = ACTIONS(1461), - [anon_sym_initially] = ACTIONS(1461), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(1838), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(1770), + [anon_sym_cl] = ACTIONS(1400), + [aux_sym_accumulation_verb_token1] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1403), + [anon_sym_and] = ACTIONS(1403), + [anon_sym_as] = ACTIONS(1403), + [anon_sym_with] = ACTIONS(1403), + [anon_sym_do] = ACTIONS(1403), + [anon_sym_while] = ACTIONS(1403), + [anon_sym_until] = ACTIONS(1403), + [anon_sym_repeat] = ACTIONS(1403), + [anon_sym_when] = ACTIONS(1403), + [anon_sym_if] = ACTIONS(1403), + [anon_sym_unless] = ACTIONS(1403), + [anon_sym_always] = ACTIONS(1403), + [anon_sym_thereis] = ACTIONS(1403), + [anon_sym_never] = ACTIONS(1403), + [anon_sym_else] = ACTIONS(1403), + [anon_sym_finally] = ACTIONS(1403), + [anon_sym_return] = ACTIONS(1403), + [anon_sym_initially] = ACTIONS(1403), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(1772), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [69] = { - [sym__gap] = STATE(273), - [sym_dis_expr] = STATE(273), - [sym__form] = STATE(2744), - [sym_num_lit] = STATE(2744), - [sym_kwd_lit] = STATE(2744), - [sym_str_lit] = STATE(2744), - [sym_char_lit] = STATE(2744), - [sym_sym_lit] = STATE(2762), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2744), - [sym__bare_list_lit] = STATE(1892), - [sym_vec_lit] = STATE(2744), - [sym_set_lit] = STATE(2744), - [sym__bare_set_lit] = STATE(1893), - [sym_read_cond_lit] = STATE(2744), - [sym_splicing_read_cond_lit] = STATE(2744), - [sym_var_quoting_lit] = STATE(2744), - [sym_quoting_lit] = STATE(2744), - [sym_syn_quoting_lit] = STATE(2744), - [sym_unquote_splicing_lit] = STATE(2744), - [sym_unquoting_lit] = STATE(2744), - [sym_defun] = STATE(1892), - [sym_for_clause_word] = STATE(405), - [sym__for_part] = STATE(1611), - [sym_loop_macro] = STATE(1892), - [sym_path_lit] = STATE(2744), - [sym_package_lit] = STATE(2744), - [sym_include_reader_macro] = STATE(2744), - [sym_complex_num_lit] = STATE(2744), - [aux_sym_dis_expr_repeat1] = STATE(273), - [aux_sym_list_lit_repeat1] = STATE(2840), - [aux_sym_for_clause_repeat1] = STATE(1255), - [sym__ws] = ACTIONS(1840), - [sym_comment] = ACTIONS(1840), - [anon_sym_POUND_] = ACTIONS(1596), - [anon_sym_POUND] = ACTIONS(1598), - [anon_sym_DOT] = ACTIONS(1842), - [aux_sym_num_lit_token1] = ACTIONS(1602), - [anon_sym_COLON] = ACTIONS(1604), - [anon_sym_COLON_COLON] = ACTIONS(1606), - [anon_sym_DQUOTE] = ACTIONS(1608), - [sym_nil_lit] = ACTIONS(1842), - [aux_sym_sym_lit_token1] = ACTIONS(1610), - [anon_sym_CARET] = ACTIONS(25), - [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(1612), - [anon_sym_POUND0A] = ACTIONS(1614), - [anon_sym_POUND0a] = ACTIONS(1614), - [anon_sym_POUND_QMARK] = ACTIONS(1616), - [anon_sym_POUND_QMARK_AT] = ACTIONS(1618), - [anon_sym_POUND_SQUOTE] = ACTIONS(1620), - [anon_sym_SQUOTE] = ACTIONS(1622), - [anon_sym_BQUOTE] = ACTIONS(1624), - [anon_sym_COMMA_AT] = ACTIONS(1626), - [anon_sym_COMMA] = ACTIONS(1628), + [sym__gap] = STATE(819), + [sym_dis_expr] = STATE(819), + [sym__form] = STATE(82), + [sym_num_lit] = STATE(82), + [sym_kwd_lit] = STATE(82), + [sym_str_lit] = STATE(82), + [sym_char_lit] = STATE(82), + [sym_sym_lit] = STATE(1288), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(82), + [sym__bare_list_lit] = STATE(1289), + [sym_vec_lit] = STATE(82), + [sym_set_lit] = STATE(82), + [sym__bare_set_lit] = STATE(1290), + [sym_read_cond_lit] = STATE(82), + [sym_splicing_read_cond_lit] = STATE(82), + [sym_var_quoting_lit] = STATE(82), + [sym_quoting_lit] = STATE(82), + [sym_syn_quoting_lit] = STATE(82), + [sym_unquote_splicing_lit] = STATE(82), + [sym_unquoting_lit] = STATE(82), + [sym_defun] = STATE(1289), + [sym_loop_macro] = STATE(1289), + [sym_path_lit] = STATE(82), + [sym_package_lit] = STATE(82), + [sym_include_reader_macro] = STATE(82), + [sym_complex_num_lit] = STATE(82), + [aux_sym_dis_expr_repeat1] = STATE(819), + [aux_sym_list_lit_repeat1] = STATE(2808), + [sym__ws] = ACTIONS(1774), + [sym_comment] = ACTIONS(1774), + [anon_sym_POUND_] = ACTIONS(1777), + [anon_sym_POUND] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1780), + [aux_sym_num_lit_token1] = ACTIONS(1692), + [anon_sym_COLON] = ACTIONS(1782), + [anon_sym_COLON_COLON] = ACTIONS(1697), + [anon_sym_DQUOTE] = ACTIONS(1699), + [sym_nil_lit] = ACTIONS(1780), + [aux_sym_sym_lit_token1] = ACTIONS(1701), + [anon_sym_CARET] = ACTIONS(1785), + [anon_sym_POUND_CARET] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1791), + [anon_sym_RPAREN] = ACTIONS(1794), + [anon_sym_POUND0A] = ACTIONS(1714), + [anon_sym_POUND0a] = ACTIONS(1714), + [anon_sym_POUND_QMARK] = ACTIONS(1716), + [anon_sym_POUND_QMARK_AT] = ACTIONS(1718), + [anon_sym_POUND_SQUOTE] = ACTIONS(1720), + [anon_sym_SQUOTE] = ACTIONS(1722), + [anon_sym_BQUOTE] = ACTIONS(1724), + [anon_sym_COMMA_AT] = ACTIONS(1726), + [anon_sym_COMMA] = ACTIONS(1728), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(1842), - [anon_sym_cl] = ACTIONS(1630), - [anon_sym_in] = ACTIONS(1632), - [anon_sym_across] = ACTIONS(1632), - [anon_sym_being] = ACTIONS(1632), - [anon_sym_using] = ACTIONS(1632), - [aux_sym_for_clause_word_token1] = ACTIONS(1634), - [anon_sym_below] = ACTIONS(1632), - [anon_sym_above] = ACTIONS(1632), - [anon_sym_from] = ACTIONS(1632), - [anon_sym_to] = ACTIONS(1632), - [anon_sym_upto] = ACTIONS(1632), - [anon_sym_upfrom] = ACTIONS(1632), - [anon_sym_downto] = ACTIONS(1632), - [anon_sym_downfrom] = ACTIONS(1632), - [anon_sym_on] = ACTIONS(1632), - [anon_sym_by] = ACTIONS(1632), - [anon_sym_then] = ACTIONS(1632), - [anon_sym_EQ] = ACTIONS(1632), - [anon_sym_POUNDP] = ACTIONS(1636), - [anon_sym_POUNDp] = ACTIONS(1636), - [sym_self_referential_reader_macro] = ACTIONS(1844), - [anon_sym_POUND_PLUS] = ACTIONS(1640), - [anon_sym_POUND_DASH] = ACTIONS(1640), - [anon_sym_POUNDC] = ACTIONS(1642), - [anon_sym_POUNDc] = ACTIONS(1642), + [sym_fancy_literal] = ACTIONS(1780), + [anon_sym_cl] = ACTIONS(1796), + [aux_sym_accumulation_verb_token1] = ACTIONS(1799), + [anon_sym_for] = ACTIONS(1799), + [anon_sym_and] = ACTIONS(1799), + [anon_sym_as] = ACTIONS(1799), + [anon_sym_with] = ACTIONS(1799), + [anon_sym_do] = ACTIONS(1799), + [anon_sym_while] = ACTIONS(1799), + [anon_sym_until] = ACTIONS(1799), + [anon_sym_repeat] = ACTIONS(1799), + [anon_sym_when] = ACTIONS(1799), + [anon_sym_if] = ACTIONS(1799), + [anon_sym_unless] = ACTIONS(1799), + [anon_sym_always] = ACTIONS(1799), + [anon_sym_thereis] = ACTIONS(1799), + [anon_sym_never] = ACTIONS(1799), + [anon_sym_else] = ACTIONS(1799), + [anon_sym_finally] = ACTIONS(1799), + [anon_sym_return] = ACTIONS(1799), + [anon_sym_initially] = ACTIONS(1799), + [anon_sym_POUNDP] = ACTIONS(1735), + [anon_sym_POUNDp] = ACTIONS(1735), + [sym_self_referential_reader_macro] = ACTIONS(1801), + [anon_sym_POUND_PLUS] = ACTIONS(1739), + [anon_sym_POUND_DASH] = ACTIONS(1739), + [anon_sym_POUNDC] = ACTIONS(1741), + [anon_sym_POUNDc] = ACTIONS(1741), }, [70] = { - [sym__gap] = STATE(123), - [sym_dis_expr] = STATE(123), - [sym__form] = STATE(2527), - [sym_num_lit] = STATE(2527), - [sym_kwd_lit] = STATE(2527), - [sym_str_lit] = STATE(2527), - [sym_char_lit] = STATE(2527), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2527), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2527), - [sym_set_lit] = STATE(2527), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2527), - [sym_splicing_read_cond_lit] = STATE(2527), - [sym_var_quoting_lit] = STATE(2527), - [sym_quoting_lit] = STATE(2527), - [sym_syn_quoting_lit] = STATE(2527), - [sym_unquote_splicing_lit] = STATE(2527), - [sym_unquoting_lit] = STATE(2527), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2527), - [sym_package_lit] = STATE(2527), - [sym_include_reader_macro] = STATE(2527), - [sym_complex_num_lit] = STATE(2527), - [aux_sym_dis_expr_repeat1] = STATE(123), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(1846), - [sym_comment] = ACTIONS(1846), - [anon_sym_POUND_] = ACTIONS(1817), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(1849), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(1822), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(1849), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(251), - [anon_sym_POUND_CARET] = ACTIONS(254), - [anon_sym_LPAREN] = ACTIONS(1825), - [anon_sym_RPAREN] = ACTIONS(260), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2121), + [sym_num_lit] = STATE(2121), + [sym_kwd_lit] = STATE(2121), + [sym_str_lit] = STATE(2121), + [sym_char_lit] = STATE(2121), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2121), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2121), + [sym_set_lit] = STATE(2121), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2121), + [sym_splicing_read_cond_lit] = STATE(2121), + [sym_var_quoting_lit] = STATE(2121), + [sym_quoting_lit] = STATE(2121), + [sym_syn_quoting_lit] = STATE(2121), + [sym_unquote_splicing_lit] = STATE(2121), + [sym_unquoting_lit] = STATE(2121), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2121), + [sym_package_lit] = STATE(2121), + [sym_include_reader_macro] = STATE(2121), + [sym_complex_num_lit] = STATE(2121), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(1803), + [sym_comment] = ACTIONS(1803), + [anon_sym_POUND_] = ACTIONS(1806), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(1809), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(1811), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(1809), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(1814), + [anon_sym_POUND_CARET] = ACTIONS(1817), + [anon_sym_LPAREN] = ACTIONS(1820), + [anon_sym_RPAREN] = ACTIONS(1823), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(1849), - [anon_sym_cl] = ACTIONS(1828), - [aux_sym_accumulation_verb_token1] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_as] = ACTIONS(267), - [anon_sym_with] = ACTIONS(267), - [anon_sym_do] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_until] = ACTIONS(267), - [anon_sym_repeat] = ACTIONS(267), - [anon_sym_when] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_unless] = ACTIONS(267), - [anon_sym_always] = ACTIONS(267), - [anon_sym_thereis] = ACTIONS(267), - [anon_sym_never] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_finally] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_initially] = ACTIONS(267), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(1851), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(1809), + [anon_sym_cl] = ACTIONS(1825), + [aux_sym_accumulation_verb_token1] = ACTIONS(1828), + [anon_sym_for] = ACTIONS(1828), + [anon_sym_and] = ACTIONS(1828), + [anon_sym_as] = ACTIONS(1828), + [anon_sym_with] = ACTIONS(1828), + [anon_sym_do] = ACTIONS(1828), + [anon_sym_while] = ACTIONS(1828), + [anon_sym_until] = ACTIONS(1828), + [anon_sym_repeat] = ACTIONS(1828), + [anon_sym_when] = ACTIONS(1828), + [anon_sym_if] = ACTIONS(1828), + [anon_sym_unless] = ACTIONS(1828), + [anon_sym_always] = ACTIONS(1828), + [anon_sym_thereis] = ACTIONS(1828), + [anon_sym_never] = ACTIONS(1828), + [anon_sym_else] = ACTIONS(1828), + [anon_sym_finally] = ACTIONS(1828), + [anon_sym_return] = ACTIONS(1828), + [anon_sym_initially] = ACTIONS(1828), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(1830), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [71] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2065), - [sym_num_lit] = STATE(2065), - [sym_kwd_lit] = STATE(2065), - [sym_str_lit] = STATE(2065), - [sym_char_lit] = STATE(2065), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2065), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2065), - [sym_set_lit] = STATE(2065), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2065), - [sym_splicing_read_cond_lit] = STATE(2065), - [sym_var_quoting_lit] = STATE(2065), - [sym_quoting_lit] = STATE(2065), - [sym_syn_quoting_lit] = STATE(2065), - [sym_unquote_splicing_lit] = STATE(2065), - [sym_unquoting_lit] = STATE(2065), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2065), - [sym_package_lit] = STATE(2065), - [sym_include_reader_macro] = STATE(2065), - [sym_complex_num_lit] = STATE(2065), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(1785), - [sym_comment] = ACTIONS(1785), - [anon_sym_POUND_] = ACTIONS(1788), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(1853), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(1793), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(1853), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1796), - [anon_sym_POUND_CARET] = ACTIONS(1799), - [anon_sym_LPAREN] = ACTIONS(1802), - [anon_sym_RPAREN] = ACTIONS(1805), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(111), + [sym_dis_expr] = STATE(111), + [sym__form] = STATE(2122), + [sym_num_lit] = STATE(2122), + [sym_kwd_lit] = STATE(2122), + [sym_str_lit] = STATE(2122), + [sym_char_lit] = STATE(2122), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2122), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2122), + [sym_set_lit] = STATE(2122), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2122), + [sym_splicing_read_cond_lit] = STATE(2122), + [sym_var_quoting_lit] = STATE(2122), + [sym_quoting_lit] = STATE(2122), + [sym_syn_quoting_lit] = STATE(2122), + [sym_unquote_splicing_lit] = STATE(2122), + [sym_unquoting_lit] = STATE(2122), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2122), + [sym_package_lit] = STATE(2122), + [sym_include_reader_macro] = STATE(2122), + [sym_complex_num_lit] = STATE(2122), + [aux_sym_dis_expr_repeat1] = STATE(111), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(1832), + [sym_comment] = ACTIONS(1832), + [anon_sym_POUND_] = ACTIONS(1806), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(1835), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(1811), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(1835), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(1814), + [anon_sym_POUND_CARET] = ACTIONS(1817), + [anon_sym_LPAREN] = ACTIONS(1820), + [anon_sym_RPAREN] = ACTIONS(1823), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(1853), - [anon_sym_cl] = ACTIONS(1807), - [aux_sym_accumulation_verb_token1] = ACTIONS(1810), - [anon_sym_for] = ACTIONS(1810), - [anon_sym_and] = ACTIONS(1810), - [anon_sym_as] = ACTIONS(1810), - [anon_sym_with] = ACTIONS(1810), - [anon_sym_do] = ACTIONS(1810), - [anon_sym_while] = ACTIONS(1810), - [anon_sym_until] = ACTIONS(1810), - [anon_sym_repeat] = ACTIONS(1810), - [anon_sym_when] = ACTIONS(1810), - [anon_sym_if] = ACTIONS(1810), - [anon_sym_unless] = ACTIONS(1810), - [anon_sym_always] = ACTIONS(1810), - [anon_sym_thereis] = ACTIONS(1810), - [anon_sym_never] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1810), - [anon_sym_finally] = ACTIONS(1810), - [anon_sym_return] = ACTIONS(1810), - [anon_sym_initially] = ACTIONS(1810), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(1855), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(1835), + [anon_sym_cl] = ACTIONS(1825), + [aux_sym_accumulation_verb_token1] = ACTIONS(1828), + [anon_sym_for] = ACTIONS(1828), + [anon_sym_and] = ACTIONS(1828), + [anon_sym_as] = ACTIONS(1828), + [anon_sym_with] = ACTIONS(1828), + [anon_sym_do] = ACTIONS(1828), + [anon_sym_while] = ACTIONS(1828), + [anon_sym_until] = ACTIONS(1828), + [anon_sym_repeat] = ACTIONS(1828), + [anon_sym_when] = ACTIONS(1828), + [anon_sym_if] = ACTIONS(1828), + [anon_sym_unless] = ACTIONS(1828), + [anon_sym_always] = ACTIONS(1828), + [anon_sym_thereis] = ACTIONS(1828), + [anon_sym_never] = ACTIONS(1828), + [anon_sym_else] = ACTIONS(1828), + [anon_sym_finally] = ACTIONS(1828), + [anon_sym_return] = ACTIONS(1828), + [anon_sym_initially] = ACTIONS(1828), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(1837), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [72] = { - [sym__gap] = STATE(129), - [sym_dis_expr] = STATE(129), - [sym__form] = STATE(2405), - [sym_num_lit] = STATE(2405), - [sym_kwd_lit] = STATE(2405), - [sym_str_lit] = STATE(2405), - [sym_char_lit] = STATE(2405), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2405), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2405), - [sym_set_lit] = STATE(2405), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2405), - [sym_splicing_read_cond_lit] = STATE(2405), - [sym_var_quoting_lit] = STATE(2405), - [sym_quoting_lit] = STATE(2405), - [sym_syn_quoting_lit] = STATE(2405), - [sym_unquote_splicing_lit] = STATE(2405), - [sym_unquoting_lit] = STATE(2405), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2405), - [sym_package_lit] = STATE(2405), - [sym_include_reader_macro] = STATE(2405), - [sym_complex_num_lit] = STATE(2405), - [aux_sym_dis_expr_repeat1] = STATE(129), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(1857), - [sym_comment] = ACTIONS(1857), - [anon_sym_POUND_] = ACTIONS(1860), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(1863), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(1865), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(1863), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1868), - [anon_sym_POUND_CARET] = ACTIONS(1871), - [anon_sym_LPAREN] = ACTIONS(1874), - [anon_sym_RPAREN] = ACTIONS(1877), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(112), + [sym_dis_expr] = STATE(112), + [sym__form] = STATE(2125), + [sym_num_lit] = STATE(2125), + [sym_kwd_lit] = STATE(2125), + [sym_str_lit] = STATE(2125), + [sym_char_lit] = STATE(2125), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2125), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2125), + [sym_set_lit] = STATE(2125), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2125), + [sym_splicing_read_cond_lit] = STATE(2125), + [sym_var_quoting_lit] = STATE(2125), + [sym_quoting_lit] = STATE(2125), + [sym_syn_quoting_lit] = STATE(2125), + [sym_unquote_splicing_lit] = STATE(2125), + [sym_unquoting_lit] = STATE(2125), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2125), + [sym_package_lit] = STATE(2125), + [sym_include_reader_macro] = STATE(2125), + [sym_complex_num_lit] = STATE(2125), + [aux_sym_dis_expr_repeat1] = STATE(112), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(1839), + [sym_comment] = ACTIONS(1839), + [anon_sym_POUND_] = ACTIONS(1842), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(1845), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(1845), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(1850), + [anon_sym_POUND_CARET] = ACTIONS(1853), + [anon_sym_LPAREN] = ACTIONS(1856), + [anon_sym_RPAREN] = ACTIONS(1859), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(1863), - [anon_sym_cl] = ACTIONS(1879), - [aux_sym_accumulation_verb_token1] = ACTIONS(1882), - [anon_sym_for] = ACTIONS(1882), - [anon_sym_and] = ACTIONS(1882), - [anon_sym_as] = ACTIONS(1882), - [anon_sym_with] = ACTIONS(1882), - [anon_sym_do] = ACTIONS(1882), - [anon_sym_while] = ACTIONS(1882), - [anon_sym_until] = ACTIONS(1882), - [anon_sym_repeat] = ACTIONS(1882), - [anon_sym_when] = ACTIONS(1882), - [anon_sym_if] = ACTIONS(1882), - [anon_sym_unless] = ACTIONS(1882), - [anon_sym_always] = ACTIONS(1882), - [anon_sym_thereis] = ACTIONS(1882), - [anon_sym_never] = ACTIONS(1882), - [anon_sym_else] = ACTIONS(1882), - [anon_sym_finally] = ACTIONS(1882), - [anon_sym_return] = ACTIONS(1882), - [anon_sym_initially] = ACTIONS(1882), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(1884), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(1845), + [anon_sym_cl] = ACTIONS(1861), + [aux_sym_accumulation_verb_token1] = ACTIONS(1864), + [anon_sym_for] = ACTIONS(1864), + [anon_sym_and] = ACTIONS(1864), + [anon_sym_as] = ACTIONS(1864), + [anon_sym_with] = ACTIONS(1864), + [anon_sym_do] = ACTIONS(1864), + [anon_sym_while] = ACTIONS(1864), + [anon_sym_until] = ACTIONS(1864), + [anon_sym_repeat] = ACTIONS(1864), + [anon_sym_when] = ACTIONS(1864), + [anon_sym_if] = ACTIONS(1864), + [anon_sym_unless] = ACTIONS(1864), + [anon_sym_always] = ACTIONS(1864), + [anon_sym_thereis] = ACTIONS(1864), + [anon_sym_never] = ACTIONS(1864), + [anon_sym_else] = ACTIONS(1864), + [anon_sym_finally] = ACTIONS(1864), + [anon_sym_return] = ACTIONS(1864), + [anon_sym_initially] = ACTIONS(1864), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(1866), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [73] = { - [sym__gap] = STATE(66), - [sym_dis_expr] = STATE(66), - [sym__form] = STATE(2347), - [sym_num_lit] = STATE(2347), - [sym_kwd_lit] = STATE(2347), - [sym_str_lit] = STATE(2347), - [sym_char_lit] = STATE(2347), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2347), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2347), - [sym_set_lit] = STATE(2347), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2347), - [sym_splicing_read_cond_lit] = STATE(2347), - [sym_var_quoting_lit] = STATE(2347), - [sym_quoting_lit] = STATE(2347), - [sym_syn_quoting_lit] = STATE(2347), - [sym_unquote_splicing_lit] = STATE(2347), - [sym_unquoting_lit] = STATE(2347), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2347), - [sym_package_lit] = STATE(2347), - [sym_include_reader_macro] = STATE(2347), - [sym_complex_num_lit] = STATE(2347), - [aux_sym_dis_expr_repeat1] = STATE(66), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(1886), - [sym_comment] = ACTIONS(1886), - [anon_sym_POUND_] = ACTIONS(1439), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(1889), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(1444), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(1889), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1447), - [anon_sym_POUND_CARET] = ACTIONS(1450), - [anon_sym_LPAREN] = ACTIONS(1453), - [anon_sym_RPAREN] = ACTIONS(1456), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2128), + [sym_num_lit] = STATE(2128), + [sym_kwd_lit] = STATE(2128), + [sym_str_lit] = STATE(2128), + [sym_char_lit] = STATE(2128), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2128), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2128), + [sym_set_lit] = STATE(2128), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2128), + [sym_splicing_read_cond_lit] = STATE(2128), + [sym_var_quoting_lit] = STATE(2128), + [sym_quoting_lit] = STATE(2128), + [sym_syn_quoting_lit] = STATE(2128), + [sym_unquote_splicing_lit] = STATE(2128), + [sym_unquoting_lit] = STATE(2128), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2128), + [sym_package_lit] = STATE(2128), + [sym_include_reader_macro] = STATE(2128), + [sym_complex_num_lit] = STATE(2128), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(1868), + [sym_comment] = ACTIONS(1868), + [anon_sym_POUND_] = ACTIONS(1842), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(1871), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(1871), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(1850), + [anon_sym_POUND_CARET] = ACTIONS(1853), + [anon_sym_LPAREN] = ACTIONS(1856), + [anon_sym_RPAREN] = ACTIONS(1859), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(1889), - [anon_sym_cl] = ACTIONS(1458), - [aux_sym_accumulation_verb_token1] = ACTIONS(1461), - [anon_sym_for] = ACTIONS(1461), - [anon_sym_and] = ACTIONS(1461), - [anon_sym_as] = ACTIONS(1461), - [anon_sym_with] = ACTIONS(1461), - [anon_sym_do] = ACTIONS(1461), - [anon_sym_while] = ACTIONS(1461), - [anon_sym_until] = ACTIONS(1461), - [anon_sym_repeat] = ACTIONS(1461), - [anon_sym_when] = ACTIONS(1461), - [anon_sym_if] = ACTIONS(1461), - [anon_sym_unless] = ACTIONS(1461), - [anon_sym_always] = ACTIONS(1461), - [anon_sym_thereis] = ACTIONS(1461), - [anon_sym_never] = ACTIONS(1461), - [anon_sym_else] = ACTIONS(1461), - [anon_sym_finally] = ACTIONS(1461), - [anon_sym_return] = ACTIONS(1461), - [anon_sym_initially] = ACTIONS(1461), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(1891), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(1871), + [anon_sym_cl] = ACTIONS(1861), + [aux_sym_accumulation_verb_token1] = ACTIONS(1864), + [anon_sym_for] = ACTIONS(1864), + [anon_sym_and] = ACTIONS(1864), + [anon_sym_as] = ACTIONS(1864), + [anon_sym_with] = ACTIONS(1864), + [anon_sym_do] = ACTIONS(1864), + [anon_sym_while] = ACTIONS(1864), + [anon_sym_until] = ACTIONS(1864), + [anon_sym_repeat] = ACTIONS(1864), + [anon_sym_when] = ACTIONS(1864), + [anon_sym_if] = ACTIONS(1864), + [anon_sym_unless] = ACTIONS(1864), + [anon_sym_always] = ACTIONS(1864), + [anon_sym_thereis] = ACTIONS(1864), + [anon_sym_never] = ACTIONS(1864), + [anon_sym_else] = ACTIONS(1864), + [anon_sym_finally] = ACTIONS(1864), + [anon_sym_return] = ACTIONS(1864), + [anon_sym_initially] = ACTIONS(1864), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(1873), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [74] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2346), - [sym_num_lit] = STATE(2346), - [sym_kwd_lit] = STATE(2346), - [sym_str_lit] = STATE(2346), - [sym_char_lit] = STATE(2346), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2346), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2346), - [sym_set_lit] = STATE(2346), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2346), - [sym_splicing_read_cond_lit] = STATE(2346), - [sym_var_quoting_lit] = STATE(2346), - [sym_quoting_lit] = STATE(2346), - [sym_syn_quoting_lit] = STATE(2346), - [sym_unquote_splicing_lit] = STATE(2346), - [sym_unquoting_lit] = STATE(2346), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2346), - [sym_package_lit] = STATE(2346), - [sym_include_reader_macro] = STATE(2346), - [sym_complex_num_lit] = STATE(2346), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(1436), - [sym_comment] = ACTIONS(1436), - [anon_sym_POUND_] = ACTIONS(1439), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(1893), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(1444), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(1893), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1447), - [anon_sym_POUND_CARET] = ACTIONS(1450), - [anon_sym_LPAREN] = ACTIONS(1453), - [anon_sym_RPAREN] = ACTIONS(1456), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(115), + [sym_dis_expr] = STATE(115), + [sym__form] = STATE(2129), + [sym_num_lit] = STATE(2129), + [sym_kwd_lit] = STATE(2129), + [sym_str_lit] = STATE(2129), + [sym_char_lit] = STATE(2129), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2129), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2129), + [sym_set_lit] = STATE(2129), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2129), + [sym_splicing_read_cond_lit] = STATE(2129), + [sym_var_quoting_lit] = STATE(2129), + [sym_quoting_lit] = STATE(2129), + [sym_syn_quoting_lit] = STATE(2129), + [sym_unquote_splicing_lit] = STATE(2129), + [sym_unquoting_lit] = STATE(2129), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2129), + [sym_package_lit] = STATE(2129), + [sym_include_reader_macro] = STATE(2129), + [sym_complex_num_lit] = STATE(2129), + [aux_sym_dis_expr_repeat1] = STATE(115), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(1875), + [sym_comment] = ACTIONS(1875), + [anon_sym_POUND_] = ACTIONS(1842), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(1878), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(1878), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(1850), + [anon_sym_POUND_CARET] = ACTIONS(1853), + [anon_sym_LPAREN] = ACTIONS(1856), + [anon_sym_RPAREN] = ACTIONS(1859), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(1893), - [anon_sym_cl] = ACTIONS(1458), - [aux_sym_accumulation_verb_token1] = ACTIONS(1461), - [anon_sym_for] = ACTIONS(1461), - [anon_sym_and] = ACTIONS(1461), - [anon_sym_as] = ACTIONS(1461), - [anon_sym_with] = ACTIONS(1461), - [anon_sym_do] = ACTIONS(1461), - [anon_sym_while] = ACTIONS(1461), - [anon_sym_until] = ACTIONS(1461), - [anon_sym_repeat] = ACTIONS(1461), - [anon_sym_when] = ACTIONS(1461), - [anon_sym_if] = ACTIONS(1461), - [anon_sym_unless] = ACTIONS(1461), - [anon_sym_always] = ACTIONS(1461), - [anon_sym_thereis] = ACTIONS(1461), - [anon_sym_never] = ACTIONS(1461), - [anon_sym_else] = ACTIONS(1461), - [anon_sym_finally] = ACTIONS(1461), - [anon_sym_return] = ACTIONS(1461), - [anon_sym_initially] = ACTIONS(1461), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(1895), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(1878), + [anon_sym_cl] = ACTIONS(1861), + [aux_sym_accumulation_verb_token1] = ACTIONS(1864), + [anon_sym_for] = ACTIONS(1864), + [anon_sym_and] = ACTIONS(1864), + [anon_sym_as] = ACTIONS(1864), + [anon_sym_with] = ACTIONS(1864), + [anon_sym_do] = ACTIONS(1864), + [anon_sym_while] = ACTIONS(1864), + [anon_sym_until] = ACTIONS(1864), + [anon_sym_repeat] = ACTIONS(1864), + [anon_sym_when] = ACTIONS(1864), + [anon_sym_if] = ACTIONS(1864), + [anon_sym_unless] = ACTIONS(1864), + [anon_sym_always] = ACTIONS(1864), + [anon_sym_thereis] = ACTIONS(1864), + [anon_sym_never] = ACTIONS(1864), + [anon_sym_else] = ACTIONS(1864), + [anon_sym_finally] = ACTIONS(1864), + [anon_sym_return] = ACTIONS(1864), + [anon_sym_initially] = ACTIONS(1864), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(1880), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [75] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2343), - [sym_num_lit] = STATE(2343), - [sym_kwd_lit] = STATE(2343), - [sym_str_lit] = STATE(2343), - [sym_char_lit] = STATE(2343), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2343), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2343), - [sym_set_lit] = STATE(2343), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2343), - [sym_splicing_read_cond_lit] = STATE(2343), - [sym_var_quoting_lit] = STATE(2343), - [sym_quoting_lit] = STATE(2343), - [sym_syn_quoting_lit] = STATE(2343), - [sym_unquote_splicing_lit] = STATE(2343), - [sym_unquoting_lit] = STATE(2343), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2343), - [sym_package_lit] = STATE(2343), - [sym_include_reader_macro] = STATE(2343), - [sym_complex_num_lit] = STATE(2343), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(1648), - [sym_comment] = ACTIONS(1648), - [anon_sym_POUND_] = ACTIONS(1651), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(1897), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(1656), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(1897), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1659), - [anon_sym_POUND_CARET] = ACTIONS(1662), - [anon_sym_LPAREN] = ACTIONS(1665), - [anon_sym_RPAREN] = ACTIONS(1668), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(116), + [sym_dis_expr] = STATE(116), + [sym__form] = STATE(2131), + [sym_num_lit] = STATE(2131), + [sym_kwd_lit] = STATE(2131), + [sym_str_lit] = STATE(2131), + [sym_char_lit] = STATE(2131), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2131), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2131), + [sym_set_lit] = STATE(2131), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2131), + [sym_splicing_read_cond_lit] = STATE(2131), + [sym_var_quoting_lit] = STATE(2131), + [sym_quoting_lit] = STATE(2131), + [sym_syn_quoting_lit] = STATE(2131), + [sym_unquote_splicing_lit] = STATE(2131), + [sym_unquoting_lit] = STATE(2131), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2131), + [sym_package_lit] = STATE(2131), + [sym_include_reader_macro] = STATE(2131), + [sym_complex_num_lit] = STATE(2131), + [aux_sym_dis_expr_repeat1] = STATE(116), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(1882), + [sym_comment] = ACTIONS(1882), + [anon_sym_POUND_] = ACTIONS(1806), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(1885), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(1811), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(1885), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(1814), + [anon_sym_POUND_CARET] = ACTIONS(1817), + [anon_sym_LPAREN] = ACTIONS(1820), + [anon_sym_RPAREN] = ACTIONS(1823), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(1897), - [anon_sym_cl] = ACTIONS(1670), - [aux_sym_accumulation_verb_token1] = ACTIONS(1673), - [anon_sym_for] = ACTIONS(1673), - [anon_sym_and] = ACTIONS(1673), - [anon_sym_as] = ACTIONS(1673), - [anon_sym_with] = ACTIONS(1673), - [anon_sym_do] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1673), - [anon_sym_until] = ACTIONS(1673), - [anon_sym_repeat] = ACTIONS(1673), - [anon_sym_when] = ACTIONS(1673), - [anon_sym_if] = ACTIONS(1673), - [anon_sym_unless] = ACTIONS(1673), - [anon_sym_always] = ACTIONS(1673), - [anon_sym_thereis] = ACTIONS(1673), - [anon_sym_never] = ACTIONS(1673), - [anon_sym_else] = ACTIONS(1673), - [anon_sym_finally] = ACTIONS(1673), - [anon_sym_return] = ACTIONS(1673), - [anon_sym_initially] = ACTIONS(1673), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(1899), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(1885), + [anon_sym_cl] = ACTIONS(1825), + [aux_sym_accumulation_verb_token1] = ACTIONS(1828), + [anon_sym_for] = ACTIONS(1828), + [anon_sym_and] = ACTIONS(1828), + [anon_sym_as] = ACTIONS(1828), + [anon_sym_with] = ACTIONS(1828), + [anon_sym_do] = ACTIONS(1828), + [anon_sym_while] = ACTIONS(1828), + [anon_sym_until] = ACTIONS(1828), + [anon_sym_repeat] = ACTIONS(1828), + [anon_sym_when] = ACTIONS(1828), + [anon_sym_if] = ACTIONS(1828), + [anon_sym_unless] = ACTIONS(1828), + [anon_sym_always] = ACTIONS(1828), + [anon_sym_thereis] = ACTIONS(1828), + [anon_sym_never] = ACTIONS(1828), + [anon_sym_else] = ACTIONS(1828), + [anon_sym_finally] = ACTIONS(1828), + [anon_sym_return] = ACTIONS(1828), + [anon_sym_initially] = ACTIONS(1828), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(1887), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [76] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2403), - [sym_num_lit] = STATE(2403), - [sym_kwd_lit] = STATE(2403), - [sym_str_lit] = STATE(2403), - [sym_char_lit] = STATE(2403), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2403), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2403), - [sym_set_lit] = STATE(2403), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2403), - [sym_splicing_read_cond_lit] = STATE(2403), - [sym_var_quoting_lit] = STATE(2403), - [sym_quoting_lit] = STATE(2403), - [sym_syn_quoting_lit] = STATE(2403), - [sym_unquote_splicing_lit] = STATE(2403), - [sym_unquoting_lit] = STATE(2403), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2403), - [sym_package_lit] = STATE(2403), - [sym_include_reader_macro] = STATE(2403), - [sym_complex_num_lit] = STATE(2403), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(1901), - [sym_comment] = ACTIONS(1901), - [anon_sym_POUND_] = ACTIONS(1860), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(1904), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(1865), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(1904), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1868), - [anon_sym_POUND_CARET] = ACTIONS(1871), - [anon_sym_LPAREN] = ACTIONS(1874), - [anon_sym_RPAREN] = ACTIONS(1877), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2136), + [sym_num_lit] = STATE(2136), + [sym_kwd_lit] = STATE(2136), + [sym_str_lit] = STATE(2136), + [sym_char_lit] = STATE(2136), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2136), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2136), + [sym_set_lit] = STATE(2136), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2136), + [sym_splicing_read_cond_lit] = STATE(2136), + [sym_var_quoting_lit] = STATE(2136), + [sym_quoting_lit] = STATE(2136), + [sym_syn_quoting_lit] = STATE(2136), + [sym_unquote_splicing_lit] = STATE(2136), + [sym_unquoting_lit] = STATE(2136), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2136), + [sym_package_lit] = STATE(2136), + [sym_include_reader_macro] = STATE(2136), + [sym_complex_num_lit] = STATE(2136), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(1803), + [sym_comment] = ACTIONS(1803), + [anon_sym_POUND_] = ACTIONS(1806), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(1889), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(1811), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(1889), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(1814), + [anon_sym_POUND_CARET] = ACTIONS(1817), + [anon_sym_LPAREN] = ACTIONS(1820), + [anon_sym_RPAREN] = ACTIONS(1823), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(1904), - [anon_sym_cl] = ACTIONS(1879), - [aux_sym_accumulation_verb_token1] = ACTIONS(1882), - [anon_sym_for] = ACTIONS(1882), - [anon_sym_and] = ACTIONS(1882), - [anon_sym_as] = ACTIONS(1882), - [anon_sym_with] = ACTIONS(1882), - [anon_sym_do] = ACTIONS(1882), - [anon_sym_while] = ACTIONS(1882), - [anon_sym_until] = ACTIONS(1882), - [anon_sym_repeat] = ACTIONS(1882), - [anon_sym_when] = ACTIONS(1882), - [anon_sym_if] = ACTIONS(1882), - [anon_sym_unless] = ACTIONS(1882), - [anon_sym_always] = ACTIONS(1882), - [anon_sym_thereis] = ACTIONS(1882), - [anon_sym_never] = ACTIONS(1882), - [anon_sym_else] = ACTIONS(1882), - [anon_sym_finally] = ACTIONS(1882), - [anon_sym_return] = ACTIONS(1882), - [anon_sym_initially] = ACTIONS(1882), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(1906), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(1889), + [anon_sym_cl] = ACTIONS(1825), + [aux_sym_accumulation_verb_token1] = ACTIONS(1828), + [anon_sym_for] = ACTIONS(1828), + [anon_sym_and] = ACTIONS(1828), + [anon_sym_as] = ACTIONS(1828), + [anon_sym_with] = ACTIONS(1828), + [anon_sym_do] = ACTIONS(1828), + [anon_sym_while] = ACTIONS(1828), + [anon_sym_until] = ACTIONS(1828), + [anon_sym_repeat] = ACTIONS(1828), + [anon_sym_when] = ACTIONS(1828), + [anon_sym_if] = ACTIONS(1828), + [anon_sym_unless] = ACTIONS(1828), + [anon_sym_always] = ACTIONS(1828), + [anon_sym_thereis] = ACTIONS(1828), + [anon_sym_never] = ACTIONS(1828), + [anon_sym_else] = ACTIONS(1828), + [anon_sym_finally] = ACTIONS(1828), + [anon_sym_return] = ACTIONS(1828), + [anon_sym_initially] = ACTIONS(1828), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(1891), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [77] = { - [sym__gap] = STATE(63), - [sym_dis_expr] = STATE(63), - [sym__form] = STATE(2335), - [sym_num_lit] = STATE(2335), - [sym_kwd_lit] = STATE(2335), - [sym_str_lit] = STATE(2335), - [sym_char_lit] = STATE(2335), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2335), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2335), - [sym_set_lit] = STATE(2335), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2335), - [sym_splicing_read_cond_lit] = STATE(2335), - [sym_var_quoting_lit] = STATE(2335), - [sym_quoting_lit] = STATE(2335), - [sym_syn_quoting_lit] = STATE(2335), - [sym_unquote_splicing_lit] = STATE(2335), - [sym_unquoting_lit] = STATE(2335), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2335), - [sym_package_lit] = STATE(2335), - [sym_include_reader_macro] = STATE(2335), - [sym_complex_num_lit] = STATE(2335), - [aux_sym_dis_expr_repeat1] = STATE(63), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(1908), - [sym_comment] = ACTIONS(1908), - [anon_sym_POUND_] = ACTIONS(1680), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(1911), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(1685), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(1911), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1688), - [anon_sym_POUND_CARET] = ACTIONS(1691), - [anon_sym_LPAREN] = ACTIONS(1694), - [anon_sym_RPAREN] = ACTIONS(1697), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(119), + [sym_dis_expr] = STATE(119), + [sym__form] = STATE(2140), + [sym_num_lit] = STATE(2140), + [sym_kwd_lit] = STATE(2140), + [sym_str_lit] = STATE(2140), + [sym_char_lit] = STATE(2140), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2140), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2140), + [sym_set_lit] = STATE(2140), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2140), + [sym_splicing_read_cond_lit] = STATE(2140), + [sym_var_quoting_lit] = STATE(2140), + [sym_quoting_lit] = STATE(2140), + [sym_syn_quoting_lit] = STATE(2140), + [sym_unquote_splicing_lit] = STATE(2140), + [sym_unquoting_lit] = STATE(2140), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2140), + [sym_package_lit] = STATE(2140), + [sym_include_reader_macro] = STATE(2140), + [sym_complex_num_lit] = STATE(2140), + [aux_sym_dis_expr_repeat1] = STATE(119), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(1893), + [sym_comment] = ACTIONS(1893), + [anon_sym_POUND_] = ACTIONS(1896), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(1899), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(1901), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(1899), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(1904), + [anon_sym_POUND_CARET] = ACTIONS(1907), + [anon_sym_LPAREN] = ACTIONS(1910), + [anon_sym_RPAREN] = ACTIONS(1913), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(1911), - [anon_sym_cl] = ACTIONS(1699), - [aux_sym_accumulation_verb_token1] = ACTIONS(1702), - [anon_sym_for] = ACTIONS(1702), - [anon_sym_and] = ACTIONS(1702), - [anon_sym_as] = ACTIONS(1702), - [anon_sym_with] = ACTIONS(1702), - [anon_sym_do] = ACTIONS(1702), - [anon_sym_while] = ACTIONS(1702), - [anon_sym_until] = ACTIONS(1702), - [anon_sym_repeat] = ACTIONS(1702), - [anon_sym_when] = ACTIONS(1702), - [anon_sym_if] = ACTIONS(1702), - [anon_sym_unless] = ACTIONS(1702), - [anon_sym_always] = ACTIONS(1702), - [anon_sym_thereis] = ACTIONS(1702), - [anon_sym_never] = ACTIONS(1702), - [anon_sym_else] = ACTIONS(1702), - [anon_sym_finally] = ACTIONS(1702), - [anon_sym_return] = ACTIONS(1702), - [anon_sym_initially] = ACTIONS(1702), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(1913), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(1899), + [anon_sym_cl] = ACTIONS(1915), + [aux_sym_accumulation_verb_token1] = ACTIONS(1918), + [anon_sym_for] = ACTIONS(1918), + [anon_sym_and] = ACTIONS(1918), + [anon_sym_as] = ACTIONS(1918), + [anon_sym_with] = ACTIONS(1918), + [anon_sym_do] = ACTIONS(1918), + [anon_sym_while] = ACTIONS(1918), + [anon_sym_until] = ACTIONS(1918), + [anon_sym_repeat] = ACTIONS(1918), + [anon_sym_when] = ACTIONS(1918), + [anon_sym_if] = ACTIONS(1918), + [anon_sym_unless] = ACTIONS(1918), + [anon_sym_always] = ACTIONS(1918), + [anon_sym_thereis] = ACTIONS(1918), + [anon_sym_never] = ACTIONS(1918), + [anon_sym_else] = ACTIONS(1918), + [anon_sym_finally] = ACTIONS(1918), + [anon_sym_return] = ACTIONS(1918), + [anon_sym_initially] = ACTIONS(1918), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(1920), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [78] = { - [sym__gap] = STATE(135), - [sym_dis_expr] = STATE(135), - [sym__form] = STATE(2401), - [sym_num_lit] = STATE(2401), - [sym_kwd_lit] = STATE(2401), - [sym_str_lit] = STATE(2401), - [sym_char_lit] = STATE(2401), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2401), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2401), - [sym_set_lit] = STATE(2401), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2401), - [sym_splicing_read_cond_lit] = STATE(2401), - [sym_var_quoting_lit] = STATE(2401), - [sym_quoting_lit] = STATE(2401), - [sym_syn_quoting_lit] = STATE(2401), - [sym_unquote_splicing_lit] = STATE(2401), - [sym_unquoting_lit] = STATE(2401), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2401), - [sym_package_lit] = STATE(2401), - [sym_include_reader_macro] = STATE(2401), - [sym_complex_num_lit] = STATE(2401), - [aux_sym_dis_expr_repeat1] = STATE(135), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(1915), - [sym_comment] = ACTIONS(1915), - [anon_sym_POUND_] = ACTIONS(1918), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(1921), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(1923), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(1921), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1926), - [anon_sym_POUND_CARET] = ACTIONS(1929), - [anon_sym_LPAREN] = ACTIONS(1932), - [anon_sym_RPAREN] = ACTIONS(1935), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(273), + [sym_dis_expr] = STATE(273), + [sym__form] = STATE(2723), + [sym_num_lit] = STATE(2723), + [sym_kwd_lit] = STATE(2723), + [sym_str_lit] = STATE(2723), + [sym_char_lit] = STATE(2723), + [sym_sym_lit] = STATE(2766), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2723), + [sym__bare_list_lit] = STATE(1975), + [sym_vec_lit] = STATE(2723), + [sym_set_lit] = STATE(2723), + [sym__bare_set_lit] = STATE(1976), + [sym_read_cond_lit] = STATE(2723), + [sym_splicing_read_cond_lit] = STATE(2723), + [sym_var_quoting_lit] = STATE(2723), + [sym_quoting_lit] = STATE(2723), + [sym_syn_quoting_lit] = STATE(2723), + [sym_unquote_splicing_lit] = STATE(2723), + [sym_unquoting_lit] = STATE(2723), + [sym_defun] = STATE(1975), + [sym_for_clause_word] = STATE(419), + [sym__for_part] = STATE(1555), + [sym_loop_macro] = STATE(1975), + [sym_path_lit] = STATE(2723), + [sym_package_lit] = STATE(2723), + [sym_include_reader_macro] = STATE(2723), + [sym_complex_num_lit] = STATE(2723), + [aux_sym_dis_expr_repeat1] = STATE(273), + [aux_sym_list_lit_repeat1] = STATE(2830), + [aux_sym_for_clause_repeat1] = STATE(1282), + [sym__ws] = ACTIONS(1922), + [sym_comment] = ACTIONS(1922), + [anon_sym_POUND_] = ACTIONS(1452), + [anon_sym_POUND] = ACTIONS(1454), + [anon_sym_DOT] = ACTIONS(1924), + [aux_sym_num_lit_token1] = ACTIONS(1458), + [anon_sym_COLON] = ACTIONS(1460), + [anon_sym_COLON_COLON] = ACTIONS(1462), + [anon_sym_DQUOTE] = ACTIONS(1464), + [sym_nil_lit] = ACTIONS(1924), + [aux_sym_sym_lit_token1] = ACTIONS(1466), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(1468), + [anon_sym_POUND0A] = ACTIONS(1470), + [anon_sym_POUND0a] = ACTIONS(1470), + [anon_sym_POUND_QMARK] = ACTIONS(1472), + [anon_sym_POUND_QMARK_AT] = ACTIONS(1474), + [anon_sym_POUND_SQUOTE] = ACTIONS(1476), + [anon_sym_SQUOTE] = ACTIONS(1478), + [anon_sym_BQUOTE] = ACTIONS(1480), + [anon_sym_COMMA_AT] = ACTIONS(1482), + [anon_sym_COMMA] = ACTIONS(1484), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(1921), - [anon_sym_cl] = ACTIONS(1937), - [aux_sym_accumulation_verb_token1] = ACTIONS(1940), - [anon_sym_for] = ACTIONS(1940), - [anon_sym_and] = ACTIONS(1940), - [anon_sym_as] = ACTIONS(1940), - [anon_sym_with] = ACTIONS(1940), - [anon_sym_do] = ACTIONS(1940), - [anon_sym_while] = ACTIONS(1940), - [anon_sym_until] = ACTIONS(1940), - [anon_sym_repeat] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(1940), - [anon_sym_if] = ACTIONS(1940), - [anon_sym_unless] = ACTIONS(1940), - [anon_sym_always] = ACTIONS(1940), - [anon_sym_thereis] = ACTIONS(1940), - [anon_sym_never] = ACTIONS(1940), - [anon_sym_else] = ACTIONS(1940), - [anon_sym_finally] = ACTIONS(1940), - [anon_sym_return] = ACTIONS(1940), - [anon_sym_initially] = ACTIONS(1940), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(1942), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(1924), + [anon_sym_cl] = ACTIONS(1486), + [anon_sym_in] = ACTIONS(1488), + [anon_sym_across] = ACTIONS(1488), + [anon_sym_being] = ACTIONS(1488), + [anon_sym_using] = ACTIONS(1488), + [aux_sym_for_clause_word_token1] = ACTIONS(1490), + [anon_sym_below] = ACTIONS(1488), + [anon_sym_above] = ACTIONS(1488), + [anon_sym_from] = ACTIONS(1488), + [anon_sym_to] = ACTIONS(1488), + [anon_sym_upto] = ACTIONS(1488), + [anon_sym_upfrom] = ACTIONS(1488), + [anon_sym_downto] = ACTIONS(1488), + [anon_sym_downfrom] = ACTIONS(1488), + [anon_sym_on] = ACTIONS(1488), + [anon_sym_by] = ACTIONS(1488), + [anon_sym_then] = ACTIONS(1488), + [anon_sym_EQ] = ACTIONS(1488), + [anon_sym_POUNDP] = ACTIONS(1492), + [anon_sym_POUNDp] = ACTIONS(1492), + [sym_self_referential_reader_macro] = ACTIONS(1926), + [anon_sym_POUND_PLUS] = ACTIONS(1496), + [anon_sym_POUND_DASH] = ACTIONS(1496), + [anon_sym_POUNDC] = ACTIONS(1498), + [anon_sym_POUNDc] = ACTIONS(1498), }, [79] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2334), - [sym_num_lit] = STATE(2334), - [sym_kwd_lit] = STATE(2334), - [sym_str_lit] = STATE(2334), - [sym_char_lit] = STATE(2334), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2334), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2334), - [sym_set_lit] = STATE(2334), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2334), - [sym_splicing_read_cond_lit] = STATE(2334), - [sym_var_quoting_lit] = STATE(2334), - [sym_quoting_lit] = STATE(2334), - [sym_syn_quoting_lit] = STATE(2334), - [sym_unquote_splicing_lit] = STATE(2334), - [sym_unquoting_lit] = STATE(2334), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2334), - [sym_package_lit] = STATE(2334), - [sym_include_reader_macro] = STATE(2334), - [sym_complex_num_lit] = STATE(2334), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(1741), - [sym_comment] = ACTIONS(1741), - [anon_sym_POUND_] = ACTIONS(1680), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(1944), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(1685), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(1944), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1688), - [anon_sym_POUND_CARET] = ACTIONS(1691), - [anon_sym_LPAREN] = ACTIONS(1694), - [anon_sym_RPAREN] = ACTIONS(1697), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(121), + [sym_dis_expr] = STATE(121), + [sym__form] = STATE(2143), + [sym_num_lit] = STATE(2143), + [sym_kwd_lit] = STATE(2143), + [sym_str_lit] = STATE(2143), + [sym_char_lit] = STATE(2143), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2143), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2143), + [sym_set_lit] = STATE(2143), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2143), + [sym_splicing_read_cond_lit] = STATE(2143), + [sym_var_quoting_lit] = STATE(2143), + [sym_quoting_lit] = STATE(2143), + [sym_syn_quoting_lit] = STATE(2143), + [sym_unquote_splicing_lit] = STATE(2143), + [sym_unquoting_lit] = STATE(2143), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2143), + [sym_package_lit] = STATE(2143), + [sym_include_reader_macro] = STATE(2143), + [sym_complex_num_lit] = STATE(2143), + [aux_sym_dis_expr_repeat1] = STATE(121), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(1928), + [sym_comment] = ACTIONS(1928), + [anon_sym_POUND_] = ACTIONS(1931), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(1934), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(1936), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(1934), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(1939), + [anon_sym_POUND_CARET] = ACTIONS(1942), + [anon_sym_LPAREN] = ACTIONS(1945), + [anon_sym_RPAREN] = ACTIONS(1948), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(1944), - [anon_sym_cl] = ACTIONS(1699), - [aux_sym_accumulation_verb_token1] = ACTIONS(1702), - [anon_sym_for] = ACTIONS(1702), - [anon_sym_and] = ACTIONS(1702), - [anon_sym_as] = ACTIONS(1702), - [anon_sym_with] = ACTIONS(1702), - [anon_sym_do] = ACTIONS(1702), - [anon_sym_while] = ACTIONS(1702), - [anon_sym_until] = ACTIONS(1702), - [anon_sym_repeat] = ACTIONS(1702), - [anon_sym_when] = ACTIONS(1702), - [anon_sym_if] = ACTIONS(1702), - [anon_sym_unless] = ACTIONS(1702), - [anon_sym_always] = ACTIONS(1702), - [anon_sym_thereis] = ACTIONS(1702), - [anon_sym_never] = ACTIONS(1702), - [anon_sym_else] = ACTIONS(1702), - [anon_sym_finally] = ACTIONS(1702), - [anon_sym_return] = ACTIONS(1702), - [anon_sym_initially] = ACTIONS(1702), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(1946), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(1934), + [anon_sym_cl] = ACTIONS(1950), + [aux_sym_accumulation_verb_token1] = ACTIONS(1953), + [anon_sym_for] = ACTIONS(1953), + [anon_sym_and] = ACTIONS(1953), + [anon_sym_as] = ACTIONS(1953), + [anon_sym_with] = ACTIONS(1953), + [anon_sym_do] = ACTIONS(1953), + [anon_sym_while] = ACTIONS(1953), + [anon_sym_until] = ACTIONS(1953), + [anon_sym_repeat] = ACTIONS(1953), + [anon_sym_when] = ACTIONS(1953), + [anon_sym_if] = ACTIONS(1953), + [anon_sym_unless] = ACTIONS(1953), + [anon_sym_always] = ACTIONS(1953), + [anon_sym_thereis] = ACTIONS(1953), + [anon_sym_never] = ACTIONS(1953), + [anon_sym_else] = ACTIONS(1953), + [anon_sym_finally] = ACTIONS(1953), + [anon_sym_return] = ACTIONS(1953), + [anon_sym_initially] = ACTIONS(1953), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(1955), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [80] = { - [sym__gap] = STATE(193), - [sym_dis_expr] = STATE(193), - [sym__form] = STATE(2064), - [sym_num_lit] = STATE(2064), - [sym_kwd_lit] = STATE(2064), - [sym_str_lit] = STATE(2064), - [sym_char_lit] = STATE(2064), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2064), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2064), - [sym_set_lit] = STATE(2064), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2064), - [sym_splicing_read_cond_lit] = STATE(2064), - [sym_var_quoting_lit] = STATE(2064), - [sym_quoting_lit] = STATE(2064), - [sym_syn_quoting_lit] = STATE(2064), - [sym_unquote_splicing_lit] = STATE(2064), - [sym_unquoting_lit] = STATE(2064), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2064), - [sym_package_lit] = STATE(2064), - [sym_include_reader_macro] = STATE(2064), - [sym_complex_num_lit] = STATE(2064), - [aux_sym_dis_expr_repeat1] = STATE(193), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(1948), - [sym_comment] = ACTIONS(1948), - [anon_sym_POUND_] = ACTIONS(1788), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(1951), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(1793), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(1951), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1796), - [anon_sym_POUND_CARET] = ACTIONS(1799), - [anon_sym_LPAREN] = ACTIONS(1802), - [anon_sym_RPAREN] = ACTIONS(1805), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2147), + [sym_num_lit] = STATE(2147), + [sym_kwd_lit] = STATE(2147), + [sym_str_lit] = STATE(2147), + [sym_char_lit] = STATE(2147), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2147), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2147), + [sym_set_lit] = STATE(2147), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2147), + [sym_splicing_read_cond_lit] = STATE(2147), + [sym_var_quoting_lit] = STATE(2147), + [sym_quoting_lit] = STATE(2147), + [sym_syn_quoting_lit] = STATE(2147), + [sym_unquote_splicing_lit] = STATE(2147), + [sym_unquoting_lit] = STATE(2147), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2147), + [sym_package_lit] = STATE(2147), + [sym_include_reader_macro] = STATE(2147), + [sym_complex_num_lit] = STATE(2147), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(1957), + [sym_comment] = ACTIONS(1957), + [anon_sym_POUND_] = ACTIONS(1931), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(1960), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(1936), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(1960), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(1939), + [anon_sym_POUND_CARET] = ACTIONS(1942), + [anon_sym_LPAREN] = ACTIONS(1945), + [anon_sym_RPAREN] = ACTIONS(1948), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(1951), - [anon_sym_cl] = ACTIONS(1807), - [aux_sym_accumulation_verb_token1] = ACTIONS(1810), - [anon_sym_for] = ACTIONS(1810), - [anon_sym_and] = ACTIONS(1810), - [anon_sym_as] = ACTIONS(1810), - [anon_sym_with] = ACTIONS(1810), - [anon_sym_do] = ACTIONS(1810), - [anon_sym_while] = ACTIONS(1810), - [anon_sym_until] = ACTIONS(1810), - [anon_sym_repeat] = ACTIONS(1810), - [anon_sym_when] = ACTIONS(1810), - [anon_sym_if] = ACTIONS(1810), - [anon_sym_unless] = ACTIONS(1810), - [anon_sym_always] = ACTIONS(1810), - [anon_sym_thereis] = ACTIONS(1810), - [anon_sym_never] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1810), - [anon_sym_finally] = ACTIONS(1810), - [anon_sym_return] = ACTIONS(1810), - [anon_sym_initially] = ACTIONS(1810), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(1953), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(1960), + [anon_sym_cl] = ACTIONS(1950), + [aux_sym_accumulation_verb_token1] = ACTIONS(1953), + [anon_sym_for] = ACTIONS(1953), + [anon_sym_and] = ACTIONS(1953), + [anon_sym_as] = ACTIONS(1953), + [anon_sym_with] = ACTIONS(1953), + [anon_sym_do] = ACTIONS(1953), + [anon_sym_while] = ACTIONS(1953), + [anon_sym_until] = ACTIONS(1953), + [anon_sym_repeat] = ACTIONS(1953), + [anon_sym_when] = ACTIONS(1953), + [anon_sym_if] = ACTIONS(1953), + [anon_sym_unless] = ACTIONS(1953), + [anon_sym_always] = ACTIONS(1953), + [anon_sym_thereis] = ACTIONS(1953), + [anon_sym_never] = ACTIONS(1953), + [anon_sym_else] = ACTIONS(1953), + [anon_sym_finally] = ACTIONS(1953), + [anon_sym_return] = ACTIONS(1953), + [anon_sym_initially] = ACTIONS(1953), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(1962), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [81] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2326), - [sym_num_lit] = STATE(2326), - [sym_kwd_lit] = STATE(2326), - [sym_str_lit] = STATE(2326), - [sym_char_lit] = STATE(2326), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2326), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2326), - [sym_set_lit] = STATE(2326), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2326), - [sym_splicing_read_cond_lit] = STATE(2326), - [sym_var_quoting_lit] = STATE(2326), - [sym_quoting_lit] = STATE(2326), - [sym_syn_quoting_lit] = STATE(2326), - [sym_unquote_splicing_lit] = STATE(2326), - [sym_unquoting_lit] = STATE(2326), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2326), - [sym_package_lit] = STATE(2326), - [sym_include_reader_macro] = STATE(2326), - [sym_complex_num_lit] = STATE(2326), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(1741), - [sym_comment] = ACTIONS(1741), - [anon_sym_POUND_] = ACTIONS(1680), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(1955), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(1685), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(1955), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1688), - [anon_sym_POUND_CARET] = ACTIONS(1691), - [anon_sym_LPAREN] = ACTIONS(1694), - [anon_sym_RPAREN] = ACTIONS(1697), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(124), + [sym_dis_expr] = STATE(124), + [sym__form] = STATE(2148), + [sym_num_lit] = STATE(2148), + [sym_kwd_lit] = STATE(2148), + [sym_str_lit] = STATE(2148), + [sym_char_lit] = STATE(2148), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2148), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2148), + [sym_set_lit] = STATE(2148), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2148), + [sym_splicing_read_cond_lit] = STATE(2148), + [sym_var_quoting_lit] = STATE(2148), + [sym_quoting_lit] = STATE(2148), + [sym_syn_quoting_lit] = STATE(2148), + [sym_unquote_splicing_lit] = STATE(2148), + [sym_unquoting_lit] = STATE(2148), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2148), + [sym_package_lit] = STATE(2148), + [sym_include_reader_macro] = STATE(2148), + [sym_complex_num_lit] = STATE(2148), + [aux_sym_dis_expr_repeat1] = STATE(124), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(1964), + [sym_comment] = ACTIONS(1964), + [anon_sym_POUND_] = ACTIONS(1967), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(1970), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(1972), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(1970), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(1975), + [anon_sym_POUND_CARET] = ACTIONS(1978), + [anon_sym_LPAREN] = ACTIONS(1981), + [anon_sym_RPAREN] = ACTIONS(1984), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(1955), - [anon_sym_cl] = ACTIONS(1699), - [aux_sym_accumulation_verb_token1] = ACTIONS(1702), - [anon_sym_for] = ACTIONS(1702), - [anon_sym_and] = ACTIONS(1702), - [anon_sym_as] = ACTIONS(1702), - [anon_sym_with] = ACTIONS(1702), - [anon_sym_do] = ACTIONS(1702), - [anon_sym_while] = ACTIONS(1702), - [anon_sym_until] = ACTIONS(1702), - [anon_sym_repeat] = ACTIONS(1702), - [anon_sym_when] = ACTIONS(1702), - [anon_sym_if] = ACTIONS(1702), - [anon_sym_unless] = ACTIONS(1702), - [anon_sym_always] = ACTIONS(1702), - [anon_sym_thereis] = ACTIONS(1702), - [anon_sym_never] = ACTIONS(1702), - [anon_sym_else] = ACTIONS(1702), - [anon_sym_finally] = ACTIONS(1702), - [anon_sym_return] = ACTIONS(1702), - [anon_sym_initially] = ACTIONS(1702), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(1957), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(1970), + [anon_sym_cl] = ACTIONS(1986), + [aux_sym_accumulation_verb_token1] = ACTIONS(1989), + [anon_sym_for] = ACTIONS(1989), + [anon_sym_and] = ACTIONS(1989), + [anon_sym_as] = ACTIONS(1989), + [anon_sym_with] = ACTIONS(1989), + [anon_sym_do] = ACTIONS(1989), + [anon_sym_while] = ACTIONS(1989), + [anon_sym_until] = ACTIONS(1989), + [anon_sym_repeat] = ACTIONS(1989), + [anon_sym_when] = ACTIONS(1989), + [anon_sym_if] = ACTIONS(1989), + [anon_sym_unless] = ACTIONS(1989), + [anon_sym_always] = ACTIONS(1989), + [anon_sym_thereis] = ACTIONS(1989), + [anon_sym_never] = ACTIONS(1989), + [anon_sym_else] = ACTIONS(1989), + [anon_sym_finally] = ACTIONS(1989), + [anon_sym_return] = ACTIONS(1989), + [anon_sym_initially] = ACTIONS(1989), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(1991), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [82] = { - [sym__gap] = STATE(144), - [sym_dis_expr] = STATE(144), - [sym__form] = STATE(2395), - [sym_num_lit] = STATE(2395), - [sym_kwd_lit] = STATE(2395), - [sym_str_lit] = STATE(2395), - [sym_char_lit] = STATE(2395), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2395), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2395), - [sym_set_lit] = STATE(2395), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2395), - [sym_splicing_read_cond_lit] = STATE(2395), - [sym_var_quoting_lit] = STATE(2395), - [sym_quoting_lit] = STATE(2395), - [sym_syn_quoting_lit] = STATE(2395), - [sym_unquote_splicing_lit] = STATE(2395), - [sym_unquoting_lit] = STATE(2395), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2395), - [sym_package_lit] = STATE(2395), - [sym_include_reader_macro] = STATE(2395), - [sym_complex_num_lit] = STATE(2395), - [aux_sym_dis_expr_repeat1] = STATE(144), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(1959), - [sym_comment] = ACTIONS(1959), - [anon_sym_POUND_] = ACTIONS(1860), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(1962), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(1865), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(1962), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1868), - [anon_sym_POUND_CARET] = ACTIONS(1871), - [anon_sym_LPAREN] = ACTIONS(1874), - [anon_sym_RPAREN] = ACTIONS(1877), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(275), + [sym_dis_expr] = STATE(275), + [sym__form] = STATE(2724), + [sym_num_lit] = STATE(2724), + [sym_kwd_lit] = STATE(2724), + [sym_str_lit] = STATE(2724), + [sym_char_lit] = STATE(2724), + [sym_sym_lit] = STATE(2766), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2724), + [sym__bare_list_lit] = STATE(1975), + [sym_vec_lit] = STATE(2724), + [sym_set_lit] = STATE(2724), + [sym__bare_set_lit] = STATE(1976), + [sym_read_cond_lit] = STATE(2724), + [sym_splicing_read_cond_lit] = STATE(2724), + [sym_var_quoting_lit] = STATE(2724), + [sym_quoting_lit] = STATE(2724), + [sym_syn_quoting_lit] = STATE(2724), + [sym_unquote_splicing_lit] = STATE(2724), + [sym_unquoting_lit] = STATE(2724), + [sym_defun] = STATE(1975), + [sym_for_clause_word] = STATE(419), + [sym__for_part] = STATE(1555), + [sym_loop_macro] = STATE(1975), + [sym_path_lit] = STATE(2724), + [sym_package_lit] = STATE(2724), + [sym_include_reader_macro] = STATE(2724), + [sym_complex_num_lit] = STATE(2724), + [aux_sym_dis_expr_repeat1] = STATE(275), + [aux_sym_list_lit_repeat1] = STATE(2830), + [aux_sym_for_clause_repeat1] = STATE(1257), + [sym__ws] = ACTIONS(1993), + [sym_comment] = ACTIONS(1993), + [anon_sym_POUND_] = ACTIONS(1452), + [anon_sym_POUND] = ACTIONS(1454), + [anon_sym_DOT] = ACTIONS(1995), + [aux_sym_num_lit_token1] = ACTIONS(1458), + [anon_sym_COLON] = ACTIONS(1460), + [anon_sym_COLON_COLON] = ACTIONS(1462), + [anon_sym_DQUOTE] = ACTIONS(1464), + [sym_nil_lit] = ACTIONS(1995), + [aux_sym_sym_lit_token1] = ACTIONS(1466), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(1468), + [anon_sym_POUND0A] = ACTIONS(1470), + [anon_sym_POUND0a] = ACTIONS(1470), + [anon_sym_POUND_QMARK] = ACTIONS(1472), + [anon_sym_POUND_QMARK_AT] = ACTIONS(1474), + [anon_sym_POUND_SQUOTE] = ACTIONS(1476), + [anon_sym_SQUOTE] = ACTIONS(1478), + [anon_sym_BQUOTE] = ACTIONS(1480), + [anon_sym_COMMA_AT] = ACTIONS(1482), + [anon_sym_COMMA] = ACTIONS(1484), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(1962), - [anon_sym_cl] = ACTIONS(1879), - [aux_sym_accumulation_verb_token1] = ACTIONS(1882), - [anon_sym_for] = ACTIONS(1882), - [anon_sym_and] = ACTIONS(1882), - [anon_sym_as] = ACTIONS(1882), - [anon_sym_with] = ACTIONS(1882), - [anon_sym_do] = ACTIONS(1882), - [anon_sym_while] = ACTIONS(1882), - [anon_sym_until] = ACTIONS(1882), - [anon_sym_repeat] = ACTIONS(1882), - [anon_sym_when] = ACTIONS(1882), - [anon_sym_if] = ACTIONS(1882), - [anon_sym_unless] = ACTIONS(1882), - [anon_sym_always] = ACTIONS(1882), - [anon_sym_thereis] = ACTIONS(1882), - [anon_sym_never] = ACTIONS(1882), - [anon_sym_else] = ACTIONS(1882), - [anon_sym_finally] = ACTIONS(1882), - [anon_sym_return] = ACTIONS(1882), - [anon_sym_initially] = ACTIONS(1882), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(1964), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(1995), + [anon_sym_cl] = ACTIONS(1486), + [anon_sym_in] = ACTIONS(1488), + [anon_sym_across] = ACTIONS(1488), + [anon_sym_being] = ACTIONS(1488), + [anon_sym_using] = ACTIONS(1488), + [aux_sym_for_clause_word_token1] = ACTIONS(1490), + [anon_sym_below] = ACTIONS(1488), + [anon_sym_above] = ACTIONS(1488), + [anon_sym_from] = ACTIONS(1488), + [anon_sym_to] = ACTIONS(1488), + [anon_sym_upto] = ACTIONS(1488), + [anon_sym_upfrom] = ACTIONS(1488), + [anon_sym_downto] = ACTIONS(1488), + [anon_sym_downfrom] = ACTIONS(1488), + [anon_sym_on] = ACTIONS(1488), + [anon_sym_by] = ACTIONS(1488), + [anon_sym_then] = ACTIONS(1488), + [anon_sym_EQ] = ACTIONS(1488), + [anon_sym_POUNDP] = ACTIONS(1492), + [anon_sym_POUNDp] = ACTIONS(1492), + [sym_self_referential_reader_macro] = ACTIONS(1997), + [anon_sym_POUND_PLUS] = ACTIONS(1496), + [anon_sym_POUND_DASH] = ACTIONS(1496), + [anon_sym_POUNDC] = ACTIONS(1498), + [anon_sym_POUNDc] = ACTIONS(1498), }, [83] = { - [sym__gap] = STATE(119), - [sym_dis_expr] = STATE(119), - [sym__form] = STATE(2124), - [sym_num_lit] = STATE(2124), - [sym_kwd_lit] = STATE(2124), - [sym_str_lit] = STATE(2124), - [sym_char_lit] = STATE(2124), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2124), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2124), - [sym_set_lit] = STATE(2124), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2124), - [sym_splicing_read_cond_lit] = STATE(2124), - [sym_var_quoting_lit] = STATE(2124), - [sym_quoting_lit] = STATE(2124), - [sym_syn_quoting_lit] = STATE(2124), - [sym_unquote_splicing_lit] = STATE(2124), - [sym_unquoting_lit] = STATE(2124), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2124), - [sym_package_lit] = STATE(2124), - [sym_include_reader_macro] = STATE(2124), - [sym_complex_num_lit] = STATE(2124), - [aux_sym_dis_expr_repeat1] = STATE(119), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(1966), - [sym_comment] = ACTIONS(1966), - [anon_sym_POUND_] = ACTIONS(1969), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(1972), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(1974), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(1972), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1977), - [anon_sym_POUND_CARET] = ACTIONS(1980), - [anon_sym_LPAREN] = ACTIONS(1983), - [anon_sym_RPAREN] = ACTIONS(1986), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(127), + [sym_dis_expr] = STATE(127), + [sym__form] = STATE(2153), + [sym_num_lit] = STATE(2153), + [sym_kwd_lit] = STATE(2153), + [sym_str_lit] = STATE(2153), + [sym_char_lit] = STATE(2153), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2153), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2153), + [sym_set_lit] = STATE(2153), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2153), + [sym_splicing_read_cond_lit] = STATE(2153), + [sym_var_quoting_lit] = STATE(2153), + [sym_quoting_lit] = STATE(2153), + [sym_syn_quoting_lit] = STATE(2153), + [sym_unquote_splicing_lit] = STATE(2153), + [sym_unquoting_lit] = STATE(2153), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2153), + [sym_package_lit] = STATE(2153), + [sym_include_reader_macro] = STATE(2153), + [sym_complex_num_lit] = STATE(2153), + [aux_sym_dis_expr_repeat1] = STATE(127), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(1999), + [sym_comment] = ACTIONS(1999), + [anon_sym_POUND_] = ACTIONS(1931), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(2002), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(1936), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(2002), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(1939), + [anon_sym_POUND_CARET] = ACTIONS(1942), + [anon_sym_LPAREN] = ACTIONS(1945), + [anon_sym_RPAREN] = ACTIONS(1948), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(1972), - [anon_sym_cl] = ACTIONS(1988), - [aux_sym_accumulation_verb_token1] = ACTIONS(1991), - [anon_sym_for] = ACTIONS(1991), - [anon_sym_and] = ACTIONS(1991), - [anon_sym_as] = ACTIONS(1991), - [anon_sym_with] = ACTIONS(1991), - [anon_sym_do] = ACTIONS(1991), - [anon_sym_while] = ACTIONS(1991), - [anon_sym_until] = ACTIONS(1991), - [anon_sym_repeat] = ACTIONS(1991), - [anon_sym_when] = ACTIONS(1991), - [anon_sym_if] = ACTIONS(1991), - [anon_sym_unless] = ACTIONS(1991), - [anon_sym_always] = ACTIONS(1991), - [anon_sym_thereis] = ACTIONS(1991), - [anon_sym_never] = ACTIONS(1991), - [anon_sym_else] = ACTIONS(1991), - [anon_sym_finally] = ACTIONS(1991), - [anon_sym_return] = ACTIONS(1991), - [anon_sym_initially] = ACTIONS(1991), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(1993), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(2002), + [anon_sym_cl] = ACTIONS(1950), + [aux_sym_accumulation_verb_token1] = ACTIONS(1953), + [anon_sym_for] = ACTIONS(1953), + [anon_sym_and] = ACTIONS(1953), + [anon_sym_as] = ACTIONS(1953), + [anon_sym_with] = ACTIONS(1953), + [anon_sym_do] = ACTIONS(1953), + [anon_sym_while] = ACTIONS(1953), + [anon_sym_until] = ACTIONS(1953), + [anon_sym_repeat] = ACTIONS(1953), + [anon_sym_when] = ACTIONS(1953), + [anon_sym_if] = ACTIONS(1953), + [anon_sym_unless] = ACTIONS(1953), + [anon_sym_always] = ACTIONS(1953), + [anon_sym_thereis] = ACTIONS(1953), + [anon_sym_never] = ACTIONS(1953), + [anon_sym_else] = ACTIONS(1953), + [anon_sym_finally] = ACTIONS(1953), + [anon_sym_return] = ACTIONS(1953), + [anon_sym_initially] = ACTIONS(1953), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(2004), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [84] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2308), - [sym_num_lit] = STATE(2308), - [sym_kwd_lit] = STATE(2308), - [sym_str_lit] = STATE(2308), - [sym_char_lit] = STATE(2308), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2308), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2308), - [sym_set_lit] = STATE(2308), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2308), - [sym_splicing_read_cond_lit] = STATE(2308), - [sym_var_quoting_lit] = STATE(2308), - [sym_quoting_lit] = STATE(2308), - [sym_syn_quoting_lit] = STATE(2308), - [sym_unquote_splicing_lit] = STATE(2308), - [sym_unquoting_lit] = STATE(2308), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2308), - [sym_package_lit] = STATE(2308), - [sym_include_reader_macro] = STATE(2308), - [sym_complex_num_lit] = STATE(2308), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(1580), - [sym_comment] = ACTIONS(1580), - [anon_sym_POUND_] = ACTIONS(1352), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(1995), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(1357), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(1995), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1360), - [anon_sym_POUND_CARET] = ACTIONS(1363), - [anon_sym_LPAREN] = ACTIONS(1366), - [anon_sym_RPAREN] = ACTIONS(1369), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(277), + [sym_dis_expr] = STATE(277), + [sym__form] = STATE(2675), + [sym_num_lit] = STATE(2675), + [sym_kwd_lit] = STATE(2675), + [sym_str_lit] = STATE(2675), + [sym_char_lit] = STATE(2675), + [sym_sym_lit] = STATE(2766), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2675), + [sym__bare_list_lit] = STATE(1975), + [sym_vec_lit] = STATE(2675), + [sym_set_lit] = STATE(2675), + [sym__bare_set_lit] = STATE(1976), + [sym_read_cond_lit] = STATE(2675), + [sym_splicing_read_cond_lit] = STATE(2675), + [sym_var_quoting_lit] = STATE(2675), + [sym_quoting_lit] = STATE(2675), + [sym_syn_quoting_lit] = STATE(2675), + [sym_unquote_splicing_lit] = STATE(2675), + [sym_unquoting_lit] = STATE(2675), + [sym_defun] = STATE(1975), + [sym_for_clause_word] = STATE(419), + [sym__for_part] = STATE(1555), + [sym_loop_macro] = STATE(1975), + [sym_path_lit] = STATE(2675), + [sym_package_lit] = STATE(2675), + [sym_include_reader_macro] = STATE(2675), + [sym_complex_num_lit] = STATE(2675), + [aux_sym_dis_expr_repeat1] = STATE(277), + [aux_sym_list_lit_repeat1] = STATE(2830), + [aux_sym_for_clause_repeat1] = STATE(1271), + [sym__ws] = ACTIONS(2006), + [sym_comment] = ACTIONS(2006), + [anon_sym_POUND_] = ACTIONS(1452), + [anon_sym_POUND] = ACTIONS(1454), + [anon_sym_DOT] = ACTIONS(2008), + [aux_sym_num_lit_token1] = ACTIONS(1458), + [anon_sym_COLON] = ACTIONS(1460), + [anon_sym_COLON_COLON] = ACTIONS(1462), + [anon_sym_DQUOTE] = ACTIONS(1464), + [sym_nil_lit] = ACTIONS(2008), + [aux_sym_sym_lit_token1] = ACTIONS(1466), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(1468), + [anon_sym_POUND0A] = ACTIONS(1470), + [anon_sym_POUND0a] = ACTIONS(1470), + [anon_sym_POUND_QMARK] = ACTIONS(1472), + [anon_sym_POUND_QMARK_AT] = ACTIONS(1474), + [anon_sym_POUND_SQUOTE] = ACTIONS(1476), + [anon_sym_SQUOTE] = ACTIONS(1478), + [anon_sym_BQUOTE] = ACTIONS(1480), + [anon_sym_COMMA_AT] = ACTIONS(1482), + [anon_sym_COMMA] = ACTIONS(1484), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(1995), - [anon_sym_cl] = ACTIONS(1371), - [aux_sym_accumulation_verb_token1] = ACTIONS(1374), - [anon_sym_for] = ACTIONS(1374), - [anon_sym_and] = ACTIONS(1374), - [anon_sym_as] = ACTIONS(1374), - [anon_sym_with] = ACTIONS(1374), - [anon_sym_do] = ACTIONS(1374), - [anon_sym_while] = ACTIONS(1374), - [anon_sym_until] = ACTIONS(1374), - [anon_sym_repeat] = ACTIONS(1374), - [anon_sym_when] = ACTIONS(1374), - [anon_sym_if] = ACTIONS(1374), - [anon_sym_unless] = ACTIONS(1374), - [anon_sym_always] = ACTIONS(1374), - [anon_sym_thereis] = ACTIONS(1374), - [anon_sym_never] = ACTIONS(1374), - [anon_sym_else] = ACTIONS(1374), - [anon_sym_finally] = ACTIONS(1374), - [anon_sym_return] = ACTIONS(1374), - [anon_sym_initially] = ACTIONS(1374), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(1997), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(2008), + [anon_sym_cl] = ACTIONS(1486), + [anon_sym_in] = ACTIONS(1488), + [anon_sym_across] = ACTIONS(1488), + [anon_sym_being] = ACTIONS(1488), + [anon_sym_using] = ACTIONS(1488), + [aux_sym_for_clause_word_token1] = ACTIONS(1490), + [anon_sym_below] = ACTIONS(1488), + [anon_sym_above] = ACTIONS(1488), + [anon_sym_from] = ACTIONS(1488), + [anon_sym_to] = ACTIONS(1488), + [anon_sym_upto] = ACTIONS(1488), + [anon_sym_upfrom] = ACTIONS(1488), + [anon_sym_downto] = ACTIONS(1488), + [anon_sym_downfrom] = ACTIONS(1488), + [anon_sym_on] = ACTIONS(1488), + [anon_sym_by] = ACTIONS(1488), + [anon_sym_then] = ACTIONS(1488), + [anon_sym_EQ] = ACTIONS(1488), + [anon_sym_POUNDP] = ACTIONS(1492), + [anon_sym_POUNDp] = ACTIONS(1492), + [sym_self_referential_reader_macro] = ACTIONS(2010), + [anon_sym_POUND_PLUS] = ACTIONS(1496), + [anon_sym_POUND_DASH] = ACTIONS(1496), + [anon_sym_POUNDC] = ACTIONS(1498), + [anon_sym_POUNDc] = ACTIONS(1498), }, [85] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2305), - [sym_num_lit] = STATE(2305), - [sym_kwd_lit] = STATE(2305), - [sym_str_lit] = STATE(2305), - [sym_char_lit] = STATE(2305), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2305), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2305), - [sym_set_lit] = STATE(2305), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2305), - [sym_splicing_read_cond_lit] = STATE(2305), - [sym_var_quoting_lit] = STATE(2305), - [sym_quoting_lit] = STATE(2305), - [sym_syn_quoting_lit] = STATE(2305), - [sym_unquote_splicing_lit] = STATE(2305), - [sym_unquoting_lit] = STATE(2305), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2305), - [sym_package_lit] = STATE(2305), - [sym_include_reader_macro] = STATE(2305), - [sym_complex_num_lit] = STATE(2305), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(1580), - [sym_comment] = ACTIONS(1580), - [anon_sym_POUND_] = ACTIONS(1352), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(1999), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(1357), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(1999), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1360), - [anon_sym_POUND_CARET] = ACTIONS(1363), - [anon_sym_LPAREN] = ACTIONS(1366), - [anon_sym_RPAREN] = ACTIONS(1369), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(130), + [sym_dis_expr] = STATE(130), + [sym__form] = STATE(2156), + [sym_num_lit] = STATE(2156), + [sym_kwd_lit] = STATE(2156), + [sym_str_lit] = STATE(2156), + [sym_char_lit] = STATE(2156), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2156), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2156), + [sym_set_lit] = STATE(2156), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2156), + [sym_splicing_read_cond_lit] = STATE(2156), + [sym_var_quoting_lit] = STATE(2156), + [sym_quoting_lit] = STATE(2156), + [sym_syn_quoting_lit] = STATE(2156), + [sym_unquote_splicing_lit] = STATE(2156), + [sym_unquoting_lit] = STATE(2156), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2156), + [sym_package_lit] = STATE(2156), + [sym_include_reader_macro] = STATE(2156), + [sym_complex_num_lit] = STATE(2156), + [aux_sym_dis_expr_repeat1] = STATE(130), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(2012), + [sym_comment] = ACTIONS(2012), + [anon_sym_POUND_] = ACTIONS(1931), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(2015), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(1936), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(2015), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(1939), + [anon_sym_POUND_CARET] = ACTIONS(1942), + [anon_sym_LPAREN] = ACTIONS(1945), + [anon_sym_RPAREN] = ACTIONS(1948), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(1999), - [anon_sym_cl] = ACTIONS(1371), - [aux_sym_accumulation_verb_token1] = ACTIONS(1374), - [anon_sym_for] = ACTIONS(1374), - [anon_sym_and] = ACTIONS(1374), - [anon_sym_as] = ACTIONS(1374), - [anon_sym_with] = ACTIONS(1374), - [anon_sym_do] = ACTIONS(1374), - [anon_sym_while] = ACTIONS(1374), - [anon_sym_until] = ACTIONS(1374), - [anon_sym_repeat] = ACTIONS(1374), - [anon_sym_when] = ACTIONS(1374), - [anon_sym_if] = ACTIONS(1374), - [anon_sym_unless] = ACTIONS(1374), - [anon_sym_always] = ACTIONS(1374), - [anon_sym_thereis] = ACTIONS(1374), - [anon_sym_never] = ACTIONS(1374), - [anon_sym_else] = ACTIONS(1374), - [anon_sym_finally] = ACTIONS(1374), - [anon_sym_return] = ACTIONS(1374), - [anon_sym_initially] = ACTIONS(1374), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(2001), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(2015), + [anon_sym_cl] = ACTIONS(1950), + [aux_sym_accumulation_verb_token1] = ACTIONS(1953), + [anon_sym_for] = ACTIONS(1953), + [anon_sym_and] = ACTIONS(1953), + [anon_sym_as] = ACTIONS(1953), + [anon_sym_with] = ACTIONS(1953), + [anon_sym_do] = ACTIONS(1953), + [anon_sym_while] = ACTIONS(1953), + [anon_sym_until] = ACTIONS(1953), + [anon_sym_repeat] = ACTIONS(1953), + [anon_sym_when] = ACTIONS(1953), + [anon_sym_if] = ACTIONS(1953), + [anon_sym_unless] = ACTIONS(1953), + [anon_sym_always] = ACTIONS(1953), + [anon_sym_thereis] = ACTIONS(1953), + [anon_sym_never] = ACTIONS(1953), + [anon_sym_else] = ACTIONS(1953), + [anon_sym_finally] = ACTIONS(1953), + [anon_sym_return] = ACTIONS(1953), + [anon_sym_initially] = ACTIONS(1953), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(2017), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [86] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2278), - [sym_num_lit] = STATE(2278), - [sym_kwd_lit] = STATE(2278), - [sym_str_lit] = STATE(2278), - [sym_char_lit] = STATE(2278), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2278), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2278), - [sym_set_lit] = STATE(2278), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2278), - [sym_splicing_read_cond_lit] = STATE(2278), - [sym_var_quoting_lit] = STATE(2278), - [sym_quoting_lit] = STATE(2278), - [sym_syn_quoting_lit] = STATE(2278), - [sym_unquote_splicing_lit] = STATE(2278), - [sym_unquoting_lit] = STATE(2278), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2278), - [sym_package_lit] = STATE(2278), - [sym_include_reader_macro] = STATE(2278), - [sym_complex_num_lit] = STATE(2278), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(2003), - [sym_comment] = ACTIONS(2003), - [anon_sym_POUND_] = ACTIONS(2006), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(2009), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(2011), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(2009), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2014), - [anon_sym_POUND_CARET] = ACTIONS(2017), - [anon_sym_LPAREN] = ACTIONS(2020), - [anon_sym_RPAREN] = ACTIONS(2023), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2159), + [sym_num_lit] = STATE(2159), + [sym_kwd_lit] = STATE(2159), + [sym_str_lit] = STATE(2159), + [sym_char_lit] = STATE(2159), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2159), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2159), + [sym_set_lit] = STATE(2159), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2159), + [sym_splicing_read_cond_lit] = STATE(2159), + [sym_var_quoting_lit] = STATE(2159), + [sym_quoting_lit] = STATE(2159), + [sym_syn_quoting_lit] = STATE(2159), + [sym_unquote_splicing_lit] = STATE(2159), + [sym_unquoting_lit] = STATE(2159), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2159), + [sym_package_lit] = STATE(2159), + [sym_include_reader_macro] = STATE(2159), + [sym_complex_num_lit] = STATE(2159), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(1957), + [sym_comment] = ACTIONS(1957), + [anon_sym_POUND_] = ACTIONS(1931), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(2019), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(1936), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(2019), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(1939), + [anon_sym_POUND_CARET] = ACTIONS(1942), + [anon_sym_LPAREN] = ACTIONS(1945), + [anon_sym_RPAREN] = ACTIONS(1948), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2009), - [anon_sym_cl] = ACTIONS(2025), - [aux_sym_accumulation_verb_token1] = ACTIONS(2028), - [anon_sym_for] = ACTIONS(2028), - [anon_sym_and] = ACTIONS(2028), - [anon_sym_as] = ACTIONS(2028), - [anon_sym_with] = ACTIONS(2028), - [anon_sym_do] = ACTIONS(2028), - [anon_sym_while] = ACTIONS(2028), - [anon_sym_until] = ACTIONS(2028), - [anon_sym_repeat] = ACTIONS(2028), - [anon_sym_when] = ACTIONS(2028), - [anon_sym_if] = ACTIONS(2028), - [anon_sym_unless] = ACTIONS(2028), - [anon_sym_always] = ACTIONS(2028), - [anon_sym_thereis] = ACTIONS(2028), - [anon_sym_never] = ACTIONS(2028), - [anon_sym_else] = ACTIONS(2028), - [anon_sym_finally] = ACTIONS(2028), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_initially] = ACTIONS(2028), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(2030), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(2019), + [anon_sym_cl] = ACTIONS(1950), + [aux_sym_accumulation_verb_token1] = ACTIONS(1953), + [anon_sym_for] = ACTIONS(1953), + [anon_sym_and] = ACTIONS(1953), + [anon_sym_as] = ACTIONS(1953), + [anon_sym_with] = ACTIONS(1953), + [anon_sym_do] = ACTIONS(1953), + [anon_sym_while] = ACTIONS(1953), + [anon_sym_until] = ACTIONS(1953), + [anon_sym_repeat] = ACTIONS(1953), + [anon_sym_when] = ACTIONS(1953), + [anon_sym_if] = ACTIONS(1953), + [anon_sym_unless] = ACTIONS(1953), + [anon_sym_always] = ACTIONS(1953), + [anon_sym_thereis] = ACTIONS(1953), + [anon_sym_never] = ACTIONS(1953), + [anon_sym_else] = ACTIONS(1953), + [anon_sym_finally] = ACTIONS(1953), + [anon_sym_return] = ACTIONS(1953), + [anon_sym_initially] = ACTIONS(1953), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(2021), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [87] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2262), - [sym_num_lit] = STATE(2262), - [sym_kwd_lit] = STATE(2262), - [sym_str_lit] = STATE(2262), - [sym_char_lit] = STATE(2262), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2262), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2262), - [sym_set_lit] = STATE(2262), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2262), - [sym_splicing_read_cond_lit] = STATE(2262), - [sym_var_quoting_lit] = STATE(2262), - [sym_quoting_lit] = STATE(2262), - [sym_syn_quoting_lit] = STATE(2262), - [sym_unquote_splicing_lit] = STATE(2262), - [sym_unquoting_lit] = STATE(2262), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2262), - [sym_package_lit] = STATE(2262), - [sym_include_reader_macro] = STATE(2262), - [sym_complex_num_lit] = STATE(2262), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(2032), - [sym_comment] = ACTIONS(2032), - [anon_sym_POUND_] = ACTIONS(2035), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(2038), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(2040), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(2038), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2043), - [anon_sym_POUND_CARET] = ACTIONS(2046), - [anon_sym_LPAREN] = ACTIONS(2049), - [anon_sym_RPAREN] = ACTIONS(2052), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(133), + [sym_dis_expr] = STATE(133), + [sym__form] = STATE(2160), + [sym_num_lit] = STATE(2160), + [sym_kwd_lit] = STATE(2160), + [sym_str_lit] = STATE(2160), + [sym_char_lit] = STATE(2160), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2160), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2160), + [sym_set_lit] = STATE(2160), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2160), + [sym_splicing_read_cond_lit] = STATE(2160), + [sym_var_quoting_lit] = STATE(2160), + [sym_quoting_lit] = STATE(2160), + [sym_syn_quoting_lit] = STATE(2160), + [sym_unquote_splicing_lit] = STATE(2160), + [sym_unquoting_lit] = STATE(2160), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2160), + [sym_package_lit] = STATE(2160), + [sym_include_reader_macro] = STATE(2160), + [sym_complex_num_lit] = STATE(2160), + [aux_sym_dis_expr_repeat1] = STATE(133), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(2023), + [sym_comment] = ACTIONS(2023), + [anon_sym_POUND_] = ACTIONS(1967), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(2026), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(1972), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(2026), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(1975), + [anon_sym_POUND_CARET] = ACTIONS(1978), + [anon_sym_LPAREN] = ACTIONS(1981), + [anon_sym_RPAREN] = ACTIONS(1984), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2038), - [anon_sym_cl] = ACTIONS(2054), - [aux_sym_accumulation_verb_token1] = ACTIONS(2057), - [anon_sym_for] = ACTIONS(2057), - [anon_sym_and] = ACTIONS(2057), - [anon_sym_as] = ACTIONS(2057), - [anon_sym_with] = ACTIONS(2057), - [anon_sym_do] = ACTIONS(2057), - [anon_sym_while] = ACTIONS(2057), - [anon_sym_until] = ACTIONS(2057), - [anon_sym_repeat] = ACTIONS(2057), - [anon_sym_when] = ACTIONS(2057), - [anon_sym_if] = ACTIONS(2057), - [anon_sym_unless] = ACTIONS(2057), - [anon_sym_always] = ACTIONS(2057), - [anon_sym_thereis] = ACTIONS(2057), - [anon_sym_never] = ACTIONS(2057), - [anon_sym_else] = ACTIONS(2057), - [anon_sym_finally] = ACTIONS(2057), - [anon_sym_return] = ACTIONS(2057), - [anon_sym_initially] = ACTIONS(2057), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(2059), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(2026), + [anon_sym_cl] = ACTIONS(1986), + [aux_sym_accumulation_verb_token1] = ACTIONS(1989), + [anon_sym_for] = ACTIONS(1989), + [anon_sym_and] = ACTIONS(1989), + [anon_sym_as] = ACTIONS(1989), + [anon_sym_with] = ACTIONS(1989), + [anon_sym_do] = ACTIONS(1989), + [anon_sym_while] = ACTIONS(1989), + [anon_sym_until] = ACTIONS(1989), + [anon_sym_repeat] = ACTIONS(1989), + [anon_sym_when] = ACTIONS(1989), + [anon_sym_if] = ACTIONS(1989), + [anon_sym_unless] = ACTIONS(1989), + [anon_sym_always] = ACTIONS(1989), + [anon_sym_thereis] = ACTIONS(1989), + [anon_sym_never] = ACTIONS(1989), + [anon_sym_else] = ACTIONS(1989), + [anon_sym_finally] = ACTIONS(1989), + [anon_sym_return] = ACTIONS(1989), + [anon_sym_initially] = ACTIONS(1989), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(2028), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [88] = { - [sym__gap] = STATE(54), - [sym_dis_expr] = STATE(54), - [sym__form] = STATE(2252), - [sym_num_lit] = STATE(2252), - [sym_kwd_lit] = STATE(2252), - [sym_str_lit] = STATE(2252), - [sym_char_lit] = STATE(2252), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2252), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2252), - [sym_set_lit] = STATE(2252), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2252), - [sym_splicing_read_cond_lit] = STATE(2252), - [sym_var_quoting_lit] = STATE(2252), - [sym_quoting_lit] = STATE(2252), - [sym_syn_quoting_lit] = STATE(2252), - [sym_unquote_splicing_lit] = STATE(2252), - [sym_unquoting_lit] = STATE(2252), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2252), - [sym_package_lit] = STATE(2252), - [sym_include_reader_macro] = STATE(2252), - [sym_complex_num_lit] = STATE(2252), - [aux_sym_dis_expr_repeat1] = STATE(54), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(2061), - [sym_comment] = ACTIONS(2061), - [anon_sym_POUND_] = ACTIONS(2035), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(2064), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(2040), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(2064), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2043), - [anon_sym_POUND_CARET] = ACTIONS(2046), - [anon_sym_LPAREN] = ACTIONS(2049), - [anon_sym_RPAREN] = ACTIONS(2052), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(136), + [sym_dis_expr] = STATE(136), + [sym__form] = STATE(2164), + [sym_num_lit] = STATE(2164), + [sym_kwd_lit] = STATE(2164), + [sym_str_lit] = STATE(2164), + [sym_char_lit] = STATE(2164), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2164), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2164), + [sym_set_lit] = STATE(2164), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2164), + [sym_splicing_read_cond_lit] = STATE(2164), + [sym_var_quoting_lit] = STATE(2164), + [sym_quoting_lit] = STATE(2164), + [sym_syn_quoting_lit] = STATE(2164), + [sym_unquote_splicing_lit] = STATE(2164), + [sym_unquoting_lit] = STATE(2164), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2164), + [sym_package_lit] = STATE(2164), + [sym_include_reader_macro] = STATE(2164), + [sym_complex_num_lit] = STATE(2164), + [aux_sym_dis_expr_repeat1] = STATE(136), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(2030), + [sym_comment] = ACTIONS(2030), + [anon_sym_POUND_] = ACTIONS(1931), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(2033), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(1936), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(2033), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(1939), + [anon_sym_POUND_CARET] = ACTIONS(1942), + [anon_sym_LPAREN] = ACTIONS(1945), + [anon_sym_RPAREN] = ACTIONS(1948), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2064), - [anon_sym_cl] = ACTIONS(2054), - [aux_sym_accumulation_verb_token1] = ACTIONS(2057), - [anon_sym_for] = ACTIONS(2057), - [anon_sym_and] = ACTIONS(2057), - [anon_sym_as] = ACTIONS(2057), - [anon_sym_with] = ACTIONS(2057), - [anon_sym_do] = ACTIONS(2057), - [anon_sym_while] = ACTIONS(2057), - [anon_sym_until] = ACTIONS(2057), - [anon_sym_repeat] = ACTIONS(2057), - [anon_sym_when] = ACTIONS(2057), - [anon_sym_if] = ACTIONS(2057), - [anon_sym_unless] = ACTIONS(2057), - [anon_sym_always] = ACTIONS(2057), - [anon_sym_thereis] = ACTIONS(2057), - [anon_sym_never] = ACTIONS(2057), - [anon_sym_else] = ACTIONS(2057), - [anon_sym_finally] = ACTIONS(2057), - [anon_sym_return] = ACTIONS(2057), - [anon_sym_initially] = ACTIONS(2057), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(2066), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(2033), + [anon_sym_cl] = ACTIONS(1950), + [aux_sym_accumulation_verb_token1] = ACTIONS(1953), + [anon_sym_for] = ACTIONS(1953), + [anon_sym_and] = ACTIONS(1953), + [anon_sym_as] = ACTIONS(1953), + [anon_sym_with] = ACTIONS(1953), + [anon_sym_do] = ACTIONS(1953), + [anon_sym_while] = ACTIONS(1953), + [anon_sym_until] = ACTIONS(1953), + [anon_sym_repeat] = ACTIONS(1953), + [anon_sym_when] = ACTIONS(1953), + [anon_sym_if] = ACTIONS(1953), + [anon_sym_unless] = ACTIONS(1953), + [anon_sym_always] = ACTIONS(1953), + [anon_sym_thereis] = ACTIONS(1953), + [anon_sym_never] = ACTIONS(1953), + [anon_sym_else] = ACTIONS(1953), + [anon_sym_finally] = ACTIONS(1953), + [anon_sym_return] = ACTIONS(1953), + [anon_sym_initially] = ACTIONS(1953), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(2035), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [89] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2057), - [sym_num_lit] = STATE(2057), - [sym_kwd_lit] = STATE(2057), - [sym_str_lit] = STATE(2057), - [sym_char_lit] = STATE(2057), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2057), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2057), - [sym_set_lit] = STATE(2057), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2057), - [sym_splicing_read_cond_lit] = STATE(2057), - [sym_var_quoting_lit] = STATE(2057), - [sym_quoting_lit] = STATE(2057), - [sym_syn_quoting_lit] = STATE(2057), - [sym_unquote_splicing_lit] = STATE(2057), - [sym_unquoting_lit] = STATE(2057), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2057), - [sym_package_lit] = STATE(2057), - [sym_include_reader_macro] = STATE(2057), - [sym_complex_num_lit] = STATE(2057), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(1748), - [sym_comment] = ACTIONS(1748), - [anon_sym_POUND_] = ACTIONS(1751), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(2068), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(1756), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(2068), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1759), - [anon_sym_POUND_CARET] = ACTIONS(1762), - [anon_sym_LPAREN] = ACTIONS(1765), - [anon_sym_RPAREN] = ACTIONS(1768), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(140), + [sym_dis_expr] = STATE(140), + [sym__form] = STATE(2167), + [sym_num_lit] = STATE(2167), + [sym_kwd_lit] = STATE(2167), + [sym_str_lit] = STATE(2167), + [sym_char_lit] = STATE(2167), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2167), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2167), + [sym_set_lit] = STATE(2167), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2167), + [sym_splicing_read_cond_lit] = STATE(2167), + [sym_var_quoting_lit] = STATE(2167), + [sym_quoting_lit] = STATE(2167), + [sym_syn_quoting_lit] = STATE(2167), + [sym_unquote_splicing_lit] = STATE(2167), + [sym_unquoting_lit] = STATE(2167), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2167), + [sym_package_lit] = STATE(2167), + [sym_include_reader_macro] = STATE(2167), + [sym_complex_num_lit] = STATE(2167), + [aux_sym_dis_expr_repeat1] = STATE(140), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(2037), + [sym_comment] = ACTIONS(2037), + [anon_sym_POUND_] = ACTIONS(2040), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(2043), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(2045), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(2043), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(80), + [anon_sym_POUND_CARET] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(2048), + [anon_sym_RPAREN] = ACTIONS(89), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2068), - [anon_sym_cl] = ACTIONS(1770), - [aux_sym_accumulation_verb_token1] = ACTIONS(1773), - [anon_sym_for] = ACTIONS(1773), - [anon_sym_and] = ACTIONS(1773), - [anon_sym_as] = ACTIONS(1773), - [anon_sym_with] = ACTIONS(1773), - [anon_sym_do] = ACTIONS(1773), - [anon_sym_while] = ACTIONS(1773), - [anon_sym_until] = ACTIONS(1773), - [anon_sym_repeat] = ACTIONS(1773), - [anon_sym_when] = ACTIONS(1773), - [anon_sym_if] = ACTIONS(1773), - [anon_sym_unless] = ACTIONS(1773), - [anon_sym_always] = ACTIONS(1773), - [anon_sym_thereis] = ACTIONS(1773), - [anon_sym_never] = ACTIONS(1773), - [anon_sym_else] = ACTIONS(1773), - [anon_sym_finally] = ACTIONS(1773), - [anon_sym_return] = ACTIONS(1773), - [anon_sym_initially] = ACTIONS(1773), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(2070), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(2043), + [anon_sym_cl] = ACTIONS(2051), + [aux_sym_accumulation_verb_token1] = ACTIONS(112), + [anon_sym_for] = ACTIONS(112), + [anon_sym_and] = ACTIONS(112), + [anon_sym_as] = ACTIONS(112), + [anon_sym_with] = ACTIONS(112), + [anon_sym_do] = ACTIONS(112), + [anon_sym_while] = ACTIONS(112), + [anon_sym_until] = ACTIONS(112), + [anon_sym_repeat] = ACTIONS(112), + [anon_sym_when] = ACTIONS(112), + [anon_sym_if] = ACTIONS(112), + [anon_sym_unless] = ACTIONS(112), + [anon_sym_always] = ACTIONS(112), + [anon_sym_thereis] = ACTIONS(112), + [anon_sym_never] = ACTIONS(112), + [anon_sym_else] = ACTIONS(112), + [anon_sym_finally] = ACTIONS(112), + [anon_sym_return] = ACTIONS(112), + [anon_sym_initially] = ACTIONS(112), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(2054), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [90] = { - [sym__gap] = STATE(153), - [sym_dis_expr] = STATE(153), - [sym__form] = STATE(2390), - [sym_num_lit] = STATE(2390), - [sym_kwd_lit] = STATE(2390), - [sym_str_lit] = STATE(2390), - [sym_char_lit] = STATE(2390), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2390), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2390), - [sym_set_lit] = STATE(2390), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2390), - [sym_splicing_read_cond_lit] = STATE(2390), - [sym_var_quoting_lit] = STATE(2390), - [sym_quoting_lit] = STATE(2390), - [sym_syn_quoting_lit] = STATE(2390), - [sym_unquote_splicing_lit] = STATE(2390), - [sym_unquoting_lit] = STATE(2390), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2390), - [sym_package_lit] = STATE(2390), - [sym_include_reader_macro] = STATE(2390), - [sym_complex_num_lit] = STATE(2390), - [aux_sym_dis_expr_repeat1] = STATE(153), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(2072), - [sym_comment] = ACTIONS(2072), - [anon_sym_POUND_] = ACTIONS(2075), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(2078), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(2080), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(2078), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(472), - [anon_sym_POUND_CARET] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(2083), - [anon_sym_RPAREN] = ACTIONS(481), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(55), + [sym_dis_expr] = STATE(55), + [sym__form] = STATE(2526), + [sym_num_lit] = STATE(2526), + [sym_kwd_lit] = STATE(2526), + [sym_str_lit] = STATE(2526), + [sym_char_lit] = STATE(2526), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2526), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2526), + [sym_set_lit] = STATE(2526), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2526), + [sym_splicing_read_cond_lit] = STATE(2526), + [sym_var_quoting_lit] = STATE(2526), + [sym_quoting_lit] = STATE(2526), + [sym_syn_quoting_lit] = STATE(2526), + [sym_unquote_splicing_lit] = STATE(2526), + [sym_unquoting_lit] = STATE(2526), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2526), + [sym_package_lit] = STATE(2526), + [sym_include_reader_macro] = STATE(2526), + [sym_complex_num_lit] = STATE(2526), + [aux_sym_dis_expr_repeat1] = STATE(55), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(2056), + [sym_comment] = ACTIONS(2056), + [anon_sym_POUND_] = ACTIONS(2059), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(2062), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(2064), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(2062), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(2067), + [anon_sym_POUND_CARET] = ACTIONS(2070), + [anon_sym_LPAREN] = ACTIONS(2073), + [anon_sym_RPAREN] = ACTIONS(2076), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2078), - [anon_sym_cl] = ACTIONS(2086), - [aux_sym_accumulation_verb_token1] = ACTIONS(488), - [anon_sym_for] = ACTIONS(488), - [anon_sym_and] = ACTIONS(488), - [anon_sym_as] = ACTIONS(488), - [anon_sym_with] = ACTIONS(488), - [anon_sym_do] = ACTIONS(488), - [anon_sym_while] = ACTIONS(488), - [anon_sym_until] = ACTIONS(488), - [anon_sym_repeat] = ACTIONS(488), - [anon_sym_when] = ACTIONS(488), - [anon_sym_if] = ACTIONS(488), - [anon_sym_unless] = ACTIONS(488), - [anon_sym_always] = ACTIONS(488), - [anon_sym_thereis] = ACTIONS(488), - [anon_sym_never] = ACTIONS(488), - [anon_sym_else] = ACTIONS(488), - [anon_sym_finally] = ACTIONS(488), - [anon_sym_return] = ACTIONS(488), - [anon_sym_initially] = ACTIONS(488), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(2089), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(2062), + [anon_sym_cl] = ACTIONS(2078), + [aux_sym_accumulation_verb_token1] = ACTIONS(2081), + [anon_sym_for] = ACTIONS(2081), + [anon_sym_and] = ACTIONS(2081), + [anon_sym_as] = ACTIONS(2081), + [anon_sym_with] = ACTIONS(2081), + [anon_sym_do] = ACTIONS(2081), + [anon_sym_while] = ACTIONS(2081), + [anon_sym_until] = ACTIONS(2081), + [anon_sym_repeat] = ACTIONS(2081), + [anon_sym_when] = ACTIONS(2081), + [anon_sym_if] = ACTIONS(2081), + [anon_sym_unless] = ACTIONS(2081), + [anon_sym_always] = ACTIONS(2081), + [anon_sym_thereis] = ACTIONS(2081), + [anon_sym_never] = ACTIONS(2081), + [anon_sym_else] = ACTIONS(2081), + [anon_sym_finally] = ACTIONS(2081), + [anon_sym_return] = ACTIONS(2081), + [anon_sym_initially] = ACTIONS(2081), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(2083), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [91] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2053), - [sym_num_lit] = STATE(2053), - [sym_kwd_lit] = STATE(2053), - [sym_str_lit] = STATE(2053), - [sym_char_lit] = STATE(2053), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2053), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2053), - [sym_set_lit] = STATE(2053), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2053), - [sym_splicing_read_cond_lit] = STATE(2053), - [sym_var_quoting_lit] = STATE(2053), - [sym_quoting_lit] = STATE(2053), - [sym_syn_quoting_lit] = STATE(2053), - [sym_unquote_splicing_lit] = STATE(2053), - [sym_unquoting_lit] = STATE(2053), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2053), - [sym_package_lit] = STATE(2053), - [sym_include_reader_macro] = STATE(2053), - [sym_complex_num_lit] = STATE(2053), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(1785), - [sym_comment] = ACTIONS(1785), - [anon_sym_POUND_] = ACTIONS(1788), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(2091), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(1793), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(2091), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1796), - [anon_sym_POUND_CARET] = ACTIONS(1799), - [anon_sym_LPAREN] = ACTIONS(1802), - [anon_sym_RPAREN] = ACTIONS(1805), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2530), + [sym_num_lit] = STATE(2530), + [sym_kwd_lit] = STATE(2530), + [sym_str_lit] = STATE(2530), + [sym_char_lit] = STATE(2530), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2530), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2530), + [sym_set_lit] = STATE(2530), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2530), + [sym_splicing_read_cond_lit] = STATE(2530), + [sym_var_quoting_lit] = STATE(2530), + [sym_quoting_lit] = STATE(2530), + [sym_syn_quoting_lit] = STATE(2530), + [sym_unquote_splicing_lit] = STATE(2530), + [sym_unquoting_lit] = STATE(2530), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2530), + [sym_package_lit] = STATE(2530), + [sym_include_reader_macro] = STATE(2530), + [sym_complex_num_lit] = STATE(2530), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(2085), + [sym_comment] = ACTIONS(2085), + [anon_sym_POUND_] = ACTIONS(2059), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(2088), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(2064), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(2088), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(2067), + [anon_sym_POUND_CARET] = ACTIONS(2070), + [anon_sym_LPAREN] = ACTIONS(2073), + [anon_sym_RPAREN] = ACTIONS(2076), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2091), - [anon_sym_cl] = ACTIONS(1807), - [aux_sym_accumulation_verb_token1] = ACTIONS(1810), - [anon_sym_for] = ACTIONS(1810), - [anon_sym_and] = ACTIONS(1810), - [anon_sym_as] = ACTIONS(1810), - [anon_sym_with] = ACTIONS(1810), - [anon_sym_do] = ACTIONS(1810), - [anon_sym_while] = ACTIONS(1810), - [anon_sym_until] = ACTIONS(1810), - [anon_sym_repeat] = ACTIONS(1810), - [anon_sym_when] = ACTIONS(1810), - [anon_sym_if] = ACTIONS(1810), - [anon_sym_unless] = ACTIONS(1810), - [anon_sym_always] = ACTIONS(1810), - [anon_sym_thereis] = ACTIONS(1810), - [anon_sym_never] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1810), - [anon_sym_finally] = ACTIONS(1810), - [anon_sym_return] = ACTIONS(1810), - [anon_sym_initially] = ACTIONS(1810), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(2093), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(2088), + [anon_sym_cl] = ACTIONS(2078), + [aux_sym_accumulation_verb_token1] = ACTIONS(2081), + [anon_sym_for] = ACTIONS(2081), + [anon_sym_and] = ACTIONS(2081), + [anon_sym_as] = ACTIONS(2081), + [anon_sym_with] = ACTIONS(2081), + [anon_sym_do] = ACTIONS(2081), + [anon_sym_while] = ACTIONS(2081), + [anon_sym_until] = ACTIONS(2081), + [anon_sym_repeat] = ACTIONS(2081), + [anon_sym_when] = ACTIONS(2081), + [anon_sym_if] = ACTIONS(2081), + [anon_sym_unless] = ACTIONS(2081), + [anon_sym_always] = ACTIONS(2081), + [anon_sym_thereis] = ACTIONS(2081), + [anon_sym_never] = ACTIONS(2081), + [anon_sym_else] = ACTIONS(2081), + [anon_sym_finally] = ACTIONS(2081), + [anon_sym_return] = ACTIONS(2081), + [anon_sym_initially] = ACTIONS(2081), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(2090), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [92] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2051), - [sym_num_lit] = STATE(2051), - [sym_kwd_lit] = STATE(2051), - [sym_str_lit] = STATE(2051), - [sym_char_lit] = STATE(2051), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2051), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2051), - [sym_set_lit] = STATE(2051), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2051), - [sym_splicing_read_cond_lit] = STATE(2051), - [sym_var_quoting_lit] = STATE(2051), - [sym_quoting_lit] = STATE(2051), - [sym_syn_quoting_lit] = STATE(2051), - [sym_unquote_splicing_lit] = STATE(2051), - [sym_unquoting_lit] = STATE(2051), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2051), - [sym_package_lit] = STATE(2051), - [sym_include_reader_macro] = STATE(2051), - [sym_complex_num_lit] = STATE(2051), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(1785), - [sym_comment] = ACTIONS(1785), - [anon_sym_POUND_] = ACTIONS(1788), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(2095), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(1793), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(2095), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1796), - [anon_sym_POUND_CARET] = ACTIONS(1799), - [anon_sym_LPAREN] = ACTIONS(1802), - [anon_sym_RPAREN] = ACTIONS(1805), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2171), + [sym_num_lit] = STATE(2171), + [sym_kwd_lit] = STATE(2171), + [sym_str_lit] = STATE(2171), + [sym_char_lit] = STATE(2171), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2171), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2171), + [sym_set_lit] = STATE(2171), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2171), + [sym_splicing_read_cond_lit] = STATE(2171), + [sym_var_quoting_lit] = STATE(2171), + [sym_quoting_lit] = STATE(2171), + [sym_syn_quoting_lit] = STATE(2171), + [sym_unquote_splicing_lit] = STATE(2171), + [sym_unquoting_lit] = STATE(2171), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2171), + [sym_package_lit] = STATE(2171), + [sym_include_reader_macro] = STATE(2171), + [sym_complex_num_lit] = STATE(2171), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(2092), + [sym_comment] = ACTIONS(2092), + [anon_sym_POUND_] = ACTIONS(2095), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(2098), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(2100), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(2098), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(2103), + [anon_sym_POUND_CARET] = ACTIONS(2106), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_RPAREN] = ACTIONS(2112), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2095), - [anon_sym_cl] = ACTIONS(1807), - [aux_sym_accumulation_verb_token1] = ACTIONS(1810), - [anon_sym_for] = ACTIONS(1810), - [anon_sym_and] = ACTIONS(1810), - [anon_sym_as] = ACTIONS(1810), - [anon_sym_with] = ACTIONS(1810), - [anon_sym_do] = ACTIONS(1810), - [anon_sym_while] = ACTIONS(1810), - [anon_sym_until] = ACTIONS(1810), - [anon_sym_repeat] = ACTIONS(1810), - [anon_sym_when] = ACTIONS(1810), - [anon_sym_if] = ACTIONS(1810), - [anon_sym_unless] = ACTIONS(1810), - [anon_sym_always] = ACTIONS(1810), - [anon_sym_thereis] = ACTIONS(1810), - [anon_sym_never] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1810), - [anon_sym_finally] = ACTIONS(1810), - [anon_sym_return] = ACTIONS(1810), - [anon_sym_initially] = ACTIONS(1810), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(2097), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(2098), + [anon_sym_cl] = ACTIONS(2114), + [aux_sym_accumulation_verb_token1] = ACTIONS(2117), + [anon_sym_for] = ACTIONS(2117), + [anon_sym_and] = ACTIONS(2117), + [anon_sym_as] = ACTIONS(2117), + [anon_sym_with] = ACTIONS(2117), + [anon_sym_do] = ACTIONS(2117), + [anon_sym_while] = ACTIONS(2117), + [anon_sym_until] = ACTIONS(2117), + [anon_sym_repeat] = ACTIONS(2117), + [anon_sym_when] = ACTIONS(2117), + [anon_sym_if] = ACTIONS(2117), + [anon_sym_unless] = ACTIONS(2117), + [anon_sym_always] = ACTIONS(2117), + [anon_sym_thereis] = ACTIONS(2117), + [anon_sym_never] = ACTIONS(2117), + [anon_sym_else] = ACTIONS(2117), + [anon_sym_finally] = ACTIONS(2117), + [anon_sym_return] = ACTIONS(2117), + [anon_sym_initially] = ACTIONS(2117), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(2119), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [93] = { - [sym__gap] = STATE(248), - [sym_dis_expr] = STATE(248), - [sym__form] = STATE(2222), - [sym_num_lit] = STATE(2222), - [sym_kwd_lit] = STATE(2222), - [sym_str_lit] = STATE(2222), - [sym_char_lit] = STATE(2222), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2222), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2222), - [sym_set_lit] = STATE(2222), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2222), - [sym_splicing_read_cond_lit] = STATE(2222), - [sym_var_quoting_lit] = STATE(2222), - [sym_quoting_lit] = STATE(2222), - [sym_syn_quoting_lit] = STATE(2222), - [sym_unquote_splicing_lit] = STATE(2222), - [sym_unquoting_lit] = STATE(2222), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2222), - [sym_package_lit] = STATE(2222), - [sym_include_reader_macro] = STATE(2222), - [sym_complex_num_lit] = STATE(2222), - [aux_sym_dis_expr_repeat1] = STATE(248), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(2099), - [sym_comment] = ACTIONS(2099), - [anon_sym_POUND_] = ACTIONS(2035), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(2102), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(2040), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(2102), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2043), - [anon_sym_POUND_CARET] = ACTIONS(2046), - [anon_sym_LPAREN] = ACTIONS(2049), - [anon_sym_RPAREN] = ACTIONS(2052), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2173), + [sym_num_lit] = STATE(2173), + [sym_kwd_lit] = STATE(2173), + [sym_str_lit] = STATE(2173), + [sym_char_lit] = STATE(2173), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2173), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2173), + [sym_set_lit] = STATE(2173), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2173), + [sym_splicing_read_cond_lit] = STATE(2173), + [sym_var_quoting_lit] = STATE(2173), + [sym_quoting_lit] = STATE(2173), + [sym_syn_quoting_lit] = STATE(2173), + [sym_unquote_splicing_lit] = STATE(2173), + [sym_unquoting_lit] = STATE(2173), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2173), + [sym_package_lit] = STATE(2173), + [sym_include_reader_macro] = STATE(2173), + [sym_complex_num_lit] = STATE(2173), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(2121), + [sym_comment] = ACTIONS(2121), + [anon_sym_POUND_] = ACTIONS(2124), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(2127), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(2129), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(2127), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(2132), + [anon_sym_POUND_CARET] = ACTIONS(2135), + [anon_sym_LPAREN] = ACTIONS(2138), + [anon_sym_RPAREN] = ACTIONS(2141), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2102), - [anon_sym_cl] = ACTIONS(2054), - [aux_sym_accumulation_verb_token1] = ACTIONS(2057), - [anon_sym_for] = ACTIONS(2057), - [anon_sym_and] = ACTIONS(2057), - [anon_sym_as] = ACTIONS(2057), - [anon_sym_with] = ACTIONS(2057), - [anon_sym_do] = ACTIONS(2057), - [anon_sym_while] = ACTIONS(2057), - [anon_sym_until] = ACTIONS(2057), - [anon_sym_repeat] = ACTIONS(2057), - [anon_sym_when] = ACTIONS(2057), - [anon_sym_if] = ACTIONS(2057), - [anon_sym_unless] = ACTIONS(2057), - [anon_sym_always] = ACTIONS(2057), - [anon_sym_thereis] = ACTIONS(2057), - [anon_sym_never] = ACTIONS(2057), - [anon_sym_else] = ACTIONS(2057), - [anon_sym_finally] = ACTIONS(2057), - [anon_sym_return] = ACTIONS(2057), - [anon_sym_initially] = ACTIONS(2057), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(2104), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(2127), + [anon_sym_cl] = ACTIONS(2143), + [aux_sym_accumulation_verb_token1] = ACTIONS(2146), + [anon_sym_for] = ACTIONS(2146), + [anon_sym_and] = ACTIONS(2146), + [anon_sym_as] = ACTIONS(2146), + [anon_sym_with] = ACTIONS(2146), + [anon_sym_do] = ACTIONS(2146), + [anon_sym_while] = ACTIONS(2146), + [anon_sym_until] = ACTIONS(2146), + [anon_sym_repeat] = ACTIONS(2146), + [anon_sym_when] = ACTIONS(2146), + [anon_sym_if] = ACTIONS(2146), + [anon_sym_unless] = ACTIONS(2146), + [anon_sym_always] = ACTIONS(2146), + [anon_sym_thereis] = ACTIONS(2146), + [anon_sym_never] = ACTIONS(2146), + [anon_sym_else] = ACTIONS(2146), + [anon_sym_finally] = ACTIONS(2146), + [anon_sym_return] = ACTIONS(2146), + [anon_sym_initially] = ACTIONS(2146), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(2148), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [94] = { - [sym__gap] = STATE(276), - [sym_dis_expr] = STATE(276), - [sym__form] = STATE(2685), - [sym_num_lit] = STATE(2685), - [sym_kwd_lit] = STATE(2685), - [sym_str_lit] = STATE(2685), - [sym_char_lit] = STATE(2685), - [sym_sym_lit] = STATE(2762), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2685), - [sym__bare_list_lit] = STATE(1892), - [sym_vec_lit] = STATE(2685), - [sym_set_lit] = STATE(2685), - [sym__bare_set_lit] = STATE(1893), - [sym_read_cond_lit] = STATE(2685), - [sym_splicing_read_cond_lit] = STATE(2685), - [sym_var_quoting_lit] = STATE(2685), - [sym_quoting_lit] = STATE(2685), - [sym_syn_quoting_lit] = STATE(2685), - [sym_unquote_splicing_lit] = STATE(2685), - [sym_unquoting_lit] = STATE(2685), - [sym_defun] = STATE(1892), - [sym_for_clause_word] = STATE(405), - [sym__for_part] = STATE(1611), - [sym_loop_macro] = STATE(1892), - [sym_path_lit] = STATE(2685), - [sym_package_lit] = STATE(2685), - [sym_include_reader_macro] = STATE(2685), - [sym_complex_num_lit] = STATE(2685), - [aux_sym_dis_expr_repeat1] = STATE(276), - [aux_sym_list_lit_repeat1] = STATE(2840), - [aux_sym_for_clause_repeat1] = STATE(1266), - [sym__ws] = ACTIONS(2106), - [sym_comment] = ACTIONS(2106), - [anon_sym_POUND_] = ACTIONS(1596), - [anon_sym_POUND] = ACTIONS(1598), - [anon_sym_DOT] = ACTIONS(2108), - [aux_sym_num_lit_token1] = ACTIONS(1602), - [anon_sym_COLON] = ACTIONS(1604), - [anon_sym_COLON_COLON] = ACTIONS(1606), - [anon_sym_DQUOTE] = ACTIONS(1608), - [sym_nil_lit] = ACTIONS(2108), - [aux_sym_sym_lit_token1] = ACTIONS(1610), - [anon_sym_CARET] = ACTIONS(25), - [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(1612), - [anon_sym_POUND0A] = ACTIONS(1614), - [anon_sym_POUND0a] = ACTIONS(1614), - [anon_sym_POUND_QMARK] = ACTIONS(1616), - [anon_sym_POUND_QMARK_AT] = ACTIONS(1618), - [anon_sym_POUND_SQUOTE] = ACTIONS(1620), - [anon_sym_SQUOTE] = ACTIONS(1622), - [anon_sym_BQUOTE] = ACTIONS(1624), - [anon_sym_COMMA_AT] = ACTIONS(1626), - [anon_sym_COMMA] = ACTIONS(1628), + [sym__gap] = STATE(144), + [sym_dis_expr] = STATE(144), + [sym__form] = STATE(2174), + [sym_num_lit] = STATE(2174), + [sym_kwd_lit] = STATE(2174), + [sym_str_lit] = STATE(2174), + [sym_char_lit] = STATE(2174), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2174), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2174), + [sym_set_lit] = STATE(2174), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2174), + [sym_splicing_read_cond_lit] = STATE(2174), + [sym_var_quoting_lit] = STATE(2174), + [sym_quoting_lit] = STATE(2174), + [sym_syn_quoting_lit] = STATE(2174), + [sym_unquote_splicing_lit] = STATE(2174), + [sym_unquoting_lit] = STATE(2174), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2174), + [sym_package_lit] = STATE(2174), + [sym_include_reader_macro] = STATE(2174), + [sym_complex_num_lit] = STATE(2174), + [aux_sym_dis_expr_repeat1] = STATE(144), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(2150), + [sym_comment] = ACTIONS(2150), + [anon_sym_POUND_] = ACTIONS(2124), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(2153), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(2129), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(2153), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(2132), + [anon_sym_POUND_CARET] = ACTIONS(2135), + [anon_sym_LPAREN] = ACTIONS(2138), + [anon_sym_RPAREN] = ACTIONS(2141), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2108), - [anon_sym_cl] = ACTIONS(1630), - [anon_sym_in] = ACTIONS(1632), - [anon_sym_across] = ACTIONS(1632), - [anon_sym_being] = ACTIONS(1632), - [anon_sym_using] = ACTIONS(1632), - [aux_sym_for_clause_word_token1] = ACTIONS(1634), - [anon_sym_below] = ACTIONS(1632), - [anon_sym_above] = ACTIONS(1632), - [anon_sym_from] = ACTIONS(1632), - [anon_sym_to] = ACTIONS(1632), - [anon_sym_upto] = ACTIONS(1632), - [anon_sym_upfrom] = ACTIONS(1632), - [anon_sym_downto] = ACTIONS(1632), - [anon_sym_downfrom] = ACTIONS(1632), - [anon_sym_on] = ACTIONS(1632), - [anon_sym_by] = ACTIONS(1632), - [anon_sym_then] = ACTIONS(1632), - [anon_sym_EQ] = ACTIONS(1632), - [anon_sym_POUNDP] = ACTIONS(1636), - [anon_sym_POUNDp] = ACTIONS(1636), - [sym_self_referential_reader_macro] = ACTIONS(2110), - [anon_sym_POUND_PLUS] = ACTIONS(1640), - [anon_sym_POUND_DASH] = ACTIONS(1640), - [anon_sym_POUNDC] = ACTIONS(1642), - [anon_sym_POUNDc] = ACTIONS(1642), + [sym_fancy_literal] = ACTIONS(2153), + [anon_sym_cl] = ACTIONS(2143), + [aux_sym_accumulation_verb_token1] = ACTIONS(2146), + [anon_sym_for] = ACTIONS(2146), + [anon_sym_and] = ACTIONS(2146), + [anon_sym_as] = ACTIONS(2146), + [anon_sym_with] = ACTIONS(2146), + [anon_sym_do] = ACTIONS(2146), + [anon_sym_while] = ACTIONS(2146), + [anon_sym_until] = ACTIONS(2146), + [anon_sym_repeat] = ACTIONS(2146), + [anon_sym_when] = ACTIONS(2146), + [anon_sym_if] = ACTIONS(2146), + [anon_sym_unless] = ACTIONS(2146), + [anon_sym_always] = ACTIONS(2146), + [anon_sym_thereis] = ACTIONS(2146), + [anon_sym_never] = ACTIONS(2146), + [anon_sym_else] = ACTIONS(2146), + [anon_sym_finally] = ACTIONS(2146), + [anon_sym_return] = ACTIONS(2146), + [anon_sym_initially] = ACTIONS(2146), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(2155), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [95] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2216), - [sym_num_lit] = STATE(2216), - [sym_kwd_lit] = STATE(2216), - [sym_str_lit] = STATE(2216), - [sym_char_lit] = STATE(2216), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2216), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2216), - [sym_set_lit] = STATE(2216), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2216), - [sym_splicing_read_cond_lit] = STATE(2216), - [sym_var_quoting_lit] = STATE(2216), - [sym_quoting_lit] = STATE(2216), - [sym_syn_quoting_lit] = STATE(2216), - [sym_unquote_splicing_lit] = STATE(2216), - [sym_unquoting_lit] = STATE(2216), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2216), - [sym_package_lit] = STATE(2216), - [sym_include_reader_macro] = STATE(2216), - [sym_complex_num_lit] = STATE(2216), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(2032), - [sym_comment] = ACTIONS(2032), - [anon_sym_POUND_] = ACTIONS(2035), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(2112), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(2040), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(2112), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2043), - [anon_sym_POUND_CARET] = ACTIONS(2046), - [anon_sym_LPAREN] = ACTIONS(2049), - [anon_sym_RPAREN] = ACTIONS(2052), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(145), + [sym_dis_expr] = STATE(145), + [sym__form] = STATE(2176), + [sym_num_lit] = STATE(2176), + [sym_kwd_lit] = STATE(2176), + [sym_str_lit] = STATE(2176), + [sym_char_lit] = STATE(2176), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2176), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2176), + [sym_set_lit] = STATE(2176), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2176), + [sym_splicing_read_cond_lit] = STATE(2176), + [sym_var_quoting_lit] = STATE(2176), + [sym_quoting_lit] = STATE(2176), + [sym_syn_quoting_lit] = STATE(2176), + [sym_unquote_splicing_lit] = STATE(2176), + [sym_unquoting_lit] = STATE(2176), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2176), + [sym_package_lit] = STATE(2176), + [sym_include_reader_macro] = STATE(2176), + [sym_complex_num_lit] = STATE(2176), + [aux_sym_dis_expr_repeat1] = STATE(145), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(2157), + [sym_comment] = ACTIONS(2157), + [anon_sym_POUND_] = ACTIONS(2124), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(2160), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(2129), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(2160), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(2132), + [anon_sym_POUND_CARET] = ACTIONS(2135), + [anon_sym_LPAREN] = ACTIONS(2138), + [anon_sym_RPAREN] = ACTIONS(2141), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2112), - [anon_sym_cl] = ACTIONS(2054), - [aux_sym_accumulation_verb_token1] = ACTIONS(2057), - [anon_sym_for] = ACTIONS(2057), - [anon_sym_and] = ACTIONS(2057), - [anon_sym_as] = ACTIONS(2057), - [anon_sym_with] = ACTIONS(2057), - [anon_sym_do] = ACTIONS(2057), - [anon_sym_while] = ACTIONS(2057), - [anon_sym_until] = ACTIONS(2057), - [anon_sym_repeat] = ACTIONS(2057), - [anon_sym_when] = ACTIONS(2057), - [anon_sym_if] = ACTIONS(2057), - [anon_sym_unless] = ACTIONS(2057), - [anon_sym_always] = ACTIONS(2057), - [anon_sym_thereis] = ACTIONS(2057), - [anon_sym_never] = ACTIONS(2057), - [anon_sym_else] = ACTIONS(2057), - [anon_sym_finally] = ACTIONS(2057), - [anon_sym_return] = ACTIONS(2057), - [anon_sym_initially] = ACTIONS(2057), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(2114), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(2160), + [anon_sym_cl] = ACTIONS(2143), + [aux_sym_accumulation_verb_token1] = ACTIONS(2146), + [anon_sym_for] = ACTIONS(2146), + [anon_sym_and] = ACTIONS(2146), + [anon_sym_as] = ACTIONS(2146), + [anon_sym_with] = ACTIONS(2146), + [anon_sym_do] = ACTIONS(2146), + [anon_sym_while] = ACTIONS(2146), + [anon_sym_until] = ACTIONS(2146), + [anon_sym_repeat] = ACTIONS(2146), + [anon_sym_when] = ACTIONS(2146), + [anon_sym_if] = ACTIONS(2146), + [anon_sym_unless] = ACTIONS(2146), + [anon_sym_always] = ACTIONS(2146), + [anon_sym_thereis] = ACTIONS(2146), + [anon_sym_never] = ACTIONS(2146), + [anon_sym_else] = ACTIONS(2146), + [anon_sym_finally] = ACTIONS(2146), + [anon_sym_return] = ACTIONS(2146), + [anon_sym_initially] = ACTIONS(2146), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(2162), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [96] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2212), - [sym_num_lit] = STATE(2212), - [sym_kwd_lit] = STATE(2212), - [sym_str_lit] = STATE(2212), - [sym_char_lit] = STATE(2212), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2212), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2212), - [sym_set_lit] = STATE(2212), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2212), - [sym_splicing_read_cond_lit] = STATE(2212), - [sym_var_quoting_lit] = STATE(2212), - [sym_quoting_lit] = STATE(2212), - [sym_syn_quoting_lit] = STATE(2212), - [sym_unquote_splicing_lit] = STATE(2212), - [sym_unquoting_lit] = STATE(2212), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2212), - [sym_package_lit] = STATE(2212), - [sym_include_reader_macro] = STATE(2212), - [sym_complex_num_lit] = STATE(2212), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(2116), - [sym_comment] = ACTIONS(2116), - [anon_sym_POUND_] = ACTIONS(2119), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(2122), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(2124), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(2122), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2127), - [anon_sym_POUND_CARET] = ACTIONS(2130), - [anon_sym_LPAREN] = ACTIONS(2133), - [anon_sym_RPAREN] = ACTIONS(2136), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2179), + [sym_num_lit] = STATE(2179), + [sym_kwd_lit] = STATE(2179), + [sym_str_lit] = STATE(2179), + [sym_char_lit] = STATE(2179), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2179), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2179), + [sym_set_lit] = STATE(2179), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2179), + [sym_splicing_read_cond_lit] = STATE(2179), + [sym_var_quoting_lit] = STATE(2179), + [sym_quoting_lit] = STATE(2179), + [sym_syn_quoting_lit] = STATE(2179), + [sym_unquote_splicing_lit] = STATE(2179), + [sym_unquoting_lit] = STATE(2179), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2179), + [sym_package_lit] = STATE(2179), + [sym_include_reader_macro] = STATE(2179), + [sym_complex_num_lit] = STATE(2179), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(2121), + [sym_comment] = ACTIONS(2121), + [anon_sym_POUND_] = ACTIONS(2124), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(2164), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(2129), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(2164), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(2132), + [anon_sym_POUND_CARET] = ACTIONS(2135), + [anon_sym_LPAREN] = ACTIONS(2138), + [anon_sym_RPAREN] = ACTIONS(2141), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2122), - [anon_sym_cl] = ACTIONS(2138), - [aux_sym_accumulation_verb_token1] = ACTIONS(2141), - [anon_sym_for] = ACTIONS(2141), - [anon_sym_and] = ACTIONS(2141), - [anon_sym_as] = ACTIONS(2141), - [anon_sym_with] = ACTIONS(2141), - [anon_sym_do] = ACTIONS(2141), - [anon_sym_while] = ACTIONS(2141), - [anon_sym_until] = ACTIONS(2141), - [anon_sym_repeat] = ACTIONS(2141), - [anon_sym_when] = ACTIONS(2141), - [anon_sym_if] = ACTIONS(2141), - [anon_sym_unless] = ACTIONS(2141), - [anon_sym_always] = ACTIONS(2141), - [anon_sym_thereis] = ACTIONS(2141), - [anon_sym_never] = ACTIONS(2141), - [anon_sym_else] = ACTIONS(2141), - [anon_sym_finally] = ACTIONS(2141), - [anon_sym_return] = ACTIONS(2141), - [anon_sym_initially] = ACTIONS(2141), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(2143), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(2164), + [anon_sym_cl] = ACTIONS(2143), + [aux_sym_accumulation_verb_token1] = ACTIONS(2146), + [anon_sym_for] = ACTIONS(2146), + [anon_sym_and] = ACTIONS(2146), + [anon_sym_as] = ACTIONS(2146), + [anon_sym_with] = ACTIONS(2146), + [anon_sym_do] = ACTIONS(2146), + [anon_sym_while] = ACTIONS(2146), + [anon_sym_until] = ACTIONS(2146), + [anon_sym_repeat] = ACTIONS(2146), + [anon_sym_when] = ACTIONS(2146), + [anon_sym_if] = ACTIONS(2146), + [anon_sym_unless] = ACTIONS(2146), + [anon_sym_always] = ACTIONS(2146), + [anon_sym_thereis] = ACTIONS(2146), + [anon_sym_never] = ACTIONS(2146), + [anon_sym_else] = ACTIONS(2146), + [anon_sym_finally] = ACTIONS(2146), + [anon_sym_return] = ACTIONS(2146), + [anon_sym_initially] = ACTIONS(2146), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(2166), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [97] = { - [sym__gap] = STATE(191), - [sym_dis_expr] = STATE(191), - [sym__form] = STATE(2206), - [sym_num_lit] = STATE(2206), - [sym_kwd_lit] = STATE(2206), - [sym_str_lit] = STATE(2206), - [sym_char_lit] = STATE(2206), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2206), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2206), - [sym_set_lit] = STATE(2206), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2206), - [sym_splicing_read_cond_lit] = STATE(2206), - [sym_var_quoting_lit] = STATE(2206), - [sym_quoting_lit] = STATE(2206), - [sym_syn_quoting_lit] = STATE(2206), - [sym_unquote_splicing_lit] = STATE(2206), - [sym_unquoting_lit] = STATE(2206), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2206), - [sym_package_lit] = STATE(2206), - [sym_include_reader_macro] = STATE(2206), - [sym_complex_num_lit] = STATE(2206), - [aux_sym_dis_expr_repeat1] = STATE(191), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(2145), - [sym_comment] = ACTIONS(2145), - [anon_sym_POUND_] = ACTIONS(2148), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(2151), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(2153), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(2151), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2156), - [anon_sym_POUND_CARET] = ACTIONS(2159), - [anon_sym_LPAREN] = ACTIONS(2162), - [anon_sym_RPAREN] = ACTIONS(2165), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2181), + [sym_num_lit] = STATE(2181), + [sym_kwd_lit] = STATE(2181), + [sym_str_lit] = STATE(2181), + [sym_char_lit] = STATE(2181), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2181), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2181), + [sym_set_lit] = STATE(2181), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2181), + [sym_splicing_read_cond_lit] = STATE(2181), + [sym_var_quoting_lit] = STATE(2181), + [sym_quoting_lit] = STATE(2181), + [sym_syn_quoting_lit] = STATE(2181), + [sym_unquote_splicing_lit] = STATE(2181), + [sym_unquoting_lit] = STATE(2181), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2181), + [sym_package_lit] = STATE(2181), + [sym_include_reader_macro] = STATE(2181), + [sym_complex_num_lit] = STATE(2181), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(2092), + [sym_comment] = ACTIONS(2092), + [anon_sym_POUND_] = ACTIONS(2095), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(2168), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(2100), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(2168), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(2103), + [anon_sym_POUND_CARET] = ACTIONS(2106), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_RPAREN] = ACTIONS(2112), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2151), - [anon_sym_cl] = ACTIONS(2167), - [aux_sym_accumulation_verb_token1] = ACTIONS(2170), - [anon_sym_for] = ACTIONS(2170), - [anon_sym_and] = ACTIONS(2170), - [anon_sym_as] = ACTIONS(2170), - [anon_sym_with] = ACTIONS(2170), - [anon_sym_do] = ACTIONS(2170), - [anon_sym_while] = ACTIONS(2170), - [anon_sym_until] = ACTIONS(2170), - [anon_sym_repeat] = ACTIONS(2170), - [anon_sym_when] = ACTIONS(2170), - [anon_sym_if] = ACTIONS(2170), - [anon_sym_unless] = ACTIONS(2170), - [anon_sym_always] = ACTIONS(2170), - [anon_sym_thereis] = ACTIONS(2170), - [anon_sym_never] = ACTIONS(2170), - [anon_sym_else] = ACTIONS(2170), - [anon_sym_finally] = ACTIONS(2170), - [anon_sym_return] = ACTIONS(2170), - [anon_sym_initially] = ACTIONS(2170), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(2172), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(2168), + [anon_sym_cl] = ACTIONS(2114), + [aux_sym_accumulation_verb_token1] = ACTIONS(2117), + [anon_sym_for] = ACTIONS(2117), + [anon_sym_and] = ACTIONS(2117), + [anon_sym_as] = ACTIONS(2117), + [anon_sym_with] = ACTIONS(2117), + [anon_sym_do] = ACTIONS(2117), + [anon_sym_while] = ACTIONS(2117), + [anon_sym_until] = ACTIONS(2117), + [anon_sym_repeat] = ACTIONS(2117), + [anon_sym_when] = ACTIONS(2117), + [anon_sym_if] = ACTIONS(2117), + [anon_sym_unless] = ACTIONS(2117), + [anon_sym_always] = ACTIONS(2117), + [anon_sym_thereis] = ACTIONS(2117), + [anon_sym_never] = ACTIONS(2117), + [anon_sym_else] = ACTIONS(2117), + [anon_sym_finally] = ACTIONS(2117), + [anon_sym_return] = ACTIONS(2117), + [anon_sym_initially] = ACTIONS(2117), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(2170), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [98] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2205), - [sym_num_lit] = STATE(2205), - [sym_kwd_lit] = STATE(2205), - [sym_str_lit] = STATE(2205), - [sym_char_lit] = STATE(2205), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2205), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2205), - [sym_set_lit] = STATE(2205), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2205), - [sym_splicing_read_cond_lit] = STATE(2205), - [sym_var_quoting_lit] = STATE(2205), - [sym_quoting_lit] = STATE(2205), - [sym_syn_quoting_lit] = STATE(2205), - [sym_unquote_splicing_lit] = STATE(2205), - [sym_unquoting_lit] = STATE(2205), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2205), - [sym_package_lit] = STATE(2205), - [sym_include_reader_macro] = STATE(2205), - [sym_complex_num_lit] = STATE(2205), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(2174), - [sym_comment] = ACTIONS(2174), - [anon_sym_POUND_] = ACTIONS(2148), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(2177), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(2153), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(2177), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2156), - [anon_sym_POUND_CARET] = ACTIONS(2159), - [anon_sym_LPAREN] = ACTIONS(2162), - [anon_sym_RPAREN] = ACTIONS(2165), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(147), + [sym_dis_expr] = STATE(147), + [sym__form] = STATE(2182), + [sym_num_lit] = STATE(2182), + [sym_kwd_lit] = STATE(2182), + [sym_str_lit] = STATE(2182), + [sym_char_lit] = STATE(2182), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2182), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2182), + [sym_set_lit] = STATE(2182), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2182), + [sym_splicing_read_cond_lit] = STATE(2182), + [sym_var_quoting_lit] = STATE(2182), + [sym_quoting_lit] = STATE(2182), + [sym_syn_quoting_lit] = STATE(2182), + [sym_unquote_splicing_lit] = STATE(2182), + [sym_unquoting_lit] = STATE(2182), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2182), + [sym_package_lit] = STATE(2182), + [sym_include_reader_macro] = STATE(2182), + [sym_complex_num_lit] = STATE(2182), + [aux_sym_dis_expr_repeat1] = STATE(147), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(2172), + [sym_comment] = ACTIONS(2172), + [anon_sym_POUND_] = ACTIONS(2095), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(2175), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(2100), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(2175), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(2103), + [anon_sym_POUND_CARET] = ACTIONS(2106), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_RPAREN] = ACTIONS(2112), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2177), - [anon_sym_cl] = ACTIONS(2167), - [aux_sym_accumulation_verb_token1] = ACTIONS(2170), - [anon_sym_for] = ACTIONS(2170), - [anon_sym_and] = ACTIONS(2170), - [anon_sym_as] = ACTIONS(2170), - [anon_sym_with] = ACTIONS(2170), - [anon_sym_do] = ACTIONS(2170), - [anon_sym_while] = ACTIONS(2170), - [anon_sym_until] = ACTIONS(2170), - [anon_sym_repeat] = ACTIONS(2170), - [anon_sym_when] = ACTIONS(2170), - [anon_sym_if] = ACTIONS(2170), - [anon_sym_unless] = ACTIONS(2170), - [anon_sym_always] = ACTIONS(2170), - [anon_sym_thereis] = ACTIONS(2170), - [anon_sym_never] = ACTIONS(2170), - [anon_sym_else] = ACTIONS(2170), - [anon_sym_finally] = ACTIONS(2170), - [anon_sym_return] = ACTIONS(2170), - [anon_sym_initially] = ACTIONS(2170), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(2179), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(2175), + [anon_sym_cl] = ACTIONS(2114), + [aux_sym_accumulation_verb_token1] = ACTIONS(2117), + [anon_sym_for] = ACTIONS(2117), + [anon_sym_and] = ACTIONS(2117), + [anon_sym_as] = ACTIONS(2117), + [anon_sym_with] = ACTIONS(2117), + [anon_sym_do] = ACTIONS(2117), + [anon_sym_while] = ACTIONS(2117), + [anon_sym_until] = ACTIONS(2117), + [anon_sym_repeat] = ACTIONS(2117), + [anon_sym_when] = ACTIONS(2117), + [anon_sym_if] = ACTIONS(2117), + [anon_sym_unless] = ACTIONS(2117), + [anon_sym_always] = ACTIONS(2117), + [anon_sym_thereis] = ACTIONS(2117), + [anon_sym_never] = ACTIONS(2117), + [anon_sym_else] = ACTIONS(2117), + [anon_sym_finally] = ACTIONS(2117), + [anon_sym_return] = ACTIONS(2117), + [anon_sym_initially] = ACTIONS(2117), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(2177), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [99] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2198), - [sym_num_lit] = STATE(2198), - [sym_kwd_lit] = STATE(2198), - [sym_str_lit] = STATE(2198), - [sym_char_lit] = STATE(2198), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2198), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2198), - [sym_set_lit] = STATE(2198), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2198), - [sym_splicing_read_cond_lit] = STATE(2198), - [sym_var_quoting_lit] = STATE(2198), - [sym_quoting_lit] = STATE(2198), - [sym_syn_quoting_lit] = STATE(2198), - [sym_unquote_splicing_lit] = STATE(2198), - [sym_unquoting_lit] = STATE(2198), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2198), - [sym_package_lit] = STATE(2198), - [sym_include_reader_macro] = STATE(2198), - [sym_complex_num_lit] = STATE(2198), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(2174), - [sym_comment] = ACTIONS(2174), - [anon_sym_POUND_] = ACTIONS(2148), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(2181), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(2153), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(2181), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2156), - [anon_sym_POUND_CARET] = ACTIONS(2159), - [anon_sym_LPAREN] = ACTIONS(2162), - [anon_sym_RPAREN] = ACTIONS(2165), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(148), + [sym_dis_expr] = STATE(148), + [sym__form] = STATE(2184), + [sym_num_lit] = STATE(2184), + [sym_kwd_lit] = STATE(2184), + [sym_str_lit] = STATE(2184), + [sym_char_lit] = STATE(2184), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2184), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2184), + [sym_set_lit] = STATE(2184), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2184), + [sym_splicing_read_cond_lit] = STATE(2184), + [sym_var_quoting_lit] = STATE(2184), + [sym_quoting_lit] = STATE(2184), + [sym_syn_quoting_lit] = STATE(2184), + [sym_unquote_splicing_lit] = STATE(2184), + [sym_unquoting_lit] = STATE(2184), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2184), + [sym_package_lit] = STATE(2184), + [sym_include_reader_macro] = STATE(2184), + [sym_complex_num_lit] = STATE(2184), + [aux_sym_dis_expr_repeat1] = STATE(148), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(2179), + [sym_comment] = ACTIONS(2179), + [anon_sym_POUND_] = ACTIONS(2182), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(2185), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(2187), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(2185), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(2190), + [anon_sym_POUND_CARET] = ACTIONS(2193), + [anon_sym_LPAREN] = ACTIONS(2196), + [anon_sym_RPAREN] = ACTIONS(2199), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2181), - [anon_sym_cl] = ACTIONS(2167), - [aux_sym_accumulation_verb_token1] = ACTIONS(2170), - [anon_sym_for] = ACTIONS(2170), - [anon_sym_and] = ACTIONS(2170), - [anon_sym_as] = ACTIONS(2170), - [anon_sym_with] = ACTIONS(2170), - [anon_sym_do] = ACTIONS(2170), - [anon_sym_while] = ACTIONS(2170), - [anon_sym_until] = ACTIONS(2170), - [anon_sym_repeat] = ACTIONS(2170), - [anon_sym_when] = ACTIONS(2170), - [anon_sym_if] = ACTIONS(2170), - [anon_sym_unless] = ACTIONS(2170), - [anon_sym_always] = ACTIONS(2170), - [anon_sym_thereis] = ACTIONS(2170), - [anon_sym_never] = ACTIONS(2170), - [anon_sym_else] = ACTIONS(2170), - [anon_sym_finally] = ACTIONS(2170), - [anon_sym_return] = ACTIONS(2170), - [anon_sym_initially] = ACTIONS(2170), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(2183), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(2185), + [anon_sym_cl] = ACTIONS(2201), + [aux_sym_accumulation_verb_token1] = ACTIONS(2204), + [anon_sym_for] = ACTIONS(2204), + [anon_sym_and] = ACTIONS(2204), + [anon_sym_as] = ACTIONS(2204), + [anon_sym_with] = ACTIONS(2204), + [anon_sym_do] = ACTIONS(2204), + [anon_sym_while] = ACTIONS(2204), + [anon_sym_until] = ACTIONS(2204), + [anon_sym_repeat] = ACTIONS(2204), + [anon_sym_when] = ACTIONS(2204), + [anon_sym_if] = ACTIONS(2204), + [anon_sym_unless] = ACTIONS(2204), + [anon_sym_always] = ACTIONS(2204), + [anon_sym_thereis] = ACTIONS(2204), + [anon_sym_never] = ACTIONS(2204), + [anon_sym_else] = ACTIONS(2204), + [anon_sym_finally] = ACTIONS(2204), + [anon_sym_return] = ACTIONS(2204), + [anon_sym_initially] = ACTIONS(2204), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(2206), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [100] = { - [sym__gap] = STATE(48), - [sym_dis_expr] = STATE(48), - [sym__form] = STATE(2257), - [sym_num_lit] = STATE(2257), - [sym_kwd_lit] = STATE(2257), - [sym_str_lit] = STATE(2257), - [sym_char_lit] = STATE(2257), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2257), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2257), - [sym_set_lit] = STATE(2257), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2257), - [sym_splicing_read_cond_lit] = STATE(2257), - [sym_var_quoting_lit] = STATE(2257), - [sym_quoting_lit] = STATE(2257), - [sym_syn_quoting_lit] = STATE(2257), - [sym_unquote_splicing_lit] = STATE(2257), - [sym_unquoting_lit] = STATE(2257), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2257), - [sym_package_lit] = STATE(2257), - [sym_include_reader_macro] = STATE(2257), - [sym_complex_num_lit] = STATE(2257), - [aux_sym_dis_expr_repeat1] = STATE(48), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(2185), - [sym_comment] = ACTIONS(2185), - [anon_sym_POUND_] = ACTIONS(2188), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(2191), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(2193), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(2191), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2196), - [anon_sym_POUND_CARET] = ACTIONS(2199), - [anon_sym_LPAREN] = ACTIONS(2202), - [anon_sym_RPAREN] = ACTIONS(2205), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2186), + [sym_num_lit] = STATE(2186), + [sym_kwd_lit] = STATE(2186), + [sym_str_lit] = STATE(2186), + [sym_char_lit] = STATE(2186), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2186), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2186), + [sym_set_lit] = STATE(2186), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2186), + [sym_splicing_read_cond_lit] = STATE(2186), + [sym_var_quoting_lit] = STATE(2186), + [sym_quoting_lit] = STATE(2186), + [sym_syn_quoting_lit] = STATE(2186), + [sym_unquote_splicing_lit] = STATE(2186), + [sym_unquoting_lit] = STATE(2186), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2186), + [sym_package_lit] = STATE(2186), + [sym_include_reader_macro] = STATE(2186), + [sym_complex_num_lit] = STATE(2186), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(2208), + [sym_comment] = ACTIONS(2208), + [anon_sym_POUND_] = ACTIONS(2182), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(2211), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(2187), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(2211), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(2190), + [anon_sym_POUND_CARET] = ACTIONS(2193), + [anon_sym_LPAREN] = ACTIONS(2196), + [anon_sym_RPAREN] = ACTIONS(2199), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2191), - [anon_sym_cl] = ACTIONS(2207), - [aux_sym_accumulation_verb_token1] = ACTIONS(2210), - [anon_sym_for] = ACTIONS(2210), - [anon_sym_and] = ACTIONS(2210), - [anon_sym_as] = ACTIONS(2210), - [anon_sym_with] = ACTIONS(2210), - [anon_sym_do] = ACTIONS(2210), - [anon_sym_while] = ACTIONS(2210), - [anon_sym_until] = ACTIONS(2210), - [anon_sym_repeat] = ACTIONS(2210), - [anon_sym_when] = ACTIONS(2210), - [anon_sym_if] = ACTIONS(2210), - [anon_sym_unless] = ACTIONS(2210), - [anon_sym_always] = ACTIONS(2210), - [anon_sym_thereis] = ACTIONS(2210), - [anon_sym_never] = ACTIONS(2210), - [anon_sym_else] = ACTIONS(2210), - [anon_sym_finally] = ACTIONS(2210), - [anon_sym_return] = ACTIONS(2210), - [anon_sym_initially] = ACTIONS(2210), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(2212), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(2211), + [anon_sym_cl] = ACTIONS(2201), + [aux_sym_accumulation_verb_token1] = ACTIONS(2204), + [anon_sym_for] = ACTIONS(2204), + [anon_sym_and] = ACTIONS(2204), + [anon_sym_as] = ACTIONS(2204), + [anon_sym_with] = ACTIONS(2204), + [anon_sym_do] = ACTIONS(2204), + [anon_sym_while] = ACTIONS(2204), + [anon_sym_until] = ACTIONS(2204), + [anon_sym_repeat] = ACTIONS(2204), + [anon_sym_when] = ACTIONS(2204), + [anon_sym_if] = ACTIONS(2204), + [anon_sym_unless] = ACTIONS(2204), + [anon_sym_always] = ACTIONS(2204), + [anon_sym_thereis] = ACTIONS(2204), + [anon_sym_never] = ACTIONS(2204), + [anon_sym_else] = ACTIONS(2204), + [anon_sym_finally] = ACTIONS(2204), + [anon_sym_return] = ACTIONS(2204), + [anon_sym_initially] = ACTIONS(2204), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(2213), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [101] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2315), - [sym_num_lit] = STATE(2315), - [sym_kwd_lit] = STATE(2315), - [sym_str_lit] = STATE(2315), - [sym_char_lit] = STATE(2315), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2315), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2315), - [sym_set_lit] = STATE(2315), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2315), - [sym_splicing_read_cond_lit] = STATE(2315), - [sym_var_quoting_lit] = STATE(2315), - [sym_quoting_lit] = STATE(2315), - [sym_syn_quoting_lit] = STATE(2315), - [sym_unquote_splicing_lit] = STATE(2315), - [sym_unquoting_lit] = STATE(2315), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2315), - [sym_package_lit] = STATE(2315), - [sym_include_reader_macro] = STATE(2315), - [sym_complex_num_lit] = STATE(2315), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(2214), - [sym_comment] = ACTIONS(2214), - [anon_sym_POUND_] = ACTIONS(2188), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(2217), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(2193), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(2217), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2196), - [anon_sym_POUND_CARET] = ACTIONS(2199), - [anon_sym_LPAREN] = ACTIONS(2202), - [anon_sym_RPAREN] = ACTIONS(2205), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(151), + [sym_dis_expr] = STATE(151), + [sym__form] = STATE(2187), + [sym_num_lit] = STATE(2187), + [sym_kwd_lit] = STATE(2187), + [sym_str_lit] = STATE(2187), + [sym_char_lit] = STATE(2187), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2187), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2187), + [sym_set_lit] = STATE(2187), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2187), + [sym_splicing_read_cond_lit] = STATE(2187), + [sym_var_quoting_lit] = STATE(2187), + [sym_quoting_lit] = STATE(2187), + [sym_syn_quoting_lit] = STATE(2187), + [sym_unquote_splicing_lit] = STATE(2187), + [sym_unquoting_lit] = STATE(2187), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2187), + [sym_package_lit] = STATE(2187), + [sym_include_reader_macro] = STATE(2187), + [sym_complex_num_lit] = STATE(2187), + [aux_sym_dis_expr_repeat1] = STATE(151), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(2215), + [sym_comment] = ACTIONS(2215), + [anon_sym_POUND_] = ACTIONS(2182), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(2218), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(2187), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(2218), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(2190), + [anon_sym_POUND_CARET] = ACTIONS(2193), + [anon_sym_LPAREN] = ACTIONS(2196), + [anon_sym_RPAREN] = ACTIONS(2199), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2217), - [anon_sym_cl] = ACTIONS(2207), - [aux_sym_accumulation_verb_token1] = ACTIONS(2210), - [anon_sym_for] = ACTIONS(2210), - [anon_sym_and] = ACTIONS(2210), - [anon_sym_as] = ACTIONS(2210), - [anon_sym_with] = ACTIONS(2210), - [anon_sym_do] = ACTIONS(2210), - [anon_sym_while] = ACTIONS(2210), - [anon_sym_until] = ACTIONS(2210), - [anon_sym_repeat] = ACTIONS(2210), - [anon_sym_when] = ACTIONS(2210), - [anon_sym_if] = ACTIONS(2210), - [anon_sym_unless] = ACTIONS(2210), - [anon_sym_always] = ACTIONS(2210), - [anon_sym_thereis] = ACTIONS(2210), - [anon_sym_never] = ACTIONS(2210), - [anon_sym_else] = ACTIONS(2210), - [anon_sym_finally] = ACTIONS(2210), - [anon_sym_return] = ACTIONS(2210), - [anon_sym_initially] = ACTIONS(2210), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(2219), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(2218), + [anon_sym_cl] = ACTIONS(2201), + [aux_sym_accumulation_verb_token1] = ACTIONS(2204), + [anon_sym_for] = ACTIONS(2204), + [anon_sym_and] = ACTIONS(2204), + [anon_sym_as] = ACTIONS(2204), + [anon_sym_with] = ACTIONS(2204), + [anon_sym_do] = ACTIONS(2204), + [anon_sym_while] = ACTIONS(2204), + [anon_sym_until] = ACTIONS(2204), + [anon_sym_repeat] = ACTIONS(2204), + [anon_sym_when] = ACTIONS(2204), + [anon_sym_if] = ACTIONS(2204), + [anon_sym_unless] = ACTIONS(2204), + [anon_sym_always] = ACTIONS(2204), + [anon_sym_thereis] = ACTIONS(2204), + [anon_sym_never] = ACTIONS(2204), + [anon_sym_else] = ACTIONS(2204), + [anon_sym_finally] = ACTIONS(2204), + [anon_sym_return] = ACTIONS(2204), + [anon_sym_initially] = ACTIONS(2204), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(2220), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [102] = { - [sym__gap] = STATE(171), - [sym_dis_expr] = STATE(171), - [sym__form] = STATE(2381), - [sym_num_lit] = STATE(2381), - [sym_kwd_lit] = STATE(2381), - [sym_str_lit] = STATE(2381), - [sym_char_lit] = STATE(2381), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2381), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2381), - [sym_set_lit] = STATE(2381), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2381), - [sym_splicing_read_cond_lit] = STATE(2381), - [sym_var_quoting_lit] = STATE(2381), - [sym_quoting_lit] = STATE(2381), - [sym_syn_quoting_lit] = STATE(2381), - [sym_unquote_splicing_lit] = STATE(2381), - [sym_unquoting_lit] = STATE(2381), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2381), - [sym_package_lit] = STATE(2381), - [sym_include_reader_macro] = STATE(2381), - [sym_complex_num_lit] = STATE(2381), - [aux_sym_dis_expr_repeat1] = STATE(171), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(2221), - [sym_comment] = ACTIONS(2221), - [anon_sym_POUND_] = ACTIONS(2075), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(2224), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(2080), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(2224), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(472), - [anon_sym_POUND_CARET] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(2083), - [anon_sym_RPAREN] = ACTIONS(481), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2190), + [sym_num_lit] = STATE(2190), + [sym_kwd_lit] = STATE(2190), + [sym_str_lit] = STATE(2190), + [sym_char_lit] = STATE(2190), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2190), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2190), + [sym_set_lit] = STATE(2190), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2190), + [sym_splicing_read_cond_lit] = STATE(2190), + [sym_var_quoting_lit] = STATE(2190), + [sym_quoting_lit] = STATE(2190), + [sym_syn_quoting_lit] = STATE(2190), + [sym_unquote_splicing_lit] = STATE(2190), + [sym_unquoting_lit] = STATE(2190), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2190), + [sym_package_lit] = STATE(2190), + [sym_include_reader_macro] = STATE(2190), + [sym_complex_num_lit] = STATE(2190), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(1803), + [sym_comment] = ACTIONS(1803), + [anon_sym_POUND_] = ACTIONS(1806), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(2222), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(1811), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(2222), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(1814), + [anon_sym_POUND_CARET] = ACTIONS(1817), + [anon_sym_LPAREN] = ACTIONS(1820), + [anon_sym_RPAREN] = ACTIONS(1823), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2224), - [anon_sym_cl] = ACTIONS(2086), - [aux_sym_accumulation_verb_token1] = ACTIONS(488), - [anon_sym_for] = ACTIONS(488), - [anon_sym_and] = ACTIONS(488), - [anon_sym_as] = ACTIONS(488), - [anon_sym_with] = ACTIONS(488), - [anon_sym_do] = ACTIONS(488), - [anon_sym_while] = ACTIONS(488), - [anon_sym_until] = ACTIONS(488), - [anon_sym_repeat] = ACTIONS(488), - [anon_sym_when] = ACTIONS(488), - [anon_sym_if] = ACTIONS(488), - [anon_sym_unless] = ACTIONS(488), - [anon_sym_always] = ACTIONS(488), - [anon_sym_thereis] = ACTIONS(488), - [anon_sym_never] = ACTIONS(488), - [anon_sym_else] = ACTIONS(488), - [anon_sym_finally] = ACTIONS(488), - [anon_sym_return] = ACTIONS(488), - [anon_sym_initially] = ACTIONS(488), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(2226), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(2222), + [anon_sym_cl] = ACTIONS(1825), + [aux_sym_accumulation_verb_token1] = ACTIONS(1828), + [anon_sym_for] = ACTIONS(1828), + [anon_sym_and] = ACTIONS(1828), + [anon_sym_as] = ACTIONS(1828), + [anon_sym_with] = ACTIONS(1828), + [anon_sym_do] = ACTIONS(1828), + [anon_sym_while] = ACTIONS(1828), + [anon_sym_until] = ACTIONS(1828), + [anon_sym_repeat] = ACTIONS(1828), + [anon_sym_when] = ACTIONS(1828), + [anon_sym_if] = ACTIONS(1828), + [anon_sym_unless] = ACTIONS(1828), + [anon_sym_always] = ACTIONS(1828), + [anon_sym_thereis] = ACTIONS(1828), + [anon_sym_never] = ACTIONS(1828), + [anon_sym_else] = ACTIONS(1828), + [anon_sym_finally] = ACTIONS(1828), + [anon_sym_return] = ACTIONS(1828), + [anon_sym_initially] = ACTIONS(1828), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(2224), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [103] = { - [sym__gap] = STATE(237), - [sym_dis_expr] = STATE(237), - [sym__form] = STATE(2047), - [sym_num_lit] = STATE(2047), - [sym_kwd_lit] = STATE(2047), - [sym_str_lit] = STATE(2047), - [sym_char_lit] = STATE(2047), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2047), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2047), - [sym_set_lit] = STATE(2047), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2047), - [sym_splicing_read_cond_lit] = STATE(2047), - [sym_var_quoting_lit] = STATE(2047), - [sym_quoting_lit] = STATE(2047), - [sym_syn_quoting_lit] = STATE(2047), - [sym_unquote_splicing_lit] = STATE(2047), - [sym_unquoting_lit] = STATE(2047), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2047), - [sym_package_lit] = STATE(2047), - [sym_include_reader_macro] = STATE(2047), - [sym_complex_num_lit] = STATE(2047), - [aux_sym_dis_expr_repeat1] = STATE(237), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(2228), - [sym_comment] = ACTIONS(2228), - [anon_sym_POUND_] = ACTIONS(1788), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(2231), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(1793), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(2231), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1796), - [anon_sym_POUND_CARET] = ACTIONS(1799), - [anon_sym_LPAREN] = ACTIONS(1802), - [anon_sym_RPAREN] = ACTIONS(1805), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(152), + [sym_dis_expr] = STATE(152), + [sym__form] = STATE(2191), + [sym_num_lit] = STATE(2191), + [sym_kwd_lit] = STATE(2191), + [sym_str_lit] = STATE(2191), + [sym_char_lit] = STATE(2191), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2191), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2191), + [sym_set_lit] = STATE(2191), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2191), + [sym_splicing_read_cond_lit] = STATE(2191), + [sym_var_quoting_lit] = STATE(2191), + [sym_quoting_lit] = STATE(2191), + [sym_syn_quoting_lit] = STATE(2191), + [sym_unquote_splicing_lit] = STATE(2191), + [sym_unquoting_lit] = STATE(2191), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2191), + [sym_package_lit] = STATE(2191), + [sym_include_reader_macro] = STATE(2191), + [sym_complex_num_lit] = STATE(2191), + [aux_sym_dis_expr_repeat1] = STATE(152), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(2226), + [sym_comment] = ACTIONS(2226), + [anon_sym_POUND_] = ACTIONS(1806), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(2229), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(1811), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(2229), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(1814), + [anon_sym_POUND_CARET] = ACTIONS(1817), + [anon_sym_LPAREN] = ACTIONS(1820), + [anon_sym_RPAREN] = ACTIONS(1823), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2231), - [anon_sym_cl] = ACTIONS(1807), - [aux_sym_accumulation_verb_token1] = ACTIONS(1810), - [anon_sym_for] = ACTIONS(1810), - [anon_sym_and] = ACTIONS(1810), - [anon_sym_as] = ACTIONS(1810), - [anon_sym_with] = ACTIONS(1810), - [anon_sym_do] = ACTIONS(1810), - [anon_sym_while] = ACTIONS(1810), - [anon_sym_until] = ACTIONS(1810), - [anon_sym_repeat] = ACTIONS(1810), - [anon_sym_when] = ACTIONS(1810), - [anon_sym_if] = ACTIONS(1810), - [anon_sym_unless] = ACTIONS(1810), - [anon_sym_always] = ACTIONS(1810), - [anon_sym_thereis] = ACTIONS(1810), - [anon_sym_never] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1810), - [anon_sym_finally] = ACTIONS(1810), - [anon_sym_return] = ACTIONS(1810), - [anon_sym_initially] = ACTIONS(1810), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(2233), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(2229), + [anon_sym_cl] = ACTIONS(1825), + [aux_sym_accumulation_verb_token1] = ACTIONS(1828), + [anon_sym_for] = ACTIONS(1828), + [anon_sym_and] = ACTIONS(1828), + [anon_sym_as] = ACTIONS(1828), + [anon_sym_with] = ACTIONS(1828), + [anon_sym_do] = ACTIONS(1828), + [anon_sym_while] = ACTIONS(1828), + [anon_sym_until] = ACTIONS(1828), + [anon_sym_repeat] = ACTIONS(1828), + [anon_sym_when] = ACTIONS(1828), + [anon_sym_if] = ACTIONS(1828), + [anon_sym_unless] = ACTIONS(1828), + [anon_sym_always] = ACTIONS(1828), + [anon_sym_thereis] = ACTIONS(1828), + [anon_sym_never] = ACTIONS(1828), + [anon_sym_else] = ACTIONS(1828), + [anon_sym_finally] = ACTIONS(1828), + [anon_sym_return] = ACTIONS(1828), + [anon_sym_initially] = ACTIONS(1828), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(2231), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [104] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2307), - [sym_num_lit] = STATE(2307), - [sym_kwd_lit] = STATE(2307), - [sym_str_lit] = STATE(2307), - [sym_char_lit] = STATE(2307), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2307), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2307), - [sym_set_lit] = STATE(2307), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2307), - [sym_splicing_read_cond_lit] = STATE(2307), - [sym_var_quoting_lit] = STATE(2307), - [sym_quoting_lit] = STATE(2307), - [sym_syn_quoting_lit] = STATE(2307), - [sym_unquote_splicing_lit] = STATE(2307), - [sym_unquoting_lit] = STATE(2307), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2307), - [sym_package_lit] = STATE(2307), - [sym_include_reader_macro] = STATE(2307), - [sym_complex_num_lit] = STATE(2307), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(2235), - [sym_comment] = ACTIONS(2235), - [anon_sym_POUND_] = ACTIONS(2238), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(2241), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(2243), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(2241), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2246), - [anon_sym_POUND_CARET] = ACTIONS(2249), - [anon_sym_LPAREN] = ACTIONS(2252), - [anon_sym_RPAREN] = ACTIONS(2255), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(153), + [sym_dis_expr] = STATE(153), + [sym__form] = STATE(2193), + [sym_num_lit] = STATE(2193), + [sym_kwd_lit] = STATE(2193), + [sym_str_lit] = STATE(2193), + [sym_char_lit] = STATE(2193), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2193), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2193), + [sym_set_lit] = STATE(2193), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2193), + [sym_splicing_read_cond_lit] = STATE(2193), + [sym_var_quoting_lit] = STATE(2193), + [sym_quoting_lit] = STATE(2193), + [sym_syn_quoting_lit] = STATE(2193), + [sym_unquote_splicing_lit] = STATE(2193), + [sym_unquoting_lit] = STATE(2193), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2193), + [sym_package_lit] = STATE(2193), + [sym_include_reader_macro] = STATE(2193), + [sym_complex_num_lit] = STATE(2193), + [aux_sym_dis_expr_repeat1] = STATE(153), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(2233), + [sym_comment] = ACTIONS(2233), + [anon_sym_POUND_] = ACTIONS(1842), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(2236), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(2236), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(1850), + [anon_sym_POUND_CARET] = ACTIONS(1853), + [anon_sym_LPAREN] = ACTIONS(1856), + [anon_sym_RPAREN] = ACTIONS(1859), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2241), - [anon_sym_cl] = ACTIONS(2257), - [aux_sym_accumulation_verb_token1] = ACTIONS(2260), - [anon_sym_for] = ACTIONS(2260), - [anon_sym_and] = ACTIONS(2260), - [anon_sym_as] = ACTIONS(2260), - [anon_sym_with] = ACTIONS(2260), - [anon_sym_do] = ACTIONS(2260), - [anon_sym_while] = ACTIONS(2260), - [anon_sym_until] = ACTIONS(2260), - [anon_sym_repeat] = ACTIONS(2260), - [anon_sym_when] = ACTIONS(2260), - [anon_sym_if] = ACTIONS(2260), - [anon_sym_unless] = ACTIONS(2260), - [anon_sym_always] = ACTIONS(2260), - [anon_sym_thereis] = ACTIONS(2260), - [anon_sym_never] = ACTIONS(2260), - [anon_sym_else] = ACTIONS(2260), - [anon_sym_finally] = ACTIONS(2260), - [anon_sym_return] = ACTIONS(2260), - [anon_sym_initially] = ACTIONS(2260), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(2262), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(2236), + [anon_sym_cl] = ACTIONS(1861), + [aux_sym_accumulation_verb_token1] = ACTIONS(1864), + [anon_sym_for] = ACTIONS(1864), + [anon_sym_and] = ACTIONS(1864), + [anon_sym_as] = ACTIONS(1864), + [anon_sym_with] = ACTIONS(1864), + [anon_sym_do] = ACTIONS(1864), + [anon_sym_while] = ACTIONS(1864), + [anon_sym_until] = ACTIONS(1864), + [anon_sym_repeat] = ACTIONS(1864), + [anon_sym_when] = ACTIONS(1864), + [anon_sym_if] = ACTIONS(1864), + [anon_sym_unless] = ACTIONS(1864), + [anon_sym_always] = ACTIONS(1864), + [anon_sym_thereis] = ACTIONS(1864), + [anon_sym_never] = ACTIONS(1864), + [anon_sym_else] = ACTIONS(1864), + [anon_sym_finally] = ACTIONS(1864), + [anon_sym_return] = ACTIONS(1864), + [anon_sym_initially] = ACTIONS(1864), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(2238), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [105] = { - [sym__gap] = STATE(163), - [sym_dis_expr] = STATE(163), - [sym__form] = STATE(2107), - [sym_num_lit] = STATE(2107), - [sym_kwd_lit] = STATE(2107), - [sym_str_lit] = STATE(2107), - [sym_char_lit] = STATE(2107), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2107), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2107), - [sym_set_lit] = STATE(2107), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2107), - [sym_splicing_read_cond_lit] = STATE(2107), - [sym_var_quoting_lit] = STATE(2107), - [sym_quoting_lit] = STATE(2107), - [sym_syn_quoting_lit] = STATE(2107), - [sym_unquote_splicing_lit] = STATE(2107), - [sym_unquoting_lit] = STATE(2107), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2107), - [sym_package_lit] = STATE(2107), - [sym_include_reader_macro] = STATE(2107), - [sym_complex_num_lit] = STATE(2107), - [aux_sym_dis_expr_repeat1] = STATE(163), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(2264), - [sym_comment] = ACTIONS(2264), - [anon_sym_POUND_] = ACTIONS(2267), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(2270), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(2272), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(2270), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2275), - [anon_sym_POUND_CARET] = ACTIONS(2278), - [anon_sym_LPAREN] = ACTIONS(2281), - [anon_sym_RPAREN] = ACTIONS(2284), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2195), + [sym_num_lit] = STATE(2195), + [sym_kwd_lit] = STATE(2195), + [sym_str_lit] = STATE(2195), + [sym_char_lit] = STATE(2195), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2195), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2195), + [sym_set_lit] = STATE(2195), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2195), + [sym_splicing_read_cond_lit] = STATE(2195), + [sym_var_quoting_lit] = STATE(2195), + [sym_quoting_lit] = STATE(2195), + [sym_syn_quoting_lit] = STATE(2195), + [sym_unquote_splicing_lit] = STATE(2195), + [sym_unquoting_lit] = STATE(2195), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2195), + [sym_package_lit] = STATE(2195), + [sym_include_reader_macro] = STATE(2195), + [sym_complex_num_lit] = STATE(2195), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(1868), + [sym_comment] = ACTIONS(1868), + [anon_sym_POUND_] = ACTIONS(1842), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(2240), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(2240), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(1850), + [anon_sym_POUND_CARET] = ACTIONS(1853), + [anon_sym_LPAREN] = ACTIONS(1856), + [anon_sym_RPAREN] = ACTIONS(1859), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2270), - [anon_sym_cl] = ACTIONS(2286), - [aux_sym_accumulation_verb_token1] = ACTIONS(2289), - [anon_sym_for] = ACTIONS(2289), - [anon_sym_and] = ACTIONS(2289), - [anon_sym_as] = ACTIONS(2289), - [anon_sym_with] = ACTIONS(2289), - [anon_sym_do] = ACTIONS(2289), - [anon_sym_while] = ACTIONS(2289), - [anon_sym_until] = ACTIONS(2289), - [anon_sym_repeat] = ACTIONS(2289), - [anon_sym_when] = ACTIONS(2289), - [anon_sym_if] = ACTIONS(2289), - [anon_sym_unless] = ACTIONS(2289), - [anon_sym_always] = ACTIONS(2289), - [anon_sym_thereis] = ACTIONS(2289), - [anon_sym_never] = ACTIONS(2289), - [anon_sym_else] = ACTIONS(2289), - [anon_sym_finally] = ACTIONS(2289), - [anon_sym_return] = ACTIONS(2289), - [anon_sym_initially] = ACTIONS(2289), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(2291), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(2240), + [anon_sym_cl] = ACTIONS(1861), + [aux_sym_accumulation_verb_token1] = ACTIONS(1864), + [anon_sym_for] = ACTIONS(1864), + [anon_sym_and] = ACTIONS(1864), + [anon_sym_as] = ACTIONS(1864), + [anon_sym_with] = ACTIONS(1864), + [anon_sym_do] = ACTIONS(1864), + [anon_sym_while] = ACTIONS(1864), + [anon_sym_until] = ACTIONS(1864), + [anon_sym_repeat] = ACTIONS(1864), + [anon_sym_when] = ACTIONS(1864), + [anon_sym_if] = ACTIONS(1864), + [anon_sym_unless] = ACTIONS(1864), + [anon_sym_always] = ACTIONS(1864), + [anon_sym_thereis] = ACTIONS(1864), + [anon_sym_never] = ACTIONS(1864), + [anon_sym_else] = ACTIONS(1864), + [anon_sym_finally] = ACTIONS(1864), + [anon_sym_return] = ACTIONS(1864), + [anon_sym_initially] = ACTIONS(1864), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(2242), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [106] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2352), - [sym_num_lit] = STATE(2352), - [sym_kwd_lit] = STATE(2352), - [sym_str_lit] = STATE(2352), - [sym_char_lit] = STATE(2352), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2352), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2352), - [sym_set_lit] = STATE(2352), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2352), - [sym_splicing_read_cond_lit] = STATE(2352), - [sym_var_quoting_lit] = STATE(2352), - [sym_quoting_lit] = STATE(2352), - [sym_syn_quoting_lit] = STATE(2352), - [sym_unquote_splicing_lit] = STATE(2352), - [sym_unquoting_lit] = STATE(2352), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2352), - [sym_package_lit] = STATE(2352), - [sym_include_reader_macro] = STATE(2352), - [sym_complex_num_lit] = STATE(2352), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(2214), - [sym_comment] = ACTIONS(2214), - [anon_sym_POUND_] = ACTIONS(2188), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(2293), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(2193), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(2293), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2196), - [anon_sym_POUND_CARET] = ACTIONS(2199), - [anon_sym_LPAREN] = ACTIONS(2202), - [anon_sym_RPAREN] = ACTIONS(2205), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(156), + [sym_dis_expr] = STATE(156), + [sym__form] = STATE(2197), + [sym_num_lit] = STATE(2197), + [sym_kwd_lit] = STATE(2197), + [sym_str_lit] = STATE(2197), + [sym_char_lit] = STATE(2197), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2197), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2197), + [sym_set_lit] = STATE(2197), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2197), + [sym_splicing_read_cond_lit] = STATE(2197), + [sym_var_quoting_lit] = STATE(2197), + [sym_quoting_lit] = STATE(2197), + [sym_syn_quoting_lit] = STATE(2197), + [sym_unquote_splicing_lit] = STATE(2197), + [sym_unquoting_lit] = STATE(2197), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2197), + [sym_package_lit] = STATE(2197), + [sym_include_reader_macro] = STATE(2197), + [sym_complex_num_lit] = STATE(2197), + [aux_sym_dis_expr_repeat1] = STATE(156), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(2244), + [sym_comment] = ACTIONS(2244), + [anon_sym_POUND_] = ACTIONS(1842), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(2247), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(2247), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(1850), + [anon_sym_POUND_CARET] = ACTIONS(1853), + [anon_sym_LPAREN] = ACTIONS(1856), + [anon_sym_RPAREN] = ACTIONS(1859), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2293), - [anon_sym_cl] = ACTIONS(2207), - [aux_sym_accumulation_verb_token1] = ACTIONS(2210), - [anon_sym_for] = ACTIONS(2210), - [anon_sym_and] = ACTIONS(2210), - [anon_sym_as] = ACTIONS(2210), - [anon_sym_with] = ACTIONS(2210), - [anon_sym_do] = ACTIONS(2210), - [anon_sym_while] = ACTIONS(2210), - [anon_sym_until] = ACTIONS(2210), - [anon_sym_repeat] = ACTIONS(2210), - [anon_sym_when] = ACTIONS(2210), - [anon_sym_if] = ACTIONS(2210), - [anon_sym_unless] = ACTIONS(2210), - [anon_sym_always] = ACTIONS(2210), - [anon_sym_thereis] = ACTIONS(2210), - [anon_sym_never] = ACTIONS(2210), - [anon_sym_else] = ACTIONS(2210), - [anon_sym_finally] = ACTIONS(2210), - [anon_sym_return] = ACTIONS(2210), - [anon_sym_initially] = ACTIONS(2210), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(2295), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(2247), + [anon_sym_cl] = ACTIONS(1861), + [aux_sym_accumulation_verb_token1] = ACTIONS(1864), + [anon_sym_for] = ACTIONS(1864), + [anon_sym_and] = ACTIONS(1864), + [anon_sym_as] = ACTIONS(1864), + [anon_sym_with] = ACTIONS(1864), + [anon_sym_do] = ACTIONS(1864), + [anon_sym_while] = ACTIONS(1864), + [anon_sym_until] = ACTIONS(1864), + [anon_sym_repeat] = ACTIONS(1864), + [anon_sym_when] = ACTIONS(1864), + [anon_sym_if] = ACTIONS(1864), + [anon_sym_unless] = ACTIONS(1864), + [anon_sym_always] = ACTIONS(1864), + [anon_sym_thereis] = ACTIONS(1864), + [anon_sym_never] = ACTIONS(1864), + [anon_sym_else] = ACTIONS(1864), + [anon_sym_finally] = ACTIONS(1864), + [anon_sym_return] = ACTIONS(1864), + [anon_sym_initially] = ACTIONS(1864), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(2249), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [107] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2232), - [sym_num_lit] = STATE(2232), - [sym_kwd_lit] = STATE(2232), - [sym_str_lit] = STATE(2232), - [sym_char_lit] = STATE(2232), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2232), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2232), - [sym_set_lit] = STATE(2232), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2232), - [sym_splicing_read_cond_lit] = STATE(2232), - [sym_var_quoting_lit] = STATE(2232), - [sym_quoting_lit] = STATE(2232), - [sym_syn_quoting_lit] = STATE(2232), - [sym_unquote_splicing_lit] = STATE(2232), - [sym_unquoting_lit] = STATE(2232), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2232), - [sym_package_lit] = STATE(2232), - [sym_include_reader_macro] = STATE(2232), - [sym_complex_num_lit] = STATE(2232), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(2297), - [sym_comment] = ACTIONS(2297), - [anon_sym_POUND_] = ACTIONS(2300), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(2303), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(2305), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(2303), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2308), - [anon_sym_POUND_CARET] = ACTIONS(2311), - [anon_sym_LPAREN] = ACTIONS(2314), - [anon_sym_RPAREN] = ACTIONS(2317), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(157), + [sym_dis_expr] = STATE(157), + [sym__form] = STATE(2199), + [sym_num_lit] = STATE(2199), + [sym_kwd_lit] = STATE(2199), + [sym_str_lit] = STATE(2199), + [sym_char_lit] = STATE(2199), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2199), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2199), + [sym_set_lit] = STATE(2199), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2199), + [sym_splicing_read_cond_lit] = STATE(2199), + [sym_var_quoting_lit] = STATE(2199), + [sym_quoting_lit] = STATE(2199), + [sym_syn_quoting_lit] = STATE(2199), + [sym_unquote_splicing_lit] = STATE(2199), + [sym_unquoting_lit] = STATE(2199), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2199), + [sym_package_lit] = STATE(2199), + [sym_include_reader_macro] = STATE(2199), + [sym_complex_num_lit] = STATE(2199), + [aux_sym_dis_expr_repeat1] = STATE(157), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(2251), + [sym_comment] = ACTIONS(2251), + [anon_sym_POUND_] = ACTIONS(1806), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(2254), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(1811), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(2254), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(1814), + [anon_sym_POUND_CARET] = ACTIONS(1817), + [anon_sym_LPAREN] = ACTIONS(1820), + [anon_sym_RPAREN] = ACTIONS(1823), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2303), - [anon_sym_cl] = ACTIONS(2319), - [aux_sym_accumulation_verb_token1] = ACTIONS(2322), - [anon_sym_for] = ACTIONS(2322), - [anon_sym_and] = ACTIONS(2322), - [anon_sym_as] = ACTIONS(2322), - [anon_sym_with] = ACTIONS(2322), - [anon_sym_do] = ACTIONS(2322), - [anon_sym_while] = ACTIONS(2322), - [anon_sym_until] = ACTIONS(2322), - [anon_sym_repeat] = ACTIONS(2322), - [anon_sym_when] = ACTIONS(2322), - [anon_sym_if] = ACTIONS(2322), - [anon_sym_unless] = ACTIONS(2322), - [anon_sym_always] = ACTIONS(2322), - [anon_sym_thereis] = ACTIONS(2322), - [anon_sym_never] = ACTIONS(2322), - [anon_sym_else] = ACTIONS(2322), - [anon_sym_finally] = ACTIONS(2322), - [anon_sym_return] = ACTIONS(2322), - [anon_sym_initially] = ACTIONS(2322), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(2324), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(2254), + [anon_sym_cl] = ACTIONS(1825), + [aux_sym_accumulation_verb_token1] = ACTIONS(1828), + [anon_sym_for] = ACTIONS(1828), + [anon_sym_and] = ACTIONS(1828), + [anon_sym_as] = ACTIONS(1828), + [anon_sym_with] = ACTIONS(1828), + [anon_sym_do] = ACTIONS(1828), + [anon_sym_while] = ACTIONS(1828), + [anon_sym_until] = ACTIONS(1828), + [anon_sym_repeat] = ACTIONS(1828), + [anon_sym_when] = ACTIONS(1828), + [anon_sym_if] = ACTIONS(1828), + [anon_sym_unless] = ACTIONS(1828), + [anon_sym_always] = ACTIONS(1828), + [anon_sym_thereis] = ACTIONS(1828), + [anon_sym_never] = ACTIONS(1828), + [anon_sym_else] = ACTIONS(1828), + [anon_sym_finally] = ACTIONS(1828), + [anon_sym_return] = ACTIONS(1828), + [anon_sym_initially] = ACTIONS(1828), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(2256), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [108] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2373), - [sym_num_lit] = STATE(2373), - [sym_kwd_lit] = STATE(2373), - [sym_str_lit] = STATE(2373), - [sym_char_lit] = STATE(2373), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2373), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2373), - [sym_set_lit] = STATE(2373), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2373), - [sym_splicing_read_cond_lit] = STATE(2373), - [sym_var_quoting_lit] = STATE(2373), - [sym_quoting_lit] = STATE(2373), - [sym_syn_quoting_lit] = STATE(2373), - [sym_unquote_splicing_lit] = STATE(2373), - [sym_unquoting_lit] = STATE(2373), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2373), - [sym_package_lit] = STATE(2373), - [sym_include_reader_macro] = STATE(2373), - [sym_complex_num_lit] = STATE(2373), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(2326), - [sym_comment] = ACTIONS(2326), - [anon_sym_POUND_] = ACTIONS(2329), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(2332), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(2334), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(2332), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2337), - [anon_sym_POUND_CARET] = ACTIONS(2340), - [anon_sym_LPAREN] = ACTIONS(2343), - [anon_sym_RPAREN] = ACTIONS(2346), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2218), + [sym_num_lit] = STATE(2218), + [sym_kwd_lit] = STATE(2218), + [sym_str_lit] = STATE(2218), + [sym_char_lit] = STATE(2218), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2218), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2218), + [sym_set_lit] = STATE(2218), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2218), + [sym_splicing_read_cond_lit] = STATE(2218), + [sym_var_quoting_lit] = STATE(2218), + [sym_quoting_lit] = STATE(2218), + [sym_syn_quoting_lit] = STATE(2218), + [sym_unquote_splicing_lit] = STATE(2218), + [sym_unquoting_lit] = STATE(2218), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2218), + [sym_package_lit] = STATE(2218), + [sym_include_reader_macro] = STATE(2218), + [sym_complex_num_lit] = STATE(2218), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(1803), + [sym_comment] = ACTIONS(1803), + [anon_sym_POUND_] = ACTIONS(1806), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(2258), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(1811), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(2258), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(1814), + [anon_sym_POUND_CARET] = ACTIONS(1817), + [anon_sym_LPAREN] = ACTIONS(1820), + [anon_sym_RPAREN] = ACTIONS(1823), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2332), - [anon_sym_cl] = ACTIONS(2348), - [aux_sym_accumulation_verb_token1] = ACTIONS(2351), - [anon_sym_for] = ACTIONS(2351), - [anon_sym_and] = ACTIONS(2351), - [anon_sym_as] = ACTIONS(2351), - [anon_sym_with] = ACTIONS(2351), - [anon_sym_do] = ACTIONS(2351), - [anon_sym_while] = ACTIONS(2351), - [anon_sym_until] = ACTIONS(2351), - [anon_sym_repeat] = ACTIONS(2351), - [anon_sym_when] = ACTIONS(2351), - [anon_sym_if] = ACTIONS(2351), - [anon_sym_unless] = ACTIONS(2351), - [anon_sym_always] = ACTIONS(2351), - [anon_sym_thereis] = ACTIONS(2351), - [anon_sym_never] = ACTIONS(2351), - [anon_sym_else] = ACTIONS(2351), - [anon_sym_finally] = ACTIONS(2351), - [anon_sym_return] = ACTIONS(2351), - [anon_sym_initially] = ACTIONS(2351), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(2353), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(2258), + [anon_sym_cl] = ACTIONS(1825), + [aux_sym_accumulation_verb_token1] = ACTIONS(1828), + [anon_sym_for] = ACTIONS(1828), + [anon_sym_and] = ACTIONS(1828), + [anon_sym_as] = ACTIONS(1828), + [anon_sym_with] = ACTIONS(1828), + [anon_sym_do] = ACTIONS(1828), + [anon_sym_while] = ACTIONS(1828), + [anon_sym_until] = ACTIONS(1828), + [anon_sym_repeat] = ACTIONS(1828), + [anon_sym_when] = ACTIONS(1828), + [anon_sym_if] = ACTIONS(1828), + [anon_sym_unless] = ACTIONS(1828), + [anon_sym_always] = ACTIONS(1828), + [anon_sym_thereis] = ACTIONS(1828), + [anon_sym_never] = ACTIONS(1828), + [anon_sym_else] = ACTIONS(1828), + [anon_sym_finally] = ACTIONS(1828), + [anon_sym_return] = ACTIONS(1828), + [anon_sym_initially] = ACTIONS(1828), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(2260), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [109] = { - [sym__gap] = STATE(194), - [sym_dis_expr] = STATE(194), - [sym__form] = STATE(2372), - [sym_num_lit] = STATE(2372), - [sym_kwd_lit] = STATE(2372), - [sym_str_lit] = STATE(2372), - [sym_char_lit] = STATE(2372), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2372), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2372), - [sym_set_lit] = STATE(2372), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2372), - [sym_splicing_read_cond_lit] = STATE(2372), - [sym_var_quoting_lit] = STATE(2372), - [sym_quoting_lit] = STATE(2372), - [sym_syn_quoting_lit] = STATE(2372), - [sym_unquote_splicing_lit] = STATE(2372), - [sym_unquoting_lit] = STATE(2372), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2372), - [sym_package_lit] = STATE(2372), - [sym_include_reader_macro] = STATE(2372), - [sym_complex_num_lit] = STATE(2372), - [aux_sym_dis_expr_repeat1] = STATE(194), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(2355), - [sym_comment] = ACTIONS(2355), - [anon_sym_POUND_] = ACTIONS(2329), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(2358), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(2334), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(2358), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2337), - [anon_sym_POUND_CARET] = ACTIONS(2340), - [anon_sym_LPAREN] = ACTIONS(2343), - [anon_sym_RPAREN] = ACTIONS(2346), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(160), + [sym_dis_expr] = STATE(160), + [sym__form] = STATE(2230), + [sym_num_lit] = STATE(2230), + [sym_kwd_lit] = STATE(2230), + [sym_str_lit] = STATE(2230), + [sym_char_lit] = STATE(2230), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2230), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2230), + [sym_set_lit] = STATE(2230), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2230), + [sym_splicing_read_cond_lit] = STATE(2230), + [sym_var_quoting_lit] = STATE(2230), + [sym_quoting_lit] = STATE(2230), + [sym_syn_quoting_lit] = STATE(2230), + [sym_unquote_splicing_lit] = STATE(2230), + [sym_unquoting_lit] = STATE(2230), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2230), + [sym_package_lit] = STATE(2230), + [sym_include_reader_macro] = STATE(2230), + [sym_complex_num_lit] = STATE(2230), + [aux_sym_dis_expr_repeat1] = STATE(160), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(2262), + [sym_comment] = ACTIONS(2262), + [anon_sym_POUND_] = ACTIONS(1896), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(2265), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(1901), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(2265), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(1904), + [anon_sym_POUND_CARET] = ACTIONS(1907), + [anon_sym_LPAREN] = ACTIONS(1910), + [anon_sym_RPAREN] = ACTIONS(1913), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2358), - [anon_sym_cl] = ACTIONS(2348), - [aux_sym_accumulation_verb_token1] = ACTIONS(2351), - [anon_sym_for] = ACTIONS(2351), - [anon_sym_and] = ACTIONS(2351), - [anon_sym_as] = ACTIONS(2351), - [anon_sym_with] = ACTIONS(2351), - [anon_sym_do] = ACTIONS(2351), - [anon_sym_while] = ACTIONS(2351), - [anon_sym_until] = ACTIONS(2351), - [anon_sym_repeat] = ACTIONS(2351), - [anon_sym_when] = ACTIONS(2351), - [anon_sym_if] = ACTIONS(2351), - [anon_sym_unless] = ACTIONS(2351), - [anon_sym_always] = ACTIONS(2351), - [anon_sym_thereis] = ACTIONS(2351), - [anon_sym_never] = ACTIONS(2351), - [anon_sym_else] = ACTIONS(2351), - [anon_sym_finally] = ACTIONS(2351), - [anon_sym_return] = ACTIONS(2351), - [anon_sym_initially] = ACTIONS(2351), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(2360), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(2265), + [anon_sym_cl] = ACTIONS(1915), + [aux_sym_accumulation_verb_token1] = ACTIONS(1918), + [anon_sym_for] = ACTIONS(1918), + [anon_sym_and] = ACTIONS(1918), + [anon_sym_as] = ACTIONS(1918), + [anon_sym_with] = ACTIONS(1918), + [anon_sym_do] = ACTIONS(1918), + [anon_sym_while] = ACTIONS(1918), + [anon_sym_until] = ACTIONS(1918), + [anon_sym_repeat] = ACTIONS(1918), + [anon_sym_when] = ACTIONS(1918), + [anon_sym_if] = ACTIONS(1918), + [anon_sym_unless] = ACTIONS(1918), + [anon_sym_always] = ACTIONS(1918), + [anon_sym_thereis] = ACTIONS(1918), + [anon_sym_never] = ACTIONS(1918), + [anon_sym_else] = ACTIONS(1918), + [anon_sym_finally] = ACTIONS(1918), + [anon_sym_return] = ACTIONS(1918), + [anon_sym_initially] = ACTIONS(1918), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(2267), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [110] = { - [sym__gap] = STATE(198), - [sym_dis_expr] = STATE(198), - [sym__form] = STATE(2370), - [sym_num_lit] = STATE(2370), - [sym_kwd_lit] = STATE(2370), - [sym_str_lit] = STATE(2370), - [sym_char_lit] = STATE(2370), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2370), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2370), - [sym_set_lit] = STATE(2370), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2370), - [sym_splicing_read_cond_lit] = STATE(2370), - [sym_var_quoting_lit] = STATE(2370), - [sym_quoting_lit] = STATE(2370), - [sym_syn_quoting_lit] = STATE(2370), - [sym_unquote_splicing_lit] = STATE(2370), - [sym_unquoting_lit] = STATE(2370), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2370), - [sym_package_lit] = STATE(2370), - [sym_include_reader_macro] = STATE(2370), - [sym_complex_num_lit] = STATE(2370), - [aux_sym_dis_expr_repeat1] = STATE(198), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(2362), - [sym_comment] = ACTIONS(2362), - [anon_sym_POUND_] = ACTIONS(2365), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(2368), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(2370), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(2368), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2373), - [anon_sym_POUND_CARET] = ACTIONS(2376), - [anon_sym_LPAREN] = ACTIONS(2379), - [anon_sym_RPAREN] = ACTIONS(2382), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(58), + [sym_dis_expr] = STATE(58), + [sym__form] = STATE(2531), + [sym_num_lit] = STATE(2531), + [sym_kwd_lit] = STATE(2531), + [sym_str_lit] = STATE(2531), + [sym_char_lit] = STATE(2531), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2531), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2531), + [sym_set_lit] = STATE(2531), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2531), + [sym_splicing_read_cond_lit] = STATE(2531), + [sym_var_quoting_lit] = STATE(2531), + [sym_quoting_lit] = STATE(2531), + [sym_syn_quoting_lit] = STATE(2531), + [sym_unquote_splicing_lit] = STATE(2531), + [sym_unquoting_lit] = STATE(2531), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2531), + [sym_package_lit] = STATE(2531), + [sym_include_reader_macro] = STATE(2531), + [sym_complex_num_lit] = STATE(2531), + [aux_sym_dis_expr_repeat1] = STATE(58), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(2269), + [sym_comment] = ACTIONS(2269), + [anon_sym_POUND_] = ACTIONS(2272), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(2275), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(2277), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(2275), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(2280), + [anon_sym_POUND_CARET] = ACTIONS(2283), + [anon_sym_LPAREN] = ACTIONS(2286), + [anon_sym_RPAREN] = ACTIONS(2289), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2368), - [anon_sym_cl] = ACTIONS(2384), - [aux_sym_accumulation_verb_token1] = ACTIONS(2387), - [anon_sym_for] = ACTIONS(2387), - [anon_sym_and] = ACTIONS(2387), - [anon_sym_as] = ACTIONS(2387), - [anon_sym_with] = ACTIONS(2387), - [anon_sym_do] = ACTIONS(2387), - [anon_sym_while] = ACTIONS(2387), - [anon_sym_until] = ACTIONS(2387), - [anon_sym_repeat] = ACTIONS(2387), - [anon_sym_when] = ACTIONS(2387), - [anon_sym_if] = ACTIONS(2387), - [anon_sym_unless] = ACTIONS(2387), - [anon_sym_always] = ACTIONS(2387), - [anon_sym_thereis] = ACTIONS(2387), - [anon_sym_never] = ACTIONS(2387), - [anon_sym_else] = ACTIONS(2387), - [anon_sym_finally] = ACTIONS(2387), - [anon_sym_return] = ACTIONS(2387), - [anon_sym_initially] = ACTIONS(2387), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(2389), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(2275), + [anon_sym_cl] = ACTIONS(2291), + [aux_sym_accumulation_verb_token1] = ACTIONS(2294), + [anon_sym_for] = ACTIONS(2294), + [anon_sym_and] = ACTIONS(2294), + [anon_sym_as] = ACTIONS(2294), + [anon_sym_with] = ACTIONS(2294), + [anon_sym_do] = ACTIONS(2294), + [anon_sym_while] = ACTIONS(2294), + [anon_sym_until] = ACTIONS(2294), + [anon_sym_repeat] = ACTIONS(2294), + [anon_sym_when] = ACTIONS(2294), + [anon_sym_if] = ACTIONS(2294), + [anon_sym_unless] = ACTIONS(2294), + [anon_sym_always] = ACTIONS(2294), + [anon_sym_thereis] = ACTIONS(2294), + [anon_sym_never] = ACTIONS(2294), + [anon_sym_else] = ACTIONS(2294), + [anon_sym_finally] = ACTIONS(2294), + [anon_sym_return] = ACTIONS(2294), + [anon_sym_initially] = ACTIONS(2294), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(2296), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [111] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2368), - [sym_num_lit] = STATE(2368), - [sym_kwd_lit] = STATE(2368), - [sym_str_lit] = STATE(2368), - [sym_char_lit] = STATE(2368), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2368), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2368), - [sym_set_lit] = STATE(2368), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2368), - [sym_splicing_read_cond_lit] = STATE(2368), - [sym_var_quoting_lit] = STATE(2368), - [sym_quoting_lit] = STATE(2368), - [sym_syn_quoting_lit] = STATE(2368), - [sym_unquote_splicing_lit] = STATE(2368), - [sym_unquoting_lit] = STATE(2368), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2368), - [sym_package_lit] = STATE(2368), - [sym_include_reader_macro] = STATE(2368), - [sym_complex_num_lit] = STATE(2368), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(2391), - [sym_comment] = ACTIONS(2391), - [anon_sym_POUND_] = ACTIONS(2365), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(2394), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(2370), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(2394), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2373), - [anon_sym_POUND_CARET] = ACTIONS(2376), - [anon_sym_LPAREN] = ACTIONS(2379), - [anon_sym_RPAREN] = ACTIONS(2382), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2494), + [sym_num_lit] = STATE(2494), + [sym_kwd_lit] = STATE(2494), + [sym_str_lit] = STATE(2494), + [sym_char_lit] = STATE(2494), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2494), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2494), + [sym_set_lit] = STATE(2494), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2494), + [sym_splicing_read_cond_lit] = STATE(2494), + [sym_var_quoting_lit] = STATE(2494), + [sym_quoting_lit] = STATE(2494), + [sym_syn_quoting_lit] = STATE(2494), + [sym_unquote_splicing_lit] = STATE(2494), + [sym_unquoting_lit] = STATE(2494), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2494), + [sym_package_lit] = STATE(2494), + [sym_include_reader_macro] = STATE(2494), + [sym_complex_num_lit] = STATE(2494), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(2298), + [sym_comment] = ACTIONS(2298), + [anon_sym_POUND_] = ACTIONS(2301), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(2304), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(2306), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(2304), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(2309), + [anon_sym_POUND_CARET] = ACTIONS(2312), + [anon_sym_LPAREN] = ACTIONS(2315), + [anon_sym_RPAREN] = ACTIONS(2318), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2394), - [anon_sym_cl] = ACTIONS(2384), - [aux_sym_accumulation_verb_token1] = ACTIONS(2387), - [anon_sym_for] = ACTIONS(2387), - [anon_sym_and] = ACTIONS(2387), - [anon_sym_as] = ACTIONS(2387), - [anon_sym_with] = ACTIONS(2387), - [anon_sym_do] = ACTIONS(2387), - [anon_sym_while] = ACTIONS(2387), - [anon_sym_until] = ACTIONS(2387), - [anon_sym_repeat] = ACTIONS(2387), - [anon_sym_when] = ACTIONS(2387), - [anon_sym_if] = ACTIONS(2387), - [anon_sym_unless] = ACTIONS(2387), - [anon_sym_always] = ACTIONS(2387), - [anon_sym_thereis] = ACTIONS(2387), - [anon_sym_never] = ACTIONS(2387), - [anon_sym_else] = ACTIONS(2387), - [anon_sym_finally] = ACTIONS(2387), - [anon_sym_return] = ACTIONS(2387), - [anon_sym_initially] = ACTIONS(2387), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(2396), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(2304), + [anon_sym_cl] = ACTIONS(2320), + [aux_sym_accumulation_verb_token1] = ACTIONS(2323), + [anon_sym_for] = ACTIONS(2323), + [anon_sym_and] = ACTIONS(2323), + [anon_sym_as] = ACTIONS(2323), + [anon_sym_with] = ACTIONS(2323), + [anon_sym_do] = ACTIONS(2323), + [anon_sym_while] = ACTIONS(2323), + [anon_sym_until] = ACTIONS(2323), + [anon_sym_repeat] = ACTIONS(2323), + [anon_sym_when] = ACTIONS(2323), + [anon_sym_if] = ACTIONS(2323), + [anon_sym_unless] = ACTIONS(2323), + [anon_sym_always] = ACTIONS(2323), + [anon_sym_thereis] = ACTIONS(2323), + [anon_sym_never] = ACTIONS(2323), + [anon_sym_else] = ACTIONS(2323), + [anon_sym_finally] = ACTIONS(2323), + [anon_sym_return] = ACTIONS(2323), + [anon_sym_initially] = ACTIONS(2323), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(2325), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [112] = { - [sym__gap] = STATE(202), - [sym_dis_expr] = STATE(202), - [sym__form] = STATE(2366), - [sym_num_lit] = STATE(2366), - [sym_kwd_lit] = STATE(2366), - [sym_str_lit] = STATE(2366), - [sym_char_lit] = STATE(2366), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2366), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2366), - [sym_set_lit] = STATE(2366), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2366), - [sym_splicing_read_cond_lit] = STATE(2366), - [sym_var_quoting_lit] = STATE(2366), - [sym_quoting_lit] = STATE(2366), - [sym_syn_quoting_lit] = STATE(2366), - [sym_unquote_splicing_lit] = STATE(2366), - [sym_unquoting_lit] = STATE(2366), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2366), - [sym_package_lit] = STATE(2366), - [sym_include_reader_macro] = STATE(2366), - [sym_complex_num_lit] = STATE(2366), - [aux_sym_dis_expr_repeat1] = STATE(202), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(2398), - [sym_comment] = ACTIONS(2398), - [anon_sym_POUND_] = ACTIONS(2365), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(2401), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(2370), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(2401), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2373), - [anon_sym_POUND_CARET] = ACTIONS(2376), - [anon_sym_LPAREN] = ACTIONS(2379), - [anon_sym_RPAREN] = ACTIONS(2382), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2496), + [sym_num_lit] = STATE(2496), + [sym_kwd_lit] = STATE(2496), + [sym_str_lit] = STATE(2496), + [sym_char_lit] = STATE(2496), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2496), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2496), + [sym_set_lit] = STATE(2496), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2496), + [sym_splicing_read_cond_lit] = STATE(2496), + [sym_var_quoting_lit] = STATE(2496), + [sym_quoting_lit] = STATE(2496), + [sym_syn_quoting_lit] = STATE(2496), + [sym_unquote_splicing_lit] = STATE(2496), + [sym_unquoting_lit] = STATE(2496), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2496), + [sym_package_lit] = STATE(2496), + [sym_include_reader_macro] = STATE(2496), + [sym_complex_num_lit] = STATE(2496), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(2327), + [sym_comment] = ACTIONS(2327), + [anon_sym_POUND_] = ACTIONS(2330), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(2333), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(2335), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(2333), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(2338), + [anon_sym_POUND_CARET] = ACTIONS(2341), + [anon_sym_LPAREN] = ACTIONS(2344), + [anon_sym_RPAREN] = ACTIONS(2347), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2401), - [anon_sym_cl] = ACTIONS(2384), - [aux_sym_accumulation_verb_token1] = ACTIONS(2387), - [anon_sym_for] = ACTIONS(2387), - [anon_sym_and] = ACTIONS(2387), - [anon_sym_as] = ACTIONS(2387), - [anon_sym_with] = ACTIONS(2387), - [anon_sym_do] = ACTIONS(2387), - [anon_sym_while] = ACTIONS(2387), - [anon_sym_until] = ACTIONS(2387), - [anon_sym_repeat] = ACTIONS(2387), - [anon_sym_when] = ACTIONS(2387), - [anon_sym_if] = ACTIONS(2387), - [anon_sym_unless] = ACTIONS(2387), - [anon_sym_always] = ACTIONS(2387), - [anon_sym_thereis] = ACTIONS(2387), - [anon_sym_never] = ACTIONS(2387), - [anon_sym_else] = ACTIONS(2387), - [anon_sym_finally] = ACTIONS(2387), - [anon_sym_return] = ACTIONS(2387), - [anon_sym_initially] = ACTIONS(2387), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(2403), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(2333), + [anon_sym_cl] = ACTIONS(2349), + [aux_sym_accumulation_verb_token1] = ACTIONS(2352), + [anon_sym_for] = ACTIONS(2352), + [anon_sym_and] = ACTIONS(2352), + [anon_sym_as] = ACTIONS(2352), + [anon_sym_with] = ACTIONS(2352), + [anon_sym_do] = ACTIONS(2352), + [anon_sym_while] = ACTIONS(2352), + [anon_sym_until] = ACTIONS(2352), + [anon_sym_repeat] = ACTIONS(2352), + [anon_sym_when] = ACTIONS(2352), + [anon_sym_if] = ACTIONS(2352), + [anon_sym_unless] = ACTIONS(2352), + [anon_sym_always] = ACTIONS(2352), + [anon_sym_thereis] = ACTIONS(2352), + [anon_sym_never] = ACTIONS(2352), + [anon_sym_else] = ACTIONS(2352), + [anon_sym_finally] = ACTIONS(2352), + [anon_sym_return] = ACTIONS(2352), + [anon_sym_initially] = ACTIONS(2352), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(2354), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [113] = { - [sym__gap] = STATE(151), - [sym_dis_expr] = STATE(151), - [sym__form] = STATE(2112), - [sym_num_lit] = STATE(2112), - [sym_kwd_lit] = STATE(2112), - [sym_str_lit] = STATE(2112), - [sym_char_lit] = STATE(2112), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2112), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2112), - [sym_set_lit] = STATE(2112), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2112), - [sym_splicing_read_cond_lit] = STATE(2112), - [sym_var_quoting_lit] = STATE(2112), - [sym_quoting_lit] = STATE(2112), - [sym_syn_quoting_lit] = STATE(2112), - [sym_unquote_splicing_lit] = STATE(2112), - [sym_unquoting_lit] = STATE(2112), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2112), - [sym_package_lit] = STATE(2112), - [sym_include_reader_macro] = STATE(2112), - [sym_complex_num_lit] = STATE(2112), - [aux_sym_dis_expr_repeat1] = STATE(151), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(2405), - [sym_comment] = ACTIONS(2405), - [anon_sym_POUND_] = ACTIONS(2408), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(2411), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(2413), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(2411), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2416), - [anon_sym_POUND_CARET] = ACTIONS(2419), - [anon_sym_LPAREN] = ACTIONS(2422), - [anon_sym_RPAREN] = ACTIONS(2425), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(162), + [sym_dis_expr] = STATE(162), + [sym__form] = STATE(2497), + [sym_num_lit] = STATE(2497), + [sym_kwd_lit] = STATE(2497), + [sym_str_lit] = STATE(2497), + [sym_char_lit] = STATE(2497), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2497), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2497), + [sym_set_lit] = STATE(2497), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2497), + [sym_splicing_read_cond_lit] = STATE(2497), + [sym_var_quoting_lit] = STATE(2497), + [sym_quoting_lit] = STATE(2497), + [sym_syn_quoting_lit] = STATE(2497), + [sym_unquote_splicing_lit] = STATE(2497), + [sym_unquoting_lit] = STATE(2497), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2497), + [sym_package_lit] = STATE(2497), + [sym_include_reader_macro] = STATE(2497), + [sym_complex_num_lit] = STATE(2497), + [aux_sym_dis_expr_repeat1] = STATE(162), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(2356), + [sym_comment] = ACTIONS(2356), + [anon_sym_POUND_] = ACTIONS(2330), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(2359), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(2335), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(2359), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(2338), + [anon_sym_POUND_CARET] = ACTIONS(2341), + [anon_sym_LPAREN] = ACTIONS(2344), + [anon_sym_RPAREN] = ACTIONS(2347), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2411), - [anon_sym_cl] = ACTIONS(2427), - [aux_sym_accumulation_verb_token1] = ACTIONS(2430), - [anon_sym_for] = ACTIONS(2430), - [anon_sym_and] = ACTIONS(2430), - [anon_sym_as] = ACTIONS(2430), - [anon_sym_with] = ACTIONS(2430), - [anon_sym_do] = ACTIONS(2430), - [anon_sym_while] = ACTIONS(2430), - [anon_sym_until] = ACTIONS(2430), - [anon_sym_repeat] = ACTIONS(2430), - [anon_sym_when] = ACTIONS(2430), - [anon_sym_if] = ACTIONS(2430), - [anon_sym_unless] = ACTIONS(2430), - [anon_sym_always] = ACTIONS(2430), - [anon_sym_thereis] = ACTIONS(2430), - [anon_sym_never] = ACTIONS(2430), - [anon_sym_else] = ACTIONS(2430), - [anon_sym_finally] = ACTIONS(2430), - [anon_sym_return] = ACTIONS(2430), - [anon_sym_initially] = ACTIONS(2430), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(2432), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(2359), + [anon_sym_cl] = ACTIONS(2349), + [aux_sym_accumulation_verb_token1] = ACTIONS(2352), + [anon_sym_for] = ACTIONS(2352), + [anon_sym_and] = ACTIONS(2352), + [anon_sym_as] = ACTIONS(2352), + [anon_sym_with] = ACTIONS(2352), + [anon_sym_do] = ACTIONS(2352), + [anon_sym_while] = ACTIONS(2352), + [anon_sym_until] = ACTIONS(2352), + [anon_sym_repeat] = ACTIONS(2352), + [anon_sym_when] = ACTIONS(2352), + [anon_sym_if] = ACTIONS(2352), + [anon_sym_unless] = ACTIONS(2352), + [anon_sym_always] = ACTIONS(2352), + [anon_sym_thereis] = ACTIONS(2352), + [anon_sym_never] = ACTIONS(2352), + [anon_sym_else] = ACTIONS(2352), + [anon_sym_finally] = ACTIONS(2352), + [anon_sym_return] = ACTIONS(2352), + [anon_sym_initially] = ACTIONS(2352), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(2361), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [114] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2106), - [sym_num_lit] = STATE(2106), - [sym_kwd_lit] = STATE(2106), - [sym_str_lit] = STATE(2106), - [sym_char_lit] = STATE(2106), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2106), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2106), - [sym_set_lit] = STATE(2106), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2106), - [sym_splicing_read_cond_lit] = STATE(2106), - [sym_var_quoting_lit] = STATE(2106), - [sym_quoting_lit] = STATE(2106), - [sym_syn_quoting_lit] = STATE(2106), - [sym_unquote_splicing_lit] = STATE(2106), - [sym_unquoting_lit] = STATE(2106), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2106), - [sym_package_lit] = STATE(2106), - [sym_include_reader_macro] = STATE(2106), - [sym_complex_num_lit] = STATE(2106), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(2434), - [sym_comment] = ACTIONS(2434), - [anon_sym_POUND_] = ACTIONS(2437), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(2440), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(2442), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(2440), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2445), - [anon_sym_POUND_CARET] = ACTIONS(2448), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_RPAREN] = ACTIONS(2454), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(163), + [sym_dis_expr] = STATE(163), + [sym__form] = STATE(2499), + [sym_num_lit] = STATE(2499), + [sym_kwd_lit] = STATE(2499), + [sym_str_lit] = STATE(2499), + [sym_char_lit] = STATE(2499), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2499), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2499), + [sym_set_lit] = STATE(2499), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2499), + [sym_splicing_read_cond_lit] = STATE(2499), + [sym_var_quoting_lit] = STATE(2499), + [sym_quoting_lit] = STATE(2499), + [sym_syn_quoting_lit] = STATE(2499), + [sym_unquote_splicing_lit] = STATE(2499), + [sym_unquoting_lit] = STATE(2499), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2499), + [sym_package_lit] = STATE(2499), + [sym_include_reader_macro] = STATE(2499), + [sym_complex_num_lit] = STATE(2499), + [aux_sym_dis_expr_repeat1] = STATE(163), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(2363), + [sym_comment] = ACTIONS(2363), + [anon_sym_POUND_] = ACTIONS(2330), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(2366), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(2335), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(2366), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(2338), + [anon_sym_POUND_CARET] = ACTIONS(2341), + [anon_sym_LPAREN] = ACTIONS(2344), + [anon_sym_RPAREN] = ACTIONS(2347), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2440), - [anon_sym_cl] = ACTIONS(2456), - [aux_sym_accumulation_verb_token1] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_and] = ACTIONS(2459), - [anon_sym_as] = ACTIONS(2459), - [anon_sym_with] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_until] = ACTIONS(2459), - [anon_sym_repeat] = ACTIONS(2459), - [anon_sym_when] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_unless] = ACTIONS(2459), - [anon_sym_always] = ACTIONS(2459), - [anon_sym_thereis] = ACTIONS(2459), - [anon_sym_never] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_finally] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_initially] = ACTIONS(2459), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(2461), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(2366), + [anon_sym_cl] = ACTIONS(2349), + [aux_sym_accumulation_verb_token1] = ACTIONS(2352), + [anon_sym_for] = ACTIONS(2352), + [anon_sym_and] = ACTIONS(2352), + [anon_sym_as] = ACTIONS(2352), + [anon_sym_with] = ACTIONS(2352), + [anon_sym_do] = ACTIONS(2352), + [anon_sym_while] = ACTIONS(2352), + [anon_sym_until] = ACTIONS(2352), + [anon_sym_repeat] = ACTIONS(2352), + [anon_sym_when] = ACTIONS(2352), + [anon_sym_if] = ACTIONS(2352), + [anon_sym_unless] = ACTIONS(2352), + [anon_sym_always] = ACTIONS(2352), + [anon_sym_thereis] = ACTIONS(2352), + [anon_sym_never] = ACTIONS(2352), + [anon_sym_else] = ACTIONS(2352), + [anon_sym_finally] = ACTIONS(2352), + [anon_sym_return] = ACTIONS(2352), + [anon_sym_initially] = ACTIONS(2352), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(2368), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [115] = { - [sym__gap] = STATE(205), - [sym_dis_expr] = STATE(205), - [sym__form] = STATE(2364), - [sym_num_lit] = STATE(2364), - [sym_kwd_lit] = STATE(2364), - [sym_str_lit] = STATE(2364), - [sym_char_lit] = STATE(2364), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2364), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2364), - [sym_set_lit] = STATE(2364), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2364), - [sym_splicing_read_cond_lit] = STATE(2364), - [sym_var_quoting_lit] = STATE(2364), - [sym_quoting_lit] = STATE(2364), - [sym_syn_quoting_lit] = STATE(2364), - [sym_unquote_splicing_lit] = STATE(2364), - [sym_unquoting_lit] = STATE(2364), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2364), - [sym_package_lit] = STATE(2364), - [sym_include_reader_macro] = STATE(2364), - [sym_complex_num_lit] = STATE(2364), - [aux_sym_dis_expr_repeat1] = STATE(205), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(2463), - [sym_comment] = ACTIONS(2463), - [anon_sym_POUND_] = ACTIONS(2329), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(2466), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(2334), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(2466), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2337), - [anon_sym_POUND_CARET] = ACTIONS(2340), - [anon_sym_LPAREN] = ACTIONS(2343), - [anon_sym_RPAREN] = ACTIONS(2346), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2502), + [sym_num_lit] = STATE(2502), + [sym_kwd_lit] = STATE(2502), + [sym_str_lit] = STATE(2502), + [sym_char_lit] = STATE(2502), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2502), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2502), + [sym_set_lit] = STATE(2502), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2502), + [sym_splicing_read_cond_lit] = STATE(2502), + [sym_var_quoting_lit] = STATE(2502), + [sym_quoting_lit] = STATE(2502), + [sym_syn_quoting_lit] = STATE(2502), + [sym_unquote_splicing_lit] = STATE(2502), + [sym_unquoting_lit] = STATE(2502), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2502), + [sym_package_lit] = STATE(2502), + [sym_include_reader_macro] = STATE(2502), + [sym_complex_num_lit] = STATE(2502), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(2327), + [sym_comment] = ACTIONS(2327), + [anon_sym_POUND_] = ACTIONS(2330), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(2370), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(2335), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(2370), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(2338), + [anon_sym_POUND_CARET] = ACTIONS(2341), + [anon_sym_LPAREN] = ACTIONS(2344), + [anon_sym_RPAREN] = ACTIONS(2347), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2466), - [anon_sym_cl] = ACTIONS(2348), - [aux_sym_accumulation_verb_token1] = ACTIONS(2351), - [anon_sym_for] = ACTIONS(2351), - [anon_sym_and] = ACTIONS(2351), - [anon_sym_as] = ACTIONS(2351), - [anon_sym_with] = ACTIONS(2351), - [anon_sym_do] = ACTIONS(2351), - [anon_sym_while] = ACTIONS(2351), - [anon_sym_until] = ACTIONS(2351), - [anon_sym_repeat] = ACTIONS(2351), - [anon_sym_when] = ACTIONS(2351), - [anon_sym_if] = ACTIONS(2351), - [anon_sym_unless] = ACTIONS(2351), - [anon_sym_always] = ACTIONS(2351), - [anon_sym_thereis] = ACTIONS(2351), - [anon_sym_never] = ACTIONS(2351), - [anon_sym_else] = ACTIONS(2351), - [anon_sym_finally] = ACTIONS(2351), - [anon_sym_return] = ACTIONS(2351), - [anon_sym_initially] = ACTIONS(2351), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(2468), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(2370), + [anon_sym_cl] = ACTIONS(2349), + [aux_sym_accumulation_verb_token1] = ACTIONS(2352), + [anon_sym_for] = ACTIONS(2352), + [anon_sym_and] = ACTIONS(2352), + [anon_sym_as] = ACTIONS(2352), + [anon_sym_with] = ACTIONS(2352), + [anon_sym_do] = ACTIONS(2352), + [anon_sym_while] = ACTIONS(2352), + [anon_sym_until] = ACTIONS(2352), + [anon_sym_repeat] = ACTIONS(2352), + [anon_sym_when] = ACTIONS(2352), + [anon_sym_if] = ACTIONS(2352), + [anon_sym_unless] = ACTIONS(2352), + [anon_sym_always] = ACTIONS(2352), + [anon_sym_thereis] = ACTIONS(2352), + [anon_sym_never] = ACTIONS(2352), + [anon_sym_else] = ACTIONS(2352), + [anon_sym_finally] = ACTIONS(2352), + [anon_sym_return] = ACTIONS(2352), + [anon_sym_initially] = ACTIONS(2352), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(2372), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [116] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2362), - [sym_num_lit] = STATE(2362), - [sym_kwd_lit] = STATE(2362), - [sym_str_lit] = STATE(2362), - [sym_char_lit] = STATE(2362), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2362), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2362), - [sym_set_lit] = STATE(2362), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2362), - [sym_splicing_read_cond_lit] = STATE(2362), - [sym_var_quoting_lit] = STATE(2362), - [sym_quoting_lit] = STATE(2362), - [sym_syn_quoting_lit] = STATE(2362), - [sym_unquote_splicing_lit] = STATE(2362), - [sym_unquoting_lit] = STATE(2362), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2362), - [sym_package_lit] = STATE(2362), - [sym_include_reader_macro] = STATE(2362), - [sym_complex_num_lit] = STATE(2362), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(2326), - [sym_comment] = ACTIONS(2326), - [anon_sym_POUND_] = ACTIONS(2329), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(2470), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(2334), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(2470), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2337), - [anon_sym_POUND_CARET] = ACTIONS(2340), - [anon_sym_LPAREN] = ACTIONS(2343), - [anon_sym_RPAREN] = ACTIONS(2346), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2504), + [sym_num_lit] = STATE(2504), + [sym_kwd_lit] = STATE(2504), + [sym_str_lit] = STATE(2504), + [sym_char_lit] = STATE(2504), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2504), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2504), + [sym_set_lit] = STATE(2504), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2504), + [sym_splicing_read_cond_lit] = STATE(2504), + [sym_var_quoting_lit] = STATE(2504), + [sym_quoting_lit] = STATE(2504), + [sym_syn_quoting_lit] = STATE(2504), + [sym_unquote_splicing_lit] = STATE(2504), + [sym_unquoting_lit] = STATE(2504), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2504), + [sym_package_lit] = STATE(2504), + [sym_include_reader_macro] = STATE(2504), + [sym_complex_num_lit] = STATE(2504), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(2298), + [sym_comment] = ACTIONS(2298), + [anon_sym_POUND_] = ACTIONS(2301), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(2374), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(2306), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(2374), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(2309), + [anon_sym_POUND_CARET] = ACTIONS(2312), + [anon_sym_LPAREN] = ACTIONS(2315), + [anon_sym_RPAREN] = ACTIONS(2318), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2470), - [anon_sym_cl] = ACTIONS(2348), - [aux_sym_accumulation_verb_token1] = ACTIONS(2351), - [anon_sym_for] = ACTIONS(2351), - [anon_sym_and] = ACTIONS(2351), - [anon_sym_as] = ACTIONS(2351), - [anon_sym_with] = ACTIONS(2351), - [anon_sym_do] = ACTIONS(2351), - [anon_sym_while] = ACTIONS(2351), - [anon_sym_until] = ACTIONS(2351), - [anon_sym_repeat] = ACTIONS(2351), - [anon_sym_when] = ACTIONS(2351), - [anon_sym_if] = ACTIONS(2351), - [anon_sym_unless] = ACTIONS(2351), - [anon_sym_always] = ACTIONS(2351), - [anon_sym_thereis] = ACTIONS(2351), - [anon_sym_never] = ACTIONS(2351), - [anon_sym_else] = ACTIONS(2351), - [anon_sym_finally] = ACTIONS(2351), - [anon_sym_return] = ACTIONS(2351), - [anon_sym_initially] = ACTIONS(2351), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(2472), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(2374), + [anon_sym_cl] = ACTIONS(2320), + [aux_sym_accumulation_verb_token1] = ACTIONS(2323), + [anon_sym_for] = ACTIONS(2323), + [anon_sym_and] = ACTIONS(2323), + [anon_sym_as] = ACTIONS(2323), + [anon_sym_with] = ACTIONS(2323), + [anon_sym_do] = ACTIONS(2323), + [anon_sym_while] = ACTIONS(2323), + [anon_sym_until] = ACTIONS(2323), + [anon_sym_repeat] = ACTIONS(2323), + [anon_sym_when] = ACTIONS(2323), + [anon_sym_if] = ACTIONS(2323), + [anon_sym_unless] = ACTIONS(2323), + [anon_sym_always] = ACTIONS(2323), + [anon_sym_thereis] = ACTIONS(2323), + [anon_sym_never] = ACTIONS(2323), + [anon_sym_else] = ACTIONS(2323), + [anon_sym_finally] = ACTIONS(2323), + [anon_sym_return] = ACTIONS(2323), + [anon_sym_initially] = ACTIONS(2323), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(2376), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [117] = { - [sym__gap] = STATE(211), - [sym_dis_expr] = STATE(211), - [sym__form] = STATE(2360), - [sym_num_lit] = STATE(2360), - [sym_kwd_lit] = STATE(2360), - [sym_str_lit] = STATE(2360), - [sym_char_lit] = STATE(2360), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2360), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2360), - [sym_set_lit] = STATE(2360), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2360), - [sym_splicing_read_cond_lit] = STATE(2360), - [sym_var_quoting_lit] = STATE(2360), - [sym_quoting_lit] = STATE(2360), - [sym_syn_quoting_lit] = STATE(2360), - [sym_unquote_splicing_lit] = STATE(2360), - [sym_unquoting_lit] = STATE(2360), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2360), - [sym_package_lit] = STATE(2360), - [sym_include_reader_macro] = STATE(2360), - [sym_complex_num_lit] = STATE(2360), - [aux_sym_dis_expr_repeat1] = STATE(211), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(2474), - [sym_comment] = ACTIONS(2474), - [anon_sym_POUND_] = ACTIONS(2477), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(2480), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(2482), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(2480), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2485), - [anon_sym_POUND_CARET] = ACTIONS(2488), - [anon_sym_LPAREN] = ACTIONS(2491), - [anon_sym_RPAREN] = ACTIONS(2494), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(269), + [sym_dis_expr] = STATE(269), + [sym__form] = STATE(2505), + [sym_num_lit] = STATE(2505), + [sym_kwd_lit] = STATE(2505), + [sym_str_lit] = STATE(2505), + [sym_char_lit] = STATE(2505), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2505), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2505), + [sym_set_lit] = STATE(2505), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2505), + [sym_splicing_read_cond_lit] = STATE(2505), + [sym_var_quoting_lit] = STATE(2505), + [sym_quoting_lit] = STATE(2505), + [sym_syn_quoting_lit] = STATE(2505), + [sym_unquote_splicing_lit] = STATE(2505), + [sym_unquoting_lit] = STATE(2505), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2505), + [sym_package_lit] = STATE(2505), + [sym_include_reader_macro] = STATE(2505), + [sym_complex_num_lit] = STATE(2505), + [aux_sym_dis_expr_repeat1] = STATE(269), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(2378), + [sym_comment] = ACTIONS(2378), + [anon_sym_POUND_] = ACTIONS(2301), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(2381), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(2306), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(2381), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(2309), + [anon_sym_POUND_CARET] = ACTIONS(2312), + [anon_sym_LPAREN] = ACTIONS(2315), + [anon_sym_RPAREN] = ACTIONS(2318), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2480), - [anon_sym_cl] = ACTIONS(2496), - [aux_sym_accumulation_verb_token1] = ACTIONS(2499), - [anon_sym_for] = ACTIONS(2499), - [anon_sym_and] = ACTIONS(2499), - [anon_sym_as] = ACTIONS(2499), - [anon_sym_with] = ACTIONS(2499), - [anon_sym_do] = ACTIONS(2499), - [anon_sym_while] = ACTIONS(2499), - [anon_sym_until] = ACTIONS(2499), - [anon_sym_repeat] = ACTIONS(2499), - [anon_sym_when] = ACTIONS(2499), - [anon_sym_if] = ACTIONS(2499), - [anon_sym_unless] = ACTIONS(2499), - [anon_sym_always] = ACTIONS(2499), - [anon_sym_thereis] = ACTIONS(2499), - [anon_sym_never] = ACTIONS(2499), - [anon_sym_else] = ACTIONS(2499), - [anon_sym_finally] = ACTIONS(2499), - [anon_sym_return] = ACTIONS(2499), - [anon_sym_initially] = ACTIONS(2499), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(2501), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(2381), + [anon_sym_cl] = ACTIONS(2320), + [aux_sym_accumulation_verb_token1] = ACTIONS(2323), + [anon_sym_for] = ACTIONS(2323), + [anon_sym_and] = ACTIONS(2323), + [anon_sym_as] = ACTIONS(2323), + [anon_sym_with] = ACTIONS(2323), + [anon_sym_do] = ACTIONS(2323), + [anon_sym_while] = ACTIONS(2323), + [anon_sym_until] = ACTIONS(2323), + [anon_sym_repeat] = ACTIONS(2323), + [anon_sym_when] = ACTIONS(2323), + [anon_sym_if] = ACTIONS(2323), + [anon_sym_unless] = ACTIONS(2323), + [anon_sym_always] = ACTIONS(2323), + [anon_sym_thereis] = ACTIONS(2323), + [anon_sym_never] = ACTIONS(2323), + [anon_sym_else] = ACTIONS(2323), + [anon_sym_finally] = ACTIONS(2323), + [anon_sym_return] = ACTIONS(2323), + [anon_sym_initially] = ACTIONS(2323), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(2383), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [118] = { - [sym__gap] = STATE(178), - [sym_dis_expr] = STATE(178), - [sym__form] = STATE(2063), - [sym_num_lit] = STATE(2063), - [sym_kwd_lit] = STATE(2063), - [sym_str_lit] = STATE(2063), - [sym_char_lit] = STATE(2063), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2063), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2063), - [sym_set_lit] = STATE(2063), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2063), - [sym_splicing_read_cond_lit] = STATE(2063), - [sym_var_quoting_lit] = STATE(2063), - [sym_quoting_lit] = STATE(2063), - [sym_syn_quoting_lit] = STATE(2063), - [sym_unquote_splicing_lit] = STATE(2063), - [sym_unquoting_lit] = STATE(2063), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2063), - [sym_package_lit] = STATE(2063), - [sym_include_reader_macro] = STATE(2063), - [sym_complex_num_lit] = STATE(2063), - [aux_sym_dis_expr_repeat1] = STATE(178), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(2503), - [sym_comment] = ACTIONS(2503), - [anon_sym_POUND_] = ACTIONS(2437), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(2506), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(2442), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(2506), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2445), - [anon_sym_POUND_CARET] = ACTIONS(2448), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_RPAREN] = ACTIONS(2454), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(165), + [sym_dis_expr] = STATE(165), + [sym__form] = STATE(2508), + [sym_num_lit] = STATE(2508), + [sym_kwd_lit] = STATE(2508), + [sym_str_lit] = STATE(2508), + [sym_char_lit] = STATE(2508), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2508), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2508), + [sym_set_lit] = STATE(2508), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2508), + [sym_splicing_read_cond_lit] = STATE(2508), + [sym_var_quoting_lit] = STATE(2508), + [sym_quoting_lit] = STATE(2508), + [sym_syn_quoting_lit] = STATE(2508), + [sym_unquote_splicing_lit] = STATE(2508), + [sym_unquoting_lit] = STATE(2508), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2508), + [sym_package_lit] = STATE(2508), + [sym_include_reader_macro] = STATE(2508), + [sym_complex_num_lit] = STATE(2508), + [aux_sym_dis_expr_repeat1] = STATE(165), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(2385), + [sym_comment] = ACTIONS(2385), + [anon_sym_POUND_] = ACTIONS(2388), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(2391), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(2393), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(2391), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(2396), + [anon_sym_POUND_CARET] = ACTIONS(2399), + [anon_sym_LPAREN] = ACTIONS(2402), + [anon_sym_RPAREN] = ACTIONS(2405), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2506), - [anon_sym_cl] = ACTIONS(2456), - [aux_sym_accumulation_verb_token1] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_and] = ACTIONS(2459), - [anon_sym_as] = ACTIONS(2459), - [anon_sym_with] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_until] = ACTIONS(2459), - [anon_sym_repeat] = ACTIONS(2459), - [anon_sym_when] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_unless] = ACTIONS(2459), - [anon_sym_always] = ACTIONS(2459), - [anon_sym_thereis] = ACTIONS(2459), - [anon_sym_never] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_finally] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_initially] = ACTIONS(2459), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(2508), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(2391), + [anon_sym_cl] = ACTIONS(2407), + [aux_sym_accumulation_verb_token1] = ACTIONS(2410), + [anon_sym_for] = ACTIONS(2410), + [anon_sym_and] = ACTIONS(2410), + [anon_sym_as] = ACTIONS(2410), + [anon_sym_with] = ACTIONS(2410), + [anon_sym_do] = ACTIONS(2410), + [anon_sym_while] = ACTIONS(2410), + [anon_sym_until] = ACTIONS(2410), + [anon_sym_repeat] = ACTIONS(2410), + [anon_sym_when] = ACTIONS(2410), + [anon_sym_if] = ACTIONS(2410), + [anon_sym_unless] = ACTIONS(2410), + [anon_sym_always] = ACTIONS(2410), + [anon_sym_thereis] = ACTIONS(2410), + [anon_sym_never] = ACTIONS(2410), + [anon_sym_else] = ACTIONS(2410), + [anon_sym_finally] = ACTIONS(2410), + [anon_sym_return] = ACTIONS(2410), + [anon_sym_initially] = ACTIONS(2410), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(2412), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [119] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2310), - [sym_num_lit] = STATE(2310), - [sym_kwd_lit] = STATE(2310), - [sym_str_lit] = STATE(2310), - [sym_char_lit] = STATE(2310), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2310), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2310), - [sym_set_lit] = STATE(2310), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2310), - [sym_splicing_read_cond_lit] = STATE(2310), - [sym_var_quoting_lit] = STATE(2310), - [sym_quoting_lit] = STATE(2310), - [sym_syn_quoting_lit] = STATE(2310), - [sym_unquote_splicing_lit] = STATE(2310), - [sym_unquoting_lit] = STATE(2310), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2310), - [sym_package_lit] = STATE(2310), - [sym_include_reader_macro] = STATE(2310), - [sym_complex_num_lit] = STATE(2310), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(2235), - [sym_comment] = ACTIONS(2235), - [anon_sym_POUND_] = ACTIONS(2238), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(2510), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(2243), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(2510), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2246), - [anon_sym_POUND_CARET] = ACTIONS(2249), - [anon_sym_LPAREN] = ACTIONS(2252), - [anon_sym_RPAREN] = ACTIONS(2255), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2510), + [sym_num_lit] = STATE(2510), + [sym_kwd_lit] = STATE(2510), + [sym_str_lit] = STATE(2510), + [sym_char_lit] = STATE(2510), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2510), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2510), + [sym_set_lit] = STATE(2510), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2510), + [sym_splicing_read_cond_lit] = STATE(2510), + [sym_var_quoting_lit] = STATE(2510), + [sym_quoting_lit] = STATE(2510), + [sym_syn_quoting_lit] = STATE(2510), + [sym_unquote_splicing_lit] = STATE(2510), + [sym_unquoting_lit] = STATE(2510), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2510), + [sym_package_lit] = STATE(2510), + [sym_include_reader_macro] = STATE(2510), + [sym_complex_num_lit] = STATE(2510), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(2414), + [sym_comment] = ACTIONS(2414), + [anon_sym_POUND_] = ACTIONS(2388), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(2417), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(2393), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(2417), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(2396), + [anon_sym_POUND_CARET] = ACTIONS(2399), + [anon_sym_LPAREN] = ACTIONS(2402), + [anon_sym_RPAREN] = ACTIONS(2405), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2510), - [anon_sym_cl] = ACTIONS(2257), - [aux_sym_accumulation_verb_token1] = ACTIONS(2260), - [anon_sym_for] = ACTIONS(2260), - [anon_sym_and] = ACTIONS(2260), - [anon_sym_as] = ACTIONS(2260), - [anon_sym_with] = ACTIONS(2260), - [anon_sym_do] = ACTIONS(2260), - [anon_sym_while] = ACTIONS(2260), - [anon_sym_until] = ACTIONS(2260), - [anon_sym_repeat] = ACTIONS(2260), - [anon_sym_when] = ACTIONS(2260), - [anon_sym_if] = ACTIONS(2260), - [anon_sym_unless] = ACTIONS(2260), - [anon_sym_always] = ACTIONS(2260), - [anon_sym_thereis] = ACTIONS(2260), - [anon_sym_never] = ACTIONS(2260), - [anon_sym_else] = ACTIONS(2260), - [anon_sym_finally] = ACTIONS(2260), - [anon_sym_return] = ACTIONS(2260), - [anon_sym_initially] = ACTIONS(2260), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(2512), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(2417), + [anon_sym_cl] = ACTIONS(2407), + [aux_sym_accumulation_verb_token1] = ACTIONS(2410), + [anon_sym_for] = ACTIONS(2410), + [anon_sym_and] = ACTIONS(2410), + [anon_sym_as] = ACTIONS(2410), + [anon_sym_with] = ACTIONS(2410), + [anon_sym_do] = ACTIONS(2410), + [anon_sym_while] = ACTIONS(2410), + [anon_sym_until] = ACTIONS(2410), + [anon_sym_repeat] = ACTIONS(2410), + [anon_sym_when] = ACTIONS(2410), + [anon_sym_if] = ACTIONS(2410), + [anon_sym_unless] = ACTIONS(2410), + [anon_sym_always] = ACTIONS(2410), + [anon_sym_thereis] = ACTIONS(2410), + [anon_sym_never] = ACTIONS(2410), + [anon_sym_else] = ACTIONS(2410), + [anon_sym_finally] = ACTIONS(2410), + [anon_sym_return] = ACTIONS(2410), + [anon_sym_initially] = ACTIONS(2410), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(2419), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [120] = { - [sym__gap] = STATE(220), - [sym_dis_expr] = STATE(220), - [sym__form] = STATE(2313), - [sym_num_lit] = STATE(2313), - [sym_kwd_lit] = STATE(2313), - [sym_str_lit] = STATE(2313), - [sym_char_lit] = STATE(2313), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2313), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2313), - [sym_set_lit] = STATE(2313), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2313), - [sym_splicing_read_cond_lit] = STATE(2313), - [sym_var_quoting_lit] = STATE(2313), - [sym_quoting_lit] = STATE(2313), - [sym_syn_quoting_lit] = STATE(2313), - [sym_unquote_splicing_lit] = STATE(2313), - [sym_unquoting_lit] = STATE(2313), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2313), - [sym_package_lit] = STATE(2313), - [sym_include_reader_macro] = STATE(2313), - [sym_complex_num_lit] = STATE(2313), - [aux_sym_dis_expr_repeat1] = STATE(220), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(2514), - [sym_comment] = ACTIONS(2514), - [anon_sym_POUND_] = ACTIONS(2517), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(2520), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(2522), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(2520), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2525), - [anon_sym_POUND_CARET] = ACTIONS(2528), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_RPAREN] = ACTIONS(2534), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(168), + [sym_dis_expr] = STATE(168), + [sym__form] = STATE(2512), + [sym_num_lit] = STATE(2512), + [sym_kwd_lit] = STATE(2512), + [sym_str_lit] = STATE(2512), + [sym_char_lit] = STATE(2512), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2512), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2512), + [sym_set_lit] = STATE(2512), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2512), + [sym_splicing_read_cond_lit] = STATE(2512), + [sym_var_quoting_lit] = STATE(2512), + [sym_quoting_lit] = STATE(2512), + [sym_syn_quoting_lit] = STATE(2512), + [sym_unquote_splicing_lit] = STATE(2512), + [sym_unquoting_lit] = STATE(2512), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2512), + [sym_package_lit] = STATE(2512), + [sym_include_reader_macro] = STATE(2512), + [sym_complex_num_lit] = STATE(2512), + [aux_sym_dis_expr_repeat1] = STATE(168), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(2421), + [sym_comment] = ACTIONS(2421), + [anon_sym_POUND_] = ACTIONS(2388), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(2424), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(2393), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(2424), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(2396), + [anon_sym_POUND_CARET] = ACTIONS(2399), + [anon_sym_LPAREN] = ACTIONS(2402), + [anon_sym_RPAREN] = ACTIONS(2405), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2520), - [anon_sym_cl] = ACTIONS(2536), - [aux_sym_accumulation_verb_token1] = ACTIONS(2539), - [anon_sym_for] = ACTIONS(2539), - [anon_sym_and] = ACTIONS(2539), - [anon_sym_as] = ACTIONS(2539), - [anon_sym_with] = ACTIONS(2539), - [anon_sym_do] = ACTIONS(2539), - [anon_sym_while] = ACTIONS(2539), - [anon_sym_until] = ACTIONS(2539), - [anon_sym_repeat] = ACTIONS(2539), - [anon_sym_when] = ACTIONS(2539), - [anon_sym_if] = ACTIONS(2539), - [anon_sym_unless] = ACTIONS(2539), - [anon_sym_always] = ACTIONS(2539), - [anon_sym_thereis] = ACTIONS(2539), - [anon_sym_never] = ACTIONS(2539), - [anon_sym_else] = ACTIONS(2539), - [anon_sym_finally] = ACTIONS(2539), - [anon_sym_return] = ACTIONS(2539), - [anon_sym_initially] = ACTIONS(2539), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(2541), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(2424), + [anon_sym_cl] = ACTIONS(2407), + [aux_sym_accumulation_verb_token1] = ACTIONS(2410), + [anon_sym_for] = ACTIONS(2410), + [anon_sym_and] = ACTIONS(2410), + [anon_sym_as] = ACTIONS(2410), + [anon_sym_with] = ACTIONS(2410), + [anon_sym_do] = ACTIONS(2410), + [anon_sym_while] = ACTIONS(2410), + [anon_sym_until] = ACTIONS(2410), + [anon_sym_repeat] = ACTIONS(2410), + [anon_sym_when] = ACTIONS(2410), + [anon_sym_if] = ACTIONS(2410), + [anon_sym_unless] = ACTIONS(2410), + [anon_sym_always] = ACTIONS(2410), + [anon_sym_thereis] = ACTIONS(2410), + [anon_sym_never] = ACTIONS(2410), + [anon_sym_else] = ACTIONS(2410), + [anon_sym_finally] = ACTIONS(2410), + [anon_sym_return] = ACTIONS(2410), + [anon_sym_initially] = ACTIONS(2410), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(2426), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [121] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2330), - [sym_num_lit] = STATE(2330), - [sym_kwd_lit] = STATE(2330), - [sym_str_lit] = STATE(2330), - [sym_char_lit] = STATE(2330), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2330), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2330), - [sym_set_lit] = STATE(2330), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2330), - [sym_splicing_read_cond_lit] = STATE(2330), - [sym_var_quoting_lit] = STATE(2330), - [sym_quoting_lit] = STATE(2330), - [sym_syn_quoting_lit] = STATE(2330), - [sym_unquote_splicing_lit] = STATE(2330), - [sym_unquoting_lit] = STATE(2330), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2330), - [sym_package_lit] = STATE(2330), - [sym_include_reader_macro] = STATE(2330), - [sym_complex_num_lit] = STATE(2330), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(2543), - [sym_comment] = ACTIONS(2543), - [anon_sym_POUND_] = ACTIONS(2517), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(2546), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(2522), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(2546), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2525), - [anon_sym_POUND_CARET] = ACTIONS(2528), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_RPAREN] = ACTIONS(2534), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2516), + [sym_num_lit] = STATE(2516), + [sym_kwd_lit] = STATE(2516), + [sym_str_lit] = STATE(2516), + [sym_char_lit] = STATE(2516), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2516), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2516), + [sym_set_lit] = STATE(2516), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2516), + [sym_splicing_read_cond_lit] = STATE(2516), + [sym_var_quoting_lit] = STATE(2516), + [sym_quoting_lit] = STATE(2516), + [sym_syn_quoting_lit] = STATE(2516), + [sym_unquote_splicing_lit] = STATE(2516), + [sym_unquoting_lit] = STATE(2516), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2516), + [sym_package_lit] = STATE(2516), + [sym_include_reader_macro] = STATE(2516), + [sym_complex_num_lit] = STATE(2516), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(2428), + [sym_comment] = ACTIONS(2428), + [anon_sym_POUND_] = ACTIONS(2431), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(2434), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(2434), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(2439), + [anon_sym_POUND_CARET] = ACTIONS(2442), + [anon_sym_LPAREN] = ACTIONS(2445), + [anon_sym_RPAREN] = ACTIONS(2448), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2546), - [anon_sym_cl] = ACTIONS(2536), - [aux_sym_accumulation_verb_token1] = ACTIONS(2539), - [anon_sym_for] = ACTIONS(2539), - [anon_sym_and] = ACTIONS(2539), - [anon_sym_as] = ACTIONS(2539), - [anon_sym_with] = ACTIONS(2539), - [anon_sym_do] = ACTIONS(2539), - [anon_sym_while] = ACTIONS(2539), - [anon_sym_until] = ACTIONS(2539), - [anon_sym_repeat] = ACTIONS(2539), - [anon_sym_when] = ACTIONS(2539), - [anon_sym_if] = ACTIONS(2539), - [anon_sym_unless] = ACTIONS(2539), - [anon_sym_always] = ACTIONS(2539), - [anon_sym_thereis] = ACTIONS(2539), - [anon_sym_never] = ACTIONS(2539), - [anon_sym_else] = ACTIONS(2539), - [anon_sym_finally] = ACTIONS(2539), - [anon_sym_return] = ACTIONS(2539), - [anon_sym_initially] = ACTIONS(2539), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(2548), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(2434), + [anon_sym_cl] = ACTIONS(2450), + [aux_sym_accumulation_verb_token1] = ACTIONS(2453), + [anon_sym_for] = ACTIONS(2453), + [anon_sym_and] = ACTIONS(2453), + [anon_sym_as] = ACTIONS(2453), + [anon_sym_with] = ACTIONS(2453), + [anon_sym_do] = ACTIONS(2453), + [anon_sym_while] = ACTIONS(2453), + [anon_sym_until] = ACTIONS(2453), + [anon_sym_repeat] = ACTIONS(2453), + [anon_sym_when] = ACTIONS(2453), + [anon_sym_if] = ACTIONS(2453), + [anon_sym_unless] = ACTIONS(2453), + [anon_sym_always] = ACTIONS(2453), + [anon_sym_thereis] = ACTIONS(2453), + [anon_sym_never] = ACTIONS(2453), + [anon_sym_else] = ACTIONS(2453), + [anon_sym_finally] = ACTIONS(2453), + [anon_sym_return] = ACTIONS(2453), + [anon_sym_initially] = ACTIONS(2453), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(2455), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [122] = { - [sym__gap] = STATE(213), - [sym_dis_expr] = STATE(213), - [sym__form] = STATE(2355), - [sym_num_lit] = STATE(2355), - [sym_kwd_lit] = STATE(2355), - [sym_str_lit] = STATE(2355), - [sym_char_lit] = STATE(2355), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2355), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2355), - [sym_set_lit] = STATE(2355), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2355), - [sym_splicing_read_cond_lit] = STATE(2355), - [sym_var_quoting_lit] = STATE(2355), - [sym_quoting_lit] = STATE(2355), - [sym_syn_quoting_lit] = STATE(2355), - [sym_unquote_splicing_lit] = STATE(2355), - [sym_unquoting_lit] = STATE(2355), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2355), - [sym_package_lit] = STATE(2355), - [sym_include_reader_macro] = STATE(2355), - [sym_complex_num_lit] = STATE(2355), - [aux_sym_dis_expr_repeat1] = STATE(213), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(2550), - [sym_comment] = ACTIONS(2550), - [anon_sym_POUND_] = ACTIONS(1860), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(2553), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(1865), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(2553), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1868), - [anon_sym_POUND_CARET] = ACTIONS(1871), - [anon_sym_LPAREN] = ACTIONS(1874), - [anon_sym_RPAREN] = ACTIONS(1877), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(169), + [sym_dis_expr] = STATE(169), + [sym__form] = STATE(2517), + [sym_num_lit] = STATE(2517), + [sym_kwd_lit] = STATE(2517), + [sym_str_lit] = STATE(2517), + [sym_char_lit] = STATE(2517), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2517), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2517), + [sym_set_lit] = STATE(2517), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2517), + [sym_splicing_read_cond_lit] = STATE(2517), + [sym_var_quoting_lit] = STATE(2517), + [sym_quoting_lit] = STATE(2517), + [sym_syn_quoting_lit] = STATE(2517), + [sym_unquote_splicing_lit] = STATE(2517), + [sym_unquoting_lit] = STATE(2517), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2517), + [sym_package_lit] = STATE(2517), + [sym_include_reader_macro] = STATE(2517), + [sym_complex_num_lit] = STATE(2517), + [aux_sym_dis_expr_repeat1] = STATE(169), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(2457), + [sym_comment] = ACTIONS(2457), + [anon_sym_POUND_] = ACTIONS(2431), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(2460), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(2460), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(2439), + [anon_sym_POUND_CARET] = ACTIONS(2442), + [anon_sym_LPAREN] = ACTIONS(2445), + [anon_sym_RPAREN] = ACTIONS(2448), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2553), - [anon_sym_cl] = ACTIONS(1879), - [aux_sym_accumulation_verb_token1] = ACTIONS(1882), - [anon_sym_for] = ACTIONS(1882), - [anon_sym_and] = ACTIONS(1882), - [anon_sym_as] = ACTIONS(1882), - [anon_sym_with] = ACTIONS(1882), - [anon_sym_do] = ACTIONS(1882), - [anon_sym_while] = ACTIONS(1882), - [anon_sym_until] = ACTIONS(1882), - [anon_sym_repeat] = ACTIONS(1882), - [anon_sym_when] = ACTIONS(1882), - [anon_sym_if] = ACTIONS(1882), - [anon_sym_unless] = ACTIONS(1882), - [anon_sym_always] = ACTIONS(1882), - [anon_sym_thereis] = ACTIONS(1882), - [anon_sym_never] = ACTIONS(1882), - [anon_sym_else] = ACTIONS(1882), - [anon_sym_finally] = ACTIONS(1882), - [anon_sym_return] = ACTIONS(1882), - [anon_sym_initially] = ACTIONS(1882), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(2555), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(2460), + [anon_sym_cl] = ACTIONS(2450), + [aux_sym_accumulation_verb_token1] = ACTIONS(2453), + [anon_sym_for] = ACTIONS(2453), + [anon_sym_and] = ACTIONS(2453), + [anon_sym_as] = ACTIONS(2453), + [anon_sym_with] = ACTIONS(2453), + [anon_sym_do] = ACTIONS(2453), + [anon_sym_while] = ACTIONS(2453), + [anon_sym_until] = ACTIONS(2453), + [anon_sym_repeat] = ACTIONS(2453), + [anon_sym_when] = ACTIONS(2453), + [anon_sym_if] = ACTIONS(2453), + [anon_sym_unless] = ACTIONS(2453), + [anon_sym_always] = ACTIONS(2453), + [anon_sym_thereis] = ACTIONS(2453), + [anon_sym_never] = ACTIONS(2453), + [anon_sym_else] = ACTIONS(2453), + [anon_sym_finally] = ACTIONS(2453), + [anon_sym_return] = ACTIONS(2453), + [anon_sym_initially] = ACTIONS(2453), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(2462), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [123] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2353), - [sym_num_lit] = STATE(2353), - [sym_kwd_lit] = STATE(2353), - [sym_str_lit] = STATE(2353), - [sym_char_lit] = STATE(2353), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2353), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2353), - [sym_set_lit] = STATE(2353), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2353), - [sym_splicing_read_cond_lit] = STATE(2353), - [sym_var_quoting_lit] = STATE(2353), - [sym_quoting_lit] = STATE(2353), - [sym_syn_quoting_lit] = STATE(2353), - [sym_unquote_splicing_lit] = STATE(2353), - [sym_unquoting_lit] = STATE(2353), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2353), - [sym_package_lit] = STATE(2353), - [sym_include_reader_macro] = STATE(2353), - [sym_complex_num_lit] = STATE(2353), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(1901), - [sym_comment] = ACTIONS(1901), - [anon_sym_POUND_] = ACTIONS(1860), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(2557), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(1865), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(2557), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1868), - [anon_sym_POUND_CARET] = ACTIONS(1871), - [anon_sym_LPAREN] = ACTIONS(1874), - [anon_sym_RPAREN] = ACTIONS(1877), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(170), + [sym_dis_expr] = STATE(170), + [sym__form] = STATE(2521), + [sym_num_lit] = STATE(2521), + [sym_kwd_lit] = STATE(2521), + [sym_str_lit] = STATE(2521), + [sym_char_lit] = STATE(2521), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2521), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2521), + [sym_set_lit] = STATE(2521), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2521), + [sym_splicing_read_cond_lit] = STATE(2521), + [sym_var_quoting_lit] = STATE(2521), + [sym_quoting_lit] = STATE(2521), + [sym_syn_quoting_lit] = STATE(2521), + [sym_unquote_splicing_lit] = STATE(2521), + [sym_unquoting_lit] = STATE(2521), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2521), + [sym_package_lit] = STATE(2521), + [sym_include_reader_macro] = STATE(2521), + [sym_complex_num_lit] = STATE(2521), + [aux_sym_dis_expr_repeat1] = STATE(170), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(2464), + [sym_comment] = ACTIONS(2464), + [anon_sym_POUND_] = ACTIONS(2467), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(2470), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(2472), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(2470), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(2475), + [anon_sym_POUND_CARET] = ACTIONS(2478), + [anon_sym_LPAREN] = ACTIONS(2481), + [anon_sym_RPAREN] = ACTIONS(2484), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2557), - [anon_sym_cl] = ACTIONS(1879), - [aux_sym_accumulation_verb_token1] = ACTIONS(1882), - [anon_sym_for] = ACTIONS(1882), - [anon_sym_and] = ACTIONS(1882), - [anon_sym_as] = ACTIONS(1882), - [anon_sym_with] = ACTIONS(1882), - [anon_sym_do] = ACTIONS(1882), - [anon_sym_while] = ACTIONS(1882), - [anon_sym_until] = ACTIONS(1882), - [anon_sym_repeat] = ACTIONS(1882), - [anon_sym_when] = ACTIONS(1882), - [anon_sym_if] = ACTIONS(1882), - [anon_sym_unless] = ACTIONS(1882), - [anon_sym_always] = ACTIONS(1882), - [anon_sym_thereis] = ACTIONS(1882), - [anon_sym_never] = ACTIONS(1882), - [anon_sym_else] = ACTIONS(1882), - [anon_sym_finally] = ACTIONS(1882), - [anon_sym_return] = ACTIONS(1882), - [anon_sym_initially] = ACTIONS(1882), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(2559), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(2470), + [anon_sym_cl] = ACTIONS(2486), + [aux_sym_accumulation_verb_token1] = ACTIONS(2489), + [anon_sym_for] = ACTIONS(2489), + [anon_sym_and] = ACTIONS(2489), + [anon_sym_as] = ACTIONS(2489), + [anon_sym_with] = ACTIONS(2489), + [anon_sym_do] = ACTIONS(2489), + [anon_sym_while] = ACTIONS(2489), + [anon_sym_until] = ACTIONS(2489), + [anon_sym_repeat] = ACTIONS(2489), + [anon_sym_when] = ACTIONS(2489), + [anon_sym_if] = ACTIONS(2489), + [anon_sym_unless] = ACTIONS(2489), + [anon_sym_always] = ACTIONS(2489), + [anon_sym_thereis] = ACTIONS(2489), + [anon_sym_never] = ACTIONS(2489), + [anon_sym_else] = ACTIONS(2489), + [anon_sym_finally] = ACTIONS(2489), + [anon_sym_return] = ACTIONS(2489), + [anon_sym_initially] = ACTIONS(2489), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(2491), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [124] = { - [sym__gap] = STATE(222), - [sym_dis_expr] = STATE(222), - [sym__form] = STATE(2351), - [sym_num_lit] = STATE(2351), - [sym_kwd_lit] = STATE(2351), - [sym_str_lit] = STATE(2351), - [sym_char_lit] = STATE(2351), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2351), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2351), - [sym_set_lit] = STATE(2351), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2351), - [sym_splicing_read_cond_lit] = STATE(2351), - [sym_var_quoting_lit] = STATE(2351), - [sym_quoting_lit] = STATE(2351), - [sym_syn_quoting_lit] = STATE(2351), - [sym_unquote_splicing_lit] = STATE(2351), - [sym_unquoting_lit] = STATE(2351), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2351), - [sym_package_lit] = STATE(2351), - [sym_include_reader_macro] = STATE(2351), - [sym_complex_num_lit] = STATE(2351), - [aux_sym_dis_expr_repeat1] = STATE(222), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(2561), - [sym_comment] = ACTIONS(2561), - [anon_sym_POUND_] = ACTIONS(1918), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(2564), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(1923), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(2564), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1926), - [anon_sym_POUND_CARET] = ACTIONS(1929), - [anon_sym_LPAREN] = ACTIONS(1932), - [anon_sym_RPAREN] = ACTIONS(1935), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2525), + [sym_num_lit] = STATE(2525), + [sym_kwd_lit] = STATE(2525), + [sym_str_lit] = STATE(2525), + [sym_char_lit] = STATE(2525), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2525), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2525), + [sym_set_lit] = STATE(2525), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2525), + [sym_splicing_read_cond_lit] = STATE(2525), + [sym_var_quoting_lit] = STATE(2525), + [sym_quoting_lit] = STATE(2525), + [sym_syn_quoting_lit] = STATE(2525), + [sym_unquote_splicing_lit] = STATE(2525), + [sym_unquoting_lit] = STATE(2525), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2525), + [sym_package_lit] = STATE(2525), + [sym_include_reader_macro] = STATE(2525), + [sym_complex_num_lit] = STATE(2525), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(2493), + [sym_comment] = ACTIONS(2493), + [anon_sym_POUND_] = ACTIONS(2467), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(2496), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(2472), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(2496), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(2475), + [anon_sym_POUND_CARET] = ACTIONS(2478), + [anon_sym_LPAREN] = ACTIONS(2481), + [anon_sym_RPAREN] = ACTIONS(2484), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2564), - [anon_sym_cl] = ACTIONS(1937), - [aux_sym_accumulation_verb_token1] = ACTIONS(1940), - [anon_sym_for] = ACTIONS(1940), - [anon_sym_and] = ACTIONS(1940), - [anon_sym_as] = ACTIONS(1940), - [anon_sym_with] = ACTIONS(1940), - [anon_sym_do] = ACTIONS(1940), - [anon_sym_while] = ACTIONS(1940), - [anon_sym_until] = ACTIONS(1940), - [anon_sym_repeat] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(1940), - [anon_sym_if] = ACTIONS(1940), - [anon_sym_unless] = ACTIONS(1940), - [anon_sym_always] = ACTIONS(1940), - [anon_sym_thereis] = ACTIONS(1940), - [anon_sym_never] = ACTIONS(1940), - [anon_sym_else] = ACTIONS(1940), - [anon_sym_finally] = ACTIONS(1940), - [anon_sym_return] = ACTIONS(1940), - [anon_sym_initially] = ACTIONS(1940), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(2566), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(2496), + [anon_sym_cl] = ACTIONS(2486), + [aux_sym_accumulation_verb_token1] = ACTIONS(2489), + [anon_sym_for] = ACTIONS(2489), + [anon_sym_and] = ACTIONS(2489), + [anon_sym_as] = ACTIONS(2489), + [anon_sym_with] = ACTIONS(2489), + [anon_sym_do] = ACTIONS(2489), + [anon_sym_while] = ACTIONS(2489), + [anon_sym_until] = ACTIONS(2489), + [anon_sym_repeat] = ACTIONS(2489), + [anon_sym_when] = ACTIONS(2489), + [anon_sym_if] = ACTIONS(2489), + [anon_sym_unless] = ACTIONS(2489), + [anon_sym_always] = ACTIONS(2489), + [anon_sym_thereis] = ACTIONS(2489), + [anon_sym_never] = ACTIONS(2489), + [anon_sym_else] = ACTIONS(2489), + [anon_sym_finally] = ACTIONS(2489), + [anon_sym_return] = ACTIONS(2489), + [anon_sym_initially] = ACTIONS(2489), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(2498), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [125] = { - [sym__gap] = STATE(246), - [sym_dis_expr] = STATE(246), - [sym__form] = STATE(2312), - [sym_num_lit] = STATE(2312), - [sym_kwd_lit] = STATE(2312), - [sym_str_lit] = STATE(2312), - [sym_char_lit] = STATE(2312), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2312), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2312), - [sym_set_lit] = STATE(2312), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2312), - [sym_splicing_read_cond_lit] = STATE(2312), - [sym_var_quoting_lit] = STATE(2312), - [sym_quoting_lit] = STATE(2312), - [sym_syn_quoting_lit] = STATE(2312), - [sym_unquote_splicing_lit] = STATE(2312), - [sym_unquoting_lit] = STATE(2312), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2312), - [sym_package_lit] = STATE(2312), - [sym_include_reader_macro] = STATE(2312), - [sym_complex_num_lit] = STATE(2312), - [aux_sym_dis_expr_repeat1] = STATE(246), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(2568), - [sym_comment] = ACTIONS(2568), - [anon_sym_POUND_] = ACTIONS(2238), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(2571), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(2243), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(2571), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2246), - [anon_sym_POUND_CARET] = ACTIONS(2249), - [anon_sym_LPAREN] = ACTIONS(2252), - [anon_sym_RPAREN] = ACTIONS(2255), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(173), + [sym_dis_expr] = STATE(173), + [sym__form] = STATE(2528), + [sym_num_lit] = STATE(2528), + [sym_kwd_lit] = STATE(2528), + [sym_str_lit] = STATE(2528), + [sym_char_lit] = STATE(2528), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2528), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2528), + [sym_set_lit] = STATE(2528), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2528), + [sym_splicing_read_cond_lit] = STATE(2528), + [sym_var_quoting_lit] = STATE(2528), + [sym_quoting_lit] = STATE(2528), + [sym_syn_quoting_lit] = STATE(2528), + [sym_unquote_splicing_lit] = STATE(2528), + [sym_unquoting_lit] = STATE(2528), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2528), + [sym_package_lit] = STATE(2528), + [sym_include_reader_macro] = STATE(2528), + [sym_complex_num_lit] = STATE(2528), + [aux_sym_dis_expr_repeat1] = STATE(173), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(2500), + [sym_comment] = ACTIONS(2500), + [anon_sym_POUND_] = ACTIONS(2467), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(2503), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(2472), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(2503), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(2475), + [anon_sym_POUND_CARET] = ACTIONS(2478), + [anon_sym_LPAREN] = ACTIONS(2481), + [anon_sym_RPAREN] = ACTIONS(2484), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2571), - [anon_sym_cl] = ACTIONS(2257), - [aux_sym_accumulation_verb_token1] = ACTIONS(2260), - [anon_sym_for] = ACTIONS(2260), - [anon_sym_and] = ACTIONS(2260), - [anon_sym_as] = ACTIONS(2260), - [anon_sym_with] = ACTIONS(2260), - [anon_sym_do] = ACTIONS(2260), - [anon_sym_while] = ACTIONS(2260), - [anon_sym_until] = ACTIONS(2260), - [anon_sym_repeat] = ACTIONS(2260), - [anon_sym_when] = ACTIONS(2260), - [anon_sym_if] = ACTIONS(2260), - [anon_sym_unless] = ACTIONS(2260), - [anon_sym_always] = ACTIONS(2260), - [anon_sym_thereis] = ACTIONS(2260), - [anon_sym_never] = ACTIONS(2260), - [anon_sym_else] = ACTIONS(2260), - [anon_sym_finally] = ACTIONS(2260), - [anon_sym_return] = ACTIONS(2260), - [anon_sym_initially] = ACTIONS(2260), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(2573), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(2503), + [anon_sym_cl] = ACTIONS(2486), + [aux_sym_accumulation_verb_token1] = ACTIONS(2489), + [anon_sym_for] = ACTIONS(2489), + [anon_sym_and] = ACTIONS(2489), + [anon_sym_as] = ACTIONS(2489), + [anon_sym_with] = ACTIONS(2489), + [anon_sym_do] = ACTIONS(2489), + [anon_sym_while] = ACTIONS(2489), + [anon_sym_until] = ACTIONS(2489), + [anon_sym_repeat] = ACTIONS(2489), + [anon_sym_when] = ACTIONS(2489), + [anon_sym_if] = ACTIONS(2489), + [anon_sym_unless] = ACTIONS(2489), + [anon_sym_always] = ACTIONS(2489), + [anon_sym_thereis] = ACTIONS(2489), + [anon_sym_never] = ACTIONS(2489), + [anon_sym_else] = ACTIONS(2489), + [anon_sym_finally] = ACTIONS(2489), + [anon_sym_return] = ACTIONS(2489), + [anon_sym_initially] = ACTIONS(2489), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(2505), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [126] = { - [sym__gap] = STATE(228), - [sym_dis_expr] = STATE(228), - [sym__form] = STATE(2413), - [sym_num_lit] = STATE(2413), - [sym_kwd_lit] = STATE(2413), - [sym_str_lit] = STATE(2413), - [sym_char_lit] = STATE(2413), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2413), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2413), - [sym_set_lit] = STATE(2413), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2413), - [sym_splicing_read_cond_lit] = STATE(2413), - [sym_var_quoting_lit] = STATE(2413), - [sym_quoting_lit] = STATE(2413), - [sym_syn_quoting_lit] = STATE(2413), - [sym_unquote_splicing_lit] = STATE(2413), - [sym_unquoting_lit] = STATE(2413), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2413), - [sym_package_lit] = STATE(2413), - [sym_include_reader_macro] = STATE(2413), - [sym_complex_num_lit] = STATE(2413), - [aux_sym_dis_expr_repeat1] = STATE(228), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(2575), - [sym_comment] = ACTIONS(2575), - [anon_sym_POUND_] = ACTIONS(2517), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(2578), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(2522), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(2578), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2525), - [anon_sym_POUND_CARET] = ACTIONS(2528), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_RPAREN] = ACTIONS(2534), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(174), + [sym_dis_expr] = STATE(174), + [sym__form] = STATE(2535), + [sym_num_lit] = STATE(2535), + [sym_kwd_lit] = STATE(2535), + [sym_str_lit] = STATE(2535), + [sym_char_lit] = STATE(2535), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2535), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2535), + [sym_set_lit] = STATE(2535), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2535), + [sym_splicing_read_cond_lit] = STATE(2535), + [sym_var_quoting_lit] = STATE(2535), + [sym_quoting_lit] = STATE(2535), + [sym_syn_quoting_lit] = STATE(2535), + [sym_unquote_splicing_lit] = STATE(2535), + [sym_unquoting_lit] = STATE(2535), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2535), + [sym_package_lit] = STATE(2535), + [sym_include_reader_macro] = STATE(2535), + [sym_complex_num_lit] = STATE(2535), + [aux_sym_dis_expr_repeat1] = STATE(174), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(2507), + [sym_comment] = ACTIONS(2507), + [anon_sym_POUND_] = ACTIONS(2431), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(2510), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(2510), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(2439), + [anon_sym_POUND_CARET] = ACTIONS(2442), + [anon_sym_LPAREN] = ACTIONS(2445), + [anon_sym_RPAREN] = ACTIONS(2448), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2578), - [anon_sym_cl] = ACTIONS(2536), - [aux_sym_accumulation_verb_token1] = ACTIONS(2539), - [anon_sym_for] = ACTIONS(2539), - [anon_sym_and] = ACTIONS(2539), - [anon_sym_as] = ACTIONS(2539), - [anon_sym_with] = ACTIONS(2539), - [anon_sym_do] = ACTIONS(2539), - [anon_sym_while] = ACTIONS(2539), - [anon_sym_until] = ACTIONS(2539), - [anon_sym_repeat] = ACTIONS(2539), - [anon_sym_when] = ACTIONS(2539), - [anon_sym_if] = ACTIONS(2539), - [anon_sym_unless] = ACTIONS(2539), - [anon_sym_always] = ACTIONS(2539), - [anon_sym_thereis] = ACTIONS(2539), - [anon_sym_never] = ACTIONS(2539), - [anon_sym_else] = ACTIONS(2539), - [anon_sym_finally] = ACTIONS(2539), - [anon_sym_return] = ACTIONS(2539), - [anon_sym_initially] = ACTIONS(2539), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(2580), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(2510), + [anon_sym_cl] = ACTIONS(2450), + [aux_sym_accumulation_verb_token1] = ACTIONS(2453), + [anon_sym_for] = ACTIONS(2453), + [anon_sym_and] = ACTIONS(2453), + [anon_sym_as] = ACTIONS(2453), + [anon_sym_with] = ACTIONS(2453), + [anon_sym_do] = ACTIONS(2453), + [anon_sym_while] = ACTIONS(2453), + [anon_sym_until] = ACTIONS(2453), + [anon_sym_repeat] = ACTIONS(2453), + [anon_sym_when] = ACTIONS(2453), + [anon_sym_if] = ACTIONS(2453), + [anon_sym_unless] = ACTIONS(2453), + [anon_sym_always] = ACTIONS(2453), + [anon_sym_thereis] = ACTIONS(2453), + [anon_sym_never] = ACTIONS(2453), + [anon_sym_else] = ACTIONS(2453), + [anon_sym_finally] = ACTIONS(2453), + [anon_sym_return] = ACTIONS(2453), + [anon_sym_initially] = ACTIONS(2453), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(2512), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [127] = { - [sym__gap] = STATE(235), - [sym_dis_expr] = STATE(235), - [sym__form] = STATE(2345), - [sym_num_lit] = STATE(2345), - [sym_kwd_lit] = STATE(2345), - [sym_str_lit] = STATE(2345), - [sym_char_lit] = STATE(2345), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2345), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2345), - [sym_set_lit] = STATE(2345), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2345), - [sym_splicing_read_cond_lit] = STATE(2345), - [sym_var_quoting_lit] = STATE(2345), - [sym_quoting_lit] = STATE(2345), - [sym_syn_quoting_lit] = STATE(2345), - [sym_unquote_splicing_lit] = STATE(2345), - [sym_unquoting_lit] = STATE(2345), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2345), - [sym_package_lit] = STATE(2345), - [sym_include_reader_macro] = STATE(2345), - [sym_complex_num_lit] = STATE(2345), - [aux_sym_dis_expr_repeat1] = STATE(235), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(2582), - [sym_comment] = ACTIONS(2582), - [anon_sym_POUND_] = ACTIONS(1860), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(2585), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(1865), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(2585), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1868), - [anon_sym_POUND_CARET] = ACTIONS(1871), - [anon_sym_LPAREN] = ACTIONS(1874), - [anon_sym_RPAREN] = ACTIONS(1877), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2540), + [sym_num_lit] = STATE(2540), + [sym_kwd_lit] = STATE(2540), + [sym_str_lit] = STATE(2540), + [sym_char_lit] = STATE(2540), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2540), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2540), + [sym_set_lit] = STATE(2540), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2540), + [sym_splicing_read_cond_lit] = STATE(2540), + [sym_var_quoting_lit] = STATE(2540), + [sym_quoting_lit] = STATE(2540), + [sym_syn_quoting_lit] = STATE(2540), + [sym_unquote_splicing_lit] = STATE(2540), + [sym_unquoting_lit] = STATE(2540), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2540), + [sym_package_lit] = STATE(2540), + [sym_include_reader_macro] = STATE(2540), + [sym_complex_num_lit] = STATE(2540), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(2428), + [sym_comment] = ACTIONS(2428), + [anon_sym_POUND_] = ACTIONS(2431), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(2514), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(2514), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(2439), + [anon_sym_POUND_CARET] = ACTIONS(2442), + [anon_sym_LPAREN] = ACTIONS(2445), + [anon_sym_RPAREN] = ACTIONS(2448), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2585), - [anon_sym_cl] = ACTIONS(1879), - [aux_sym_accumulation_verb_token1] = ACTIONS(1882), - [anon_sym_for] = ACTIONS(1882), - [anon_sym_and] = ACTIONS(1882), - [anon_sym_as] = ACTIONS(1882), - [anon_sym_with] = ACTIONS(1882), - [anon_sym_do] = ACTIONS(1882), - [anon_sym_while] = ACTIONS(1882), - [anon_sym_until] = ACTIONS(1882), - [anon_sym_repeat] = ACTIONS(1882), - [anon_sym_when] = ACTIONS(1882), - [anon_sym_if] = ACTIONS(1882), - [anon_sym_unless] = ACTIONS(1882), - [anon_sym_always] = ACTIONS(1882), - [anon_sym_thereis] = ACTIONS(1882), - [anon_sym_never] = ACTIONS(1882), - [anon_sym_else] = ACTIONS(1882), - [anon_sym_finally] = ACTIONS(1882), - [anon_sym_return] = ACTIONS(1882), - [anon_sym_initially] = ACTIONS(1882), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(2587), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(2514), + [anon_sym_cl] = ACTIONS(2450), + [aux_sym_accumulation_verb_token1] = ACTIONS(2453), + [anon_sym_for] = ACTIONS(2453), + [anon_sym_and] = ACTIONS(2453), + [anon_sym_as] = ACTIONS(2453), + [anon_sym_with] = ACTIONS(2453), + [anon_sym_do] = ACTIONS(2453), + [anon_sym_while] = ACTIONS(2453), + [anon_sym_until] = ACTIONS(2453), + [anon_sym_repeat] = ACTIONS(2453), + [anon_sym_when] = ACTIONS(2453), + [anon_sym_if] = ACTIONS(2453), + [anon_sym_unless] = ACTIONS(2453), + [anon_sym_always] = ACTIONS(2453), + [anon_sym_thereis] = ACTIONS(2453), + [anon_sym_never] = ACTIONS(2453), + [anon_sym_else] = ACTIONS(2453), + [anon_sym_finally] = ACTIONS(2453), + [anon_sym_return] = ACTIONS(2453), + [anon_sym_initially] = ACTIONS(2453), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(2516), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [128] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2320), - [sym_num_lit] = STATE(2320), - [sym_kwd_lit] = STATE(2320), - [sym_str_lit] = STATE(2320), - [sym_char_lit] = STATE(2320), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2320), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2320), - [sym_set_lit] = STATE(2320), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2320), - [sym_splicing_read_cond_lit] = STATE(2320), - [sym_var_quoting_lit] = STATE(2320), - [sym_quoting_lit] = STATE(2320), - [sym_syn_quoting_lit] = STATE(2320), - [sym_unquote_splicing_lit] = STATE(2320), - [sym_unquoting_lit] = STATE(2320), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2320), - [sym_package_lit] = STATE(2320), - [sym_include_reader_macro] = STATE(2320), - [sym_complex_num_lit] = STATE(2320), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(2589), - [sym_comment] = ACTIONS(2589), - [anon_sym_POUND_] = ACTIONS(2592), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(2595), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(2597), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(2595), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2600), - [anon_sym_POUND_CARET] = ACTIONS(2603), - [anon_sym_LPAREN] = ACTIONS(2606), - [anon_sym_RPAREN] = ACTIONS(2609), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(177), + [sym_dis_expr] = STATE(177), + [sym__form] = STATE(2542), + [sym_num_lit] = STATE(2542), + [sym_kwd_lit] = STATE(2542), + [sym_str_lit] = STATE(2542), + [sym_char_lit] = STATE(2542), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2542), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2542), + [sym_set_lit] = STATE(2542), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2542), + [sym_splicing_read_cond_lit] = STATE(2542), + [sym_var_quoting_lit] = STATE(2542), + [sym_quoting_lit] = STATE(2542), + [sym_syn_quoting_lit] = STATE(2542), + [sym_unquote_splicing_lit] = STATE(2542), + [sym_unquoting_lit] = STATE(2542), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2542), + [sym_package_lit] = STATE(2542), + [sym_include_reader_macro] = STATE(2542), + [sym_complex_num_lit] = STATE(2542), + [aux_sym_dis_expr_repeat1] = STATE(177), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(2518), + [sym_comment] = ACTIONS(2518), + [anon_sym_POUND_] = ACTIONS(2521), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(2524), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(2526), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(2524), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(2529), + [anon_sym_POUND_CARET] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2535), + [anon_sym_RPAREN] = ACTIONS(2538), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2595), - [anon_sym_cl] = ACTIONS(2611), - [aux_sym_accumulation_verb_token1] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_and] = ACTIONS(2614), - [anon_sym_as] = ACTIONS(2614), - [anon_sym_with] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_until] = ACTIONS(2614), - [anon_sym_repeat] = ACTIONS(2614), - [anon_sym_when] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_unless] = ACTIONS(2614), - [anon_sym_always] = ACTIONS(2614), - [anon_sym_thereis] = ACTIONS(2614), - [anon_sym_never] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_finally] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_initially] = ACTIONS(2614), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(2616), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(2524), + [anon_sym_cl] = ACTIONS(2540), + [aux_sym_accumulation_verb_token1] = ACTIONS(2543), + [anon_sym_for] = ACTIONS(2543), + [anon_sym_and] = ACTIONS(2543), + [anon_sym_as] = ACTIONS(2543), + [anon_sym_with] = ACTIONS(2543), + [anon_sym_do] = ACTIONS(2543), + [anon_sym_while] = ACTIONS(2543), + [anon_sym_until] = ACTIONS(2543), + [anon_sym_repeat] = ACTIONS(2543), + [anon_sym_when] = ACTIONS(2543), + [anon_sym_if] = ACTIONS(2543), + [anon_sym_unless] = ACTIONS(2543), + [anon_sym_always] = ACTIONS(2543), + [anon_sym_thereis] = ACTIONS(2543), + [anon_sym_never] = ACTIONS(2543), + [anon_sym_else] = ACTIONS(2543), + [anon_sym_finally] = ACTIONS(2543), + [anon_sym_return] = ACTIONS(2543), + [anon_sym_initially] = ACTIONS(2543), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(2545), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [129] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2303), - [sym_num_lit] = STATE(2303), - [sym_kwd_lit] = STATE(2303), - [sym_str_lit] = STATE(2303), - [sym_char_lit] = STATE(2303), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2303), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2303), - [sym_set_lit] = STATE(2303), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2303), - [sym_splicing_read_cond_lit] = STATE(2303), - [sym_var_quoting_lit] = STATE(2303), - [sym_quoting_lit] = STATE(2303), - [sym_syn_quoting_lit] = STATE(2303), - [sym_unquote_splicing_lit] = STATE(2303), - [sym_unquoting_lit] = STATE(2303), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2303), - [sym_package_lit] = STATE(2303), - [sym_include_reader_macro] = STATE(2303), - [sym_complex_num_lit] = STATE(2303), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(2618), - [sym_comment] = ACTIONS(2618), - [anon_sym_POUND_] = ACTIONS(2621), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(2624), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(2626), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(2624), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2629), - [anon_sym_POUND_CARET] = ACTIONS(2632), - [anon_sym_LPAREN] = ACTIONS(2635), - [anon_sym_RPAREN] = ACTIONS(2638), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(272), + [sym_dis_expr] = STATE(272), + [sym__form] = STATE(2743), + [sym_num_lit] = STATE(2743), + [sym_kwd_lit] = STATE(2743), + [sym_str_lit] = STATE(2743), + [sym_char_lit] = STATE(2743), + [sym_sym_lit] = STATE(2766), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2743), + [sym__bare_list_lit] = STATE(1975), + [sym_vec_lit] = STATE(2743), + [sym_set_lit] = STATE(2743), + [sym__bare_set_lit] = STATE(1976), + [sym_read_cond_lit] = STATE(2743), + [sym_splicing_read_cond_lit] = STATE(2743), + [sym_var_quoting_lit] = STATE(2743), + [sym_quoting_lit] = STATE(2743), + [sym_syn_quoting_lit] = STATE(2743), + [sym_unquote_splicing_lit] = STATE(2743), + [sym_unquoting_lit] = STATE(2743), + [sym_defun] = STATE(1975), + [sym_for_clause_word] = STATE(419), + [sym__for_part] = STATE(1555), + [sym_loop_macro] = STATE(1975), + [sym_path_lit] = STATE(2743), + [sym_package_lit] = STATE(2743), + [sym_include_reader_macro] = STATE(2743), + [sym_complex_num_lit] = STATE(2743), + [aux_sym_dis_expr_repeat1] = STATE(272), + [aux_sym_list_lit_repeat1] = STATE(2830), + [aux_sym_for_clause_repeat1] = STATE(1265), + [sym__ws] = ACTIONS(2547), + [sym_comment] = ACTIONS(2547), + [anon_sym_POUND_] = ACTIONS(1452), + [anon_sym_POUND] = ACTIONS(1454), + [anon_sym_DOT] = ACTIONS(2549), + [aux_sym_num_lit_token1] = ACTIONS(1458), + [anon_sym_COLON] = ACTIONS(1460), + [anon_sym_COLON_COLON] = ACTIONS(1462), + [anon_sym_DQUOTE] = ACTIONS(1464), + [sym_nil_lit] = ACTIONS(2549), + [aux_sym_sym_lit_token1] = ACTIONS(1466), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(1468), + [anon_sym_POUND0A] = ACTIONS(1470), + [anon_sym_POUND0a] = ACTIONS(1470), + [anon_sym_POUND_QMARK] = ACTIONS(1472), + [anon_sym_POUND_QMARK_AT] = ACTIONS(1474), + [anon_sym_POUND_SQUOTE] = ACTIONS(1476), + [anon_sym_SQUOTE] = ACTIONS(1478), + [anon_sym_BQUOTE] = ACTIONS(1480), + [anon_sym_COMMA_AT] = ACTIONS(1482), + [anon_sym_COMMA] = ACTIONS(1484), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2624), - [anon_sym_cl] = ACTIONS(2640), - [aux_sym_accumulation_verb_token1] = ACTIONS(2643), - [anon_sym_for] = ACTIONS(2643), - [anon_sym_and] = ACTIONS(2643), - [anon_sym_as] = ACTIONS(2643), - [anon_sym_with] = ACTIONS(2643), - [anon_sym_do] = ACTIONS(2643), - [anon_sym_while] = ACTIONS(2643), - [anon_sym_until] = ACTIONS(2643), - [anon_sym_repeat] = ACTIONS(2643), - [anon_sym_when] = ACTIONS(2643), - [anon_sym_if] = ACTIONS(2643), - [anon_sym_unless] = ACTIONS(2643), - [anon_sym_always] = ACTIONS(2643), - [anon_sym_thereis] = ACTIONS(2643), - [anon_sym_never] = ACTIONS(2643), - [anon_sym_else] = ACTIONS(2643), - [anon_sym_finally] = ACTIONS(2643), - [anon_sym_return] = ACTIONS(2643), - [anon_sym_initially] = ACTIONS(2643), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(2645), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(2549), + [anon_sym_cl] = ACTIONS(1486), + [anon_sym_in] = ACTIONS(1488), + [anon_sym_across] = ACTIONS(1488), + [anon_sym_being] = ACTIONS(1488), + [anon_sym_using] = ACTIONS(1488), + [aux_sym_for_clause_word_token1] = ACTIONS(1490), + [anon_sym_below] = ACTIONS(1488), + [anon_sym_above] = ACTIONS(1488), + [anon_sym_from] = ACTIONS(1488), + [anon_sym_to] = ACTIONS(1488), + [anon_sym_upto] = ACTIONS(1488), + [anon_sym_upfrom] = ACTIONS(1488), + [anon_sym_downto] = ACTIONS(1488), + [anon_sym_downfrom] = ACTIONS(1488), + [anon_sym_on] = ACTIONS(1488), + [anon_sym_by] = ACTIONS(1488), + [anon_sym_then] = ACTIONS(1488), + [anon_sym_EQ] = ACTIONS(1488), + [anon_sym_POUNDP] = ACTIONS(1492), + [anon_sym_POUNDp] = ACTIONS(1492), + [sym_self_referential_reader_macro] = ACTIONS(2551), + [anon_sym_POUND_PLUS] = ACTIONS(1496), + [anon_sym_POUND_DASH] = ACTIONS(1496), + [anon_sym_POUNDC] = ACTIONS(1498), + [anon_sym_POUNDc] = ACTIONS(1498), }, [130] = { - [sym__gap] = STATE(251), - [sym_dis_expr] = STATE(251), - [sym__form] = STATE(2302), - [sym_num_lit] = STATE(2302), - [sym_kwd_lit] = STATE(2302), - [sym_str_lit] = STATE(2302), - [sym_char_lit] = STATE(2302), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2302), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2302), - [sym_set_lit] = STATE(2302), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2302), - [sym_splicing_read_cond_lit] = STATE(2302), - [sym_var_quoting_lit] = STATE(2302), - [sym_quoting_lit] = STATE(2302), - [sym_syn_quoting_lit] = STATE(2302), - [sym_unquote_splicing_lit] = STATE(2302), - [sym_unquoting_lit] = STATE(2302), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2302), - [sym_package_lit] = STATE(2302), - [sym_include_reader_macro] = STATE(2302), - [sym_complex_num_lit] = STATE(2302), - [aux_sym_dis_expr_repeat1] = STATE(251), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(2647), - [sym_comment] = ACTIONS(2647), - [anon_sym_POUND_] = ACTIONS(2621), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(2650), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(2626), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(2650), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2629), - [anon_sym_POUND_CARET] = ACTIONS(2632), - [anon_sym_LPAREN] = ACTIONS(2635), - [anon_sym_RPAREN] = ACTIONS(2638), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2548), + [sym_num_lit] = STATE(2548), + [sym_kwd_lit] = STATE(2548), + [sym_str_lit] = STATE(2548), + [sym_char_lit] = STATE(2548), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2548), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2548), + [sym_set_lit] = STATE(2548), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2548), + [sym_splicing_read_cond_lit] = STATE(2548), + [sym_var_quoting_lit] = STATE(2548), + [sym_quoting_lit] = STATE(2548), + [sym_syn_quoting_lit] = STATE(2548), + [sym_unquote_splicing_lit] = STATE(2548), + [sym_unquoting_lit] = STATE(2548), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2548), + [sym_package_lit] = STATE(2548), + [sym_include_reader_macro] = STATE(2548), + [sym_complex_num_lit] = STATE(2548), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(2428), + [sym_comment] = ACTIONS(2428), + [anon_sym_POUND_] = ACTIONS(2431), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(2553), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(2553), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(2439), + [anon_sym_POUND_CARET] = ACTIONS(2442), + [anon_sym_LPAREN] = ACTIONS(2445), + [anon_sym_RPAREN] = ACTIONS(2448), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2650), - [anon_sym_cl] = ACTIONS(2640), - [aux_sym_accumulation_verb_token1] = ACTIONS(2643), - [anon_sym_for] = ACTIONS(2643), - [anon_sym_and] = ACTIONS(2643), - [anon_sym_as] = ACTIONS(2643), - [anon_sym_with] = ACTIONS(2643), - [anon_sym_do] = ACTIONS(2643), - [anon_sym_while] = ACTIONS(2643), - [anon_sym_until] = ACTIONS(2643), - [anon_sym_repeat] = ACTIONS(2643), - [anon_sym_when] = ACTIONS(2643), - [anon_sym_if] = ACTIONS(2643), - [anon_sym_unless] = ACTIONS(2643), - [anon_sym_always] = ACTIONS(2643), - [anon_sym_thereis] = ACTIONS(2643), - [anon_sym_never] = ACTIONS(2643), - [anon_sym_else] = ACTIONS(2643), - [anon_sym_finally] = ACTIONS(2643), - [anon_sym_return] = ACTIONS(2643), - [anon_sym_initially] = ACTIONS(2643), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(2652), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(2553), + [anon_sym_cl] = ACTIONS(2450), + [aux_sym_accumulation_verb_token1] = ACTIONS(2453), + [anon_sym_for] = ACTIONS(2453), + [anon_sym_and] = ACTIONS(2453), + [anon_sym_as] = ACTIONS(2453), + [anon_sym_with] = ACTIONS(2453), + [anon_sym_do] = ACTIONS(2453), + [anon_sym_while] = ACTIONS(2453), + [anon_sym_until] = ACTIONS(2453), + [anon_sym_repeat] = ACTIONS(2453), + [anon_sym_when] = ACTIONS(2453), + [anon_sym_if] = ACTIONS(2453), + [anon_sym_unless] = ACTIONS(2453), + [anon_sym_always] = ACTIONS(2453), + [anon_sym_thereis] = ACTIONS(2453), + [anon_sym_never] = ACTIONS(2453), + [anon_sym_else] = ACTIONS(2453), + [anon_sym_finally] = ACTIONS(2453), + [anon_sym_return] = ACTIONS(2453), + [anon_sym_initially] = ACTIONS(2453), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(2555), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [131] = { - [sym__gap] = STATE(252), - [sym_dis_expr] = STATE(252), - [sym__form] = STATE(2300), - [sym_num_lit] = STATE(2300), - [sym_kwd_lit] = STATE(2300), - [sym_str_lit] = STATE(2300), - [sym_char_lit] = STATE(2300), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2300), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2300), - [sym_set_lit] = STATE(2300), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2300), - [sym_splicing_read_cond_lit] = STATE(2300), - [sym_var_quoting_lit] = STATE(2300), - [sym_quoting_lit] = STATE(2300), - [sym_syn_quoting_lit] = STATE(2300), - [sym_unquote_splicing_lit] = STATE(2300), - [sym_unquoting_lit] = STATE(2300), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2300), - [sym_package_lit] = STATE(2300), - [sym_include_reader_macro] = STATE(2300), - [sym_complex_num_lit] = STATE(2300), - [aux_sym_dis_expr_repeat1] = STATE(252), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(2654), - [sym_comment] = ACTIONS(2654), - [anon_sym_POUND_] = ACTIONS(1323), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(2657), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(1328), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(2657), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1331), - [anon_sym_POUND_CARET] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1337), - [anon_sym_RPAREN] = ACTIONS(1340), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(179), + [sym_dis_expr] = STATE(179), + [sym__form] = STATE(2549), + [sym_num_lit] = STATE(2549), + [sym_kwd_lit] = STATE(2549), + [sym_str_lit] = STATE(2549), + [sym_char_lit] = STATE(2549), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2549), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2549), + [sym_set_lit] = STATE(2549), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2549), + [sym_splicing_read_cond_lit] = STATE(2549), + [sym_var_quoting_lit] = STATE(2549), + [sym_quoting_lit] = STATE(2549), + [sym_syn_quoting_lit] = STATE(2549), + [sym_unquote_splicing_lit] = STATE(2549), + [sym_unquoting_lit] = STATE(2549), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2549), + [sym_package_lit] = STATE(2549), + [sym_include_reader_macro] = STATE(2549), + [sym_complex_num_lit] = STATE(2549), + [aux_sym_dis_expr_repeat1] = STATE(179), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(2557), + [sym_comment] = ACTIONS(2557), + [anon_sym_POUND_] = ACTIONS(2431), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(2560), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(2560), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(2439), + [anon_sym_POUND_CARET] = ACTIONS(2442), + [anon_sym_LPAREN] = ACTIONS(2445), + [anon_sym_RPAREN] = ACTIONS(2448), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2657), - [anon_sym_cl] = ACTIONS(1342), - [aux_sym_accumulation_verb_token1] = ACTIONS(1345), - [anon_sym_for] = ACTIONS(1345), - [anon_sym_and] = ACTIONS(1345), - [anon_sym_as] = ACTIONS(1345), - [anon_sym_with] = ACTIONS(1345), - [anon_sym_do] = ACTIONS(1345), - [anon_sym_while] = ACTIONS(1345), - [anon_sym_until] = ACTIONS(1345), - [anon_sym_repeat] = ACTIONS(1345), - [anon_sym_when] = ACTIONS(1345), - [anon_sym_if] = ACTIONS(1345), - [anon_sym_unless] = ACTIONS(1345), - [anon_sym_always] = ACTIONS(1345), - [anon_sym_thereis] = ACTIONS(1345), - [anon_sym_never] = ACTIONS(1345), - [anon_sym_else] = ACTIONS(1345), - [anon_sym_finally] = ACTIONS(1345), - [anon_sym_return] = ACTIONS(1345), - [anon_sym_initially] = ACTIONS(1345), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(2659), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(2560), + [anon_sym_cl] = ACTIONS(2450), + [aux_sym_accumulation_verb_token1] = ACTIONS(2453), + [anon_sym_for] = ACTIONS(2453), + [anon_sym_and] = ACTIONS(2453), + [anon_sym_as] = ACTIONS(2453), + [anon_sym_with] = ACTIONS(2453), + [anon_sym_do] = ACTIONS(2453), + [anon_sym_while] = ACTIONS(2453), + [anon_sym_until] = ACTIONS(2453), + [anon_sym_repeat] = ACTIONS(2453), + [anon_sym_when] = ACTIONS(2453), + [anon_sym_if] = ACTIONS(2453), + [anon_sym_unless] = ACTIONS(2453), + [anon_sym_always] = ACTIONS(2453), + [anon_sym_thereis] = ACTIONS(2453), + [anon_sym_never] = ACTIONS(2453), + [anon_sym_else] = ACTIONS(2453), + [anon_sym_finally] = ACTIONS(2453), + [anon_sym_return] = ACTIONS(2453), + [anon_sym_initially] = ACTIONS(2453), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(2562), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [132] = { - [sym__gap] = STATE(45), - [sym_dis_expr] = STATE(45), - [sym__form] = STATE(2155), - [sym_num_lit] = STATE(2155), - [sym_kwd_lit] = STATE(2155), - [sym_str_lit] = STATE(2155), - [sym_char_lit] = STATE(2155), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2155), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2155), - [sym_set_lit] = STATE(2155), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2155), - [sym_splicing_read_cond_lit] = STATE(2155), - [sym_var_quoting_lit] = STATE(2155), - [sym_quoting_lit] = STATE(2155), - [sym_syn_quoting_lit] = STATE(2155), - [sym_unquote_splicing_lit] = STATE(2155), - [sym_unquoting_lit] = STATE(2155), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2155), - [sym_package_lit] = STATE(2155), - [sym_include_reader_macro] = STATE(2155), - [sym_complex_num_lit] = STATE(2155), - [aux_sym_dis_expr_repeat1] = STATE(45), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(2661), - [sym_comment] = ACTIONS(2661), - [anon_sym_POUND_] = ACTIONS(2437), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(2664), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(2442), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(2664), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2445), - [anon_sym_POUND_CARET] = ACTIONS(2448), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_RPAREN] = ACTIONS(2454), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(180), + [sym_dis_expr] = STATE(180), + [sym__form] = STATE(2325), + [sym_num_lit] = STATE(2325), + [sym_kwd_lit] = STATE(2325), + [sym_str_lit] = STATE(2325), + [sym_char_lit] = STATE(2325), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2325), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2325), + [sym_set_lit] = STATE(2325), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2325), + [sym_splicing_read_cond_lit] = STATE(2325), + [sym_var_quoting_lit] = STATE(2325), + [sym_quoting_lit] = STATE(2325), + [sym_syn_quoting_lit] = STATE(2325), + [sym_unquote_splicing_lit] = STATE(2325), + [sym_unquoting_lit] = STATE(2325), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2325), + [sym_package_lit] = STATE(2325), + [sym_include_reader_macro] = STATE(2325), + [sym_complex_num_lit] = STATE(2325), + [aux_sym_dis_expr_repeat1] = STATE(180), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(2564), + [sym_comment] = ACTIONS(2564), + [anon_sym_POUND_] = ACTIONS(2467), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(2567), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(2472), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(2567), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(2475), + [anon_sym_POUND_CARET] = ACTIONS(2478), + [anon_sym_LPAREN] = ACTIONS(2481), + [anon_sym_RPAREN] = ACTIONS(2484), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2664), - [anon_sym_cl] = ACTIONS(2456), - [aux_sym_accumulation_verb_token1] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_and] = ACTIONS(2459), - [anon_sym_as] = ACTIONS(2459), - [anon_sym_with] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_until] = ACTIONS(2459), - [anon_sym_repeat] = ACTIONS(2459), - [anon_sym_when] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_unless] = ACTIONS(2459), - [anon_sym_always] = ACTIONS(2459), - [anon_sym_thereis] = ACTIONS(2459), - [anon_sym_never] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_finally] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_initially] = ACTIONS(2459), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(2666), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(2567), + [anon_sym_cl] = ACTIONS(2486), + [aux_sym_accumulation_verb_token1] = ACTIONS(2489), + [anon_sym_for] = ACTIONS(2489), + [anon_sym_and] = ACTIONS(2489), + [anon_sym_as] = ACTIONS(2489), + [anon_sym_with] = ACTIONS(2489), + [anon_sym_do] = ACTIONS(2489), + [anon_sym_while] = ACTIONS(2489), + [anon_sym_until] = ACTIONS(2489), + [anon_sym_repeat] = ACTIONS(2489), + [anon_sym_when] = ACTIONS(2489), + [anon_sym_if] = ACTIONS(2489), + [anon_sym_unless] = ACTIONS(2489), + [anon_sym_always] = ACTIONS(2489), + [anon_sym_thereis] = ACTIONS(2489), + [anon_sym_never] = ACTIONS(2489), + [anon_sym_else] = ACTIONS(2489), + [anon_sym_finally] = ACTIONS(2489), + [anon_sym_return] = ACTIONS(2489), + [anon_sym_initially] = ACTIONS(2489), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(2569), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [133] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2158), - [sym_num_lit] = STATE(2158), - [sym_kwd_lit] = STATE(2158), - [sym_str_lit] = STATE(2158), - [sym_char_lit] = STATE(2158), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2158), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2158), - [sym_set_lit] = STATE(2158), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2158), - [sym_splicing_read_cond_lit] = STATE(2158), - [sym_var_quoting_lit] = STATE(2158), - [sym_quoting_lit] = STATE(2158), - [sym_syn_quoting_lit] = STATE(2158), - [sym_unquote_splicing_lit] = STATE(2158), - [sym_unquoting_lit] = STATE(2158), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2158), - [sym_package_lit] = STATE(2158), - [sym_include_reader_macro] = STATE(2158), - [sym_complex_num_lit] = STATE(2158), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(2434), - [sym_comment] = ACTIONS(2434), - [anon_sym_POUND_] = ACTIONS(2437), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(2668), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(2442), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(2668), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2445), - [anon_sym_POUND_CARET] = ACTIONS(2448), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_RPAREN] = ACTIONS(2454), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2049), + [sym_num_lit] = STATE(2049), + [sym_kwd_lit] = STATE(2049), + [sym_str_lit] = STATE(2049), + [sym_char_lit] = STATE(2049), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2049), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2049), + [sym_set_lit] = STATE(2049), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2049), + [sym_splicing_read_cond_lit] = STATE(2049), + [sym_var_quoting_lit] = STATE(2049), + [sym_quoting_lit] = STATE(2049), + [sym_syn_quoting_lit] = STATE(2049), + [sym_unquote_splicing_lit] = STATE(2049), + [sym_unquoting_lit] = STATE(2049), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2049), + [sym_package_lit] = STATE(2049), + [sym_include_reader_macro] = STATE(2049), + [sym_complex_num_lit] = STATE(2049), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(2493), + [sym_comment] = ACTIONS(2493), + [anon_sym_POUND_] = ACTIONS(2467), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(2571), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(2472), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(2571), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(2475), + [anon_sym_POUND_CARET] = ACTIONS(2478), + [anon_sym_LPAREN] = ACTIONS(2481), + [anon_sym_RPAREN] = ACTIONS(2484), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2668), - [anon_sym_cl] = ACTIONS(2456), - [aux_sym_accumulation_verb_token1] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_and] = ACTIONS(2459), - [anon_sym_as] = ACTIONS(2459), - [anon_sym_with] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_until] = ACTIONS(2459), - [anon_sym_repeat] = ACTIONS(2459), - [anon_sym_when] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_unless] = ACTIONS(2459), - [anon_sym_always] = ACTIONS(2459), - [anon_sym_thereis] = ACTIONS(2459), - [anon_sym_never] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_finally] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_initially] = ACTIONS(2459), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(2670), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(2571), + [anon_sym_cl] = ACTIONS(2486), + [aux_sym_accumulation_verb_token1] = ACTIONS(2489), + [anon_sym_for] = ACTIONS(2489), + [anon_sym_and] = ACTIONS(2489), + [anon_sym_as] = ACTIONS(2489), + [anon_sym_with] = ACTIONS(2489), + [anon_sym_do] = ACTIONS(2489), + [anon_sym_while] = ACTIONS(2489), + [anon_sym_until] = ACTIONS(2489), + [anon_sym_repeat] = ACTIONS(2489), + [anon_sym_when] = ACTIONS(2489), + [anon_sym_if] = ACTIONS(2489), + [anon_sym_unless] = ACTIONS(2489), + [anon_sym_always] = ACTIONS(2489), + [anon_sym_thereis] = ACTIONS(2489), + [anon_sym_never] = ACTIONS(2489), + [anon_sym_else] = ACTIONS(2489), + [anon_sym_finally] = ACTIONS(2489), + [anon_sym_return] = ACTIONS(2489), + [anon_sym_initially] = ACTIONS(2489), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(2573), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [134] = { - [sym__gap] = STATE(46), - [sym_dis_expr] = STATE(46), - [sym__form] = STATE(2175), - [sym_num_lit] = STATE(2175), - [sym_kwd_lit] = STATE(2175), - [sym_str_lit] = STATE(2175), - [sym_char_lit] = STATE(2175), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2175), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2175), - [sym_set_lit] = STATE(2175), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2175), - [sym_splicing_read_cond_lit] = STATE(2175), - [sym_var_quoting_lit] = STATE(2175), - [sym_quoting_lit] = STATE(2175), - [sym_syn_quoting_lit] = STATE(2175), - [sym_unquote_splicing_lit] = STATE(2175), - [sym_unquoting_lit] = STATE(2175), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2175), - [sym_package_lit] = STATE(2175), - [sym_include_reader_macro] = STATE(2175), - [sym_complex_num_lit] = STATE(2175), - [aux_sym_dis_expr_repeat1] = STATE(46), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(2672), - [sym_comment] = ACTIONS(2672), - [anon_sym_POUND_] = ACTIONS(2675), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(2678), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(2680), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(2678), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2683), - [anon_sym_POUND_CARET] = ACTIONS(2686), - [anon_sym_LPAREN] = ACTIONS(2689), - [anon_sym_RPAREN] = ACTIONS(2692), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(183), + [sym_dis_expr] = STATE(183), + [sym__form] = STATE(2051), + [sym_num_lit] = STATE(2051), + [sym_kwd_lit] = STATE(2051), + [sym_str_lit] = STATE(2051), + [sym_char_lit] = STATE(2051), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2051), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2051), + [sym_set_lit] = STATE(2051), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2051), + [sym_splicing_read_cond_lit] = STATE(2051), + [sym_var_quoting_lit] = STATE(2051), + [sym_quoting_lit] = STATE(2051), + [sym_syn_quoting_lit] = STATE(2051), + [sym_unquote_splicing_lit] = STATE(2051), + [sym_unquoting_lit] = STATE(2051), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2051), + [sym_package_lit] = STATE(2051), + [sym_include_reader_macro] = STATE(2051), + [sym_complex_num_lit] = STATE(2051), + [aux_sym_dis_expr_repeat1] = STATE(183), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(2575), + [sym_comment] = ACTIONS(2575), + [anon_sym_POUND_] = ACTIONS(2467), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(2578), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(2472), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(2578), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(2475), + [anon_sym_POUND_CARET] = ACTIONS(2478), + [anon_sym_LPAREN] = ACTIONS(2481), + [anon_sym_RPAREN] = ACTIONS(2484), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2678), - [anon_sym_cl] = ACTIONS(2694), - [aux_sym_accumulation_verb_token1] = ACTIONS(2697), - [anon_sym_for] = ACTIONS(2697), - [anon_sym_and] = ACTIONS(2697), - [anon_sym_as] = ACTIONS(2697), - [anon_sym_with] = ACTIONS(2697), - [anon_sym_do] = ACTIONS(2697), - [anon_sym_while] = ACTIONS(2697), - [anon_sym_until] = ACTIONS(2697), - [anon_sym_repeat] = ACTIONS(2697), - [anon_sym_when] = ACTIONS(2697), - [anon_sym_if] = ACTIONS(2697), - [anon_sym_unless] = ACTIONS(2697), - [anon_sym_always] = ACTIONS(2697), - [anon_sym_thereis] = ACTIONS(2697), - [anon_sym_never] = ACTIONS(2697), - [anon_sym_else] = ACTIONS(2697), - [anon_sym_finally] = ACTIONS(2697), - [anon_sym_return] = ACTIONS(2697), - [anon_sym_initially] = ACTIONS(2697), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(2699), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(2578), + [anon_sym_cl] = ACTIONS(2486), + [aux_sym_accumulation_verb_token1] = ACTIONS(2489), + [anon_sym_for] = ACTIONS(2489), + [anon_sym_and] = ACTIONS(2489), + [anon_sym_as] = ACTIONS(2489), + [anon_sym_with] = ACTIONS(2489), + [anon_sym_do] = ACTIONS(2489), + [anon_sym_while] = ACTIONS(2489), + [anon_sym_until] = ACTIONS(2489), + [anon_sym_repeat] = ACTIONS(2489), + [anon_sym_when] = ACTIONS(2489), + [anon_sym_if] = ACTIONS(2489), + [anon_sym_unless] = ACTIONS(2489), + [anon_sym_always] = ACTIONS(2489), + [anon_sym_thereis] = ACTIONS(2489), + [anon_sym_never] = ACTIONS(2489), + [anon_sym_else] = ACTIONS(2489), + [anon_sym_finally] = ACTIONS(2489), + [anon_sym_return] = ACTIONS(2489), + [anon_sym_initially] = ACTIONS(2489), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(2580), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [135] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2298), - [sym_num_lit] = STATE(2298), - [sym_kwd_lit] = STATE(2298), - [sym_str_lit] = STATE(2298), - [sym_char_lit] = STATE(2298), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2298), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2298), - [sym_set_lit] = STATE(2298), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2298), - [sym_splicing_read_cond_lit] = STATE(2298), - [sym_var_quoting_lit] = STATE(2298), - [sym_quoting_lit] = STATE(2298), - [sym_syn_quoting_lit] = STATE(2298), - [sym_unquote_splicing_lit] = STATE(2298), - [sym_unquoting_lit] = STATE(2298), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2298), - [sym_package_lit] = STATE(2298), - [sym_include_reader_macro] = STATE(2298), - [sym_complex_num_lit] = STATE(2298), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(2701), - [sym_comment] = ACTIONS(2701), - [anon_sym_POUND_] = ACTIONS(1323), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(2704), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(1328), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(2704), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1331), - [anon_sym_POUND_CARET] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1337), - [anon_sym_RPAREN] = ACTIONS(1340), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(184), + [sym_dis_expr] = STATE(184), + [sym__form] = STATE(2053), + [sym_num_lit] = STATE(2053), + [sym_kwd_lit] = STATE(2053), + [sym_str_lit] = STATE(2053), + [sym_char_lit] = STATE(2053), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2053), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2053), + [sym_set_lit] = STATE(2053), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2053), + [sym_splicing_read_cond_lit] = STATE(2053), + [sym_var_quoting_lit] = STATE(2053), + [sym_quoting_lit] = STATE(2053), + [sym_syn_quoting_lit] = STATE(2053), + [sym_unquote_splicing_lit] = STATE(2053), + [sym_unquoting_lit] = STATE(2053), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2053), + [sym_package_lit] = STATE(2053), + [sym_include_reader_macro] = STATE(2053), + [sym_complex_num_lit] = STATE(2053), + [aux_sym_dis_expr_repeat1] = STATE(184), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(2582), + [sym_comment] = ACTIONS(2582), + [anon_sym_POUND_] = ACTIONS(2431), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(2585), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(2585), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(2439), + [anon_sym_POUND_CARET] = ACTIONS(2442), + [anon_sym_LPAREN] = ACTIONS(2445), + [anon_sym_RPAREN] = ACTIONS(2448), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2704), - [anon_sym_cl] = ACTIONS(1342), - [aux_sym_accumulation_verb_token1] = ACTIONS(1345), - [anon_sym_for] = ACTIONS(1345), - [anon_sym_and] = ACTIONS(1345), - [anon_sym_as] = ACTIONS(1345), - [anon_sym_with] = ACTIONS(1345), - [anon_sym_do] = ACTIONS(1345), - [anon_sym_while] = ACTIONS(1345), - [anon_sym_until] = ACTIONS(1345), - [anon_sym_repeat] = ACTIONS(1345), - [anon_sym_when] = ACTIONS(1345), - [anon_sym_if] = ACTIONS(1345), - [anon_sym_unless] = ACTIONS(1345), - [anon_sym_always] = ACTIONS(1345), - [anon_sym_thereis] = ACTIONS(1345), - [anon_sym_never] = ACTIONS(1345), - [anon_sym_else] = ACTIONS(1345), - [anon_sym_finally] = ACTIONS(1345), - [anon_sym_return] = ACTIONS(1345), - [anon_sym_initially] = ACTIONS(1345), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(2706), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(2585), + [anon_sym_cl] = ACTIONS(2450), + [aux_sym_accumulation_verb_token1] = ACTIONS(2453), + [anon_sym_for] = ACTIONS(2453), + [anon_sym_and] = ACTIONS(2453), + [anon_sym_as] = ACTIONS(2453), + [anon_sym_with] = ACTIONS(2453), + [anon_sym_do] = ACTIONS(2453), + [anon_sym_while] = ACTIONS(2453), + [anon_sym_until] = ACTIONS(2453), + [anon_sym_repeat] = ACTIONS(2453), + [anon_sym_when] = ACTIONS(2453), + [anon_sym_if] = ACTIONS(2453), + [anon_sym_unless] = ACTIONS(2453), + [anon_sym_always] = ACTIONS(2453), + [anon_sym_thereis] = ACTIONS(2453), + [anon_sym_never] = ACTIONS(2453), + [anon_sym_else] = ACTIONS(2453), + [anon_sym_finally] = ACTIONS(2453), + [anon_sym_return] = ACTIONS(2453), + [anon_sym_initially] = ACTIONS(2453), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(2587), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [136] = { - [sym__gap] = STATE(256), - [sym_dis_expr] = STATE(256), - [sym__form] = STATE(2296), - [sym_num_lit] = STATE(2296), - [sym_kwd_lit] = STATE(2296), - [sym_str_lit] = STATE(2296), - [sym_char_lit] = STATE(2296), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2296), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2296), - [sym_set_lit] = STATE(2296), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2296), - [sym_splicing_read_cond_lit] = STATE(2296), - [sym_var_quoting_lit] = STATE(2296), - [sym_quoting_lit] = STATE(2296), - [sym_syn_quoting_lit] = STATE(2296), - [sym_unquote_splicing_lit] = STATE(2296), - [sym_unquoting_lit] = STATE(2296), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2296), - [sym_package_lit] = STATE(2296), - [sym_include_reader_macro] = STATE(2296), - [sym_complex_num_lit] = STATE(2296), - [aux_sym_dis_expr_repeat1] = STATE(256), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(2708), - [sym_comment] = ACTIONS(2708), - [anon_sym_POUND_] = ACTIONS(1323), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(2711), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(1328), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(2711), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1331), - [anon_sym_POUND_CARET] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1337), - [anon_sym_RPAREN] = ACTIONS(1340), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2055), + [sym_num_lit] = STATE(2055), + [sym_kwd_lit] = STATE(2055), + [sym_str_lit] = STATE(2055), + [sym_char_lit] = STATE(2055), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2055), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2055), + [sym_set_lit] = STATE(2055), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2055), + [sym_splicing_read_cond_lit] = STATE(2055), + [sym_var_quoting_lit] = STATE(2055), + [sym_quoting_lit] = STATE(2055), + [sym_syn_quoting_lit] = STATE(2055), + [sym_unquote_splicing_lit] = STATE(2055), + [sym_unquoting_lit] = STATE(2055), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2055), + [sym_package_lit] = STATE(2055), + [sym_include_reader_macro] = STATE(2055), + [sym_complex_num_lit] = STATE(2055), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(2428), + [sym_comment] = ACTIONS(2428), + [anon_sym_POUND_] = ACTIONS(2431), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(2589), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(2589), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(2439), + [anon_sym_POUND_CARET] = ACTIONS(2442), + [anon_sym_LPAREN] = ACTIONS(2445), + [anon_sym_RPAREN] = ACTIONS(2448), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2711), - [anon_sym_cl] = ACTIONS(1342), - [aux_sym_accumulation_verb_token1] = ACTIONS(1345), - [anon_sym_for] = ACTIONS(1345), - [anon_sym_and] = ACTIONS(1345), - [anon_sym_as] = ACTIONS(1345), - [anon_sym_with] = ACTIONS(1345), - [anon_sym_do] = ACTIONS(1345), - [anon_sym_while] = ACTIONS(1345), - [anon_sym_until] = ACTIONS(1345), - [anon_sym_repeat] = ACTIONS(1345), - [anon_sym_when] = ACTIONS(1345), - [anon_sym_if] = ACTIONS(1345), - [anon_sym_unless] = ACTIONS(1345), - [anon_sym_always] = ACTIONS(1345), - [anon_sym_thereis] = ACTIONS(1345), - [anon_sym_never] = ACTIONS(1345), - [anon_sym_else] = ACTIONS(1345), - [anon_sym_finally] = ACTIONS(1345), - [anon_sym_return] = ACTIONS(1345), - [anon_sym_initially] = ACTIONS(1345), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(2713), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(2589), + [anon_sym_cl] = ACTIONS(2450), + [aux_sym_accumulation_verb_token1] = ACTIONS(2453), + [anon_sym_for] = ACTIONS(2453), + [anon_sym_and] = ACTIONS(2453), + [anon_sym_as] = ACTIONS(2453), + [anon_sym_with] = ACTIONS(2453), + [anon_sym_do] = ACTIONS(2453), + [anon_sym_while] = ACTIONS(2453), + [anon_sym_until] = ACTIONS(2453), + [anon_sym_repeat] = ACTIONS(2453), + [anon_sym_when] = ACTIONS(2453), + [anon_sym_if] = ACTIONS(2453), + [anon_sym_unless] = ACTIONS(2453), + [anon_sym_always] = ACTIONS(2453), + [anon_sym_thereis] = ACTIONS(2453), + [anon_sym_never] = ACTIONS(2453), + [anon_sym_else] = ACTIONS(2453), + [anon_sym_finally] = ACTIONS(2453), + [anon_sym_return] = ACTIONS(2453), + [anon_sym_initially] = ACTIONS(2453), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(2591), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [137] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2250), - [sym_num_lit] = STATE(2250), - [sym_kwd_lit] = STATE(2250), - [sym_str_lit] = STATE(2250), - [sym_char_lit] = STATE(2250), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2250), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2250), - [sym_set_lit] = STATE(2250), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2250), - [sym_splicing_read_cond_lit] = STATE(2250), - [sym_var_quoting_lit] = STATE(2250), - [sym_quoting_lit] = STATE(2250), - [sym_syn_quoting_lit] = STATE(2250), - [sym_unquote_splicing_lit] = STATE(2250), - [sym_unquoting_lit] = STATE(2250), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2250), - [sym_package_lit] = STATE(2250), - [sym_include_reader_macro] = STATE(2250), - [sym_complex_num_lit] = STATE(2250), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(2715), - [sym_comment] = ACTIONS(2715), - [anon_sym_POUND_] = ACTIONS(2675), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(2718), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(2680), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(2718), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2683), - [anon_sym_POUND_CARET] = ACTIONS(2686), - [anon_sym_LPAREN] = ACTIONS(2689), - [anon_sym_RPAREN] = ACTIONS(2692), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(187), + [sym_dis_expr] = STATE(187), + [sym__form] = STATE(2056), + [sym_num_lit] = STATE(2056), + [sym_kwd_lit] = STATE(2056), + [sym_str_lit] = STATE(2056), + [sym_char_lit] = STATE(2056), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2056), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2056), + [sym_set_lit] = STATE(2056), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2056), + [sym_splicing_read_cond_lit] = STATE(2056), + [sym_var_quoting_lit] = STATE(2056), + [sym_quoting_lit] = STATE(2056), + [sym_syn_quoting_lit] = STATE(2056), + [sym_unquote_splicing_lit] = STATE(2056), + [sym_unquoting_lit] = STATE(2056), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2056), + [sym_package_lit] = STATE(2056), + [sym_include_reader_macro] = STATE(2056), + [sym_complex_num_lit] = STATE(2056), + [aux_sym_dis_expr_repeat1] = STATE(187), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(2593), + [sym_comment] = ACTIONS(2593), + [anon_sym_POUND_] = ACTIONS(2521), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(2596), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(2526), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(2596), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(2529), + [anon_sym_POUND_CARET] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2535), + [anon_sym_RPAREN] = ACTIONS(2538), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2718), - [anon_sym_cl] = ACTIONS(2694), - [aux_sym_accumulation_verb_token1] = ACTIONS(2697), - [anon_sym_for] = ACTIONS(2697), - [anon_sym_and] = ACTIONS(2697), - [anon_sym_as] = ACTIONS(2697), - [anon_sym_with] = ACTIONS(2697), - [anon_sym_do] = ACTIONS(2697), - [anon_sym_while] = ACTIONS(2697), - [anon_sym_until] = ACTIONS(2697), - [anon_sym_repeat] = ACTIONS(2697), - [anon_sym_when] = ACTIONS(2697), - [anon_sym_if] = ACTIONS(2697), - [anon_sym_unless] = ACTIONS(2697), - [anon_sym_always] = ACTIONS(2697), - [anon_sym_thereis] = ACTIONS(2697), - [anon_sym_never] = ACTIONS(2697), - [anon_sym_else] = ACTIONS(2697), - [anon_sym_finally] = ACTIONS(2697), - [anon_sym_return] = ACTIONS(2697), - [anon_sym_initially] = ACTIONS(2697), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(2720), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(2596), + [anon_sym_cl] = ACTIONS(2540), + [aux_sym_accumulation_verb_token1] = ACTIONS(2543), + [anon_sym_for] = ACTIONS(2543), + [anon_sym_and] = ACTIONS(2543), + [anon_sym_as] = ACTIONS(2543), + [anon_sym_with] = ACTIONS(2543), + [anon_sym_do] = ACTIONS(2543), + [anon_sym_while] = ACTIONS(2543), + [anon_sym_until] = ACTIONS(2543), + [anon_sym_repeat] = ACTIONS(2543), + [anon_sym_when] = ACTIONS(2543), + [anon_sym_if] = ACTIONS(2543), + [anon_sym_unless] = ACTIONS(2543), + [anon_sym_always] = ACTIONS(2543), + [anon_sym_thereis] = ACTIONS(2543), + [anon_sym_never] = ACTIONS(2543), + [anon_sym_else] = ACTIONS(2543), + [anon_sym_finally] = ACTIONS(2543), + [anon_sym_return] = ACTIONS(2543), + [anon_sym_initially] = ACTIONS(2543), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(2598), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [138] = { - [sym__gap] = STATE(916), - [sym_dis_expr] = STATE(916), - [sym__form] = STATE(229), - [sym_num_lit] = STATE(229), - [sym_kwd_lit] = STATE(229), - [sym_str_lit] = STATE(229), - [sym_char_lit] = STATE(229), - [sym_sym_lit] = STATE(1484), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(229), - [sym__bare_list_lit] = STATE(1483), - [sym_vec_lit] = STATE(229), - [sym_set_lit] = STATE(229), - [sym__bare_set_lit] = STATE(1482), - [sym_read_cond_lit] = STATE(229), - [sym_splicing_read_cond_lit] = STATE(229), - [sym_var_quoting_lit] = STATE(229), - [sym_quoting_lit] = STATE(229), - [sym_syn_quoting_lit] = STATE(229), - [sym_unquote_splicing_lit] = STATE(229), - [sym_unquoting_lit] = STATE(229), - [sym_defun] = STATE(1483), - [sym_loop_macro] = STATE(1483), - [sym_path_lit] = STATE(229), - [sym_package_lit] = STATE(229), - [sym_include_reader_macro] = STATE(229), - [sym_complex_num_lit] = STATE(229), - [aux_sym_dis_expr_repeat1] = STATE(916), - [aux_sym_list_lit_repeat1] = STATE(2813), - [sym__ws] = ACTIONS(2722), - [sym_comment] = ACTIONS(2722), - [anon_sym_POUND_] = ACTIONS(2725), - [anon_sym_POUND] = ACTIONS(2728), - [anon_sym_DOT] = ACTIONS(2730), - [aux_sym_num_lit_token1] = ACTIONS(2732), - [anon_sym_COLON] = ACTIONS(2734), - [anon_sym_COLON_COLON] = ACTIONS(2737), - [anon_sym_DQUOTE] = ACTIONS(2739), - [sym_nil_lit] = ACTIONS(2730), - [aux_sym_sym_lit_token1] = ACTIONS(2741), - [anon_sym_CARET] = ACTIONS(2743), - [anon_sym_POUND_CARET] = ACTIONS(2746), - [anon_sym_LPAREN] = ACTIONS(2749), - [anon_sym_RPAREN] = ACTIONS(2752), - [anon_sym_POUND0A] = ACTIONS(2754), - [anon_sym_POUND0a] = ACTIONS(2754), - [anon_sym_POUND_QMARK] = ACTIONS(2756), - [anon_sym_POUND_QMARK_AT] = ACTIONS(2758), - [anon_sym_POUND_SQUOTE] = ACTIONS(2760), - [anon_sym_SQUOTE] = ACTIONS(2762), - [anon_sym_BQUOTE] = ACTIONS(2764), - [anon_sym_COMMA_AT] = ACTIONS(2766), - [anon_sym_COMMA] = ACTIONS(2768), + [sym__gap] = STATE(61), + [sym_dis_expr] = STATE(61), + [sym__form] = STATE(2536), + [sym_num_lit] = STATE(2536), + [sym_kwd_lit] = STATE(2536), + [sym_str_lit] = STATE(2536), + [sym_char_lit] = STATE(2536), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2536), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2536), + [sym_set_lit] = STATE(2536), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2536), + [sym_splicing_read_cond_lit] = STATE(2536), + [sym_var_quoting_lit] = STATE(2536), + [sym_quoting_lit] = STATE(2536), + [sym_syn_quoting_lit] = STATE(2536), + [sym_unquote_splicing_lit] = STATE(2536), + [sym_unquoting_lit] = STATE(2536), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2536), + [sym_package_lit] = STATE(2536), + [sym_include_reader_macro] = STATE(2536), + [sym_complex_num_lit] = STATE(2536), + [aux_sym_dis_expr_repeat1] = STATE(61), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(2600), + [sym_comment] = ACTIONS(2600), + [anon_sym_POUND_] = ACTIONS(2059), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(2603), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(2064), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(2603), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(2067), + [anon_sym_POUND_CARET] = ACTIONS(2070), + [anon_sym_LPAREN] = ACTIONS(2073), + [anon_sym_RPAREN] = ACTIONS(2076), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2730), - [anon_sym_cl] = ACTIONS(2770), - [aux_sym_accumulation_verb_token1] = ACTIONS(2773), - [anon_sym_for] = ACTIONS(2773), - [anon_sym_and] = ACTIONS(2773), - [anon_sym_as] = ACTIONS(2773), - [anon_sym_with] = ACTIONS(2773), - [anon_sym_do] = ACTIONS(2773), - [anon_sym_while] = ACTIONS(2773), - [anon_sym_until] = ACTIONS(2773), - [anon_sym_repeat] = ACTIONS(2773), - [anon_sym_when] = ACTIONS(2773), - [anon_sym_if] = ACTIONS(2773), - [anon_sym_unless] = ACTIONS(2773), - [anon_sym_always] = ACTIONS(2773), - [anon_sym_thereis] = ACTIONS(2773), - [anon_sym_never] = ACTIONS(2773), - [anon_sym_else] = ACTIONS(2773), - [anon_sym_finally] = ACTIONS(2773), - [anon_sym_return] = ACTIONS(2773), - [anon_sym_initially] = ACTIONS(2773), - [anon_sym_POUNDP] = ACTIONS(2775), - [anon_sym_POUNDp] = ACTIONS(2775), - [sym_self_referential_reader_macro] = ACTIONS(2777), - [anon_sym_POUND_PLUS] = ACTIONS(2779), - [anon_sym_POUND_DASH] = ACTIONS(2779), - [anon_sym_POUNDC] = ACTIONS(2781), - [anon_sym_POUNDc] = ACTIONS(2781), + [sym_fancy_literal] = ACTIONS(2603), + [anon_sym_cl] = ACTIONS(2078), + [aux_sym_accumulation_verb_token1] = ACTIONS(2081), + [anon_sym_for] = ACTIONS(2081), + [anon_sym_and] = ACTIONS(2081), + [anon_sym_as] = ACTIONS(2081), + [anon_sym_with] = ACTIONS(2081), + [anon_sym_do] = ACTIONS(2081), + [anon_sym_while] = ACTIONS(2081), + [anon_sym_until] = ACTIONS(2081), + [anon_sym_repeat] = ACTIONS(2081), + [anon_sym_when] = ACTIONS(2081), + [anon_sym_if] = ACTIONS(2081), + [anon_sym_unless] = ACTIONS(2081), + [anon_sym_always] = ACTIONS(2081), + [anon_sym_thereis] = ACTIONS(2081), + [anon_sym_never] = ACTIONS(2081), + [anon_sym_else] = ACTIONS(2081), + [anon_sym_finally] = ACTIONS(2081), + [anon_sym_return] = ACTIONS(2081), + [anon_sym_initially] = ACTIONS(2081), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(2605), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [139] = { - [sym__gap] = STATE(57), - [sym_dis_expr] = STATE(57), - [sym__form] = STATE(2286), - [sym_num_lit] = STATE(2286), - [sym_kwd_lit] = STATE(2286), - [sym_str_lit] = STATE(2286), - [sym_char_lit] = STATE(2286), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2286), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2286), - [sym_set_lit] = STATE(2286), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2286), - [sym_splicing_read_cond_lit] = STATE(2286), - [sym_var_quoting_lit] = STATE(2286), - [sym_quoting_lit] = STATE(2286), - [sym_syn_quoting_lit] = STATE(2286), - [sym_unquote_splicing_lit] = STATE(2286), - [sym_unquoting_lit] = STATE(2286), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2286), - [sym_package_lit] = STATE(2286), - [sym_include_reader_macro] = STATE(2286), - [sym_complex_num_lit] = STATE(2286), - [aux_sym_dis_expr_repeat1] = STATE(57), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(2783), - [sym_comment] = ACTIONS(2783), - [anon_sym_POUND_] = ACTIONS(2675), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(2786), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(2680), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(2786), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2683), - [anon_sym_POUND_CARET] = ACTIONS(2686), - [anon_sym_LPAREN] = ACTIONS(2689), - [anon_sym_RPAREN] = ACTIONS(2692), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(189), + [sym_dis_expr] = STATE(189), + [sym__form] = STATE(2059), + [sym_num_lit] = STATE(2059), + [sym_kwd_lit] = STATE(2059), + [sym_str_lit] = STATE(2059), + [sym_char_lit] = STATE(2059), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2059), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2059), + [sym_set_lit] = STATE(2059), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2059), + [sym_splicing_read_cond_lit] = STATE(2059), + [sym_var_quoting_lit] = STATE(2059), + [sym_quoting_lit] = STATE(2059), + [sym_syn_quoting_lit] = STATE(2059), + [sym_unquote_splicing_lit] = STATE(2059), + [sym_unquoting_lit] = STATE(2059), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2059), + [sym_package_lit] = STATE(2059), + [sym_include_reader_macro] = STATE(2059), + [sym_complex_num_lit] = STATE(2059), + [aux_sym_dis_expr_repeat1] = STATE(189), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(2607), + [sym_comment] = ACTIONS(2607), + [anon_sym_POUND_] = ACTIONS(2610), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(2613), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(2615), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(2613), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(2618), + [anon_sym_POUND_CARET] = ACTIONS(2621), + [anon_sym_LPAREN] = ACTIONS(2624), + [anon_sym_RPAREN] = ACTIONS(2627), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2786), - [anon_sym_cl] = ACTIONS(2694), - [aux_sym_accumulation_verb_token1] = ACTIONS(2697), - [anon_sym_for] = ACTIONS(2697), - [anon_sym_and] = ACTIONS(2697), - [anon_sym_as] = ACTIONS(2697), - [anon_sym_with] = ACTIONS(2697), - [anon_sym_do] = ACTIONS(2697), - [anon_sym_while] = ACTIONS(2697), - [anon_sym_until] = ACTIONS(2697), - [anon_sym_repeat] = ACTIONS(2697), - [anon_sym_when] = ACTIONS(2697), - [anon_sym_if] = ACTIONS(2697), - [anon_sym_unless] = ACTIONS(2697), - [anon_sym_always] = ACTIONS(2697), - [anon_sym_thereis] = ACTIONS(2697), - [anon_sym_never] = ACTIONS(2697), - [anon_sym_else] = ACTIONS(2697), - [anon_sym_finally] = ACTIONS(2697), - [anon_sym_return] = ACTIONS(2697), - [anon_sym_initially] = ACTIONS(2697), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(2788), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(2613), + [anon_sym_cl] = ACTIONS(2629), + [aux_sym_accumulation_verb_token1] = ACTIONS(2632), + [anon_sym_for] = ACTIONS(2632), + [anon_sym_and] = ACTIONS(2632), + [anon_sym_as] = ACTIONS(2632), + [anon_sym_with] = ACTIONS(2632), + [anon_sym_do] = ACTIONS(2632), + [anon_sym_while] = ACTIONS(2632), + [anon_sym_until] = ACTIONS(2632), + [anon_sym_repeat] = ACTIONS(2632), + [anon_sym_when] = ACTIONS(2632), + [anon_sym_if] = ACTIONS(2632), + [anon_sym_unless] = ACTIONS(2632), + [anon_sym_always] = ACTIONS(2632), + [anon_sym_thereis] = ACTIONS(2632), + [anon_sym_never] = ACTIONS(2632), + [anon_sym_else] = ACTIONS(2632), + [anon_sym_finally] = ACTIONS(2632), + [anon_sym_return] = ACTIONS(2632), + [anon_sym_initially] = ACTIONS(2632), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(2634), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [140] = { - [sym__gap] = STATE(257), - [sym_dis_expr] = STATE(257), - [sym__form] = STATE(2294), - [sym_num_lit] = STATE(2294), - [sym_kwd_lit] = STATE(2294), - [sym_str_lit] = STATE(2294), - [sym_char_lit] = STATE(2294), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2294), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2294), - [sym_set_lit] = STATE(2294), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2294), - [sym_splicing_read_cond_lit] = STATE(2294), - [sym_var_quoting_lit] = STATE(2294), - [sym_quoting_lit] = STATE(2294), - [sym_syn_quoting_lit] = STATE(2294), - [sym_unquote_splicing_lit] = STATE(2294), - [sym_unquoting_lit] = STATE(2294), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2294), - [sym_package_lit] = STATE(2294), - [sym_include_reader_macro] = STATE(2294), - [sym_complex_num_lit] = STATE(2294), - [aux_sym_dis_expr_repeat1] = STATE(257), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(2790), - [sym_comment] = ACTIONS(2790), - [anon_sym_POUND_] = ACTIONS(2621), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(2793), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(2626), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(2793), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2629), - [anon_sym_POUND_CARET] = ACTIONS(2632), - [anon_sym_LPAREN] = ACTIONS(2635), - [anon_sym_RPAREN] = ACTIONS(2638), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2061), + [sym_num_lit] = STATE(2061), + [sym_kwd_lit] = STATE(2061), + [sym_str_lit] = STATE(2061), + [sym_char_lit] = STATE(2061), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2061), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2061), + [sym_set_lit] = STATE(2061), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2061), + [sym_splicing_read_cond_lit] = STATE(2061), + [sym_var_quoting_lit] = STATE(2061), + [sym_quoting_lit] = STATE(2061), + [sym_syn_quoting_lit] = STATE(2061), + [sym_unquote_splicing_lit] = STATE(2061), + [sym_unquoting_lit] = STATE(2061), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2061), + [sym_package_lit] = STATE(2061), + [sym_include_reader_macro] = STATE(2061), + [sym_complex_num_lit] = STATE(2061), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(2636), + [sym_comment] = ACTIONS(2636), + [anon_sym_POUND_] = ACTIONS(2610), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(2639), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(2615), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(2639), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(2618), + [anon_sym_POUND_CARET] = ACTIONS(2621), + [anon_sym_LPAREN] = ACTIONS(2624), + [anon_sym_RPAREN] = ACTIONS(2627), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2793), - [anon_sym_cl] = ACTIONS(2640), - [aux_sym_accumulation_verb_token1] = ACTIONS(2643), - [anon_sym_for] = ACTIONS(2643), - [anon_sym_and] = ACTIONS(2643), - [anon_sym_as] = ACTIONS(2643), - [anon_sym_with] = ACTIONS(2643), - [anon_sym_do] = ACTIONS(2643), - [anon_sym_while] = ACTIONS(2643), - [anon_sym_until] = ACTIONS(2643), - [anon_sym_repeat] = ACTIONS(2643), - [anon_sym_when] = ACTIONS(2643), - [anon_sym_if] = ACTIONS(2643), - [anon_sym_unless] = ACTIONS(2643), - [anon_sym_always] = ACTIONS(2643), - [anon_sym_thereis] = ACTIONS(2643), - [anon_sym_never] = ACTIONS(2643), - [anon_sym_else] = ACTIONS(2643), - [anon_sym_finally] = ACTIONS(2643), - [anon_sym_return] = ACTIONS(2643), - [anon_sym_initially] = ACTIONS(2643), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(2795), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(2639), + [anon_sym_cl] = ACTIONS(2629), + [aux_sym_accumulation_verb_token1] = ACTIONS(2632), + [anon_sym_for] = ACTIONS(2632), + [anon_sym_and] = ACTIONS(2632), + [anon_sym_as] = ACTIONS(2632), + [anon_sym_with] = ACTIONS(2632), + [anon_sym_do] = ACTIONS(2632), + [anon_sym_while] = ACTIONS(2632), + [anon_sym_until] = ACTIONS(2632), + [anon_sym_repeat] = ACTIONS(2632), + [anon_sym_when] = ACTIONS(2632), + [anon_sym_if] = ACTIONS(2632), + [anon_sym_unless] = ACTIONS(2632), + [anon_sym_always] = ACTIONS(2632), + [anon_sym_thereis] = ACTIONS(2632), + [anon_sym_never] = ACTIONS(2632), + [anon_sym_else] = ACTIONS(2632), + [anon_sym_finally] = ACTIONS(2632), + [anon_sym_return] = ACTIONS(2632), + [anon_sym_initially] = ACTIONS(2632), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(2641), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [141] = { - [sym__gap] = STATE(58), - [sym_dis_expr] = STATE(58), - [sym__form] = STATE(2270), - [sym_num_lit] = STATE(2270), - [sym_kwd_lit] = STATE(2270), - [sym_str_lit] = STATE(2270), - [sym_char_lit] = STATE(2270), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2270), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2270), - [sym_set_lit] = STATE(2270), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2270), - [sym_splicing_read_cond_lit] = STATE(2270), - [sym_var_quoting_lit] = STATE(2270), - [sym_quoting_lit] = STATE(2270), - [sym_syn_quoting_lit] = STATE(2270), - [sym_unquote_splicing_lit] = STATE(2270), - [sym_unquoting_lit] = STATE(2270), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2270), - [sym_package_lit] = STATE(2270), - [sym_include_reader_macro] = STATE(2270), - [sym_complex_num_lit] = STATE(2270), - [aux_sym_dis_expr_repeat1] = STATE(58), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(2797), - [sym_comment] = ACTIONS(2797), - [anon_sym_POUND_] = ACTIONS(2800), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(2803), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(2805), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(2803), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2808), - [anon_sym_POUND_CARET] = ACTIONS(2811), - [anon_sym_LPAREN] = ACTIONS(2814), - [anon_sym_RPAREN] = ACTIONS(2817), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(192), + [sym_dis_expr] = STATE(192), + [sym__form] = STATE(2062), + [sym_num_lit] = STATE(2062), + [sym_kwd_lit] = STATE(2062), + [sym_str_lit] = STATE(2062), + [sym_char_lit] = STATE(2062), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2062), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2062), + [sym_set_lit] = STATE(2062), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2062), + [sym_splicing_read_cond_lit] = STATE(2062), + [sym_var_quoting_lit] = STATE(2062), + [sym_quoting_lit] = STATE(2062), + [sym_syn_quoting_lit] = STATE(2062), + [sym_unquote_splicing_lit] = STATE(2062), + [sym_unquoting_lit] = STATE(2062), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2062), + [sym_package_lit] = STATE(2062), + [sym_include_reader_macro] = STATE(2062), + [sym_complex_num_lit] = STATE(2062), + [aux_sym_dis_expr_repeat1] = STATE(192), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(2643), + [sym_comment] = ACTIONS(2643), + [anon_sym_POUND_] = ACTIONS(2646), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(2649), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(2651), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(2649), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(2654), + [anon_sym_POUND_CARET] = ACTIONS(2657), + [anon_sym_LPAREN] = ACTIONS(2660), + [anon_sym_RPAREN] = ACTIONS(2663), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2803), - [anon_sym_cl] = ACTIONS(2819), - [aux_sym_accumulation_verb_token1] = ACTIONS(2822), - [anon_sym_for] = ACTIONS(2822), - [anon_sym_and] = ACTIONS(2822), - [anon_sym_as] = ACTIONS(2822), - [anon_sym_with] = ACTIONS(2822), - [anon_sym_do] = ACTIONS(2822), - [anon_sym_while] = ACTIONS(2822), - [anon_sym_until] = ACTIONS(2822), - [anon_sym_repeat] = ACTIONS(2822), - [anon_sym_when] = ACTIONS(2822), - [anon_sym_if] = ACTIONS(2822), - [anon_sym_unless] = ACTIONS(2822), - [anon_sym_always] = ACTIONS(2822), - [anon_sym_thereis] = ACTIONS(2822), - [anon_sym_never] = ACTIONS(2822), - [anon_sym_else] = ACTIONS(2822), - [anon_sym_finally] = ACTIONS(2822), - [anon_sym_return] = ACTIONS(2822), - [anon_sym_initially] = ACTIONS(2822), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(2824), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(2649), + [anon_sym_cl] = ACTIONS(2665), + [aux_sym_accumulation_verb_token1] = ACTIONS(2668), + [anon_sym_for] = ACTIONS(2668), + [anon_sym_and] = ACTIONS(2668), + [anon_sym_as] = ACTIONS(2668), + [anon_sym_with] = ACTIONS(2668), + [anon_sym_do] = ACTIONS(2668), + [anon_sym_while] = ACTIONS(2668), + [anon_sym_until] = ACTIONS(2668), + [anon_sym_repeat] = ACTIONS(2668), + [anon_sym_when] = ACTIONS(2668), + [anon_sym_if] = ACTIONS(2668), + [anon_sym_unless] = ACTIONS(2668), + [anon_sym_always] = ACTIONS(2668), + [anon_sym_thereis] = ACTIONS(2668), + [anon_sym_never] = ACTIONS(2668), + [anon_sym_else] = ACTIONS(2668), + [anon_sym_finally] = ACTIONS(2668), + [anon_sym_return] = ACTIONS(2668), + [anon_sym_initially] = ACTIONS(2668), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(2670), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [142] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2275), - [sym_num_lit] = STATE(2275), - [sym_kwd_lit] = STATE(2275), - [sym_str_lit] = STATE(2275), - [sym_char_lit] = STATE(2275), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2275), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2275), - [sym_set_lit] = STATE(2275), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2275), - [sym_splicing_read_cond_lit] = STATE(2275), - [sym_var_quoting_lit] = STATE(2275), - [sym_quoting_lit] = STATE(2275), - [sym_syn_quoting_lit] = STATE(2275), - [sym_unquote_splicing_lit] = STATE(2275), - [sym_unquoting_lit] = STATE(2275), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2275), - [sym_package_lit] = STATE(2275), - [sym_include_reader_macro] = STATE(2275), - [sym_complex_num_lit] = STATE(2275), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(2826), - [sym_comment] = ACTIONS(2826), - [anon_sym_POUND_] = ACTIONS(2800), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(2829), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(2805), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(2829), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2808), - [anon_sym_POUND_CARET] = ACTIONS(2811), - [anon_sym_LPAREN] = ACTIONS(2814), - [anon_sym_RPAREN] = ACTIONS(2817), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(195), + [sym_dis_expr] = STATE(195), + [sym__form] = STATE(2066), + [sym_num_lit] = STATE(2066), + [sym_kwd_lit] = STATE(2066), + [sym_str_lit] = STATE(2066), + [sym_char_lit] = STATE(2066), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2066), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2066), + [sym_set_lit] = STATE(2066), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2066), + [sym_splicing_read_cond_lit] = STATE(2066), + [sym_var_quoting_lit] = STATE(2066), + [sym_quoting_lit] = STATE(2066), + [sym_syn_quoting_lit] = STATE(2066), + [sym_unquote_splicing_lit] = STATE(2066), + [sym_unquoting_lit] = STATE(2066), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2066), + [sym_package_lit] = STATE(2066), + [sym_include_reader_macro] = STATE(2066), + [sym_complex_num_lit] = STATE(2066), + [aux_sym_dis_expr_repeat1] = STATE(195), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(2672), + [sym_comment] = ACTIONS(2672), + [anon_sym_POUND_] = ACTIONS(2610), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(2675), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(2615), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(2675), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(2618), + [anon_sym_POUND_CARET] = ACTIONS(2621), + [anon_sym_LPAREN] = ACTIONS(2624), + [anon_sym_RPAREN] = ACTIONS(2627), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2829), - [anon_sym_cl] = ACTIONS(2819), - [aux_sym_accumulation_verb_token1] = ACTIONS(2822), - [anon_sym_for] = ACTIONS(2822), - [anon_sym_and] = ACTIONS(2822), - [anon_sym_as] = ACTIONS(2822), - [anon_sym_with] = ACTIONS(2822), - [anon_sym_do] = ACTIONS(2822), - [anon_sym_while] = ACTIONS(2822), - [anon_sym_until] = ACTIONS(2822), - [anon_sym_repeat] = ACTIONS(2822), - [anon_sym_when] = ACTIONS(2822), - [anon_sym_if] = ACTIONS(2822), - [anon_sym_unless] = ACTIONS(2822), - [anon_sym_always] = ACTIONS(2822), - [anon_sym_thereis] = ACTIONS(2822), - [anon_sym_never] = ACTIONS(2822), - [anon_sym_else] = ACTIONS(2822), - [anon_sym_finally] = ACTIONS(2822), - [anon_sym_return] = ACTIONS(2822), - [anon_sym_initially] = ACTIONS(2822), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(2831), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(2675), + [anon_sym_cl] = ACTIONS(2629), + [aux_sym_accumulation_verb_token1] = ACTIONS(2632), + [anon_sym_for] = ACTIONS(2632), + [anon_sym_and] = ACTIONS(2632), + [anon_sym_as] = ACTIONS(2632), + [anon_sym_with] = ACTIONS(2632), + [anon_sym_do] = ACTIONS(2632), + [anon_sym_while] = ACTIONS(2632), + [anon_sym_until] = ACTIONS(2632), + [anon_sym_repeat] = ACTIONS(2632), + [anon_sym_when] = ACTIONS(2632), + [anon_sym_if] = ACTIONS(2632), + [anon_sym_unless] = ACTIONS(2632), + [anon_sym_always] = ACTIONS(2632), + [anon_sym_thereis] = ACTIONS(2632), + [anon_sym_never] = ACTIONS(2632), + [anon_sym_else] = ACTIONS(2632), + [anon_sym_finally] = ACTIONS(2632), + [anon_sym_return] = ACTIONS(2632), + [anon_sym_initially] = ACTIONS(2632), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(2677), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [143] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2281), - [sym_num_lit] = STATE(2281), - [sym_kwd_lit] = STATE(2281), - [sym_str_lit] = STATE(2281), - [sym_char_lit] = STATE(2281), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2281), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2281), - [sym_set_lit] = STATE(2281), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2281), - [sym_splicing_read_cond_lit] = STATE(2281), - [sym_var_quoting_lit] = STATE(2281), - [sym_quoting_lit] = STATE(2281), - [sym_syn_quoting_lit] = STATE(2281), - [sym_unquote_splicing_lit] = STATE(2281), - [sym_unquoting_lit] = STATE(2281), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2281), - [sym_package_lit] = STATE(2281), - [sym_include_reader_macro] = STATE(2281), - [sym_complex_num_lit] = STATE(2281), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(2833), - [sym_comment] = ACTIONS(2833), - [anon_sym_POUND_] = ACTIONS(2836), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(2839), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(2841), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(2839), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2844), - [anon_sym_POUND_CARET] = ACTIONS(2847), - [anon_sym_LPAREN] = ACTIONS(2850), - [anon_sym_RPAREN] = ACTIONS(2853), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(65), + [sym_dis_expr] = STATE(65), + [sym__form] = STATE(2541), + [sym_num_lit] = STATE(2541), + [sym_kwd_lit] = STATE(2541), + [sym_str_lit] = STATE(2541), + [sym_char_lit] = STATE(2541), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2541), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2541), + [sym_set_lit] = STATE(2541), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2541), + [sym_splicing_read_cond_lit] = STATE(2541), + [sym_var_quoting_lit] = STATE(2541), + [sym_quoting_lit] = STATE(2541), + [sym_syn_quoting_lit] = STATE(2541), + [sym_unquote_splicing_lit] = STATE(2541), + [sym_unquoting_lit] = STATE(2541), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2541), + [sym_package_lit] = STATE(2541), + [sym_include_reader_macro] = STATE(2541), + [sym_complex_num_lit] = STATE(2541), + [aux_sym_dis_expr_repeat1] = STATE(65), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(2679), + [sym_comment] = ACTIONS(2679), + [anon_sym_POUND_] = ACTIONS(1547), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(2682), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(1552), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(2682), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(430), + [anon_sym_POUND_CARET] = ACTIONS(433), + [anon_sym_LPAREN] = ACTIONS(1555), + [anon_sym_RPAREN] = ACTIONS(439), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2839), - [anon_sym_cl] = ACTIONS(2855), - [aux_sym_accumulation_verb_token1] = ACTIONS(2858), - [anon_sym_for] = ACTIONS(2858), - [anon_sym_and] = ACTIONS(2858), - [anon_sym_as] = ACTIONS(2858), - [anon_sym_with] = ACTIONS(2858), - [anon_sym_do] = ACTIONS(2858), - [anon_sym_while] = ACTIONS(2858), - [anon_sym_until] = ACTIONS(2858), - [anon_sym_repeat] = ACTIONS(2858), - [anon_sym_when] = ACTIONS(2858), - [anon_sym_if] = ACTIONS(2858), - [anon_sym_unless] = ACTIONS(2858), - [anon_sym_always] = ACTIONS(2858), - [anon_sym_thereis] = ACTIONS(2858), - [anon_sym_never] = ACTIONS(2858), - [anon_sym_else] = ACTIONS(2858), - [anon_sym_finally] = ACTIONS(2858), - [anon_sym_return] = ACTIONS(2858), - [anon_sym_initially] = ACTIONS(2858), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(2860), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(2682), + [anon_sym_cl] = ACTIONS(1558), + [aux_sym_accumulation_verb_token1] = ACTIONS(446), + [anon_sym_for] = ACTIONS(446), + [anon_sym_and] = ACTIONS(446), + [anon_sym_as] = ACTIONS(446), + [anon_sym_with] = ACTIONS(446), + [anon_sym_do] = ACTIONS(446), + [anon_sym_while] = ACTIONS(446), + [anon_sym_until] = ACTIONS(446), + [anon_sym_repeat] = ACTIONS(446), + [anon_sym_when] = ACTIONS(446), + [anon_sym_if] = ACTIONS(446), + [anon_sym_unless] = ACTIONS(446), + [anon_sym_always] = ACTIONS(446), + [anon_sym_thereis] = ACTIONS(446), + [anon_sym_never] = ACTIONS(446), + [anon_sym_else] = ACTIONS(446), + [anon_sym_finally] = ACTIONS(446), + [anon_sym_return] = ACTIONS(446), + [anon_sym_initially] = ACTIONS(446), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(2684), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [144] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2292), - [sym_num_lit] = STATE(2292), - [sym_kwd_lit] = STATE(2292), - [sym_str_lit] = STATE(2292), - [sym_char_lit] = STATE(2292), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2292), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2292), - [sym_set_lit] = STATE(2292), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2292), - [sym_splicing_read_cond_lit] = STATE(2292), - [sym_var_quoting_lit] = STATE(2292), - [sym_quoting_lit] = STATE(2292), - [sym_syn_quoting_lit] = STATE(2292), - [sym_unquote_splicing_lit] = STATE(2292), - [sym_unquoting_lit] = STATE(2292), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2292), - [sym_package_lit] = STATE(2292), - [sym_include_reader_macro] = STATE(2292), - [sym_complex_num_lit] = STATE(2292), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(2618), - [sym_comment] = ACTIONS(2618), - [anon_sym_POUND_] = ACTIONS(2621), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(2862), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(2626), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(2862), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2629), - [anon_sym_POUND_CARET] = ACTIONS(2632), - [anon_sym_LPAREN] = ACTIONS(2635), - [anon_sym_RPAREN] = ACTIONS(2638), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2072), + [sym_num_lit] = STATE(2072), + [sym_kwd_lit] = STATE(2072), + [sym_str_lit] = STATE(2072), + [sym_char_lit] = STATE(2072), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2072), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2072), + [sym_set_lit] = STATE(2072), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2072), + [sym_splicing_read_cond_lit] = STATE(2072), + [sym_var_quoting_lit] = STATE(2072), + [sym_quoting_lit] = STATE(2072), + [sym_syn_quoting_lit] = STATE(2072), + [sym_unquote_splicing_lit] = STATE(2072), + [sym_unquoting_lit] = STATE(2072), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2072), + [sym_package_lit] = STATE(2072), + [sym_include_reader_macro] = STATE(2072), + [sym_complex_num_lit] = STATE(2072), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(2686), + [sym_comment] = ACTIONS(2686), + [anon_sym_POUND_] = ACTIONS(2689), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(2692), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(2694), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(2692), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(2697), + [anon_sym_POUND_CARET] = ACTIONS(2700), + [anon_sym_LPAREN] = ACTIONS(2703), + [anon_sym_RPAREN] = ACTIONS(2706), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2862), - [anon_sym_cl] = ACTIONS(2640), - [aux_sym_accumulation_verb_token1] = ACTIONS(2643), - [anon_sym_for] = ACTIONS(2643), - [anon_sym_and] = ACTIONS(2643), - [anon_sym_as] = ACTIONS(2643), - [anon_sym_with] = ACTIONS(2643), - [anon_sym_do] = ACTIONS(2643), - [anon_sym_while] = ACTIONS(2643), - [anon_sym_until] = ACTIONS(2643), - [anon_sym_repeat] = ACTIONS(2643), - [anon_sym_when] = ACTIONS(2643), - [anon_sym_if] = ACTIONS(2643), - [anon_sym_unless] = ACTIONS(2643), - [anon_sym_always] = ACTIONS(2643), - [anon_sym_thereis] = ACTIONS(2643), - [anon_sym_never] = ACTIONS(2643), - [anon_sym_else] = ACTIONS(2643), - [anon_sym_finally] = ACTIONS(2643), - [anon_sym_return] = ACTIONS(2643), - [anon_sym_initially] = ACTIONS(2643), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(2864), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(2692), + [anon_sym_cl] = ACTIONS(2708), + [aux_sym_accumulation_verb_token1] = ACTIONS(2711), + [anon_sym_for] = ACTIONS(2711), + [anon_sym_and] = ACTIONS(2711), + [anon_sym_as] = ACTIONS(2711), + [anon_sym_with] = ACTIONS(2711), + [anon_sym_do] = ACTIONS(2711), + [anon_sym_while] = ACTIONS(2711), + [anon_sym_until] = ACTIONS(2711), + [anon_sym_repeat] = ACTIONS(2711), + [anon_sym_when] = ACTIONS(2711), + [anon_sym_if] = ACTIONS(2711), + [anon_sym_unless] = ACTIONS(2711), + [anon_sym_always] = ACTIONS(2711), + [anon_sym_thereis] = ACTIONS(2711), + [anon_sym_never] = ACTIONS(2711), + [anon_sym_else] = ACTIONS(2711), + [anon_sym_finally] = ACTIONS(2711), + [anon_sym_return] = ACTIONS(2711), + [anon_sym_initially] = ACTIONS(2711), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(2713), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [145] = { - [sym__gap] = STATE(62), - [sym_dis_expr] = STATE(62), - [sym__form] = STATE(2339), - [sym_num_lit] = STATE(2339), - [sym_kwd_lit] = STATE(2339), - [sym_str_lit] = STATE(2339), - [sym_char_lit] = STATE(2339), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2339), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2339), - [sym_set_lit] = STATE(2339), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2339), - [sym_splicing_read_cond_lit] = STATE(2339), - [sym_var_quoting_lit] = STATE(2339), - [sym_quoting_lit] = STATE(2339), - [sym_syn_quoting_lit] = STATE(2339), - [sym_unquote_splicing_lit] = STATE(2339), - [sym_unquoting_lit] = STATE(2339), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2339), - [sym_package_lit] = STATE(2339), - [sym_include_reader_macro] = STATE(2339), - [sym_complex_num_lit] = STATE(2339), - [aux_sym_dis_expr_repeat1] = STATE(62), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(2866), - [sym_comment] = ACTIONS(2866), - [anon_sym_POUND_] = ACTIONS(2836), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(2869), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(2841), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(2869), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2844), - [anon_sym_POUND_CARET] = ACTIONS(2847), - [anon_sym_LPAREN] = ACTIONS(2850), - [anon_sym_RPAREN] = ACTIONS(2853), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2074), + [sym_num_lit] = STATE(2074), + [sym_kwd_lit] = STATE(2074), + [sym_str_lit] = STATE(2074), + [sym_char_lit] = STATE(2074), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2074), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2074), + [sym_set_lit] = STATE(2074), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2074), + [sym_splicing_read_cond_lit] = STATE(2074), + [sym_var_quoting_lit] = STATE(2074), + [sym_quoting_lit] = STATE(2074), + [sym_syn_quoting_lit] = STATE(2074), + [sym_unquote_splicing_lit] = STATE(2074), + [sym_unquoting_lit] = STATE(2074), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2074), + [sym_package_lit] = STATE(2074), + [sym_include_reader_macro] = STATE(2074), + [sym_complex_num_lit] = STATE(2074), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(2686), + [sym_comment] = ACTIONS(2686), + [anon_sym_POUND_] = ACTIONS(2689), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(2715), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(2694), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(2715), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(2697), + [anon_sym_POUND_CARET] = ACTIONS(2700), + [anon_sym_LPAREN] = ACTIONS(2703), + [anon_sym_RPAREN] = ACTIONS(2706), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2869), - [anon_sym_cl] = ACTIONS(2855), - [aux_sym_accumulation_verb_token1] = ACTIONS(2858), - [anon_sym_for] = ACTIONS(2858), - [anon_sym_and] = ACTIONS(2858), - [anon_sym_as] = ACTIONS(2858), - [anon_sym_with] = ACTIONS(2858), - [anon_sym_do] = ACTIONS(2858), - [anon_sym_while] = ACTIONS(2858), - [anon_sym_until] = ACTIONS(2858), - [anon_sym_repeat] = ACTIONS(2858), - [anon_sym_when] = ACTIONS(2858), - [anon_sym_if] = ACTIONS(2858), - [anon_sym_unless] = ACTIONS(2858), - [anon_sym_always] = ACTIONS(2858), - [anon_sym_thereis] = ACTIONS(2858), - [anon_sym_never] = ACTIONS(2858), - [anon_sym_else] = ACTIONS(2858), - [anon_sym_finally] = ACTIONS(2858), - [anon_sym_return] = ACTIONS(2858), - [anon_sym_initially] = ACTIONS(2858), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(2871), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(2715), + [anon_sym_cl] = ACTIONS(2708), + [aux_sym_accumulation_verb_token1] = ACTIONS(2711), + [anon_sym_for] = ACTIONS(2711), + [anon_sym_and] = ACTIONS(2711), + [anon_sym_as] = ACTIONS(2711), + [anon_sym_with] = ACTIONS(2711), + [anon_sym_do] = ACTIONS(2711), + [anon_sym_while] = ACTIONS(2711), + [anon_sym_until] = ACTIONS(2711), + [anon_sym_repeat] = ACTIONS(2711), + [anon_sym_when] = ACTIONS(2711), + [anon_sym_if] = ACTIONS(2711), + [anon_sym_unless] = ACTIONS(2711), + [anon_sym_always] = ACTIONS(2711), + [anon_sym_thereis] = ACTIONS(2711), + [anon_sym_never] = ACTIONS(2711), + [anon_sym_else] = ACTIONS(2711), + [anon_sym_finally] = ACTIONS(2711), + [anon_sym_return] = ACTIONS(2711), + [anon_sym_initially] = ACTIONS(2711), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(2717), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [146] = { - [sym__gap] = STATE(64), - [sym_dis_expr] = STATE(64), - [sym__form] = STATE(2349), - [sym_num_lit] = STATE(2349), - [sym_kwd_lit] = STATE(2349), - [sym_str_lit] = STATE(2349), - [sym_char_lit] = STATE(2349), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2349), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2349), - [sym_set_lit] = STATE(2349), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2349), - [sym_splicing_read_cond_lit] = STATE(2349), - [sym_var_quoting_lit] = STATE(2349), - [sym_quoting_lit] = STATE(2349), - [sym_syn_quoting_lit] = STATE(2349), - [sym_unquote_splicing_lit] = STATE(2349), - [sym_unquoting_lit] = STATE(2349), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2349), - [sym_package_lit] = STATE(2349), - [sym_include_reader_macro] = STATE(2349), - [sym_complex_num_lit] = STATE(2349), - [aux_sym_dis_expr_repeat1] = STATE(64), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(2873), - [sym_comment] = ACTIONS(2873), - [anon_sym_POUND_] = ACTIONS(2836), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(2876), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(2841), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(2876), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2844), - [anon_sym_POUND_CARET] = ACTIONS(2847), - [anon_sym_LPAREN] = ACTIONS(2850), - [anon_sym_RPAREN] = ACTIONS(2853), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(198), + [sym_dis_expr] = STATE(198), + [sym__form] = STATE(2075), + [sym_num_lit] = STATE(2075), + [sym_kwd_lit] = STATE(2075), + [sym_str_lit] = STATE(2075), + [sym_char_lit] = STATE(2075), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2075), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2075), + [sym_set_lit] = STATE(2075), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2075), + [sym_splicing_read_cond_lit] = STATE(2075), + [sym_var_quoting_lit] = STATE(2075), + [sym_quoting_lit] = STATE(2075), + [sym_syn_quoting_lit] = STATE(2075), + [sym_unquote_splicing_lit] = STATE(2075), + [sym_unquoting_lit] = STATE(2075), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2075), + [sym_package_lit] = STATE(2075), + [sym_include_reader_macro] = STATE(2075), + [sym_complex_num_lit] = STATE(2075), + [aux_sym_dis_expr_repeat1] = STATE(198), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(2719), + [sym_comment] = ACTIONS(2719), + [anon_sym_POUND_] = ACTIONS(2689), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(2722), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(2694), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(2722), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(2697), + [anon_sym_POUND_CARET] = ACTIONS(2700), + [anon_sym_LPAREN] = ACTIONS(2703), + [anon_sym_RPAREN] = ACTIONS(2706), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2876), - [anon_sym_cl] = ACTIONS(2855), - [aux_sym_accumulation_verb_token1] = ACTIONS(2858), - [anon_sym_for] = ACTIONS(2858), - [anon_sym_and] = ACTIONS(2858), - [anon_sym_as] = ACTIONS(2858), - [anon_sym_with] = ACTIONS(2858), - [anon_sym_do] = ACTIONS(2858), - [anon_sym_while] = ACTIONS(2858), - [anon_sym_until] = ACTIONS(2858), - [anon_sym_repeat] = ACTIONS(2858), - [anon_sym_when] = ACTIONS(2858), - [anon_sym_if] = ACTIONS(2858), - [anon_sym_unless] = ACTIONS(2858), - [anon_sym_always] = ACTIONS(2858), - [anon_sym_thereis] = ACTIONS(2858), - [anon_sym_never] = ACTIONS(2858), - [anon_sym_else] = ACTIONS(2858), - [anon_sym_finally] = ACTIONS(2858), - [anon_sym_return] = ACTIONS(2858), - [anon_sym_initially] = ACTIONS(2858), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(2878), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(2722), + [anon_sym_cl] = ACTIONS(2708), + [aux_sym_accumulation_verb_token1] = ACTIONS(2711), + [anon_sym_for] = ACTIONS(2711), + [anon_sym_and] = ACTIONS(2711), + [anon_sym_as] = ACTIONS(2711), + [anon_sym_with] = ACTIONS(2711), + [anon_sym_do] = ACTIONS(2711), + [anon_sym_while] = ACTIONS(2711), + [anon_sym_until] = ACTIONS(2711), + [anon_sym_repeat] = ACTIONS(2711), + [anon_sym_when] = ACTIONS(2711), + [anon_sym_if] = ACTIONS(2711), + [anon_sym_unless] = ACTIONS(2711), + [anon_sym_always] = ACTIONS(2711), + [anon_sym_thereis] = ACTIONS(2711), + [anon_sym_never] = ACTIONS(2711), + [anon_sym_else] = ACTIONS(2711), + [anon_sym_finally] = ACTIONS(2711), + [anon_sym_return] = ACTIONS(2711), + [anon_sym_initially] = ACTIONS(2711), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(2724), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [147] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2377), - [sym_num_lit] = STATE(2377), - [sym_kwd_lit] = STATE(2377), - [sym_str_lit] = STATE(2377), - [sym_char_lit] = STATE(2377), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2377), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2377), - [sym_set_lit] = STATE(2377), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2377), - [sym_splicing_read_cond_lit] = STATE(2377), - [sym_var_quoting_lit] = STATE(2377), - [sym_quoting_lit] = STATE(2377), - [sym_syn_quoting_lit] = STATE(2377), - [sym_unquote_splicing_lit] = STATE(2377), - [sym_unquoting_lit] = STATE(2377), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2377), - [sym_package_lit] = STATE(2377), - [sym_include_reader_macro] = STATE(2377), - [sym_complex_num_lit] = STATE(2377), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(2833), - [sym_comment] = ACTIONS(2833), - [anon_sym_POUND_] = ACTIONS(2836), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(2880), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(2841), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(2880), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2844), - [anon_sym_POUND_CARET] = ACTIONS(2847), - [anon_sym_LPAREN] = ACTIONS(2850), - [anon_sym_RPAREN] = ACTIONS(2853), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2080), + [sym_num_lit] = STATE(2080), + [sym_kwd_lit] = STATE(2080), + [sym_str_lit] = STATE(2080), + [sym_char_lit] = STATE(2080), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2080), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2080), + [sym_set_lit] = STATE(2080), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2080), + [sym_splicing_read_cond_lit] = STATE(2080), + [sym_var_quoting_lit] = STATE(2080), + [sym_quoting_lit] = STATE(2080), + [sym_syn_quoting_lit] = STATE(2080), + [sym_unquote_splicing_lit] = STATE(2080), + [sym_unquoting_lit] = STATE(2080), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2080), + [sym_package_lit] = STATE(2080), + [sym_include_reader_macro] = STATE(2080), + [sym_complex_num_lit] = STATE(2080), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(2726), + [sym_comment] = ACTIONS(2726), + [anon_sym_POUND_] = ACTIONS(2729), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(2732), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(2734), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(2732), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(2737), + [anon_sym_POUND_CARET] = ACTIONS(2740), + [anon_sym_LPAREN] = ACTIONS(2743), + [anon_sym_RPAREN] = ACTIONS(2746), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2880), - [anon_sym_cl] = ACTIONS(2855), - [aux_sym_accumulation_verb_token1] = ACTIONS(2858), - [anon_sym_for] = ACTIONS(2858), - [anon_sym_and] = ACTIONS(2858), - [anon_sym_as] = ACTIONS(2858), - [anon_sym_with] = ACTIONS(2858), - [anon_sym_do] = ACTIONS(2858), - [anon_sym_while] = ACTIONS(2858), - [anon_sym_until] = ACTIONS(2858), - [anon_sym_repeat] = ACTIONS(2858), - [anon_sym_when] = ACTIONS(2858), - [anon_sym_if] = ACTIONS(2858), - [anon_sym_unless] = ACTIONS(2858), - [anon_sym_always] = ACTIONS(2858), - [anon_sym_thereis] = ACTIONS(2858), - [anon_sym_never] = ACTIONS(2858), - [anon_sym_else] = ACTIONS(2858), - [anon_sym_finally] = ACTIONS(2858), - [anon_sym_return] = ACTIONS(2858), - [anon_sym_initially] = ACTIONS(2858), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(2882), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(2732), + [anon_sym_cl] = ACTIONS(2748), + [aux_sym_accumulation_verb_token1] = ACTIONS(2751), + [anon_sym_for] = ACTIONS(2751), + [anon_sym_and] = ACTIONS(2751), + [anon_sym_as] = ACTIONS(2751), + [anon_sym_with] = ACTIONS(2751), + [anon_sym_do] = ACTIONS(2751), + [anon_sym_while] = ACTIONS(2751), + [anon_sym_until] = ACTIONS(2751), + [anon_sym_repeat] = ACTIONS(2751), + [anon_sym_when] = ACTIONS(2751), + [anon_sym_if] = ACTIONS(2751), + [anon_sym_unless] = ACTIONS(2751), + [anon_sym_always] = ACTIONS(2751), + [anon_sym_thereis] = ACTIONS(2751), + [anon_sym_never] = ACTIONS(2751), + [anon_sym_else] = ACTIONS(2751), + [anon_sym_finally] = ACTIONS(2751), + [anon_sym_return] = ACTIONS(2751), + [anon_sym_initially] = ACTIONS(2751), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(2753), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [148] = { - [sym__gap] = STATE(263), - [sym_dis_expr] = STATE(263), - [sym__form] = STATE(2290), - [sym_num_lit] = STATE(2290), - [sym_kwd_lit] = STATE(2290), - [sym_str_lit] = STATE(2290), - [sym_char_lit] = STATE(2290), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2290), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2290), - [sym_set_lit] = STATE(2290), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2290), - [sym_splicing_read_cond_lit] = STATE(2290), - [sym_var_quoting_lit] = STATE(2290), - [sym_quoting_lit] = STATE(2290), - [sym_syn_quoting_lit] = STATE(2290), - [sym_unquote_splicing_lit] = STATE(2290), - [sym_unquoting_lit] = STATE(2290), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2290), - [sym_package_lit] = STATE(2290), - [sym_include_reader_macro] = STATE(2290), - [sym_complex_num_lit] = STATE(2290), - [aux_sym_dis_expr_repeat1] = STATE(263), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(2884), - [sym_comment] = ACTIONS(2884), - [anon_sym_POUND_] = ACTIONS(2887), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(2890), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(2892), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(2890), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2895), - [anon_sym_POUND_CARET] = ACTIONS(2898), - [anon_sym_LPAREN] = ACTIONS(2901), - [anon_sym_RPAREN] = ACTIONS(2904), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2082), + [sym_num_lit] = STATE(2082), + [sym_kwd_lit] = STATE(2082), + [sym_str_lit] = STATE(2082), + [sym_char_lit] = STATE(2082), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2082), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2082), + [sym_set_lit] = STATE(2082), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2082), + [sym_splicing_read_cond_lit] = STATE(2082), + [sym_var_quoting_lit] = STATE(2082), + [sym_quoting_lit] = STATE(2082), + [sym_syn_quoting_lit] = STATE(2082), + [sym_unquote_splicing_lit] = STATE(2082), + [sym_unquoting_lit] = STATE(2082), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2082), + [sym_package_lit] = STATE(2082), + [sym_include_reader_macro] = STATE(2082), + [sym_complex_num_lit] = STATE(2082), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(2755), + [sym_comment] = ACTIONS(2755), + [anon_sym_POUND_] = ACTIONS(2758), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(2761), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(2763), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(2761), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(2766), + [anon_sym_POUND_CARET] = ACTIONS(2769), + [anon_sym_LPAREN] = ACTIONS(2772), + [anon_sym_RPAREN] = ACTIONS(2775), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2890), - [anon_sym_cl] = ACTIONS(2906), - [aux_sym_accumulation_verb_token1] = ACTIONS(2909), - [anon_sym_for] = ACTIONS(2909), - [anon_sym_and] = ACTIONS(2909), - [anon_sym_as] = ACTIONS(2909), - [anon_sym_with] = ACTIONS(2909), - [anon_sym_do] = ACTIONS(2909), - [anon_sym_while] = ACTIONS(2909), - [anon_sym_until] = ACTIONS(2909), - [anon_sym_repeat] = ACTIONS(2909), - [anon_sym_when] = ACTIONS(2909), - [anon_sym_if] = ACTIONS(2909), - [anon_sym_unless] = ACTIONS(2909), - [anon_sym_always] = ACTIONS(2909), - [anon_sym_thereis] = ACTIONS(2909), - [anon_sym_never] = ACTIONS(2909), - [anon_sym_else] = ACTIONS(2909), - [anon_sym_finally] = ACTIONS(2909), - [anon_sym_return] = ACTIONS(2909), - [anon_sym_initially] = ACTIONS(2909), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(2911), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(2761), + [anon_sym_cl] = ACTIONS(2777), + [aux_sym_accumulation_verb_token1] = ACTIONS(2780), + [anon_sym_for] = ACTIONS(2780), + [anon_sym_and] = ACTIONS(2780), + [anon_sym_as] = ACTIONS(2780), + [anon_sym_with] = ACTIONS(2780), + [anon_sym_do] = ACTIONS(2780), + [anon_sym_while] = ACTIONS(2780), + [anon_sym_until] = ACTIONS(2780), + [anon_sym_repeat] = ACTIONS(2780), + [anon_sym_when] = ACTIONS(2780), + [anon_sym_if] = ACTIONS(2780), + [anon_sym_unless] = ACTIONS(2780), + [anon_sym_always] = ACTIONS(2780), + [anon_sym_thereis] = ACTIONS(2780), + [anon_sym_never] = ACTIONS(2780), + [anon_sym_else] = ACTIONS(2780), + [anon_sym_finally] = ACTIONS(2780), + [anon_sym_return] = ACTIONS(2780), + [anon_sym_initially] = ACTIONS(2780), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(2782), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [149] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2385), - [sym_num_lit] = STATE(2385), - [sym_kwd_lit] = STATE(2385), - [sym_str_lit] = STATE(2385), - [sym_char_lit] = STATE(2385), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2385), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2385), - [sym_set_lit] = STATE(2385), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2385), - [sym_splicing_read_cond_lit] = STATE(2385), - [sym_var_quoting_lit] = STATE(2385), - [sym_quoting_lit] = STATE(2385), - [sym_syn_quoting_lit] = STATE(2385), - [sym_unquote_splicing_lit] = STATE(2385), - [sym_unquoting_lit] = STATE(2385), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2385), - [sym_package_lit] = STATE(2385), - [sym_include_reader_macro] = STATE(2385), - [sym_complex_num_lit] = STATE(2385), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(2826), - [sym_comment] = ACTIONS(2826), - [anon_sym_POUND_] = ACTIONS(2800), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(2913), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(2805), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(2913), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2808), - [anon_sym_POUND_CARET] = ACTIONS(2811), - [anon_sym_LPAREN] = ACTIONS(2814), - [anon_sym_RPAREN] = ACTIONS(2817), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(199), + [sym_dis_expr] = STATE(199), + [sym__form] = STATE(2083), + [sym_num_lit] = STATE(2083), + [sym_kwd_lit] = STATE(2083), + [sym_str_lit] = STATE(2083), + [sym_char_lit] = STATE(2083), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2083), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2083), + [sym_set_lit] = STATE(2083), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2083), + [sym_splicing_read_cond_lit] = STATE(2083), + [sym_var_quoting_lit] = STATE(2083), + [sym_quoting_lit] = STATE(2083), + [sym_syn_quoting_lit] = STATE(2083), + [sym_unquote_splicing_lit] = STATE(2083), + [sym_unquoting_lit] = STATE(2083), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2083), + [sym_package_lit] = STATE(2083), + [sym_include_reader_macro] = STATE(2083), + [sym_complex_num_lit] = STATE(2083), + [aux_sym_dis_expr_repeat1] = STATE(199), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(2784), + [sym_comment] = ACTIONS(2784), + [anon_sym_POUND_] = ACTIONS(2758), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(2787), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(2763), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(2787), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(2766), + [anon_sym_POUND_CARET] = ACTIONS(2769), + [anon_sym_LPAREN] = ACTIONS(2772), + [anon_sym_RPAREN] = ACTIONS(2775), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2913), - [anon_sym_cl] = ACTIONS(2819), - [aux_sym_accumulation_verb_token1] = ACTIONS(2822), - [anon_sym_for] = ACTIONS(2822), - [anon_sym_and] = ACTIONS(2822), - [anon_sym_as] = ACTIONS(2822), - [anon_sym_with] = ACTIONS(2822), - [anon_sym_do] = ACTIONS(2822), - [anon_sym_while] = ACTIONS(2822), - [anon_sym_until] = ACTIONS(2822), - [anon_sym_repeat] = ACTIONS(2822), - [anon_sym_when] = ACTIONS(2822), - [anon_sym_if] = ACTIONS(2822), - [anon_sym_unless] = ACTIONS(2822), - [anon_sym_always] = ACTIONS(2822), - [anon_sym_thereis] = ACTIONS(2822), - [anon_sym_never] = ACTIONS(2822), - [anon_sym_else] = ACTIONS(2822), - [anon_sym_finally] = ACTIONS(2822), - [anon_sym_return] = ACTIONS(2822), - [anon_sym_initially] = ACTIONS(2822), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(2915), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(2787), + [anon_sym_cl] = ACTIONS(2777), + [aux_sym_accumulation_verb_token1] = ACTIONS(2780), + [anon_sym_for] = ACTIONS(2780), + [anon_sym_and] = ACTIONS(2780), + [anon_sym_as] = ACTIONS(2780), + [anon_sym_with] = ACTIONS(2780), + [anon_sym_do] = ACTIONS(2780), + [anon_sym_while] = ACTIONS(2780), + [anon_sym_until] = ACTIONS(2780), + [anon_sym_repeat] = ACTIONS(2780), + [anon_sym_when] = ACTIONS(2780), + [anon_sym_if] = ACTIONS(2780), + [anon_sym_unless] = ACTIONS(2780), + [anon_sym_always] = ACTIONS(2780), + [anon_sym_thereis] = ACTIONS(2780), + [anon_sym_never] = ACTIONS(2780), + [anon_sym_else] = ACTIONS(2780), + [anon_sym_finally] = ACTIONS(2780), + [anon_sym_return] = ACTIONS(2780), + [anon_sym_initially] = ACTIONS(2780), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(2789), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [150] = { - [sym__gap] = STATE(65), - [sym_dis_expr] = STATE(65), - [sym__form] = STATE(2415), - [sym_num_lit] = STATE(2415), - [sym_kwd_lit] = STATE(2415), - [sym_str_lit] = STATE(2415), - [sym_char_lit] = STATE(2415), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2415), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2415), - [sym_set_lit] = STATE(2415), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2415), - [sym_splicing_read_cond_lit] = STATE(2415), - [sym_var_quoting_lit] = STATE(2415), - [sym_quoting_lit] = STATE(2415), - [sym_syn_quoting_lit] = STATE(2415), - [sym_unquote_splicing_lit] = STATE(2415), - [sym_unquoting_lit] = STATE(2415), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2415), - [sym_package_lit] = STATE(2415), - [sym_include_reader_macro] = STATE(2415), - [sym_complex_num_lit] = STATE(2415), - [aux_sym_dis_expr_repeat1] = STATE(65), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(2917), - [sym_comment] = ACTIONS(2917), - [anon_sym_POUND_] = ACTIONS(2675), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(2920), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(2680), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(2920), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2683), - [anon_sym_POUND_CARET] = ACTIONS(2686), - [anon_sym_LPAREN] = ACTIONS(2689), - [anon_sym_RPAREN] = ACTIONS(2692), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(200), + [sym_dis_expr] = STATE(200), + [sym__form] = STATE(2085), + [sym_num_lit] = STATE(2085), + [sym_kwd_lit] = STATE(2085), + [sym_str_lit] = STATE(2085), + [sym_char_lit] = STATE(2085), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2085), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2085), + [sym_set_lit] = STATE(2085), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2085), + [sym_splicing_read_cond_lit] = STATE(2085), + [sym_var_quoting_lit] = STATE(2085), + [sym_quoting_lit] = STATE(2085), + [sym_syn_quoting_lit] = STATE(2085), + [sym_unquote_splicing_lit] = STATE(2085), + [sym_unquoting_lit] = STATE(2085), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2085), + [sym_package_lit] = STATE(2085), + [sym_include_reader_macro] = STATE(2085), + [sym_complex_num_lit] = STATE(2085), + [aux_sym_dis_expr_repeat1] = STATE(200), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(2791), + [sym_comment] = ACTIONS(2791), + [anon_sym_POUND_] = ACTIONS(2758), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(2794), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(2763), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(2794), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(2766), + [anon_sym_POUND_CARET] = ACTIONS(2769), + [anon_sym_LPAREN] = ACTIONS(2772), + [anon_sym_RPAREN] = ACTIONS(2775), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2920), - [anon_sym_cl] = ACTIONS(2694), - [aux_sym_accumulation_verb_token1] = ACTIONS(2697), - [anon_sym_for] = ACTIONS(2697), - [anon_sym_and] = ACTIONS(2697), - [anon_sym_as] = ACTIONS(2697), - [anon_sym_with] = ACTIONS(2697), - [anon_sym_do] = ACTIONS(2697), - [anon_sym_while] = ACTIONS(2697), - [anon_sym_until] = ACTIONS(2697), - [anon_sym_repeat] = ACTIONS(2697), - [anon_sym_when] = ACTIONS(2697), - [anon_sym_if] = ACTIONS(2697), - [anon_sym_unless] = ACTIONS(2697), - [anon_sym_always] = ACTIONS(2697), - [anon_sym_thereis] = ACTIONS(2697), - [anon_sym_never] = ACTIONS(2697), - [anon_sym_else] = ACTIONS(2697), - [anon_sym_finally] = ACTIONS(2697), - [anon_sym_return] = ACTIONS(2697), - [anon_sym_initially] = ACTIONS(2697), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(2922), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(2794), + [anon_sym_cl] = ACTIONS(2777), + [aux_sym_accumulation_verb_token1] = ACTIONS(2780), + [anon_sym_for] = ACTIONS(2780), + [anon_sym_and] = ACTIONS(2780), + [anon_sym_as] = ACTIONS(2780), + [anon_sym_with] = ACTIONS(2780), + [anon_sym_do] = ACTIONS(2780), + [anon_sym_while] = ACTIONS(2780), + [anon_sym_until] = ACTIONS(2780), + [anon_sym_repeat] = ACTIONS(2780), + [anon_sym_when] = ACTIONS(2780), + [anon_sym_if] = ACTIONS(2780), + [anon_sym_unless] = ACTIONS(2780), + [anon_sym_always] = ACTIONS(2780), + [anon_sym_thereis] = ACTIONS(2780), + [anon_sym_never] = ACTIONS(2780), + [anon_sym_else] = ACTIONS(2780), + [anon_sym_finally] = ACTIONS(2780), + [anon_sym_return] = ACTIONS(2780), + [anon_sym_initially] = ACTIONS(2780), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(2796), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [151] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2110), - [sym_num_lit] = STATE(2110), - [sym_kwd_lit] = STATE(2110), - [sym_str_lit] = STATE(2110), - [sym_char_lit] = STATE(2110), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2110), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2110), - [sym_set_lit] = STATE(2110), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2110), - [sym_splicing_read_cond_lit] = STATE(2110), - [sym_var_quoting_lit] = STATE(2110), - [sym_quoting_lit] = STATE(2110), - [sym_syn_quoting_lit] = STATE(2110), - [sym_unquote_splicing_lit] = STATE(2110), - [sym_unquoting_lit] = STATE(2110), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2110), - [sym_package_lit] = STATE(2110), - [sym_include_reader_macro] = STATE(2110), - [sym_complex_num_lit] = STATE(2110), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(2924), - [sym_comment] = ACTIONS(2924), - [anon_sym_POUND_] = ACTIONS(2267), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(2927), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(2272), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(2927), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2275), - [anon_sym_POUND_CARET] = ACTIONS(2278), - [anon_sym_LPAREN] = ACTIONS(2281), - [anon_sym_RPAREN] = ACTIONS(2284), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2088), + [sym_num_lit] = STATE(2088), + [sym_kwd_lit] = STATE(2088), + [sym_str_lit] = STATE(2088), + [sym_char_lit] = STATE(2088), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2088), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2088), + [sym_set_lit] = STATE(2088), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2088), + [sym_splicing_read_cond_lit] = STATE(2088), + [sym_var_quoting_lit] = STATE(2088), + [sym_quoting_lit] = STATE(2088), + [sym_syn_quoting_lit] = STATE(2088), + [sym_unquote_splicing_lit] = STATE(2088), + [sym_unquoting_lit] = STATE(2088), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2088), + [sym_package_lit] = STATE(2088), + [sym_include_reader_macro] = STATE(2088), + [sym_complex_num_lit] = STATE(2088), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(2755), + [sym_comment] = ACTIONS(2755), + [anon_sym_POUND_] = ACTIONS(2758), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(2798), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(2763), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(2798), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(2766), + [anon_sym_POUND_CARET] = ACTIONS(2769), + [anon_sym_LPAREN] = ACTIONS(2772), + [anon_sym_RPAREN] = ACTIONS(2775), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2927), - [anon_sym_cl] = ACTIONS(2286), - [aux_sym_accumulation_verb_token1] = ACTIONS(2289), - [anon_sym_for] = ACTIONS(2289), - [anon_sym_and] = ACTIONS(2289), - [anon_sym_as] = ACTIONS(2289), - [anon_sym_with] = ACTIONS(2289), - [anon_sym_do] = ACTIONS(2289), - [anon_sym_while] = ACTIONS(2289), - [anon_sym_until] = ACTIONS(2289), - [anon_sym_repeat] = ACTIONS(2289), - [anon_sym_when] = ACTIONS(2289), - [anon_sym_if] = ACTIONS(2289), - [anon_sym_unless] = ACTIONS(2289), - [anon_sym_always] = ACTIONS(2289), - [anon_sym_thereis] = ACTIONS(2289), - [anon_sym_never] = ACTIONS(2289), - [anon_sym_else] = ACTIONS(2289), - [anon_sym_finally] = ACTIONS(2289), - [anon_sym_return] = ACTIONS(2289), - [anon_sym_initially] = ACTIONS(2289), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(2929), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(2798), + [anon_sym_cl] = ACTIONS(2777), + [aux_sym_accumulation_verb_token1] = ACTIONS(2780), + [anon_sym_for] = ACTIONS(2780), + [anon_sym_and] = ACTIONS(2780), + [anon_sym_as] = ACTIONS(2780), + [anon_sym_with] = ACTIONS(2780), + [anon_sym_do] = ACTIONS(2780), + [anon_sym_while] = ACTIONS(2780), + [anon_sym_until] = ACTIONS(2780), + [anon_sym_repeat] = ACTIONS(2780), + [anon_sym_when] = ACTIONS(2780), + [anon_sym_if] = ACTIONS(2780), + [anon_sym_unless] = ACTIONS(2780), + [anon_sym_always] = ACTIONS(2780), + [anon_sym_thereis] = ACTIONS(2780), + [anon_sym_never] = ACTIONS(2780), + [anon_sym_else] = ACTIONS(2780), + [anon_sym_finally] = ACTIONS(2780), + [anon_sym_return] = ACTIONS(2780), + [anon_sym_initially] = ACTIONS(2780), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(2800), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [152] = { - [sym__gap] = STATE(267), - [sym_dis_expr] = STATE(267), - [sym__form] = STATE(2284), - [sym_num_lit] = STATE(2284), - [sym_kwd_lit] = STATE(2284), - [sym_str_lit] = STATE(2284), - [sym_char_lit] = STATE(2284), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2284), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2284), - [sym_set_lit] = STATE(2284), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2284), - [sym_splicing_read_cond_lit] = STATE(2284), - [sym_var_quoting_lit] = STATE(2284), - [sym_quoting_lit] = STATE(2284), - [sym_syn_quoting_lit] = STATE(2284), - [sym_unquote_splicing_lit] = STATE(2284), - [sym_unquoting_lit] = STATE(2284), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2284), - [sym_package_lit] = STATE(2284), - [sym_include_reader_macro] = STATE(2284), - [sym_complex_num_lit] = STATE(2284), - [aux_sym_dis_expr_repeat1] = STATE(267), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(2931), - [sym_comment] = ACTIONS(2931), - [anon_sym_POUND_] = ACTIONS(2934), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(2937), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(2939), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(2937), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2942), - [anon_sym_POUND_CARET] = ACTIONS(2945), - [anon_sym_LPAREN] = ACTIONS(2948), - [anon_sym_RPAREN] = ACTIONS(2951), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2091), + [sym_num_lit] = STATE(2091), + [sym_kwd_lit] = STATE(2091), + [sym_str_lit] = STATE(2091), + [sym_char_lit] = STATE(2091), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2091), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2091), + [sym_set_lit] = STATE(2091), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2091), + [sym_splicing_read_cond_lit] = STATE(2091), + [sym_var_quoting_lit] = STATE(2091), + [sym_quoting_lit] = STATE(2091), + [sym_syn_quoting_lit] = STATE(2091), + [sym_unquote_splicing_lit] = STATE(2091), + [sym_unquoting_lit] = STATE(2091), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2091), + [sym_package_lit] = STATE(2091), + [sym_include_reader_macro] = STATE(2091), + [sym_complex_num_lit] = STATE(2091), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(2298), + [sym_comment] = ACTIONS(2298), + [anon_sym_POUND_] = ACTIONS(2301), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(2802), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(2306), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(2802), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(2309), + [anon_sym_POUND_CARET] = ACTIONS(2312), + [anon_sym_LPAREN] = ACTIONS(2315), + [anon_sym_RPAREN] = ACTIONS(2318), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2937), - [anon_sym_cl] = ACTIONS(2953), - [aux_sym_accumulation_verb_token1] = ACTIONS(2956), - [anon_sym_for] = ACTIONS(2956), - [anon_sym_and] = ACTIONS(2956), - [anon_sym_as] = ACTIONS(2956), - [anon_sym_with] = ACTIONS(2956), - [anon_sym_do] = ACTIONS(2956), - [anon_sym_while] = ACTIONS(2956), - [anon_sym_until] = ACTIONS(2956), - [anon_sym_repeat] = ACTIONS(2956), - [anon_sym_when] = ACTIONS(2956), - [anon_sym_if] = ACTIONS(2956), - [anon_sym_unless] = ACTIONS(2956), - [anon_sym_always] = ACTIONS(2956), - [anon_sym_thereis] = ACTIONS(2956), - [anon_sym_never] = ACTIONS(2956), - [anon_sym_else] = ACTIONS(2956), - [anon_sym_finally] = ACTIONS(2956), - [anon_sym_return] = ACTIONS(2956), - [anon_sym_initially] = ACTIONS(2956), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(2958), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(2802), + [anon_sym_cl] = ACTIONS(2320), + [aux_sym_accumulation_verb_token1] = ACTIONS(2323), + [anon_sym_for] = ACTIONS(2323), + [anon_sym_and] = ACTIONS(2323), + [anon_sym_as] = ACTIONS(2323), + [anon_sym_with] = ACTIONS(2323), + [anon_sym_do] = ACTIONS(2323), + [anon_sym_while] = ACTIONS(2323), + [anon_sym_until] = ACTIONS(2323), + [anon_sym_repeat] = ACTIONS(2323), + [anon_sym_when] = ACTIONS(2323), + [anon_sym_if] = ACTIONS(2323), + [anon_sym_unless] = ACTIONS(2323), + [anon_sym_always] = ACTIONS(2323), + [anon_sym_thereis] = ACTIONS(2323), + [anon_sym_never] = ACTIONS(2323), + [anon_sym_else] = ACTIONS(2323), + [anon_sym_finally] = ACTIONS(2323), + [anon_sym_return] = ACTIONS(2323), + [anon_sym_initially] = ACTIONS(2323), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(2804), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [153] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2282), - [sym_num_lit] = STATE(2282), - [sym_kwd_lit] = STATE(2282), - [sym_str_lit] = STATE(2282), - [sym_char_lit] = STATE(2282), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2282), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2282), - [sym_set_lit] = STATE(2282), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2282), - [sym_splicing_read_cond_lit] = STATE(2282), - [sym_var_quoting_lit] = STATE(2282), - [sym_quoting_lit] = STATE(2282), - [sym_syn_quoting_lit] = STATE(2282), - [sym_unquote_splicing_lit] = STATE(2282), - [sym_unquoting_lit] = STATE(2282), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2282), - [sym_package_lit] = STATE(2282), - [sym_include_reader_macro] = STATE(2282), - [sym_complex_num_lit] = STATE(2282), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(2960), - [sym_comment] = ACTIONS(2960), - [anon_sym_POUND_] = ACTIONS(2934), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(2963), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(2939), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(2963), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2942), - [anon_sym_POUND_CARET] = ACTIONS(2945), - [anon_sym_LPAREN] = ACTIONS(2948), - [anon_sym_RPAREN] = ACTIONS(2951), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2093), + [sym_num_lit] = STATE(2093), + [sym_kwd_lit] = STATE(2093), + [sym_str_lit] = STATE(2093), + [sym_char_lit] = STATE(2093), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2093), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2093), + [sym_set_lit] = STATE(2093), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2093), + [sym_splicing_read_cond_lit] = STATE(2093), + [sym_var_quoting_lit] = STATE(2093), + [sym_quoting_lit] = STATE(2093), + [sym_syn_quoting_lit] = STATE(2093), + [sym_unquote_splicing_lit] = STATE(2093), + [sym_unquoting_lit] = STATE(2093), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2093), + [sym_package_lit] = STATE(2093), + [sym_include_reader_macro] = STATE(2093), + [sym_complex_num_lit] = STATE(2093), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(2327), + [sym_comment] = ACTIONS(2327), + [anon_sym_POUND_] = ACTIONS(2330), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(2806), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(2335), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(2806), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(2338), + [anon_sym_POUND_CARET] = ACTIONS(2341), + [anon_sym_LPAREN] = ACTIONS(2344), + [anon_sym_RPAREN] = ACTIONS(2347), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2963), - [anon_sym_cl] = ACTIONS(2953), - [aux_sym_accumulation_verb_token1] = ACTIONS(2956), - [anon_sym_for] = ACTIONS(2956), - [anon_sym_and] = ACTIONS(2956), - [anon_sym_as] = ACTIONS(2956), - [anon_sym_with] = ACTIONS(2956), - [anon_sym_do] = ACTIONS(2956), - [anon_sym_while] = ACTIONS(2956), - [anon_sym_until] = ACTIONS(2956), - [anon_sym_repeat] = ACTIONS(2956), - [anon_sym_when] = ACTIONS(2956), - [anon_sym_if] = ACTIONS(2956), - [anon_sym_unless] = ACTIONS(2956), - [anon_sym_always] = ACTIONS(2956), - [anon_sym_thereis] = ACTIONS(2956), - [anon_sym_never] = ACTIONS(2956), - [anon_sym_else] = ACTIONS(2956), - [anon_sym_finally] = ACTIONS(2956), - [anon_sym_return] = ACTIONS(2956), - [anon_sym_initially] = ACTIONS(2956), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(2965), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(2806), + [anon_sym_cl] = ACTIONS(2349), + [aux_sym_accumulation_verb_token1] = ACTIONS(2352), + [anon_sym_for] = ACTIONS(2352), + [anon_sym_and] = ACTIONS(2352), + [anon_sym_as] = ACTIONS(2352), + [anon_sym_with] = ACTIONS(2352), + [anon_sym_do] = ACTIONS(2352), + [anon_sym_while] = ACTIONS(2352), + [anon_sym_until] = ACTIONS(2352), + [anon_sym_repeat] = ACTIONS(2352), + [anon_sym_when] = ACTIONS(2352), + [anon_sym_if] = ACTIONS(2352), + [anon_sym_unless] = ACTIONS(2352), + [anon_sym_always] = ACTIONS(2352), + [anon_sym_thereis] = ACTIONS(2352), + [anon_sym_never] = ACTIONS(2352), + [anon_sym_else] = ACTIONS(2352), + [anon_sym_finally] = ACTIONS(2352), + [anon_sym_return] = ACTIONS(2352), + [anon_sym_initially] = ACTIONS(2352), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(2808), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [154] = { - [sym__gap] = STATE(266), - [sym_dis_expr] = STATE(266), - [sym__form] = STATE(2280), - [sym_num_lit] = STATE(2280), - [sym_kwd_lit] = STATE(2280), - [sym_str_lit] = STATE(2280), - [sym_char_lit] = STATE(2280), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2280), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2280), - [sym_set_lit] = STATE(2280), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2280), - [sym_splicing_read_cond_lit] = STATE(2280), - [sym_var_quoting_lit] = STATE(2280), - [sym_quoting_lit] = STATE(2280), - [sym_syn_quoting_lit] = STATE(2280), - [sym_unquote_splicing_lit] = STATE(2280), - [sym_unquoting_lit] = STATE(2280), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2280), - [sym_package_lit] = STATE(2280), - [sym_include_reader_macro] = STATE(2280), - [sym_complex_num_lit] = STATE(2280), - [aux_sym_dis_expr_repeat1] = STATE(266), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(2967), - [sym_comment] = ACTIONS(2967), - [anon_sym_POUND_] = ACTIONS(2970), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(2973), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(2975), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(2973), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2978), - [anon_sym_POUND_CARET] = ACTIONS(2981), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_RPAREN] = ACTIONS(2987), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(202), + [sym_dis_expr] = STATE(202), + [sym__form] = STATE(2094), + [sym_num_lit] = STATE(2094), + [sym_kwd_lit] = STATE(2094), + [sym_str_lit] = STATE(2094), + [sym_char_lit] = STATE(2094), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2094), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2094), + [sym_set_lit] = STATE(2094), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2094), + [sym_splicing_read_cond_lit] = STATE(2094), + [sym_var_quoting_lit] = STATE(2094), + [sym_quoting_lit] = STATE(2094), + [sym_syn_quoting_lit] = STATE(2094), + [sym_unquote_splicing_lit] = STATE(2094), + [sym_unquoting_lit] = STATE(2094), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2094), + [sym_package_lit] = STATE(2094), + [sym_include_reader_macro] = STATE(2094), + [sym_complex_num_lit] = STATE(2094), + [aux_sym_dis_expr_repeat1] = STATE(202), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(2810), + [sym_comment] = ACTIONS(2810), + [anon_sym_POUND_] = ACTIONS(2330), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(2813), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(2335), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(2813), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(2338), + [anon_sym_POUND_CARET] = ACTIONS(2341), + [anon_sym_LPAREN] = ACTIONS(2344), + [anon_sym_RPAREN] = ACTIONS(2347), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2973), - [anon_sym_cl] = ACTIONS(2989), - [aux_sym_accumulation_verb_token1] = ACTIONS(2992), - [anon_sym_for] = ACTIONS(2992), - [anon_sym_and] = ACTIONS(2992), - [anon_sym_as] = ACTIONS(2992), - [anon_sym_with] = ACTIONS(2992), - [anon_sym_do] = ACTIONS(2992), - [anon_sym_while] = ACTIONS(2992), - [anon_sym_until] = ACTIONS(2992), - [anon_sym_repeat] = ACTIONS(2992), - [anon_sym_when] = ACTIONS(2992), - [anon_sym_if] = ACTIONS(2992), - [anon_sym_unless] = ACTIONS(2992), - [anon_sym_always] = ACTIONS(2992), - [anon_sym_thereis] = ACTIONS(2992), - [anon_sym_never] = ACTIONS(2992), - [anon_sym_else] = ACTIONS(2992), - [anon_sym_finally] = ACTIONS(2992), - [anon_sym_return] = ACTIONS(2992), - [anon_sym_initially] = ACTIONS(2992), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(2994), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(2813), + [anon_sym_cl] = ACTIONS(2349), + [aux_sym_accumulation_verb_token1] = ACTIONS(2352), + [anon_sym_for] = ACTIONS(2352), + [anon_sym_and] = ACTIONS(2352), + [anon_sym_as] = ACTIONS(2352), + [anon_sym_with] = ACTIONS(2352), + [anon_sym_do] = ACTIONS(2352), + [anon_sym_while] = ACTIONS(2352), + [anon_sym_until] = ACTIONS(2352), + [anon_sym_repeat] = ACTIONS(2352), + [anon_sym_when] = ACTIONS(2352), + [anon_sym_if] = ACTIONS(2352), + [anon_sym_unless] = ACTIONS(2352), + [anon_sym_always] = ACTIONS(2352), + [anon_sym_thereis] = ACTIONS(2352), + [anon_sym_never] = ACTIONS(2352), + [anon_sym_else] = ACTIONS(2352), + [anon_sym_finally] = ACTIONS(2352), + [anon_sym_return] = ACTIONS(2352), + [anon_sym_initially] = ACTIONS(2352), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(2815), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [155] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2323), - [sym_num_lit] = STATE(2323), - [sym_kwd_lit] = STATE(2323), - [sym_str_lit] = STATE(2323), - [sym_char_lit] = STATE(2323), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2323), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2323), - [sym_set_lit] = STATE(2323), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2323), - [sym_splicing_read_cond_lit] = STATE(2323), - [sym_var_quoting_lit] = STATE(2323), - [sym_quoting_lit] = STATE(2323), - [sym_syn_quoting_lit] = STATE(2323), - [sym_unquote_splicing_lit] = STATE(2323), - [sym_unquoting_lit] = STATE(2323), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2323), - [sym_package_lit] = STATE(2323), - [sym_include_reader_macro] = STATE(2323), - [sym_complex_num_lit] = STATE(2323), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(2996), - [sym_comment] = ACTIONS(2996), - [anon_sym_POUND_] = ACTIONS(2999), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(3002), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(3004), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(3002), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(3007), - [anon_sym_POUND_CARET] = ACTIONS(3010), - [anon_sym_LPAREN] = ACTIONS(3013), - [anon_sym_RPAREN] = ACTIONS(3016), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(203), + [sym_dis_expr] = STATE(203), + [sym__form] = STATE(2097), + [sym_num_lit] = STATE(2097), + [sym_kwd_lit] = STATE(2097), + [sym_str_lit] = STATE(2097), + [sym_char_lit] = STATE(2097), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2097), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2097), + [sym_set_lit] = STATE(2097), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2097), + [sym_splicing_read_cond_lit] = STATE(2097), + [sym_var_quoting_lit] = STATE(2097), + [sym_quoting_lit] = STATE(2097), + [sym_syn_quoting_lit] = STATE(2097), + [sym_unquote_splicing_lit] = STATE(2097), + [sym_unquoting_lit] = STATE(2097), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2097), + [sym_package_lit] = STATE(2097), + [sym_include_reader_macro] = STATE(2097), + [sym_complex_num_lit] = STATE(2097), + [aux_sym_dis_expr_repeat1] = STATE(203), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(2817), + [sym_comment] = ACTIONS(2817), + [anon_sym_POUND_] = ACTIONS(2330), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(2820), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(2335), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(2820), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(2338), + [anon_sym_POUND_CARET] = ACTIONS(2341), + [anon_sym_LPAREN] = ACTIONS(2344), + [anon_sym_RPAREN] = ACTIONS(2347), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3002), - [anon_sym_cl] = ACTIONS(3018), - [aux_sym_accumulation_verb_token1] = ACTIONS(3021), - [anon_sym_for] = ACTIONS(3021), - [anon_sym_and] = ACTIONS(3021), - [anon_sym_as] = ACTIONS(3021), - [anon_sym_with] = ACTIONS(3021), - [anon_sym_do] = ACTIONS(3021), - [anon_sym_while] = ACTIONS(3021), - [anon_sym_until] = ACTIONS(3021), - [anon_sym_repeat] = ACTIONS(3021), - [anon_sym_when] = ACTIONS(3021), - [anon_sym_if] = ACTIONS(3021), - [anon_sym_unless] = ACTIONS(3021), - [anon_sym_always] = ACTIONS(3021), - [anon_sym_thereis] = ACTIONS(3021), - [anon_sym_never] = ACTIONS(3021), - [anon_sym_else] = ACTIONS(3021), - [anon_sym_finally] = ACTIONS(3021), - [anon_sym_return] = ACTIONS(3021), - [anon_sym_initially] = ACTIONS(3021), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(3023), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(2820), + [anon_sym_cl] = ACTIONS(2349), + [aux_sym_accumulation_verb_token1] = ACTIONS(2352), + [anon_sym_for] = ACTIONS(2352), + [anon_sym_and] = ACTIONS(2352), + [anon_sym_as] = ACTIONS(2352), + [anon_sym_with] = ACTIONS(2352), + [anon_sym_do] = ACTIONS(2352), + [anon_sym_while] = ACTIONS(2352), + [anon_sym_until] = ACTIONS(2352), + [anon_sym_repeat] = ACTIONS(2352), + [anon_sym_when] = ACTIONS(2352), + [anon_sym_if] = ACTIONS(2352), + [anon_sym_unless] = ACTIONS(2352), + [anon_sym_always] = ACTIONS(2352), + [anon_sym_thereis] = ACTIONS(2352), + [anon_sym_never] = ACTIONS(2352), + [anon_sym_else] = ACTIONS(2352), + [anon_sym_finally] = ACTIONS(2352), + [anon_sym_return] = ACTIONS(2352), + [anon_sym_initially] = ACTIONS(2352), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(2822), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [156] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2066), - [sym_num_lit] = STATE(2066), - [sym_kwd_lit] = STATE(2066), - [sym_str_lit] = STATE(2066), - [sym_char_lit] = STATE(2066), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2066), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2066), - [sym_set_lit] = STATE(2066), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2066), - [sym_splicing_read_cond_lit] = STATE(2066), - [sym_var_quoting_lit] = STATE(2066), - [sym_quoting_lit] = STATE(2066), - [sym_syn_quoting_lit] = STATE(2066), - [sym_unquote_splicing_lit] = STATE(2066), - [sym_unquoting_lit] = STATE(2066), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2066), - [sym_package_lit] = STATE(2066), - [sym_include_reader_macro] = STATE(2066), - [sym_complex_num_lit] = STATE(2066), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(2715), - [sym_comment] = ACTIONS(2715), - [anon_sym_POUND_] = ACTIONS(2675), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(3025), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(2680), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(3025), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2683), - [anon_sym_POUND_CARET] = ACTIONS(2686), - [anon_sym_LPAREN] = ACTIONS(2689), - [anon_sym_RPAREN] = ACTIONS(2692), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2109), + [sym_num_lit] = STATE(2109), + [sym_kwd_lit] = STATE(2109), + [sym_str_lit] = STATE(2109), + [sym_char_lit] = STATE(2109), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2109), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2109), + [sym_set_lit] = STATE(2109), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2109), + [sym_splicing_read_cond_lit] = STATE(2109), + [sym_var_quoting_lit] = STATE(2109), + [sym_quoting_lit] = STATE(2109), + [sym_syn_quoting_lit] = STATE(2109), + [sym_unquote_splicing_lit] = STATE(2109), + [sym_unquoting_lit] = STATE(2109), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2109), + [sym_package_lit] = STATE(2109), + [sym_include_reader_macro] = STATE(2109), + [sym_complex_num_lit] = STATE(2109), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(2327), + [sym_comment] = ACTIONS(2327), + [anon_sym_POUND_] = ACTIONS(2330), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(2824), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(2335), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(2824), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(2338), + [anon_sym_POUND_CARET] = ACTIONS(2341), + [anon_sym_LPAREN] = ACTIONS(2344), + [anon_sym_RPAREN] = ACTIONS(2347), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3025), - [anon_sym_cl] = ACTIONS(2694), - [aux_sym_accumulation_verb_token1] = ACTIONS(2697), - [anon_sym_for] = ACTIONS(2697), - [anon_sym_and] = ACTIONS(2697), - [anon_sym_as] = ACTIONS(2697), - [anon_sym_with] = ACTIONS(2697), - [anon_sym_do] = ACTIONS(2697), - [anon_sym_while] = ACTIONS(2697), - [anon_sym_until] = ACTIONS(2697), - [anon_sym_repeat] = ACTIONS(2697), - [anon_sym_when] = ACTIONS(2697), - [anon_sym_if] = ACTIONS(2697), - [anon_sym_unless] = ACTIONS(2697), - [anon_sym_always] = ACTIONS(2697), - [anon_sym_thereis] = ACTIONS(2697), - [anon_sym_never] = ACTIONS(2697), - [anon_sym_else] = ACTIONS(2697), - [anon_sym_finally] = ACTIONS(2697), - [anon_sym_return] = ACTIONS(2697), - [anon_sym_initially] = ACTIONS(2697), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(3027), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(2824), + [anon_sym_cl] = ACTIONS(2349), + [aux_sym_accumulation_verb_token1] = ACTIONS(2352), + [anon_sym_for] = ACTIONS(2352), + [anon_sym_and] = ACTIONS(2352), + [anon_sym_as] = ACTIONS(2352), + [anon_sym_with] = ACTIONS(2352), + [anon_sym_do] = ACTIONS(2352), + [anon_sym_while] = ACTIONS(2352), + [anon_sym_until] = ACTIONS(2352), + [anon_sym_repeat] = ACTIONS(2352), + [anon_sym_when] = ACTIONS(2352), + [anon_sym_if] = ACTIONS(2352), + [anon_sym_unless] = ACTIONS(2352), + [anon_sym_always] = ACTIONS(2352), + [anon_sym_thereis] = ACTIONS(2352), + [anon_sym_never] = ACTIONS(2352), + [anon_sym_else] = ACTIONS(2352), + [anon_sym_finally] = ACTIONS(2352), + [anon_sym_return] = ACTIONS(2352), + [anon_sym_initially] = ACTIONS(2352), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(2826), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [157] = { - [sym__gap] = STATE(74), - [sym_dis_expr] = STATE(74), - [sym__form] = STATE(2436), - [sym_num_lit] = STATE(2436), - [sym_kwd_lit] = STATE(2436), - [sym_str_lit] = STATE(2436), - [sym_char_lit] = STATE(2436), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2436), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2436), - [sym_set_lit] = STATE(2436), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2436), - [sym_splicing_read_cond_lit] = STATE(2436), - [sym_var_quoting_lit] = STATE(2436), - [sym_quoting_lit] = STATE(2436), - [sym_syn_quoting_lit] = STATE(2436), - [sym_unquote_splicing_lit] = STATE(2436), - [sym_unquoting_lit] = STATE(2436), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2436), - [sym_package_lit] = STATE(2436), - [sym_include_reader_macro] = STATE(2436), - [sym_complex_num_lit] = STATE(2436), - [aux_sym_dis_expr_repeat1] = STATE(74), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(3029), - [sym_comment] = ACTIONS(3029), - [anon_sym_POUND_] = ACTIONS(2675), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(3032), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(2680), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(3032), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2683), - [anon_sym_POUND_CARET] = ACTIONS(2686), - [anon_sym_LPAREN] = ACTIONS(2689), - [anon_sym_RPAREN] = ACTIONS(2692), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2113), + [sym_num_lit] = STATE(2113), + [sym_kwd_lit] = STATE(2113), + [sym_str_lit] = STATE(2113), + [sym_char_lit] = STATE(2113), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2113), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2113), + [sym_set_lit] = STATE(2113), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2113), + [sym_splicing_read_cond_lit] = STATE(2113), + [sym_var_quoting_lit] = STATE(2113), + [sym_quoting_lit] = STATE(2113), + [sym_syn_quoting_lit] = STATE(2113), + [sym_unquote_splicing_lit] = STATE(2113), + [sym_unquoting_lit] = STATE(2113), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2113), + [sym_package_lit] = STATE(2113), + [sym_include_reader_macro] = STATE(2113), + [sym_complex_num_lit] = STATE(2113), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(2298), + [sym_comment] = ACTIONS(2298), + [anon_sym_POUND_] = ACTIONS(2301), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(2828), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(2306), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(2828), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(2309), + [anon_sym_POUND_CARET] = ACTIONS(2312), + [anon_sym_LPAREN] = ACTIONS(2315), + [anon_sym_RPAREN] = ACTIONS(2318), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3032), - [anon_sym_cl] = ACTIONS(2694), - [aux_sym_accumulation_verb_token1] = ACTIONS(2697), - [anon_sym_for] = ACTIONS(2697), - [anon_sym_and] = ACTIONS(2697), - [anon_sym_as] = ACTIONS(2697), - [anon_sym_with] = ACTIONS(2697), - [anon_sym_do] = ACTIONS(2697), - [anon_sym_while] = ACTIONS(2697), - [anon_sym_until] = ACTIONS(2697), - [anon_sym_repeat] = ACTIONS(2697), - [anon_sym_when] = ACTIONS(2697), - [anon_sym_if] = ACTIONS(2697), - [anon_sym_unless] = ACTIONS(2697), - [anon_sym_always] = ACTIONS(2697), - [anon_sym_thereis] = ACTIONS(2697), - [anon_sym_never] = ACTIONS(2697), - [anon_sym_else] = ACTIONS(2697), - [anon_sym_finally] = ACTIONS(2697), - [anon_sym_return] = ACTIONS(2697), - [anon_sym_initially] = ACTIONS(2697), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(3034), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(2828), + [anon_sym_cl] = ACTIONS(2320), + [aux_sym_accumulation_verb_token1] = ACTIONS(2323), + [anon_sym_for] = ACTIONS(2323), + [anon_sym_and] = ACTIONS(2323), + [anon_sym_as] = ACTIONS(2323), + [anon_sym_with] = ACTIONS(2323), + [anon_sym_do] = ACTIONS(2323), + [anon_sym_while] = ACTIONS(2323), + [anon_sym_until] = ACTIONS(2323), + [anon_sym_repeat] = ACTIONS(2323), + [anon_sym_when] = ACTIONS(2323), + [anon_sym_if] = ACTIONS(2323), + [anon_sym_unless] = ACTIONS(2323), + [anon_sym_always] = ACTIONS(2323), + [anon_sym_thereis] = ACTIONS(2323), + [anon_sym_never] = ACTIONS(2323), + [anon_sym_else] = ACTIONS(2323), + [anon_sym_finally] = ACTIONS(2323), + [anon_sym_return] = ACTIONS(2323), + [anon_sym_initially] = ACTIONS(2323), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(2830), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [158] = { - [sym__gap] = STATE(259), - [sym_dis_expr] = STATE(259), - [sym__form] = STATE(2274), - [sym_num_lit] = STATE(2274), - [sym_kwd_lit] = STATE(2274), - [sym_str_lit] = STATE(2274), - [sym_char_lit] = STATE(2274), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2274), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2274), - [sym_set_lit] = STATE(2274), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2274), - [sym_splicing_read_cond_lit] = STATE(2274), - [sym_var_quoting_lit] = STATE(2274), - [sym_quoting_lit] = STATE(2274), - [sym_syn_quoting_lit] = STATE(2274), - [sym_unquote_splicing_lit] = STATE(2274), - [sym_unquoting_lit] = STATE(2274), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2274), - [sym_package_lit] = STATE(2274), - [sym_include_reader_macro] = STATE(2274), - [sym_complex_num_lit] = STATE(2274), - [aux_sym_dis_expr_repeat1] = STATE(259), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(3036), - [sym_comment] = ACTIONS(3036), - [anon_sym_POUND_] = ACTIONS(2934), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(3039), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(2939), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(3039), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2942), - [anon_sym_POUND_CARET] = ACTIONS(2945), - [anon_sym_LPAREN] = ACTIONS(2948), - [anon_sym_RPAREN] = ACTIONS(2951), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3039), - [anon_sym_cl] = ACTIONS(2953), - [aux_sym_accumulation_verb_token1] = ACTIONS(2956), - [anon_sym_for] = ACTIONS(2956), - [anon_sym_and] = ACTIONS(2956), - [anon_sym_as] = ACTIONS(2956), - [anon_sym_with] = ACTIONS(2956), - [anon_sym_do] = ACTIONS(2956), - [anon_sym_while] = ACTIONS(2956), - [anon_sym_until] = ACTIONS(2956), - [anon_sym_repeat] = ACTIONS(2956), - [anon_sym_when] = ACTIONS(2956), - [anon_sym_if] = ACTIONS(2956), - [anon_sym_unless] = ACTIONS(2956), - [anon_sym_always] = ACTIONS(2956), - [anon_sym_thereis] = ACTIONS(2956), - [anon_sym_never] = ACTIONS(2956), - [anon_sym_else] = ACTIONS(2956), - [anon_sym_finally] = ACTIONS(2956), - [anon_sym_return] = ACTIONS(2956), - [anon_sym_initially] = ACTIONS(2956), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(3041), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), - }, - [159] = { - [sym__gap] = STATE(253), - [sym_dis_expr] = STATE(253), - [sym__form] = STATE(2324), - [sym_num_lit] = STATE(2324), - [sym_kwd_lit] = STATE(2324), - [sym_str_lit] = STATE(2324), - [sym_char_lit] = STATE(2324), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2324), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2324), - [sym_set_lit] = STATE(2324), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2324), - [sym_splicing_read_cond_lit] = STATE(2324), - [sym_var_quoting_lit] = STATE(2324), - [sym_quoting_lit] = STATE(2324), - [sym_syn_quoting_lit] = STATE(2324), - [sym_unquote_splicing_lit] = STATE(2324), - [sym_unquoting_lit] = STATE(2324), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2324), - [sym_package_lit] = STATE(2324), - [sym_include_reader_macro] = STATE(2324), - [sym_complex_num_lit] = STATE(2324), - [aux_sym_dis_expr_repeat1] = STATE(253), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(3043), - [sym_comment] = ACTIONS(3043), - [anon_sym_POUND_] = ACTIONS(2999), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(3046), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(3004), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(3046), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(3007), - [anon_sym_POUND_CARET] = ACTIONS(3010), - [anon_sym_LPAREN] = ACTIONS(3013), - [anon_sym_RPAREN] = ACTIONS(3016), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3046), - [anon_sym_cl] = ACTIONS(3018), - [aux_sym_accumulation_verb_token1] = ACTIONS(3021), - [anon_sym_for] = ACTIONS(3021), - [anon_sym_and] = ACTIONS(3021), - [anon_sym_as] = ACTIONS(3021), - [anon_sym_with] = ACTIONS(3021), - [anon_sym_do] = ACTIONS(3021), - [anon_sym_while] = ACTIONS(3021), - [anon_sym_until] = ACTIONS(3021), - [anon_sym_repeat] = ACTIONS(3021), - [anon_sym_when] = ACTIONS(3021), - [anon_sym_if] = ACTIONS(3021), - [anon_sym_unless] = ACTIONS(3021), - [anon_sym_always] = ACTIONS(3021), - [anon_sym_thereis] = ACTIONS(3021), - [anon_sym_never] = ACTIONS(3021), - [anon_sym_else] = ACTIONS(3021), - [anon_sym_finally] = ACTIONS(3021), - [anon_sym_return] = ACTIONS(3021), - [anon_sym_initially] = ACTIONS(3021), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(3048), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), - }, - [160] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2379), - [sym_num_lit] = STATE(2379), - [sym_kwd_lit] = STATE(2379), - [sym_str_lit] = STATE(2379), - [sym_char_lit] = STATE(2379), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2379), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2379), - [sym_set_lit] = STATE(2379), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2379), - [sym_splicing_read_cond_lit] = STATE(2379), - [sym_var_quoting_lit] = STATE(2379), - [sym_quoting_lit] = STATE(2379), - [sym_syn_quoting_lit] = STATE(2379), - [sym_unquote_splicing_lit] = STATE(2379), - [sym_unquoting_lit] = STATE(2379), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2379), - [sym_package_lit] = STATE(2379), - [sym_include_reader_macro] = STATE(2379), - [sym_complex_num_lit] = STATE(2379), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(3050), - [sym_comment] = ACTIONS(3050), - [anon_sym_POUND_] = ACTIONS(3053), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(3056), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(3058), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(3056), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(3061), - [anon_sym_POUND_CARET] = ACTIONS(3064), - [anon_sym_LPAREN] = ACTIONS(3067), - [anon_sym_RPAREN] = ACTIONS(3070), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3056), - [anon_sym_cl] = ACTIONS(3072), - [aux_sym_accumulation_verb_token1] = ACTIONS(3075), - [anon_sym_for] = ACTIONS(3075), - [anon_sym_and] = ACTIONS(3075), - [anon_sym_as] = ACTIONS(3075), - [anon_sym_with] = ACTIONS(3075), - [anon_sym_do] = ACTIONS(3075), - [anon_sym_while] = ACTIONS(3075), - [anon_sym_until] = ACTIONS(3075), - [anon_sym_repeat] = ACTIONS(3075), - [anon_sym_when] = ACTIONS(3075), - [anon_sym_if] = ACTIONS(3075), - [anon_sym_unless] = ACTIONS(3075), - [anon_sym_always] = ACTIONS(3075), - [anon_sym_thereis] = ACTIONS(3075), - [anon_sym_never] = ACTIONS(3075), - [anon_sym_else] = ACTIONS(3075), - [anon_sym_finally] = ACTIONS(3075), - [anon_sym_return] = ACTIONS(3075), - [anon_sym_initially] = ACTIONS(3075), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(3077), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), - }, - [161] = { - [sym__gap] = STATE(155), - [sym_dis_expr] = STATE(155), + [sym__gap] = STATE(205), + [sym_dis_expr] = STATE(205), [sym__form] = STATE(2114), [sym_num_lit] = STATE(2114), [sym_kwd_lit] = STATE(2114), [sym_str_lit] = STATE(2114), [sym_char_lit] = STATE(2114), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(2114), - [sym__bare_list_lit] = STATE(2648), + [sym__bare_list_lit] = STATE(2584), [sym_vec_lit] = STATE(2114), [sym_set_lit] = STATE(2114), - [sym__bare_set_lit] = STATE(2625), + [sym__bare_set_lit] = STATE(2589), [sym_read_cond_lit] = STATE(2114), [sym_splicing_read_cond_lit] = STATE(2114), [sym_var_quoting_lit] = STATE(2114), @@ -28519,10129 +27833,10387 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(2114), [sym_unquote_splicing_lit] = STATE(2114), [sym_unquoting_lit] = STATE(2114), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), [sym_path_lit] = STATE(2114), [sym_package_lit] = STATE(2114), [sym_include_reader_macro] = STATE(2114), [sym_complex_num_lit] = STATE(2114), - [aux_sym_dis_expr_repeat1] = STATE(155), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(3079), - [sym_comment] = ACTIONS(3079), - [anon_sym_POUND_] = ACTIONS(2267), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(3082), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(2272), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(3082), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2275), - [anon_sym_POUND_CARET] = ACTIONS(2278), - [anon_sym_LPAREN] = ACTIONS(2281), - [anon_sym_RPAREN] = ACTIONS(2284), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [aux_sym_dis_expr_repeat1] = STATE(205), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(2832), + [sym_comment] = ACTIONS(2832), + [anon_sym_POUND_] = ACTIONS(2301), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(2835), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(2306), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(2835), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(2309), + [anon_sym_POUND_CARET] = ACTIONS(2312), + [anon_sym_LPAREN] = ACTIONS(2315), + [anon_sym_RPAREN] = ACTIONS(2318), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2835), + [anon_sym_cl] = ACTIONS(2320), + [aux_sym_accumulation_verb_token1] = ACTIONS(2323), + [anon_sym_for] = ACTIONS(2323), + [anon_sym_and] = ACTIONS(2323), + [anon_sym_as] = ACTIONS(2323), + [anon_sym_with] = ACTIONS(2323), + [anon_sym_do] = ACTIONS(2323), + [anon_sym_while] = ACTIONS(2323), + [anon_sym_until] = ACTIONS(2323), + [anon_sym_repeat] = ACTIONS(2323), + [anon_sym_when] = ACTIONS(2323), + [anon_sym_if] = ACTIONS(2323), + [anon_sym_unless] = ACTIONS(2323), + [anon_sym_always] = ACTIONS(2323), + [anon_sym_thereis] = ACTIONS(2323), + [anon_sym_never] = ACTIONS(2323), + [anon_sym_else] = ACTIONS(2323), + [anon_sym_finally] = ACTIONS(2323), + [anon_sym_return] = ACTIONS(2323), + [anon_sym_initially] = ACTIONS(2323), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(2837), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), + }, + [159] = { + [sym__gap] = STATE(206), + [sym_dis_expr] = STATE(206), + [sym__form] = STATE(2118), + [sym_num_lit] = STATE(2118), + [sym_kwd_lit] = STATE(2118), + [sym_str_lit] = STATE(2118), + [sym_char_lit] = STATE(2118), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2118), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2118), + [sym_set_lit] = STATE(2118), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2118), + [sym_splicing_read_cond_lit] = STATE(2118), + [sym_var_quoting_lit] = STATE(2118), + [sym_quoting_lit] = STATE(2118), + [sym_syn_quoting_lit] = STATE(2118), + [sym_unquote_splicing_lit] = STATE(2118), + [sym_unquoting_lit] = STATE(2118), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2118), + [sym_package_lit] = STATE(2118), + [sym_include_reader_macro] = STATE(2118), + [sym_complex_num_lit] = STATE(2118), + [aux_sym_dis_expr_repeat1] = STATE(206), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(2839), + [sym_comment] = ACTIONS(2839), + [anon_sym_POUND_] = ACTIONS(2388), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(2842), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(2393), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(2842), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(2396), + [anon_sym_POUND_CARET] = ACTIONS(2399), + [anon_sym_LPAREN] = ACTIONS(2402), + [anon_sym_RPAREN] = ACTIONS(2405), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2842), + [anon_sym_cl] = ACTIONS(2407), + [aux_sym_accumulation_verb_token1] = ACTIONS(2410), + [anon_sym_for] = ACTIONS(2410), + [anon_sym_and] = ACTIONS(2410), + [anon_sym_as] = ACTIONS(2410), + [anon_sym_with] = ACTIONS(2410), + [anon_sym_do] = ACTIONS(2410), + [anon_sym_while] = ACTIONS(2410), + [anon_sym_until] = ACTIONS(2410), + [anon_sym_repeat] = ACTIONS(2410), + [anon_sym_when] = ACTIONS(2410), + [anon_sym_if] = ACTIONS(2410), + [anon_sym_unless] = ACTIONS(2410), + [anon_sym_always] = ACTIONS(2410), + [anon_sym_thereis] = ACTIONS(2410), + [anon_sym_never] = ACTIONS(2410), + [anon_sym_else] = ACTIONS(2410), + [anon_sym_finally] = ACTIONS(2410), + [anon_sym_return] = ACTIONS(2410), + [anon_sym_initially] = ACTIONS(2410), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(2844), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), + }, + [160] = { + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2133), + [sym_num_lit] = STATE(2133), + [sym_kwd_lit] = STATE(2133), + [sym_str_lit] = STATE(2133), + [sym_char_lit] = STATE(2133), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2133), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2133), + [sym_set_lit] = STATE(2133), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2133), + [sym_splicing_read_cond_lit] = STATE(2133), + [sym_var_quoting_lit] = STATE(2133), + [sym_quoting_lit] = STATE(2133), + [sym_syn_quoting_lit] = STATE(2133), + [sym_unquote_splicing_lit] = STATE(2133), + [sym_unquoting_lit] = STATE(2133), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2133), + [sym_package_lit] = STATE(2133), + [sym_include_reader_macro] = STATE(2133), + [sym_complex_num_lit] = STATE(2133), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(2414), + [sym_comment] = ACTIONS(2414), + [anon_sym_POUND_] = ACTIONS(2388), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(2846), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(2393), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(2846), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(2396), + [anon_sym_POUND_CARET] = ACTIONS(2399), + [anon_sym_LPAREN] = ACTIONS(2402), + [anon_sym_RPAREN] = ACTIONS(2405), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2846), + [anon_sym_cl] = ACTIONS(2407), + [aux_sym_accumulation_verb_token1] = ACTIONS(2410), + [anon_sym_for] = ACTIONS(2410), + [anon_sym_and] = ACTIONS(2410), + [anon_sym_as] = ACTIONS(2410), + [anon_sym_with] = ACTIONS(2410), + [anon_sym_do] = ACTIONS(2410), + [anon_sym_while] = ACTIONS(2410), + [anon_sym_until] = ACTIONS(2410), + [anon_sym_repeat] = ACTIONS(2410), + [anon_sym_when] = ACTIONS(2410), + [anon_sym_if] = ACTIONS(2410), + [anon_sym_unless] = ACTIONS(2410), + [anon_sym_always] = ACTIONS(2410), + [anon_sym_thereis] = ACTIONS(2410), + [anon_sym_never] = ACTIONS(2410), + [anon_sym_else] = ACTIONS(2410), + [anon_sym_finally] = ACTIONS(2410), + [anon_sym_return] = ACTIONS(2410), + [anon_sym_initially] = ACTIONS(2410), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(2848), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), + }, + [161] = { + [sym__gap] = STATE(209), + [sym_dis_expr] = STATE(209), + [sym__form] = STATE(2137), + [sym_num_lit] = STATE(2137), + [sym_kwd_lit] = STATE(2137), + [sym_str_lit] = STATE(2137), + [sym_char_lit] = STATE(2137), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2137), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2137), + [sym_set_lit] = STATE(2137), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2137), + [sym_splicing_read_cond_lit] = STATE(2137), + [sym_var_quoting_lit] = STATE(2137), + [sym_quoting_lit] = STATE(2137), + [sym_syn_quoting_lit] = STATE(2137), + [sym_unquote_splicing_lit] = STATE(2137), + [sym_unquoting_lit] = STATE(2137), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2137), + [sym_package_lit] = STATE(2137), + [sym_include_reader_macro] = STATE(2137), + [sym_complex_num_lit] = STATE(2137), + [aux_sym_dis_expr_repeat1] = STATE(209), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(2850), + [sym_comment] = ACTIONS(2850), + [anon_sym_POUND_] = ACTIONS(2388), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(2853), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(2393), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(2853), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(2396), + [anon_sym_POUND_CARET] = ACTIONS(2399), + [anon_sym_LPAREN] = ACTIONS(2402), + [anon_sym_RPAREN] = ACTIONS(2405), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3082), - [anon_sym_cl] = ACTIONS(2286), - [aux_sym_accumulation_verb_token1] = ACTIONS(2289), - [anon_sym_for] = ACTIONS(2289), - [anon_sym_and] = ACTIONS(2289), - [anon_sym_as] = ACTIONS(2289), - [anon_sym_with] = ACTIONS(2289), - [anon_sym_do] = ACTIONS(2289), - [anon_sym_while] = ACTIONS(2289), - [anon_sym_until] = ACTIONS(2289), - [anon_sym_repeat] = ACTIONS(2289), - [anon_sym_when] = ACTIONS(2289), - [anon_sym_if] = ACTIONS(2289), - [anon_sym_unless] = ACTIONS(2289), - [anon_sym_always] = ACTIONS(2289), - [anon_sym_thereis] = ACTIONS(2289), - [anon_sym_never] = ACTIONS(2289), - [anon_sym_else] = ACTIONS(2289), - [anon_sym_finally] = ACTIONS(2289), - [anon_sym_return] = ACTIONS(2289), - [anon_sym_initially] = ACTIONS(2289), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(3084), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(2853), + [anon_sym_cl] = ACTIONS(2407), + [aux_sym_accumulation_verb_token1] = ACTIONS(2410), + [anon_sym_for] = ACTIONS(2410), + [anon_sym_and] = ACTIONS(2410), + [anon_sym_as] = ACTIONS(2410), + [anon_sym_with] = ACTIONS(2410), + [anon_sym_do] = ACTIONS(2410), + [anon_sym_while] = ACTIONS(2410), + [anon_sym_until] = ACTIONS(2410), + [anon_sym_repeat] = ACTIONS(2410), + [anon_sym_when] = ACTIONS(2410), + [anon_sym_if] = ACTIONS(2410), + [anon_sym_unless] = ACTIONS(2410), + [anon_sym_always] = ACTIONS(2410), + [anon_sym_thereis] = ACTIONS(2410), + [anon_sym_never] = ACTIONS(2410), + [anon_sym_else] = ACTIONS(2410), + [anon_sym_finally] = ACTIONS(2410), + [anon_sym_return] = ACTIONS(2410), + [anon_sym_initially] = ACTIONS(2410), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(2855), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [162] = { - [sym__gap] = STATE(236), - [sym_dis_expr] = STATE(236), - [sym__form] = STATE(2328), - [sym_num_lit] = STATE(2328), - [sym_kwd_lit] = STATE(2328), - [sym_str_lit] = STATE(2328), - [sym_char_lit] = STATE(2328), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2328), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2328), - [sym_set_lit] = STATE(2328), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2328), - [sym_splicing_read_cond_lit] = STATE(2328), - [sym_var_quoting_lit] = STATE(2328), - [sym_quoting_lit] = STATE(2328), - [sym_syn_quoting_lit] = STATE(2328), - [sym_unquote_splicing_lit] = STATE(2328), - [sym_unquoting_lit] = STATE(2328), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2328), - [sym_package_lit] = STATE(2328), - [sym_include_reader_macro] = STATE(2328), - [sym_complex_num_lit] = STATE(2328), - [aux_sym_dis_expr_repeat1] = STATE(236), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(3086), - [sym_comment] = ACTIONS(3086), - [anon_sym_POUND_] = ACTIONS(2999), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(3089), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(3004), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(3089), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(3007), - [anon_sym_POUND_CARET] = ACTIONS(3010), - [anon_sym_LPAREN] = ACTIONS(3013), - [anon_sym_RPAREN] = ACTIONS(3016), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2204), + [sym_num_lit] = STATE(2204), + [sym_kwd_lit] = STATE(2204), + [sym_str_lit] = STATE(2204), + [sym_char_lit] = STATE(2204), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2204), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2204), + [sym_set_lit] = STATE(2204), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2204), + [sym_splicing_read_cond_lit] = STATE(2204), + [sym_var_quoting_lit] = STATE(2204), + [sym_quoting_lit] = STATE(2204), + [sym_syn_quoting_lit] = STATE(2204), + [sym_unquote_splicing_lit] = STATE(2204), + [sym_unquoting_lit] = STATE(2204), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2204), + [sym_package_lit] = STATE(2204), + [sym_include_reader_macro] = STATE(2204), + [sym_complex_num_lit] = STATE(2204), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(2857), + [sym_comment] = ACTIONS(2857), + [anon_sym_POUND_] = ACTIONS(2860), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(2863), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(2865), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(2863), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(2868), + [anon_sym_POUND_CARET] = ACTIONS(2871), + [anon_sym_LPAREN] = ACTIONS(2874), + [anon_sym_RPAREN] = ACTIONS(2877), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3089), - [anon_sym_cl] = ACTIONS(3018), - [aux_sym_accumulation_verb_token1] = ACTIONS(3021), - [anon_sym_for] = ACTIONS(3021), - [anon_sym_and] = ACTIONS(3021), - [anon_sym_as] = ACTIONS(3021), - [anon_sym_with] = ACTIONS(3021), - [anon_sym_do] = ACTIONS(3021), - [anon_sym_while] = ACTIONS(3021), - [anon_sym_until] = ACTIONS(3021), - [anon_sym_repeat] = ACTIONS(3021), - [anon_sym_when] = ACTIONS(3021), - [anon_sym_if] = ACTIONS(3021), - [anon_sym_unless] = ACTIONS(3021), - [anon_sym_always] = ACTIONS(3021), - [anon_sym_thereis] = ACTIONS(3021), - [anon_sym_never] = ACTIONS(3021), - [anon_sym_else] = ACTIONS(3021), - [anon_sym_finally] = ACTIONS(3021), - [anon_sym_return] = ACTIONS(3021), - [anon_sym_initially] = ACTIONS(3021), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(3091), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(2863), + [anon_sym_cl] = ACTIONS(2879), + [aux_sym_accumulation_verb_token1] = ACTIONS(2882), + [anon_sym_for] = ACTIONS(2882), + [anon_sym_and] = ACTIONS(2882), + [anon_sym_as] = ACTIONS(2882), + [anon_sym_with] = ACTIONS(2882), + [anon_sym_do] = ACTIONS(2882), + [anon_sym_while] = ACTIONS(2882), + [anon_sym_until] = ACTIONS(2882), + [anon_sym_repeat] = ACTIONS(2882), + [anon_sym_when] = ACTIONS(2882), + [anon_sym_if] = ACTIONS(2882), + [anon_sym_unless] = ACTIONS(2882), + [anon_sym_always] = ACTIONS(2882), + [anon_sym_thereis] = ACTIONS(2882), + [anon_sym_never] = ACTIONS(2882), + [anon_sym_else] = ACTIONS(2882), + [anon_sym_finally] = ACTIONS(2882), + [anon_sym_return] = ACTIONS(2882), + [anon_sym_initially] = ACTIONS(2882), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(2884), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [163] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2375), - [sym_num_lit] = STATE(2375), - [sym_kwd_lit] = STATE(2375), - [sym_str_lit] = STATE(2375), - [sym_char_lit] = STATE(2375), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2375), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2375), - [sym_set_lit] = STATE(2375), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2375), - [sym_splicing_read_cond_lit] = STATE(2375), - [sym_var_quoting_lit] = STATE(2375), - [sym_quoting_lit] = STATE(2375), - [sym_syn_quoting_lit] = STATE(2375), - [sym_unquote_splicing_lit] = STATE(2375), - [sym_unquoting_lit] = STATE(2375), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2375), - [sym_package_lit] = STATE(2375), - [sym_include_reader_macro] = STATE(2375), - [sym_complex_num_lit] = STATE(2375), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(2996), - [sym_comment] = ACTIONS(2996), - [anon_sym_POUND_] = ACTIONS(2999), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(3093), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(3004), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(3093), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(3007), - [anon_sym_POUND_CARET] = ACTIONS(3010), - [anon_sym_LPAREN] = ACTIONS(3013), - [anon_sym_RPAREN] = ACTIONS(3016), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2206), + [sym_num_lit] = STATE(2206), + [sym_kwd_lit] = STATE(2206), + [sym_str_lit] = STATE(2206), + [sym_char_lit] = STATE(2206), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2206), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2206), + [sym_set_lit] = STATE(2206), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2206), + [sym_splicing_read_cond_lit] = STATE(2206), + [sym_var_quoting_lit] = STATE(2206), + [sym_quoting_lit] = STATE(2206), + [sym_syn_quoting_lit] = STATE(2206), + [sym_unquote_splicing_lit] = STATE(2206), + [sym_unquoting_lit] = STATE(2206), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2206), + [sym_package_lit] = STATE(2206), + [sym_include_reader_macro] = STATE(2206), + [sym_complex_num_lit] = STATE(2206), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(2857), + [sym_comment] = ACTIONS(2857), + [anon_sym_POUND_] = ACTIONS(2860), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(2886), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(2865), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(2886), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(2868), + [anon_sym_POUND_CARET] = ACTIONS(2871), + [anon_sym_LPAREN] = ACTIONS(2874), + [anon_sym_RPAREN] = ACTIONS(2877), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3093), - [anon_sym_cl] = ACTIONS(3018), - [aux_sym_accumulation_verb_token1] = ACTIONS(3021), - [anon_sym_for] = ACTIONS(3021), - [anon_sym_and] = ACTIONS(3021), - [anon_sym_as] = ACTIONS(3021), - [anon_sym_with] = ACTIONS(3021), - [anon_sym_do] = ACTIONS(3021), - [anon_sym_while] = ACTIONS(3021), - [anon_sym_until] = ACTIONS(3021), - [anon_sym_repeat] = ACTIONS(3021), - [anon_sym_when] = ACTIONS(3021), - [anon_sym_if] = ACTIONS(3021), - [anon_sym_unless] = ACTIONS(3021), - [anon_sym_always] = ACTIONS(3021), - [anon_sym_thereis] = ACTIONS(3021), - [anon_sym_never] = ACTIONS(3021), - [anon_sym_else] = ACTIONS(3021), - [anon_sym_finally] = ACTIONS(3021), - [anon_sym_return] = ACTIONS(3021), - [anon_sym_initially] = ACTIONS(3021), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(3095), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(2886), + [anon_sym_cl] = ACTIONS(2879), + [aux_sym_accumulation_verb_token1] = ACTIONS(2882), + [anon_sym_for] = ACTIONS(2882), + [anon_sym_and] = ACTIONS(2882), + [anon_sym_as] = ACTIONS(2882), + [anon_sym_with] = ACTIONS(2882), + [anon_sym_do] = ACTIONS(2882), + [anon_sym_while] = ACTIONS(2882), + [anon_sym_until] = ACTIONS(2882), + [anon_sym_repeat] = ACTIONS(2882), + [anon_sym_when] = ACTIONS(2882), + [anon_sym_if] = ACTIONS(2882), + [anon_sym_unless] = ACTIONS(2882), + [anon_sym_always] = ACTIONS(2882), + [anon_sym_thereis] = ACTIONS(2882), + [anon_sym_never] = ACTIONS(2882), + [anon_sym_else] = ACTIONS(2882), + [anon_sym_finally] = ACTIONS(2882), + [anon_sym_return] = ACTIONS(2882), + [anon_sym_initially] = ACTIONS(2882), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(2888), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [164] = { - [sym__gap] = STATE(128), - [sym_dis_expr] = STATE(128), - [sym__form] = STATE(2117), - [sym_num_lit] = STATE(2117), - [sym_kwd_lit] = STATE(2117), - [sym_str_lit] = STATE(2117), - [sym_char_lit] = STATE(2117), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2117), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2117), - [sym_set_lit] = STATE(2117), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2117), - [sym_splicing_read_cond_lit] = STATE(2117), - [sym_var_quoting_lit] = STATE(2117), - [sym_quoting_lit] = STATE(2117), - [sym_syn_quoting_lit] = STATE(2117), - [sym_unquote_splicing_lit] = STATE(2117), - [sym_unquoting_lit] = STATE(2117), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2117), - [sym_package_lit] = STATE(2117), - [sym_include_reader_macro] = STATE(2117), - [sym_complex_num_lit] = STATE(2117), - [aux_sym_dis_expr_repeat1] = STATE(128), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(3097), - [sym_comment] = ACTIONS(3097), - [anon_sym_POUND_] = ACTIONS(1410), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(3100), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(1415), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(3100), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_POUND_CARET] = ACTIONS(1421), - [anon_sym_LPAREN] = ACTIONS(1424), - [anon_sym_RPAREN] = ACTIONS(1427), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(210), + [sym_dis_expr] = STATE(210), + [sym__form] = STATE(2207), + [sym_num_lit] = STATE(2207), + [sym_kwd_lit] = STATE(2207), + [sym_str_lit] = STATE(2207), + [sym_char_lit] = STATE(2207), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2207), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2207), + [sym_set_lit] = STATE(2207), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2207), + [sym_splicing_read_cond_lit] = STATE(2207), + [sym_var_quoting_lit] = STATE(2207), + [sym_quoting_lit] = STATE(2207), + [sym_syn_quoting_lit] = STATE(2207), + [sym_unquote_splicing_lit] = STATE(2207), + [sym_unquoting_lit] = STATE(2207), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2207), + [sym_package_lit] = STATE(2207), + [sym_include_reader_macro] = STATE(2207), + [sym_complex_num_lit] = STATE(2207), + [aux_sym_dis_expr_repeat1] = STATE(210), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(2890), + [sym_comment] = ACTIONS(2890), + [anon_sym_POUND_] = ACTIONS(2860), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(2893), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(2865), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(2893), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(2868), + [anon_sym_POUND_CARET] = ACTIONS(2871), + [anon_sym_LPAREN] = ACTIONS(2874), + [anon_sym_RPAREN] = ACTIONS(2877), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3100), - [anon_sym_cl] = ACTIONS(1429), - [aux_sym_accumulation_verb_token1] = ACTIONS(1432), - [anon_sym_for] = ACTIONS(1432), - [anon_sym_and] = ACTIONS(1432), - [anon_sym_as] = ACTIONS(1432), - [anon_sym_with] = ACTIONS(1432), - [anon_sym_do] = ACTIONS(1432), - [anon_sym_while] = ACTIONS(1432), - [anon_sym_until] = ACTIONS(1432), - [anon_sym_repeat] = ACTIONS(1432), - [anon_sym_when] = ACTIONS(1432), - [anon_sym_if] = ACTIONS(1432), - [anon_sym_unless] = ACTIONS(1432), - [anon_sym_always] = ACTIONS(1432), - [anon_sym_thereis] = ACTIONS(1432), - [anon_sym_never] = ACTIONS(1432), - [anon_sym_else] = ACTIONS(1432), - [anon_sym_finally] = ACTIONS(1432), - [anon_sym_return] = ACTIONS(1432), - [anon_sym_initially] = ACTIONS(1432), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(3102), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(2893), + [anon_sym_cl] = ACTIONS(2879), + [aux_sym_accumulation_verb_token1] = ACTIONS(2882), + [anon_sym_for] = ACTIONS(2882), + [anon_sym_and] = ACTIONS(2882), + [anon_sym_as] = ACTIONS(2882), + [anon_sym_with] = ACTIONS(2882), + [anon_sym_do] = ACTIONS(2882), + [anon_sym_while] = ACTIONS(2882), + [anon_sym_until] = ACTIONS(2882), + [anon_sym_repeat] = ACTIONS(2882), + [anon_sym_when] = ACTIONS(2882), + [anon_sym_if] = ACTIONS(2882), + [anon_sym_unless] = ACTIONS(2882), + [anon_sym_always] = ACTIONS(2882), + [anon_sym_thereis] = ACTIONS(2882), + [anon_sym_never] = ACTIONS(2882), + [anon_sym_else] = ACTIONS(2882), + [anon_sym_finally] = ACTIONS(2882), + [anon_sym_return] = ACTIONS(2882), + [anon_sym_initially] = ACTIONS(2882), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(2895), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [165] = { - [sym__gap] = STATE(50), - [sym_dis_expr] = STATE(50), - [sym__form] = STATE(2429), - [sym_num_lit] = STATE(2429), - [sym_kwd_lit] = STATE(2429), - [sym_str_lit] = STATE(2429), - [sym_char_lit] = STATE(2429), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2429), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2429), - [sym_set_lit] = STATE(2429), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2429), - [sym_splicing_read_cond_lit] = STATE(2429), - [sym_var_quoting_lit] = STATE(2429), - [sym_quoting_lit] = STATE(2429), - [sym_syn_quoting_lit] = STATE(2429), - [sym_unquote_splicing_lit] = STATE(2429), - [sym_unquoting_lit] = STATE(2429), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2429), - [sym_package_lit] = STATE(2429), - [sym_include_reader_macro] = STATE(2429), - [sym_complex_num_lit] = STATE(2429), - [aux_sym_dis_expr_repeat1] = STATE(50), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(3104), - [sym_comment] = ACTIONS(3104), - [anon_sym_POUND_] = ACTIONS(3107), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(3110), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(3112), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(3110), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(810), - [anon_sym_POUND_CARET] = ACTIONS(813), - [anon_sym_LPAREN] = ACTIONS(3115), - [anon_sym_RPAREN] = ACTIONS(819), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2213), + [sym_num_lit] = STATE(2213), + [sym_kwd_lit] = STATE(2213), + [sym_str_lit] = STATE(2213), + [sym_char_lit] = STATE(2213), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2213), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2213), + [sym_set_lit] = STATE(2213), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2213), + [sym_splicing_read_cond_lit] = STATE(2213), + [sym_var_quoting_lit] = STATE(2213), + [sym_quoting_lit] = STATE(2213), + [sym_syn_quoting_lit] = STATE(2213), + [sym_unquote_splicing_lit] = STATE(2213), + [sym_unquoting_lit] = STATE(2213), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2213), + [sym_package_lit] = STATE(2213), + [sym_include_reader_macro] = STATE(2213), + [sym_complex_num_lit] = STATE(2213), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(2897), + [sym_comment] = ACTIONS(2897), + [anon_sym_POUND_] = ACTIONS(2900), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(2903), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(2905), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(2903), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(2908), + [anon_sym_POUND_CARET] = ACTIONS(2911), + [anon_sym_LPAREN] = ACTIONS(2914), + [anon_sym_RPAREN] = ACTIONS(2917), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3110), - [anon_sym_cl] = ACTIONS(3118), - [aux_sym_accumulation_verb_token1] = ACTIONS(826), - [anon_sym_for] = ACTIONS(826), - [anon_sym_and] = ACTIONS(826), - [anon_sym_as] = ACTIONS(826), - [anon_sym_with] = ACTIONS(826), - [anon_sym_do] = ACTIONS(826), - [anon_sym_while] = ACTIONS(826), - [anon_sym_until] = ACTIONS(826), - [anon_sym_repeat] = ACTIONS(826), - [anon_sym_when] = ACTIONS(826), - [anon_sym_if] = ACTIONS(826), - [anon_sym_unless] = ACTIONS(826), - [anon_sym_always] = ACTIONS(826), - [anon_sym_thereis] = ACTIONS(826), - [anon_sym_never] = ACTIONS(826), - [anon_sym_else] = ACTIONS(826), - [anon_sym_finally] = ACTIONS(826), - [anon_sym_return] = ACTIONS(826), - [anon_sym_initially] = ACTIONS(826), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(3121), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(2903), + [anon_sym_cl] = ACTIONS(2919), + [aux_sym_accumulation_verb_token1] = ACTIONS(2922), + [anon_sym_for] = ACTIONS(2922), + [anon_sym_and] = ACTIONS(2922), + [anon_sym_as] = ACTIONS(2922), + [anon_sym_with] = ACTIONS(2922), + [anon_sym_do] = ACTIONS(2922), + [anon_sym_while] = ACTIONS(2922), + [anon_sym_until] = ACTIONS(2922), + [anon_sym_repeat] = ACTIONS(2922), + [anon_sym_when] = ACTIONS(2922), + [anon_sym_if] = ACTIONS(2922), + [anon_sym_unless] = ACTIONS(2922), + [anon_sym_always] = ACTIONS(2922), + [anon_sym_thereis] = ACTIONS(2922), + [anon_sym_never] = ACTIONS(2922), + [anon_sym_else] = ACTIONS(2922), + [anon_sym_finally] = ACTIONS(2922), + [anon_sym_return] = ACTIONS(2922), + [anon_sym_initially] = ACTIONS(2922), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(2924), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [166] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2446), - [sym_num_lit] = STATE(2446), - [sym_kwd_lit] = STATE(2446), - [sym_str_lit] = STATE(2446), - [sym_char_lit] = STATE(2446), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2446), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2446), - [sym_set_lit] = STATE(2446), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2446), - [sym_splicing_read_cond_lit] = STATE(2446), - [sym_var_quoting_lit] = STATE(2446), - [sym_quoting_lit] = STATE(2446), - [sym_syn_quoting_lit] = STATE(2446), - [sym_unquote_splicing_lit] = STATE(2446), - [sym_unquoting_lit] = STATE(2446), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2446), - [sym_package_lit] = STATE(2446), - [sym_include_reader_macro] = STATE(2446), - [sym_complex_num_lit] = STATE(2446), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(2826), - [sym_comment] = ACTIONS(2826), - [anon_sym_POUND_] = ACTIONS(2800), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(3123), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(2805), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(3123), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2808), - [anon_sym_POUND_CARET] = ACTIONS(2811), - [anon_sym_LPAREN] = ACTIONS(2814), - [anon_sym_RPAREN] = ACTIONS(2817), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(211), + [sym_dis_expr] = STATE(211), + [sym__form] = STATE(2214), + [sym_num_lit] = STATE(2214), + [sym_kwd_lit] = STATE(2214), + [sym_str_lit] = STATE(2214), + [sym_char_lit] = STATE(2214), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2214), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2214), + [sym_set_lit] = STATE(2214), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2214), + [sym_splicing_read_cond_lit] = STATE(2214), + [sym_var_quoting_lit] = STATE(2214), + [sym_quoting_lit] = STATE(2214), + [sym_syn_quoting_lit] = STATE(2214), + [sym_unquote_splicing_lit] = STATE(2214), + [sym_unquoting_lit] = STATE(2214), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2214), + [sym_package_lit] = STATE(2214), + [sym_include_reader_macro] = STATE(2214), + [sym_complex_num_lit] = STATE(2214), + [aux_sym_dis_expr_repeat1] = STATE(211), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(2926), + [sym_comment] = ACTIONS(2926), + [anon_sym_POUND_] = ACTIONS(2900), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(2929), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(2905), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(2929), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(2908), + [anon_sym_POUND_CARET] = ACTIONS(2911), + [anon_sym_LPAREN] = ACTIONS(2914), + [anon_sym_RPAREN] = ACTIONS(2917), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3123), - [anon_sym_cl] = ACTIONS(2819), - [aux_sym_accumulation_verb_token1] = ACTIONS(2822), - [anon_sym_for] = ACTIONS(2822), - [anon_sym_and] = ACTIONS(2822), - [anon_sym_as] = ACTIONS(2822), - [anon_sym_with] = ACTIONS(2822), - [anon_sym_do] = ACTIONS(2822), - [anon_sym_while] = ACTIONS(2822), - [anon_sym_until] = ACTIONS(2822), - [anon_sym_repeat] = ACTIONS(2822), - [anon_sym_when] = ACTIONS(2822), - [anon_sym_if] = ACTIONS(2822), - [anon_sym_unless] = ACTIONS(2822), - [anon_sym_always] = ACTIONS(2822), - [anon_sym_thereis] = ACTIONS(2822), - [anon_sym_never] = ACTIONS(2822), - [anon_sym_else] = ACTIONS(2822), - [anon_sym_finally] = ACTIONS(2822), - [anon_sym_return] = ACTIONS(2822), - [anon_sym_initially] = ACTIONS(2822), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(3125), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(2929), + [anon_sym_cl] = ACTIONS(2919), + [aux_sym_accumulation_verb_token1] = ACTIONS(2922), + [anon_sym_for] = ACTIONS(2922), + [anon_sym_and] = ACTIONS(2922), + [anon_sym_as] = ACTIONS(2922), + [anon_sym_with] = ACTIONS(2922), + [anon_sym_do] = ACTIONS(2922), + [anon_sym_while] = ACTIONS(2922), + [anon_sym_until] = ACTIONS(2922), + [anon_sym_repeat] = ACTIONS(2922), + [anon_sym_when] = ACTIONS(2922), + [anon_sym_if] = ACTIONS(2922), + [anon_sym_unless] = ACTIONS(2922), + [anon_sym_always] = ACTIONS(2922), + [anon_sym_thereis] = ACTIONS(2922), + [anon_sym_never] = ACTIONS(2922), + [anon_sym_else] = ACTIONS(2922), + [anon_sym_finally] = ACTIONS(2922), + [anon_sym_return] = ACTIONS(2922), + [anon_sym_initially] = ACTIONS(2922), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(2931), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [167] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2450), - [sym_num_lit] = STATE(2450), - [sym_kwd_lit] = STATE(2450), - [sym_str_lit] = STATE(2450), - [sym_char_lit] = STATE(2450), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2450), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2450), - [sym_set_lit] = STATE(2450), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2450), - [sym_splicing_read_cond_lit] = STATE(2450), - [sym_var_quoting_lit] = STATE(2450), - [sym_quoting_lit] = STATE(2450), - [sym_syn_quoting_lit] = STATE(2450), - [sym_unquote_splicing_lit] = STATE(2450), - [sym_unquoting_lit] = STATE(2450), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2450), - [sym_package_lit] = STATE(2450), - [sym_include_reader_macro] = STATE(2450), - [sym_complex_num_lit] = STATE(2450), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(2833), - [sym_comment] = ACTIONS(2833), - [anon_sym_POUND_] = ACTIONS(2836), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(3127), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(2841), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(3127), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2844), - [anon_sym_POUND_CARET] = ACTIONS(2847), - [anon_sym_LPAREN] = ACTIONS(2850), - [anon_sym_RPAREN] = ACTIONS(2853), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(212), + [sym_dis_expr] = STATE(212), + [sym__form] = STATE(2217), + [sym_num_lit] = STATE(2217), + [sym_kwd_lit] = STATE(2217), + [sym_str_lit] = STATE(2217), + [sym_char_lit] = STATE(2217), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2217), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2217), + [sym_set_lit] = STATE(2217), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2217), + [sym_splicing_read_cond_lit] = STATE(2217), + [sym_var_quoting_lit] = STATE(2217), + [sym_quoting_lit] = STATE(2217), + [sym_syn_quoting_lit] = STATE(2217), + [sym_unquote_splicing_lit] = STATE(2217), + [sym_unquoting_lit] = STATE(2217), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2217), + [sym_package_lit] = STATE(2217), + [sym_include_reader_macro] = STATE(2217), + [sym_complex_num_lit] = STATE(2217), + [aux_sym_dis_expr_repeat1] = STATE(212), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(2933), + [sym_comment] = ACTIONS(2933), + [anon_sym_POUND_] = ACTIONS(2900), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(2936), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(2905), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(2936), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(2908), + [anon_sym_POUND_CARET] = ACTIONS(2911), + [anon_sym_LPAREN] = ACTIONS(2914), + [anon_sym_RPAREN] = ACTIONS(2917), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3127), - [anon_sym_cl] = ACTIONS(2855), - [aux_sym_accumulation_verb_token1] = ACTIONS(2858), - [anon_sym_for] = ACTIONS(2858), - [anon_sym_and] = ACTIONS(2858), - [anon_sym_as] = ACTIONS(2858), - [anon_sym_with] = ACTIONS(2858), - [anon_sym_do] = ACTIONS(2858), - [anon_sym_while] = ACTIONS(2858), - [anon_sym_until] = ACTIONS(2858), - [anon_sym_repeat] = ACTIONS(2858), - [anon_sym_when] = ACTIONS(2858), - [anon_sym_if] = ACTIONS(2858), - [anon_sym_unless] = ACTIONS(2858), - [anon_sym_always] = ACTIONS(2858), - [anon_sym_thereis] = ACTIONS(2858), - [anon_sym_never] = ACTIONS(2858), - [anon_sym_else] = ACTIONS(2858), - [anon_sym_finally] = ACTIONS(2858), - [anon_sym_return] = ACTIONS(2858), - [anon_sym_initially] = ACTIONS(2858), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(3129), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(2936), + [anon_sym_cl] = ACTIONS(2919), + [aux_sym_accumulation_verb_token1] = ACTIONS(2922), + [anon_sym_for] = ACTIONS(2922), + [anon_sym_and] = ACTIONS(2922), + [anon_sym_as] = ACTIONS(2922), + [anon_sym_with] = ACTIONS(2922), + [anon_sym_do] = ACTIONS(2922), + [anon_sym_while] = ACTIONS(2922), + [anon_sym_until] = ACTIONS(2922), + [anon_sym_repeat] = ACTIONS(2922), + [anon_sym_when] = ACTIONS(2922), + [anon_sym_if] = ACTIONS(2922), + [anon_sym_unless] = ACTIONS(2922), + [anon_sym_always] = ACTIONS(2922), + [anon_sym_thereis] = ACTIONS(2922), + [anon_sym_never] = ACTIONS(2922), + [anon_sym_else] = ACTIONS(2922), + [anon_sym_finally] = ACTIONS(2922), + [anon_sym_return] = ACTIONS(2922), + [anon_sym_initially] = ACTIONS(2922), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(2938), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [168] = { - [sym__gap] = STATE(79), - [sym_dis_expr] = STATE(79), - [sym__form] = STATE(2457), - [sym_num_lit] = STATE(2457), - [sym_kwd_lit] = STATE(2457), - [sym_str_lit] = STATE(2457), - [sym_char_lit] = STATE(2457), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2457), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2457), - [sym_set_lit] = STATE(2457), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2457), - [sym_splicing_read_cond_lit] = STATE(2457), - [sym_var_quoting_lit] = STATE(2457), - [sym_quoting_lit] = STATE(2457), - [sym_syn_quoting_lit] = STATE(2457), - [sym_unquote_splicing_lit] = STATE(2457), - [sym_unquoting_lit] = STATE(2457), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2457), - [sym_package_lit] = STATE(2457), - [sym_include_reader_macro] = STATE(2457), - [sym_complex_num_lit] = STATE(2457), - [aux_sym_dis_expr_repeat1] = STATE(79), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(3131), - [sym_comment] = ACTIONS(3131), - [anon_sym_POUND_] = ACTIONS(2836), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(3134), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(2841), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(3134), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2844), - [anon_sym_POUND_CARET] = ACTIONS(2847), - [anon_sym_LPAREN] = ACTIONS(2850), - [anon_sym_RPAREN] = ACTIONS(2853), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2220), + [sym_num_lit] = STATE(2220), + [sym_kwd_lit] = STATE(2220), + [sym_str_lit] = STATE(2220), + [sym_char_lit] = STATE(2220), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2220), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2220), + [sym_set_lit] = STATE(2220), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2220), + [sym_splicing_read_cond_lit] = STATE(2220), + [sym_var_quoting_lit] = STATE(2220), + [sym_quoting_lit] = STATE(2220), + [sym_syn_quoting_lit] = STATE(2220), + [sym_unquote_splicing_lit] = STATE(2220), + [sym_unquoting_lit] = STATE(2220), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2220), + [sym_package_lit] = STATE(2220), + [sym_include_reader_macro] = STATE(2220), + [sym_complex_num_lit] = STATE(2220), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(2897), + [sym_comment] = ACTIONS(2897), + [anon_sym_POUND_] = ACTIONS(2900), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(2940), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(2905), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(2940), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(2908), + [anon_sym_POUND_CARET] = ACTIONS(2911), + [anon_sym_LPAREN] = ACTIONS(2914), + [anon_sym_RPAREN] = ACTIONS(2917), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3134), - [anon_sym_cl] = ACTIONS(2855), - [aux_sym_accumulation_verb_token1] = ACTIONS(2858), - [anon_sym_for] = ACTIONS(2858), - [anon_sym_and] = ACTIONS(2858), - [anon_sym_as] = ACTIONS(2858), - [anon_sym_with] = ACTIONS(2858), - [anon_sym_do] = ACTIONS(2858), - [anon_sym_while] = ACTIONS(2858), - [anon_sym_until] = ACTIONS(2858), - [anon_sym_repeat] = ACTIONS(2858), - [anon_sym_when] = ACTIONS(2858), - [anon_sym_if] = ACTIONS(2858), - [anon_sym_unless] = ACTIONS(2858), - [anon_sym_always] = ACTIONS(2858), - [anon_sym_thereis] = ACTIONS(2858), - [anon_sym_never] = ACTIONS(2858), - [anon_sym_else] = ACTIONS(2858), - [anon_sym_finally] = ACTIONS(2858), - [anon_sym_return] = ACTIONS(2858), - [anon_sym_initially] = ACTIONS(2858), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(3136), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(2940), + [anon_sym_cl] = ACTIONS(2919), + [aux_sym_accumulation_verb_token1] = ACTIONS(2922), + [anon_sym_for] = ACTIONS(2922), + [anon_sym_and] = ACTIONS(2922), + [anon_sym_as] = ACTIONS(2922), + [anon_sym_with] = ACTIONS(2922), + [anon_sym_do] = ACTIONS(2922), + [anon_sym_while] = ACTIONS(2922), + [anon_sym_until] = ACTIONS(2922), + [anon_sym_repeat] = ACTIONS(2922), + [anon_sym_when] = ACTIONS(2922), + [anon_sym_if] = ACTIONS(2922), + [anon_sym_unless] = ACTIONS(2922), + [anon_sym_always] = ACTIONS(2922), + [anon_sym_thereis] = ACTIONS(2922), + [anon_sym_never] = ACTIONS(2922), + [anon_sym_else] = ACTIONS(2922), + [anon_sym_finally] = ACTIONS(2922), + [anon_sym_return] = ACTIONS(2922), + [anon_sym_initially] = ACTIONS(2922), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(2942), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [169] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2414), - [sym_num_lit] = STATE(2414), - [sym_kwd_lit] = STATE(2414), - [sym_str_lit] = STATE(2414), - [sym_char_lit] = STATE(2414), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2414), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2414), - [sym_set_lit] = STATE(2414), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2414), - [sym_splicing_read_cond_lit] = STATE(2414), - [sym_var_quoting_lit] = STATE(2414), - [sym_quoting_lit] = STATE(2414), - [sym_syn_quoting_lit] = STATE(2414), - [sym_unquote_splicing_lit] = STATE(2414), - [sym_unquoting_lit] = STATE(2414), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2414), - [sym_package_lit] = STATE(2414), - [sym_include_reader_macro] = STATE(2414), - [sym_complex_num_lit] = STATE(2414), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(3050), - [sym_comment] = ACTIONS(3050), - [anon_sym_POUND_] = ACTIONS(3053), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(3138), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(3058), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(3138), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(3061), - [anon_sym_POUND_CARET] = ACTIONS(3064), - [anon_sym_LPAREN] = ACTIONS(3067), - [anon_sym_RPAREN] = ACTIONS(3070), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2223), + [sym_num_lit] = STATE(2223), + [sym_kwd_lit] = STATE(2223), + [sym_str_lit] = STATE(2223), + [sym_char_lit] = STATE(2223), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2223), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2223), + [sym_set_lit] = STATE(2223), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2223), + [sym_splicing_read_cond_lit] = STATE(2223), + [sym_var_quoting_lit] = STATE(2223), + [sym_quoting_lit] = STATE(2223), + [sym_syn_quoting_lit] = STATE(2223), + [sym_unquote_splicing_lit] = STATE(2223), + [sym_unquoting_lit] = STATE(2223), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2223), + [sym_package_lit] = STATE(2223), + [sym_include_reader_macro] = STATE(2223), + [sym_complex_num_lit] = STATE(2223), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(2944), + [sym_comment] = ACTIONS(2944), + [anon_sym_POUND_] = ACTIONS(2947), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(2950), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(2952), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(2950), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(2955), + [anon_sym_POUND_CARET] = ACTIONS(2958), + [anon_sym_LPAREN] = ACTIONS(2961), + [anon_sym_RPAREN] = ACTIONS(2964), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3138), - [anon_sym_cl] = ACTIONS(3072), - [aux_sym_accumulation_verb_token1] = ACTIONS(3075), - [anon_sym_for] = ACTIONS(3075), - [anon_sym_and] = ACTIONS(3075), - [anon_sym_as] = ACTIONS(3075), - [anon_sym_with] = ACTIONS(3075), - [anon_sym_do] = ACTIONS(3075), - [anon_sym_while] = ACTIONS(3075), - [anon_sym_until] = ACTIONS(3075), - [anon_sym_repeat] = ACTIONS(3075), - [anon_sym_when] = ACTIONS(3075), - [anon_sym_if] = ACTIONS(3075), - [anon_sym_unless] = ACTIONS(3075), - [anon_sym_always] = ACTIONS(3075), - [anon_sym_thereis] = ACTIONS(3075), - [anon_sym_never] = ACTIONS(3075), - [anon_sym_else] = ACTIONS(3075), - [anon_sym_finally] = ACTIONS(3075), - [anon_sym_return] = ACTIONS(3075), - [anon_sym_initially] = ACTIONS(3075), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(3140), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(2950), + [anon_sym_cl] = ACTIONS(2966), + [aux_sym_accumulation_verb_token1] = ACTIONS(2969), + [anon_sym_for] = ACTIONS(2969), + [anon_sym_and] = ACTIONS(2969), + [anon_sym_as] = ACTIONS(2969), + [anon_sym_with] = ACTIONS(2969), + [anon_sym_do] = ACTIONS(2969), + [anon_sym_while] = ACTIONS(2969), + [anon_sym_until] = ACTIONS(2969), + [anon_sym_repeat] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_if] = ACTIONS(2969), + [anon_sym_unless] = ACTIONS(2969), + [anon_sym_always] = ACTIONS(2969), + [anon_sym_thereis] = ACTIONS(2969), + [anon_sym_never] = ACTIONS(2969), + [anon_sym_else] = ACTIONS(2969), + [anon_sym_finally] = ACTIONS(2969), + [anon_sym_return] = ACTIONS(2969), + [anon_sym_initially] = ACTIONS(2969), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(2971), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [170] = { - [sym__gap] = STATE(250), - [sym_dis_expr] = STATE(250), - [sym__form] = STATE(2269), - [sym_num_lit] = STATE(2269), - [sym_kwd_lit] = STATE(2269), - [sym_str_lit] = STATE(2269), - [sym_char_lit] = STATE(2269), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2269), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2269), - [sym_set_lit] = STATE(2269), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2269), - [sym_splicing_read_cond_lit] = STATE(2269), - [sym_var_quoting_lit] = STATE(2269), - [sym_quoting_lit] = STATE(2269), - [sym_syn_quoting_lit] = STATE(2269), - [sym_unquote_splicing_lit] = STATE(2269), - [sym_unquoting_lit] = STATE(2269), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2269), - [sym_package_lit] = STATE(2269), - [sym_include_reader_macro] = STATE(2269), - [sym_complex_num_lit] = STATE(2269), - [aux_sym_dis_expr_repeat1] = STATE(250), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(3142), - [sym_comment] = ACTIONS(3142), - [anon_sym_POUND_] = ACTIONS(2934), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(3145), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(2939), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(3145), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2942), - [anon_sym_POUND_CARET] = ACTIONS(2945), - [anon_sym_LPAREN] = ACTIONS(2948), - [anon_sym_RPAREN] = ACTIONS(2951), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2225), + [sym_num_lit] = STATE(2225), + [sym_kwd_lit] = STATE(2225), + [sym_str_lit] = STATE(2225), + [sym_char_lit] = STATE(2225), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2225), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2225), + [sym_set_lit] = STATE(2225), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2225), + [sym_splicing_read_cond_lit] = STATE(2225), + [sym_var_quoting_lit] = STATE(2225), + [sym_quoting_lit] = STATE(2225), + [sym_syn_quoting_lit] = STATE(2225), + [sym_unquote_splicing_lit] = STATE(2225), + [sym_unquoting_lit] = STATE(2225), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2225), + [sym_package_lit] = STATE(2225), + [sym_include_reader_macro] = STATE(2225), + [sym_complex_num_lit] = STATE(2225), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(2973), + [sym_comment] = ACTIONS(2973), + [anon_sym_POUND_] = ACTIONS(2976), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(2979), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(2981), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(2979), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(2984), + [anon_sym_POUND_CARET] = ACTIONS(2987), + [anon_sym_LPAREN] = ACTIONS(2990), + [anon_sym_RPAREN] = ACTIONS(2993), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3145), - [anon_sym_cl] = ACTIONS(2953), - [aux_sym_accumulation_verb_token1] = ACTIONS(2956), - [anon_sym_for] = ACTIONS(2956), - [anon_sym_and] = ACTIONS(2956), - [anon_sym_as] = ACTIONS(2956), - [anon_sym_with] = ACTIONS(2956), - [anon_sym_do] = ACTIONS(2956), - [anon_sym_while] = ACTIONS(2956), - [anon_sym_until] = ACTIONS(2956), - [anon_sym_repeat] = ACTIONS(2956), - [anon_sym_when] = ACTIONS(2956), - [anon_sym_if] = ACTIONS(2956), - [anon_sym_unless] = ACTIONS(2956), - [anon_sym_always] = ACTIONS(2956), - [anon_sym_thereis] = ACTIONS(2956), - [anon_sym_never] = ACTIONS(2956), - [anon_sym_else] = ACTIONS(2956), - [anon_sym_finally] = ACTIONS(2956), - [anon_sym_return] = ACTIONS(2956), - [anon_sym_initially] = ACTIONS(2956), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(3147), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(2979), + [anon_sym_cl] = ACTIONS(2995), + [aux_sym_accumulation_verb_token1] = ACTIONS(2998), + [anon_sym_for] = ACTIONS(2998), + [anon_sym_and] = ACTIONS(2998), + [anon_sym_as] = ACTIONS(2998), + [anon_sym_with] = ACTIONS(2998), + [anon_sym_do] = ACTIONS(2998), + [anon_sym_while] = ACTIONS(2998), + [anon_sym_until] = ACTIONS(2998), + [anon_sym_repeat] = ACTIONS(2998), + [anon_sym_when] = ACTIONS(2998), + [anon_sym_if] = ACTIONS(2998), + [anon_sym_unless] = ACTIONS(2998), + [anon_sym_always] = ACTIONS(2998), + [anon_sym_thereis] = ACTIONS(2998), + [anon_sym_never] = ACTIONS(2998), + [anon_sym_else] = ACTIONS(2998), + [anon_sym_finally] = ACTIONS(2998), + [anon_sym_return] = ACTIONS(2998), + [anon_sym_initially] = ACTIONS(2998), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(3000), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [171] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2267), - [sym_num_lit] = STATE(2267), - [sym_kwd_lit] = STATE(2267), - [sym_str_lit] = STATE(2267), - [sym_char_lit] = STATE(2267), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2267), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2267), - [sym_set_lit] = STATE(2267), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2267), - [sym_splicing_read_cond_lit] = STATE(2267), - [sym_var_quoting_lit] = STATE(2267), - [sym_quoting_lit] = STATE(2267), - [sym_syn_quoting_lit] = STATE(2267), - [sym_unquote_splicing_lit] = STATE(2267), - [sym_unquoting_lit] = STATE(2267), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2267), - [sym_package_lit] = STATE(2267), - [sym_include_reader_macro] = STATE(2267), - [sym_complex_num_lit] = STATE(2267), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(2960), - [sym_comment] = ACTIONS(2960), - [anon_sym_POUND_] = ACTIONS(2934), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(3149), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(2939), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(3149), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2942), - [anon_sym_POUND_CARET] = ACTIONS(2945), - [anon_sym_LPAREN] = ACTIONS(2948), - [anon_sym_RPAREN] = ACTIONS(2951), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(214), + [sym_dis_expr] = STATE(214), + [sym__form] = STATE(2226), + [sym_num_lit] = STATE(2226), + [sym_kwd_lit] = STATE(2226), + [sym_str_lit] = STATE(2226), + [sym_char_lit] = STATE(2226), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2226), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2226), + [sym_set_lit] = STATE(2226), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2226), + [sym_splicing_read_cond_lit] = STATE(2226), + [sym_var_quoting_lit] = STATE(2226), + [sym_quoting_lit] = STATE(2226), + [sym_syn_quoting_lit] = STATE(2226), + [sym_unquote_splicing_lit] = STATE(2226), + [sym_unquoting_lit] = STATE(2226), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2226), + [sym_package_lit] = STATE(2226), + [sym_include_reader_macro] = STATE(2226), + [sym_complex_num_lit] = STATE(2226), + [aux_sym_dis_expr_repeat1] = STATE(214), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(3002), + [sym_comment] = ACTIONS(3002), + [anon_sym_POUND_] = ACTIONS(2976), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(3005), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(2981), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(3005), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(2984), + [anon_sym_POUND_CARET] = ACTIONS(2987), + [anon_sym_LPAREN] = ACTIONS(2990), + [anon_sym_RPAREN] = ACTIONS(2993), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3149), - [anon_sym_cl] = ACTIONS(2953), - [aux_sym_accumulation_verb_token1] = ACTIONS(2956), - [anon_sym_for] = ACTIONS(2956), - [anon_sym_and] = ACTIONS(2956), - [anon_sym_as] = ACTIONS(2956), - [anon_sym_with] = ACTIONS(2956), - [anon_sym_do] = ACTIONS(2956), - [anon_sym_while] = ACTIONS(2956), - [anon_sym_until] = ACTIONS(2956), - [anon_sym_repeat] = ACTIONS(2956), - [anon_sym_when] = ACTIONS(2956), - [anon_sym_if] = ACTIONS(2956), - [anon_sym_unless] = ACTIONS(2956), - [anon_sym_always] = ACTIONS(2956), - [anon_sym_thereis] = ACTIONS(2956), - [anon_sym_never] = ACTIONS(2956), - [anon_sym_else] = ACTIONS(2956), - [anon_sym_finally] = ACTIONS(2956), - [anon_sym_return] = ACTIONS(2956), - [anon_sym_initially] = ACTIONS(2956), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(3151), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(3005), + [anon_sym_cl] = ACTIONS(2995), + [aux_sym_accumulation_verb_token1] = ACTIONS(2998), + [anon_sym_for] = ACTIONS(2998), + [anon_sym_and] = ACTIONS(2998), + [anon_sym_as] = ACTIONS(2998), + [anon_sym_with] = ACTIONS(2998), + [anon_sym_do] = ACTIONS(2998), + [anon_sym_while] = ACTIONS(2998), + [anon_sym_until] = ACTIONS(2998), + [anon_sym_repeat] = ACTIONS(2998), + [anon_sym_when] = ACTIONS(2998), + [anon_sym_if] = ACTIONS(2998), + [anon_sym_unless] = ACTIONS(2998), + [anon_sym_always] = ACTIONS(2998), + [anon_sym_thereis] = ACTIONS(2998), + [anon_sym_never] = ACTIONS(2998), + [anon_sym_else] = ACTIONS(2998), + [anon_sym_finally] = ACTIONS(2998), + [anon_sym_return] = ACTIONS(2998), + [anon_sym_initially] = ACTIONS(2998), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(3007), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [172] = { - [sym__gap] = STATE(81), - [sym_dis_expr] = STATE(81), - [sym__form] = STATE(2459), - [sym_num_lit] = STATE(2459), - [sym_kwd_lit] = STATE(2459), - [sym_str_lit] = STATE(2459), - [sym_char_lit] = STATE(2459), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2459), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2459), - [sym_set_lit] = STATE(2459), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2459), - [sym_splicing_read_cond_lit] = STATE(2459), - [sym_var_quoting_lit] = STATE(2459), - [sym_quoting_lit] = STATE(2459), - [sym_syn_quoting_lit] = STATE(2459), - [sym_unquote_splicing_lit] = STATE(2459), - [sym_unquoting_lit] = STATE(2459), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2459), - [sym_package_lit] = STATE(2459), - [sym_include_reader_macro] = STATE(2459), - [sym_complex_num_lit] = STATE(2459), - [aux_sym_dis_expr_repeat1] = STATE(81), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(3153), - [sym_comment] = ACTIONS(3153), - [anon_sym_POUND_] = ACTIONS(2836), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(3156), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(2841), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(3156), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2844), - [anon_sym_POUND_CARET] = ACTIONS(2847), - [anon_sym_LPAREN] = ACTIONS(2850), - [anon_sym_RPAREN] = ACTIONS(2853), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(215), + [sym_dis_expr] = STATE(215), + [sym__form] = STATE(2229), + [sym_num_lit] = STATE(2229), + [sym_kwd_lit] = STATE(2229), + [sym_str_lit] = STATE(2229), + [sym_char_lit] = STATE(2229), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2229), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2229), + [sym_set_lit] = STATE(2229), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2229), + [sym_splicing_read_cond_lit] = STATE(2229), + [sym_var_quoting_lit] = STATE(2229), + [sym_quoting_lit] = STATE(2229), + [sym_syn_quoting_lit] = STATE(2229), + [sym_unquote_splicing_lit] = STATE(2229), + [sym_unquoting_lit] = STATE(2229), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2229), + [sym_package_lit] = STATE(2229), + [sym_include_reader_macro] = STATE(2229), + [sym_complex_num_lit] = STATE(2229), + [aux_sym_dis_expr_repeat1] = STATE(215), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(3009), + [sym_comment] = ACTIONS(3009), + [anon_sym_POUND_] = ACTIONS(2976), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(3012), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(2981), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(3012), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(2984), + [anon_sym_POUND_CARET] = ACTIONS(2987), + [anon_sym_LPAREN] = ACTIONS(2990), + [anon_sym_RPAREN] = ACTIONS(2993), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3156), - [anon_sym_cl] = ACTIONS(2855), - [aux_sym_accumulation_verb_token1] = ACTIONS(2858), - [anon_sym_for] = ACTIONS(2858), - [anon_sym_and] = ACTIONS(2858), - [anon_sym_as] = ACTIONS(2858), - [anon_sym_with] = ACTIONS(2858), - [anon_sym_do] = ACTIONS(2858), - [anon_sym_while] = ACTIONS(2858), - [anon_sym_until] = ACTIONS(2858), - [anon_sym_repeat] = ACTIONS(2858), - [anon_sym_when] = ACTIONS(2858), - [anon_sym_if] = ACTIONS(2858), - [anon_sym_unless] = ACTIONS(2858), - [anon_sym_always] = ACTIONS(2858), - [anon_sym_thereis] = ACTIONS(2858), - [anon_sym_never] = ACTIONS(2858), - [anon_sym_else] = ACTIONS(2858), - [anon_sym_finally] = ACTIONS(2858), - [anon_sym_return] = ACTIONS(2858), - [anon_sym_initially] = ACTIONS(2858), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(3158), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(3012), + [anon_sym_cl] = ACTIONS(2995), + [aux_sym_accumulation_verb_token1] = ACTIONS(2998), + [anon_sym_for] = ACTIONS(2998), + [anon_sym_and] = ACTIONS(2998), + [anon_sym_as] = ACTIONS(2998), + [anon_sym_with] = ACTIONS(2998), + [anon_sym_do] = ACTIONS(2998), + [anon_sym_while] = ACTIONS(2998), + [anon_sym_until] = ACTIONS(2998), + [anon_sym_repeat] = ACTIONS(2998), + [anon_sym_when] = ACTIONS(2998), + [anon_sym_if] = ACTIONS(2998), + [anon_sym_unless] = ACTIONS(2998), + [anon_sym_always] = ACTIONS(2998), + [anon_sym_thereis] = ACTIONS(2998), + [anon_sym_never] = ACTIONS(2998), + [anon_sym_else] = ACTIONS(2998), + [anon_sym_finally] = ACTIONS(2998), + [anon_sym_return] = ACTIONS(2998), + [anon_sym_initially] = ACTIONS(2998), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(3014), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [173] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2460), - [sym_num_lit] = STATE(2460), - [sym_kwd_lit] = STATE(2460), - [sym_str_lit] = STATE(2460), - [sym_char_lit] = STATE(2460), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2460), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2460), - [sym_set_lit] = STATE(2460), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2460), - [sym_splicing_read_cond_lit] = STATE(2460), - [sym_var_quoting_lit] = STATE(2460), - [sym_quoting_lit] = STATE(2460), - [sym_syn_quoting_lit] = STATE(2460), - [sym_unquote_splicing_lit] = STATE(2460), - [sym_unquoting_lit] = STATE(2460), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2460), - [sym_package_lit] = STATE(2460), - [sym_include_reader_macro] = STATE(2460), - [sym_complex_num_lit] = STATE(2460), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(2833), - [sym_comment] = ACTIONS(2833), - [anon_sym_POUND_] = ACTIONS(2836), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(3160), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(2841), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(3160), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2844), - [anon_sym_POUND_CARET] = ACTIONS(2847), - [anon_sym_LPAREN] = ACTIONS(2850), - [anon_sym_RPAREN] = ACTIONS(2853), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2232), + [sym_num_lit] = STATE(2232), + [sym_kwd_lit] = STATE(2232), + [sym_str_lit] = STATE(2232), + [sym_char_lit] = STATE(2232), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2232), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2232), + [sym_set_lit] = STATE(2232), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2232), + [sym_splicing_read_cond_lit] = STATE(2232), + [sym_var_quoting_lit] = STATE(2232), + [sym_quoting_lit] = STATE(2232), + [sym_syn_quoting_lit] = STATE(2232), + [sym_unquote_splicing_lit] = STATE(2232), + [sym_unquoting_lit] = STATE(2232), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2232), + [sym_package_lit] = STATE(2232), + [sym_include_reader_macro] = STATE(2232), + [sym_complex_num_lit] = STATE(2232), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(2973), + [sym_comment] = ACTIONS(2973), + [anon_sym_POUND_] = ACTIONS(2976), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(3016), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(2981), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(3016), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(2984), + [anon_sym_POUND_CARET] = ACTIONS(2987), + [anon_sym_LPAREN] = ACTIONS(2990), + [anon_sym_RPAREN] = ACTIONS(2993), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3160), - [anon_sym_cl] = ACTIONS(2855), - [aux_sym_accumulation_verb_token1] = ACTIONS(2858), - [anon_sym_for] = ACTIONS(2858), - [anon_sym_and] = ACTIONS(2858), - [anon_sym_as] = ACTIONS(2858), - [anon_sym_with] = ACTIONS(2858), - [anon_sym_do] = ACTIONS(2858), - [anon_sym_while] = ACTIONS(2858), - [anon_sym_until] = ACTIONS(2858), - [anon_sym_repeat] = ACTIONS(2858), - [anon_sym_when] = ACTIONS(2858), - [anon_sym_if] = ACTIONS(2858), - [anon_sym_unless] = ACTIONS(2858), - [anon_sym_always] = ACTIONS(2858), - [anon_sym_thereis] = ACTIONS(2858), - [anon_sym_never] = ACTIONS(2858), - [anon_sym_else] = ACTIONS(2858), - [anon_sym_finally] = ACTIONS(2858), - [anon_sym_return] = ACTIONS(2858), - [anon_sym_initially] = ACTIONS(2858), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(3162), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(3016), + [anon_sym_cl] = ACTIONS(2995), + [aux_sym_accumulation_verb_token1] = ACTIONS(2998), + [anon_sym_for] = ACTIONS(2998), + [anon_sym_and] = ACTIONS(2998), + [anon_sym_as] = ACTIONS(2998), + [anon_sym_with] = ACTIONS(2998), + [anon_sym_do] = ACTIONS(2998), + [anon_sym_while] = ACTIONS(2998), + [anon_sym_until] = ACTIONS(2998), + [anon_sym_repeat] = ACTIONS(2998), + [anon_sym_when] = ACTIONS(2998), + [anon_sym_if] = ACTIONS(2998), + [anon_sym_unless] = ACTIONS(2998), + [anon_sym_always] = ACTIONS(2998), + [anon_sym_thereis] = ACTIONS(2998), + [anon_sym_never] = ACTIONS(2998), + [anon_sym_else] = ACTIONS(2998), + [anon_sym_finally] = ACTIONS(2998), + [anon_sym_return] = ACTIONS(2998), + [anon_sym_initially] = ACTIONS(2998), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(3018), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [174] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2470), - [sym_num_lit] = STATE(2470), - [sym_kwd_lit] = STATE(2470), - [sym_str_lit] = STATE(2470), - [sym_char_lit] = STATE(2470), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2470), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2470), - [sym_set_lit] = STATE(2470), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2470), - [sym_splicing_read_cond_lit] = STATE(2470), - [sym_var_quoting_lit] = STATE(2470), - [sym_quoting_lit] = STATE(2470), - [sym_syn_quoting_lit] = STATE(2470), - [sym_unquote_splicing_lit] = STATE(2470), - [sym_unquoting_lit] = STATE(2470), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2470), - [sym_package_lit] = STATE(2470), - [sym_include_reader_macro] = STATE(2470), - [sym_complex_num_lit] = STATE(2470), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(2826), - [sym_comment] = ACTIONS(2826), - [anon_sym_POUND_] = ACTIONS(2800), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(3164), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(2805), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(3164), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2808), - [anon_sym_POUND_CARET] = ACTIONS(2811), - [anon_sym_LPAREN] = ACTIONS(2814), - [anon_sym_RPAREN] = ACTIONS(2817), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2234), + [sym_num_lit] = STATE(2234), + [sym_kwd_lit] = STATE(2234), + [sym_str_lit] = STATE(2234), + [sym_char_lit] = STATE(2234), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2234), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2234), + [sym_set_lit] = STATE(2234), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2234), + [sym_splicing_read_cond_lit] = STATE(2234), + [sym_var_quoting_lit] = STATE(2234), + [sym_quoting_lit] = STATE(2234), + [sym_syn_quoting_lit] = STATE(2234), + [sym_unquote_splicing_lit] = STATE(2234), + [sym_unquoting_lit] = STATE(2234), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2234), + [sym_package_lit] = STATE(2234), + [sym_include_reader_macro] = STATE(2234), + [sym_complex_num_lit] = STATE(2234), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(2944), + [sym_comment] = ACTIONS(2944), + [anon_sym_POUND_] = ACTIONS(2947), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(3020), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(2952), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(3020), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(2955), + [anon_sym_POUND_CARET] = ACTIONS(2958), + [anon_sym_LPAREN] = ACTIONS(2961), + [anon_sym_RPAREN] = ACTIONS(2964), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3164), - [anon_sym_cl] = ACTIONS(2819), - [aux_sym_accumulation_verb_token1] = ACTIONS(2822), - [anon_sym_for] = ACTIONS(2822), - [anon_sym_and] = ACTIONS(2822), - [anon_sym_as] = ACTIONS(2822), - [anon_sym_with] = ACTIONS(2822), - [anon_sym_do] = ACTIONS(2822), - [anon_sym_while] = ACTIONS(2822), - [anon_sym_until] = ACTIONS(2822), - [anon_sym_repeat] = ACTIONS(2822), - [anon_sym_when] = ACTIONS(2822), - [anon_sym_if] = ACTIONS(2822), - [anon_sym_unless] = ACTIONS(2822), - [anon_sym_always] = ACTIONS(2822), - [anon_sym_thereis] = ACTIONS(2822), - [anon_sym_never] = ACTIONS(2822), - [anon_sym_else] = ACTIONS(2822), - [anon_sym_finally] = ACTIONS(2822), - [anon_sym_return] = ACTIONS(2822), - [anon_sym_initially] = ACTIONS(2822), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(3166), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(3020), + [anon_sym_cl] = ACTIONS(2966), + [aux_sym_accumulation_verb_token1] = ACTIONS(2969), + [anon_sym_for] = ACTIONS(2969), + [anon_sym_and] = ACTIONS(2969), + [anon_sym_as] = ACTIONS(2969), + [anon_sym_with] = ACTIONS(2969), + [anon_sym_do] = ACTIONS(2969), + [anon_sym_while] = ACTIONS(2969), + [anon_sym_until] = ACTIONS(2969), + [anon_sym_repeat] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_if] = ACTIONS(2969), + [anon_sym_unless] = ACTIONS(2969), + [anon_sym_always] = ACTIONS(2969), + [anon_sym_thereis] = ACTIONS(2969), + [anon_sym_never] = ACTIONS(2969), + [anon_sym_else] = ACTIONS(2969), + [anon_sym_finally] = ACTIONS(2969), + [anon_sym_return] = ACTIONS(2969), + [anon_sym_initially] = ACTIONS(2969), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(3022), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [175] = { - [sym__gap] = STATE(243), - [sym_dis_expr] = STATE(243), - [sym__form] = STATE(2265), - [sym_num_lit] = STATE(2265), - [sym_kwd_lit] = STATE(2265), - [sym_str_lit] = STATE(2265), - [sym_char_lit] = STATE(2265), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2265), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2265), - [sym_set_lit] = STATE(2265), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2265), - [sym_splicing_read_cond_lit] = STATE(2265), - [sym_var_quoting_lit] = STATE(2265), - [sym_quoting_lit] = STATE(2265), - [sym_syn_quoting_lit] = STATE(2265), - [sym_unquote_splicing_lit] = STATE(2265), - [sym_unquoting_lit] = STATE(2265), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2265), - [sym_package_lit] = STATE(2265), - [sym_include_reader_macro] = STATE(2265), - [sym_complex_num_lit] = STATE(2265), - [aux_sym_dis_expr_repeat1] = STATE(243), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(3168), - [sym_comment] = ACTIONS(3168), - [anon_sym_POUND_] = ACTIONS(2970), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(3171), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(2975), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(3171), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2978), - [anon_sym_POUND_CARET] = ACTIONS(2981), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_RPAREN] = ACTIONS(2987), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(217), + [sym_dis_expr] = STATE(217), + [sym__form] = STATE(2235), + [sym_num_lit] = STATE(2235), + [sym_kwd_lit] = STATE(2235), + [sym_str_lit] = STATE(2235), + [sym_char_lit] = STATE(2235), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2235), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2235), + [sym_set_lit] = STATE(2235), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2235), + [sym_splicing_read_cond_lit] = STATE(2235), + [sym_var_quoting_lit] = STATE(2235), + [sym_quoting_lit] = STATE(2235), + [sym_syn_quoting_lit] = STATE(2235), + [sym_unquote_splicing_lit] = STATE(2235), + [sym_unquoting_lit] = STATE(2235), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2235), + [sym_package_lit] = STATE(2235), + [sym_include_reader_macro] = STATE(2235), + [sym_complex_num_lit] = STATE(2235), + [aux_sym_dis_expr_repeat1] = STATE(217), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(3024), + [sym_comment] = ACTIONS(3024), + [anon_sym_POUND_] = ACTIONS(2947), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(3027), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(2952), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(3027), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(2955), + [anon_sym_POUND_CARET] = ACTIONS(2958), + [anon_sym_LPAREN] = ACTIONS(2961), + [anon_sym_RPAREN] = ACTIONS(2964), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3171), - [anon_sym_cl] = ACTIONS(2989), - [aux_sym_accumulation_verb_token1] = ACTIONS(2992), - [anon_sym_for] = ACTIONS(2992), - [anon_sym_and] = ACTIONS(2992), - [anon_sym_as] = ACTIONS(2992), - [anon_sym_with] = ACTIONS(2992), - [anon_sym_do] = ACTIONS(2992), - [anon_sym_while] = ACTIONS(2992), - [anon_sym_until] = ACTIONS(2992), - [anon_sym_repeat] = ACTIONS(2992), - [anon_sym_when] = ACTIONS(2992), - [anon_sym_if] = ACTIONS(2992), - [anon_sym_unless] = ACTIONS(2992), - [anon_sym_always] = ACTIONS(2992), - [anon_sym_thereis] = ACTIONS(2992), - [anon_sym_never] = ACTIONS(2992), - [anon_sym_else] = ACTIONS(2992), - [anon_sym_finally] = ACTIONS(2992), - [anon_sym_return] = ACTIONS(2992), - [anon_sym_initially] = ACTIONS(2992), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(3173), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(3027), + [anon_sym_cl] = ACTIONS(2966), + [aux_sym_accumulation_verb_token1] = ACTIONS(2969), + [anon_sym_for] = ACTIONS(2969), + [anon_sym_and] = ACTIONS(2969), + [anon_sym_as] = ACTIONS(2969), + [anon_sym_with] = ACTIONS(2969), + [anon_sym_do] = ACTIONS(2969), + [anon_sym_while] = ACTIONS(2969), + [anon_sym_until] = ACTIONS(2969), + [anon_sym_repeat] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_if] = ACTIONS(2969), + [anon_sym_unless] = ACTIONS(2969), + [anon_sym_always] = ACTIONS(2969), + [anon_sym_thereis] = ACTIONS(2969), + [anon_sym_never] = ACTIONS(2969), + [anon_sym_else] = ACTIONS(2969), + [anon_sym_finally] = ACTIONS(2969), + [anon_sym_return] = ACTIONS(2969), + [anon_sym_initially] = ACTIONS(2969), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(3029), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [176] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2476), - [sym_num_lit] = STATE(2476), - [sym_kwd_lit] = STATE(2476), - [sym_str_lit] = STATE(2476), - [sym_char_lit] = STATE(2476), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2476), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2476), - [sym_set_lit] = STATE(2476), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2476), - [sym_splicing_read_cond_lit] = STATE(2476), - [sym_var_quoting_lit] = STATE(2476), - [sym_quoting_lit] = STATE(2476), - [sym_syn_quoting_lit] = STATE(2476), - [sym_unquote_splicing_lit] = STATE(2476), - [sym_unquoting_lit] = STATE(2476), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2476), - [sym_package_lit] = STATE(2476), - [sym_include_reader_macro] = STATE(2476), - [sym_complex_num_lit] = STATE(2476), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(2032), - [sym_comment] = ACTIONS(2032), - [anon_sym_POUND_] = ACTIONS(2035), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(3175), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(2040), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(3175), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2043), - [anon_sym_POUND_CARET] = ACTIONS(2046), - [anon_sym_LPAREN] = ACTIONS(2049), - [anon_sym_RPAREN] = ACTIONS(2052), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(218), + [sym_dis_expr] = STATE(218), + [sym__form] = STATE(2237), + [sym_num_lit] = STATE(2237), + [sym_kwd_lit] = STATE(2237), + [sym_str_lit] = STATE(2237), + [sym_char_lit] = STATE(2237), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2237), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2237), + [sym_set_lit] = STATE(2237), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2237), + [sym_splicing_read_cond_lit] = STATE(2237), + [sym_var_quoting_lit] = STATE(2237), + [sym_quoting_lit] = STATE(2237), + [sym_syn_quoting_lit] = STATE(2237), + [sym_unquote_splicing_lit] = STATE(2237), + [sym_unquoting_lit] = STATE(2237), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2237), + [sym_package_lit] = STATE(2237), + [sym_include_reader_macro] = STATE(2237), + [sym_complex_num_lit] = STATE(2237), + [aux_sym_dis_expr_repeat1] = STATE(218), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(3031), + [sym_comment] = ACTIONS(3031), + [anon_sym_POUND_] = ACTIONS(3034), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(3037), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(3039), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(3037), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(3042), + [anon_sym_POUND_CARET] = ACTIONS(3045), + [anon_sym_LPAREN] = ACTIONS(3048), + [anon_sym_RPAREN] = ACTIONS(3051), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3175), - [anon_sym_cl] = ACTIONS(2054), - [aux_sym_accumulation_verb_token1] = ACTIONS(2057), - [anon_sym_for] = ACTIONS(2057), - [anon_sym_and] = ACTIONS(2057), - [anon_sym_as] = ACTIONS(2057), - [anon_sym_with] = ACTIONS(2057), - [anon_sym_do] = ACTIONS(2057), - [anon_sym_while] = ACTIONS(2057), - [anon_sym_until] = ACTIONS(2057), - [anon_sym_repeat] = ACTIONS(2057), - [anon_sym_when] = ACTIONS(2057), - [anon_sym_if] = ACTIONS(2057), - [anon_sym_unless] = ACTIONS(2057), - [anon_sym_always] = ACTIONS(2057), - [anon_sym_thereis] = ACTIONS(2057), - [anon_sym_never] = ACTIONS(2057), - [anon_sym_else] = ACTIONS(2057), - [anon_sym_finally] = ACTIONS(2057), - [anon_sym_return] = ACTIONS(2057), - [anon_sym_initially] = ACTIONS(2057), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(3177), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(3037), + [anon_sym_cl] = ACTIONS(3053), + [aux_sym_accumulation_verb_token1] = ACTIONS(3056), + [anon_sym_for] = ACTIONS(3056), + [anon_sym_and] = ACTIONS(3056), + [anon_sym_as] = ACTIONS(3056), + [anon_sym_with] = ACTIONS(3056), + [anon_sym_do] = ACTIONS(3056), + [anon_sym_while] = ACTIONS(3056), + [anon_sym_until] = ACTIONS(3056), + [anon_sym_repeat] = ACTIONS(3056), + [anon_sym_when] = ACTIONS(3056), + [anon_sym_if] = ACTIONS(3056), + [anon_sym_unless] = ACTIONS(3056), + [anon_sym_always] = ACTIONS(3056), + [anon_sym_thereis] = ACTIONS(3056), + [anon_sym_never] = ACTIONS(3056), + [anon_sym_else] = ACTIONS(3056), + [anon_sym_finally] = ACTIONS(3056), + [anon_sym_return] = ACTIONS(3056), + [anon_sym_initially] = ACTIONS(3056), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(3058), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [177] = { - [sym__gap] = STATE(84), - [sym_dis_expr] = STATE(84), - [sym__form] = STATE(2478), - [sym_num_lit] = STATE(2478), - [sym_kwd_lit] = STATE(2478), - [sym_str_lit] = STATE(2478), - [sym_char_lit] = STATE(2478), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2478), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2478), - [sym_set_lit] = STATE(2478), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2478), - [sym_splicing_read_cond_lit] = STATE(2478), - [sym_var_quoting_lit] = STATE(2478), - [sym_quoting_lit] = STATE(2478), - [sym_syn_quoting_lit] = STATE(2478), - [sym_unquote_splicing_lit] = STATE(2478), - [sym_unquoting_lit] = STATE(2478), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2478), - [sym_package_lit] = STATE(2478), - [sym_include_reader_macro] = STATE(2478), - [sym_complex_num_lit] = STATE(2478), - [aux_sym_dis_expr_repeat1] = STATE(84), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(3179), - [sym_comment] = ACTIONS(3179), - [anon_sym_POUND_] = ACTIONS(2035), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(3182), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(2040), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(3182), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2043), - [anon_sym_POUND_CARET] = ACTIONS(2046), - [anon_sym_LPAREN] = ACTIONS(2049), - [anon_sym_RPAREN] = ACTIONS(2052), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2239), + [sym_num_lit] = STATE(2239), + [sym_kwd_lit] = STATE(2239), + [sym_str_lit] = STATE(2239), + [sym_char_lit] = STATE(2239), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2239), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2239), + [sym_set_lit] = STATE(2239), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2239), + [sym_splicing_read_cond_lit] = STATE(2239), + [sym_var_quoting_lit] = STATE(2239), + [sym_quoting_lit] = STATE(2239), + [sym_syn_quoting_lit] = STATE(2239), + [sym_unquote_splicing_lit] = STATE(2239), + [sym_unquoting_lit] = STATE(2239), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2239), + [sym_package_lit] = STATE(2239), + [sym_include_reader_macro] = STATE(2239), + [sym_complex_num_lit] = STATE(2239), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(3060), + [sym_comment] = ACTIONS(3060), + [anon_sym_POUND_] = ACTIONS(3034), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(3063), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(3039), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(3063), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(3042), + [anon_sym_POUND_CARET] = ACTIONS(3045), + [anon_sym_LPAREN] = ACTIONS(3048), + [anon_sym_RPAREN] = ACTIONS(3051), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3182), - [anon_sym_cl] = ACTIONS(2054), - [aux_sym_accumulation_verb_token1] = ACTIONS(2057), - [anon_sym_for] = ACTIONS(2057), - [anon_sym_and] = ACTIONS(2057), - [anon_sym_as] = ACTIONS(2057), - [anon_sym_with] = ACTIONS(2057), - [anon_sym_do] = ACTIONS(2057), - [anon_sym_while] = ACTIONS(2057), - [anon_sym_until] = ACTIONS(2057), - [anon_sym_repeat] = ACTIONS(2057), - [anon_sym_when] = ACTIONS(2057), - [anon_sym_if] = ACTIONS(2057), - [anon_sym_unless] = ACTIONS(2057), - [anon_sym_always] = ACTIONS(2057), - [anon_sym_thereis] = ACTIONS(2057), - [anon_sym_never] = ACTIONS(2057), - [anon_sym_else] = ACTIONS(2057), - [anon_sym_finally] = ACTIONS(2057), - [anon_sym_return] = ACTIONS(2057), - [anon_sym_initially] = ACTIONS(2057), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(3184), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(3063), + [anon_sym_cl] = ACTIONS(3053), + [aux_sym_accumulation_verb_token1] = ACTIONS(3056), + [anon_sym_for] = ACTIONS(3056), + [anon_sym_and] = ACTIONS(3056), + [anon_sym_as] = ACTIONS(3056), + [anon_sym_with] = ACTIONS(3056), + [anon_sym_do] = ACTIONS(3056), + [anon_sym_while] = ACTIONS(3056), + [anon_sym_until] = ACTIONS(3056), + [anon_sym_repeat] = ACTIONS(3056), + [anon_sym_when] = ACTIONS(3056), + [anon_sym_if] = ACTIONS(3056), + [anon_sym_unless] = ACTIONS(3056), + [anon_sym_always] = ACTIONS(3056), + [anon_sym_thereis] = ACTIONS(3056), + [anon_sym_never] = ACTIONS(3056), + [anon_sym_else] = ACTIONS(3056), + [anon_sym_finally] = ACTIONS(3056), + [anon_sym_return] = ACTIONS(3056), + [anon_sym_initially] = ACTIONS(3056), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(3065), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [178] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2118), - [sym_num_lit] = STATE(2118), - [sym_kwd_lit] = STATE(2118), - [sym_str_lit] = STATE(2118), - [sym_char_lit] = STATE(2118), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2118), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2118), - [sym_set_lit] = STATE(2118), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2118), - [sym_splicing_read_cond_lit] = STATE(2118), - [sym_var_quoting_lit] = STATE(2118), - [sym_quoting_lit] = STATE(2118), - [sym_syn_quoting_lit] = STATE(2118), - [sym_unquote_splicing_lit] = STATE(2118), - [sym_unquoting_lit] = STATE(2118), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2118), - [sym_package_lit] = STATE(2118), - [sym_include_reader_macro] = STATE(2118), - [sym_complex_num_lit] = STATE(2118), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(1407), - [sym_comment] = ACTIONS(1407), - [anon_sym_POUND_] = ACTIONS(1410), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(3186), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(1415), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(3186), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_POUND_CARET] = ACTIONS(1421), - [anon_sym_LPAREN] = ACTIONS(1424), - [anon_sym_RPAREN] = ACTIONS(1427), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(221), + [sym_dis_expr] = STATE(221), + [sym__form] = STATE(2240), + [sym_num_lit] = STATE(2240), + [sym_kwd_lit] = STATE(2240), + [sym_str_lit] = STATE(2240), + [sym_char_lit] = STATE(2240), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2240), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2240), + [sym_set_lit] = STATE(2240), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2240), + [sym_splicing_read_cond_lit] = STATE(2240), + [sym_var_quoting_lit] = STATE(2240), + [sym_quoting_lit] = STATE(2240), + [sym_syn_quoting_lit] = STATE(2240), + [sym_unquote_splicing_lit] = STATE(2240), + [sym_unquoting_lit] = STATE(2240), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2240), + [sym_package_lit] = STATE(2240), + [sym_include_reader_macro] = STATE(2240), + [sym_complex_num_lit] = STATE(2240), + [aux_sym_dis_expr_repeat1] = STATE(221), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(3067), + [sym_comment] = ACTIONS(3067), + [anon_sym_POUND_] = ACTIONS(3034), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(3070), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(3039), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(3070), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(3042), + [anon_sym_POUND_CARET] = ACTIONS(3045), + [anon_sym_LPAREN] = ACTIONS(3048), + [anon_sym_RPAREN] = ACTIONS(3051), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3186), - [anon_sym_cl] = ACTIONS(1429), - [aux_sym_accumulation_verb_token1] = ACTIONS(1432), - [anon_sym_for] = ACTIONS(1432), - [anon_sym_and] = ACTIONS(1432), - [anon_sym_as] = ACTIONS(1432), - [anon_sym_with] = ACTIONS(1432), - [anon_sym_do] = ACTIONS(1432), - [anon_sym_while] = ACTIONS(1432), - [anon_sym_until] = ACTIONS(1432), - [anon_sym_repeat] = ACTIONS(1432), - [anon_sym_when] = ACTIONS(1432), - [anon_sym_if] = ACTIONS(1432), - [anon_sym_unless] = ACTIONS(1432), - [anon_sym_always] = ACTIONS(1432), - [anon_sym_thereis] = ACTIONS(1432), - [anon_sym_never] = ACTIONS(1432), - [anon_sym_else] = ACTIONS(1432), - [anon_sym_finally] = ACTIONS(1432), - [anon_sym_return] = ACTIONS(1432), - [anon_sym_initially] = ACTIONS(1432), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(3188), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(3070), + [anon_sym_cl] = ACTIONS(3053), + [aux_sym_accumulation_verb_token1] = ACTIONS(3056), + [anon_sym_for] = ACTIONS(3056), + [anon_sym_and] = ACTIONS(3056), + [anon_sym_as] = ACTIONS(3056), + [anon_sym_with] = ACTIONS(3056), + [anon_sym_do] = ACTIONS(3056), + [anon_sym_while] = ACTIONS(3056), + [anon_sym_until] = ACTIONS(3056), + [anon_sym_repeat] = ACTIONS(3056), + [anon_sym_when] = ACTIONS(3056), + [anon_sym_if] = ACTIONS(3056), + [anon_sym_unless] = ACTIONS(3056), + [anon_sym_always] = ACTIONS(3056), + [anon_sym_thereis] = ACTIONS(3056), + [anon_sym_never] = ACTIONS(3056), + [anon_sym_else] = ACTIONS(3056), + [anon_sym_finally] = ACTIONS(3056), + [anon_sym_return] = ACTIONS(3056), + [anon_sym_initially] = ACTIONS(3056), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(3072), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [179] = { - [sym__gap] = STATE(270), - [sym_dis_expr] = STATE(270), - [sym__form] = STATE(2687), - [sym_num_lit] = STATE(2687), - [sym_kwd_lit] = STATE(2687), - [sym_str_lit] = STATE(2687), - [sym_char_lit] = STATE(2687), - [sym_sym_lit] = STATE(2762), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2687), - [sym__bare_list_lit] = STATE(1892), - [sym_vec_lit] = STATE(2687), - [sym_set_lit] = STATE(2687), - [sym__bare_set_lit] = STATE(1893), - [sym_read_cond_lit] = STATE(2687), - [sym_splicing_read_cond_lit] = STATE(2687), - [sym_var_quoting_lit] = STATE(2687), - [sym_quoting_lit] = STATE(2687), - [sym_syn_quoting_lit] = STATE(2687), - [sym_unquote_splicing_lit] = STATE(2687), - [sym_unquoting_lit] = STATE(2687), - [sym_defun] = STATE(1892), - [sym_for_clause_word] = STATE(405), - [sym__for_part] = STATE(1611), - [sym_loop_macro] = STATE(1892), - [sym_path_lit] = STATE(2687), - [sym_package_lit] = STATE(2687), - [sym_include_reader_macro] = STATE(2687), - [sym_complex_num_lit] = STATE(2687), - [aux_sym_dis_expr_repeat1] = STATE(270), - [aux_sym_list_lit_repeat1] = STATE(2840), - [aux_sym_for_clause_repeat1] = STATE(1279), - [sym__ws] = ACTIONS(3190), - [sym_comment] = ACTIONS(3190), - [anon_sym_POUND_] = ACTIONS(1596), - [anon_sym_POUND] = ACTIONS(1598), - [anon_sym_DOT] = ACTIONS(3192), - [aux_sym_num_lit_token1] = ACTIONS(1602), - [anon_sym_COLON] = ACTIONS(1604), - [anon_sym_COLON_COLON] = ACTIONS(1606), - [anon_sym_DQUOTE] = ACTIONS(1608), - [sym_nil_lit] = ACTIONS(3192), - [aux_sym_sym_lit_token1] = ACTIONS(1610), - [anon_sym_CARET] = ACTIONS(25), - [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(1612), - [anon_sym_POUND0A] = ACTIONS(1614), - [anon_sym_POUND0a] = ACTIONS(1614), - [anon_sym_POUND_QMARK] = ACTIONS(1616), - [anon_sym_POUND_QMARK_AT] = ACTIONS(1618), - [anon_sym_POUND_SQUOTE] = ACTIONS(1620), - [anon_sym_SQUOTE] = ACTIONS(1622), - [anon_sym_BQUOTE] = ACTIONS(1624), - [anon_sym_COMMA_AT] = ACTIONS(1626), - [anon_sym_COMMA] = ACTIONS(1628), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2244), + [sym_num_lit] = STATE(2244), + [sym_kwd_lit] = STATE(2244), + [sym_str_lit] = STATE(2244), + [sym_char_lit] = STATE(2244), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2244), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2244), + [sym_set_lit] = STATE(2244), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2244), + [sym_splicing_read_cond_lit] = STATE(2244), + [sym_var_quoting_lit] = STATE(2244), + [sym_quoting_lit] = STATE(2244), + [sym_syn_quoting_lit] = STATE(2244), + [sym_unquote_splicing_lit] = STATE(2244), + [sym_unquoting_lit] = STATE(2244), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2244), + [sym_package_lit] = STATE(2244), + [sym_include_reader_macro] = STATE(2244), + [sym_complex_num_lit] = STATE(2244), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(2944), + [sym_comment] = ACTIONS(2944), + [anon_sym_POUND_] = ACTIONS(2947), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(3074), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(2952), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(3074), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(2955), + [anon_sym_POUND_CARET] = ACTIONS(2958), + [anon_sym_LPAREN] = ACTIONS(2961), + [anon_sym_RPAREN] = ACTIONS(2964), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3192), - [anon_sym_cl] = ACTIONS(1630), - [anon_sym_in] = ACTIONS(1632), - [anon_sym_across] = ACTIONS(1632), - [anon_sym_being] = ACTIONS(1632), - [anon_sym_using] = ACTIONS(1632), - [aux_sym_for_clause_word_token1] = ACTIONS(1634), - [anon_sym_below] = ACTIONS(1632), - [anon_sym_above] = ACTIONS(1632), - [anon_sym_from] = ACTIONS(1632), - [anon_sym_to] = ACTIONS(1632), - [anon_sym_upto] = ACTIONS(1632), - [anon_sym_upfrom] = ACTIONS(1632), - [anon_sym_downto] = ACTIONS(1632), - [anon_sym_downfrom] = ACTIONS(1632), - [anon_sym_on] = ACTIONS(1632), - [anon_sym_by] = ACTIONS(1632), - [anon_sym_then] = ACTIONS(1632), - [anon_sym_EQ] = ACTIONS(1632), - [anon_sym_POUNDP] = ACTIONS(1636), - [anon_sym_POUNDp] = ACTIONS(1636), - [sym_self_referential_reader_macro] = ACTIONS(3194), - [anon_sym_POUND_PLUS] = ACTIONS(1640), - [anon_sym_POUND_DASH] = ACTIONS(1640), - [anon_sym_POUNDC] = ACTIONS(1642), - [anon_sym_POUNDc] = ACTIONS(1642), + [sym_fancy_literal] = ACTIONS(3074), + [anon_sym_cl] = ACTIONS(2966), + [aux_sym_accumulation_verb_token1] = ACTIONS(2969), + [anon_sym_for] = ACTIONS(2969), + [anon_sym_and] = ACTIONS(2969), + [anon_sym_as] = ACTIONS(2969), + [anon_sym_with] = ACTIONS(2969), + [anon_sym_do] = ACTIONS(2969), + [anon_sym_while] = ACTIONS(2969), + [anon_sym_until] = ACTIONS(2969), + [anon_sym_repeat] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_if] = ACTIONS(2969), + [anon_sym_unless] = ACTIONS(2969), + [anon_sym_always] = ACTIONS(2969), + [anon_sym_thereis] = ACTIONS(2969), + [anon_sym_never] = ACTIONS(2969), + [anon_sym_else] = ACTIONS(2969), + [anon_sym_finally] = ACTIONS(2969), + [anon_sym_return] = ACTIONS(2969), + [anon_sym_initially] = ACTIONS(2969), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(3076), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [180] = { - [sym__gap] = STATE(239), - [sym_dis_expr] = STATE(239), - [sym__form] = STATE(2259), - [sym_num_lit] = STATE(2259), - [sym_kwd_lit] = STATE(2259), - [sym_str_lit] = STATE(2259), - [sym_char_lit] = STATE(2259), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2259), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2259), - [sym_set_lit] = STATE(2259), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2259), - [sym_splicing_read_cond_lit] = STATE(2259), - [sym_var_quoting_lit] = STATE(2259), - [sym_quoting_lit] = STATE(2259), - [sym_syn_quoting_lit] = STATE(2259), - [sym_unquote_splicing_lit] = STATE(2259), - [sym_unquoting_lit] = STATE(2259), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2259), - [sym_package_lit] = STATE(2259), - [sym_include_reader_macro] = STATE(2259), - [sym_complex_num_lit] = STATE(2259), - [aux_sym_dis_expr_repeat1] = STATE(239), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(3196), - [sym_comment] = ACTIONS(3196), - [anon_sym_POUND_] = ACTIONS(2934), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(3199), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(2939), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(3199), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2942), - [anon_sym_POUND_CARET] = ACTIONS(2945), - [anon_sym_LPAREN] = ACTIONS(2948), - [anon_sym_RPAREN] = ACTIONS(2951), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2246), + [sym_num_lit] = STATE(2246), + [sym_kwd_lit] = STATE(2246), + [sym_str_lit] = STATE(2246), + [sym_char_lit] = STATE(2246), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2246), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2246), + [sym_set_lit] = STATE(2246), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2246), + [sym_splicing_read_cond_lit] = STATE(2246), + [sym_var_quoting_lit] = STATE(2246), + [sym_quoting_lit] = STATE(2246), + [sym_syn_quoting_lit] = STATE(2246), + [sym_unquote_splicing_lit] = STATE(2246), + [sym_unquoting_lit] = STATE(2246), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2246), + [sym_package_lit] = STATE(2246), + [sym_include_reader_macro] = STATE(2246), + [sym_complex_num_lit] = STATE(2246), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(2973), + [sym_comment] = ACTIONS(2973), + [anon_sym_POUND_] = ACTIONS(2976), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(3078), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(2981), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(3078), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(2984), + [anon_sym_POUND_CARET] = ACTIONS(2987), + [anon_sym_LPAREN] = ACTIONS(2990), + [anon_sym_RPAREN] = ACTIONS(2993), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3199), - [anon_sym_cl] = ACTIONS(2953), - [aux_sym_accumulation_verb_token1] = ACTIONS(2956), - [anon_sym_for] = ACTIONS(2956), - [anon_sym_and] = ACTIONS(2956), - [anon_sym_as] = ACTIONS(2956), - [anon_sym_with] = ACTIONS(2956), - [anon_sym_do] = ACTIONS(2956), - [anon_sym_while] = ACTIONS(2956), - [anon_sym_until] = ACTIONS(2956), - [anon_sym_repeat] = ACTIONS(2956), - [anon_sym_when] = ACTIONS(2956), - [anon_sym_if] = ACTIONS(2956), - [anon_sym_unless] = ACTIONS(2956), - [anon_sym_always] = ACTIONS(2956), - [anon_sym_thereis] = ACTIONS(2956), - [anon_sym_never] = ACTIONS(2956), - [anon_sym_else] = ACTIONS(2956), - [anon_sym_finally] = ACTIONS(2956), - [anon_sym_return] = ACTIONS(2956), - [anon_sym_initially] = ACTIONS(2956), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(3201), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(3078), + [anon_sym_cl] = ACTIONS(2995), + [aux_sym_accumulation_verb_token1] = ACTIONS(2998), + [anon_sym_for] = ACTIONS(2998), + [anon_sym_and] = ACTIONS(2998), + [anon_sym_as] = ACTIONS(2998), + [anon_sym_with] = ACTIONS(2998), + [anon_sym_do] = ACTIONS(2998), + [anon_sym_while] = ACTIONS(2998), + [anon_sym_until] = ACTIONS(2998), + [anon_sym_repeat] = ACTIONS(2998), + [anon_sym_when] = ACTIONS(2998), + [anon_sym_if] = ACTIONS(2998), + [anon_sym_unless] = ACTIONS(2998), + [anon_sym_always] = ACTIONS(2998), + [anon_sym_thereis] = ACTIONS(2998), + [anon_sym_never] = ACTIONS(2998), + [anon_sym_else] = ACTIONS(2998), + [anon_sym_finally] = ACTIONS(2998), + [anon_sym_return] = ACTIONS(2998), + [anon_sym_initially] = ACTIONS(2998), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(3080), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [181] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2442), - [sym_num_lit] = STATE(2442), - [sym_kwd_lit] = STATE(2442), - [sym_str_lit] = STATE(2442), - [sym_char_lit] = STATE(2442), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2442), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2442), - [sym_set_lit] = STATE(2442), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2442), - [sym_splicing_read_cond_lit] = STATE(2442), - [sym_var_quoting_lit] = STATE(2442), - [sym_quoting_lit] = STATE(2442), - [sym_syn_quoting_lit] = STATE(2442), - [sym_unquote_splicing_lit] = STATE(2442), - [sym_unquoting_lit] = STATE(2442), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2442), - [sym_package_lit] = STATE(2442), - [sym_include_reader_macro] = STATE(2442), - [sym_complex_num_lit] = STATE(2442), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(1712), - [sym_comment] = ACTIONS(1712), - [anon_sym_POUND_] = ACTIONS(1715), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(3203), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(1720), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(3203), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1723), - [anon_sym_POUND_CARET] = ACTIONS(1726), - [anon_sym_LPAREN] = ACTIONS(1729), - [anon_sym_RPAREN] = ACTIONS(1732), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(222), + [sym_dis_expr] = STATE(222), + [sym__form] = STATE(2045), + [sym_num_lit] = STATE(2045), + [sym_kwd_lit] = STATE(2045), + [sym_str_lit] = STATE(2045), + [sym_char_lit] = STATE(2045), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2045), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2045), + [sym_set_lit] = STATE(2045), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2045), + [sym_splicing_read_cond_lit] = STATE(2045), + [sym_var_quoting_lit] = STATE(2045), + [sym_quoting_lit] = STATE(2045), + [sym_syn_quoting_lit] = STATE(2045), + [sym_unquote_splicing_lit] = STATE(2045), + [sym_unquoting_lit] = STATE(2045), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2045), + [sym_package_lit] = STATE(2045), + [sym_include_reader_macro] = STATE(2045), + [sym_complex_num_lit] = STATE(2045), + [aux_sym_dis_expr_repeat1] = STATE(222), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(3082), + [sym_comment] = ACTIONS(3082), + [anon_sym_POUND_] = ACTIONS(2976), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(3085), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(2981), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(3085), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(2984), + [anon_sym_POUND_CARET] = ACTIONS(2987), + [anon_sym_LPAREN] = ACTIONS(2990), + [anon_sym_RPAREN] = ACTIONS(2993), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3203), - [anon_sym_cl] = ACTIONS(1734), - [aux_sym_accumulation_verb_token1] = ACTIONS(1737), - [anon_sym_for] = ACTIONS(1737), - [anon_sym_and] = ACTIONS(1737), - [anon_sym_as] = ACTIONS(1737), - [anon_sym_with] = ACTIONS(1737), - [anon_sym_do] = ACTIONS(1737), - [anon_sym_while] = ACTIONS(1737), - [anon_sym_until] = ACTIONS(1737), - [anon_sym_repeat] = ACTIONS(1737), - [anon_sym_when] = ACTIONS(1737), - [anon_sym_if] = ACTIONS(1737), - [anon_sym_unless] = ACTIONS(1737), - [anon_sym_always] = ACTIONS(1737), - [anon_sym_thereis] = ACTIONS(1737), - [anon_sym_never] = ACTIONS(1737), - [anon_sym_else] = ACTIONS(1737), - [anon_sym_finally] = ACTIONS(1737), - [anon_sym_return] = ACTIONS(1737), - [anon_sym_initially] = ACTIONS(1737), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(3205), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(3085), + [anon_sym_cl] = ACTIONS(2995), + [aux_sym_accumulation_verb_token1] = ACTIONS(2998), + [anon_sym_for] = ACTIONS(2998), + [anon_sym_and] = ACTIONS(2998), + [anon_sym_as] = ACTIONS(2998), + [anon_sym_with] = ACTIONS(2998), + [anon_sym_do] = ACTIONS(2998), + [anon_sym_while] = ACTIONS(2998), + [anon_sym_until] = ACTIONS(2998), + [anon_sym_repeat] = ACTIONS(2998), + [anon_sym_when] = ACTIONS(2998), + [anon_sym_if] = ACTIONS(2998), + [anon_sym_unless] = ACTIONS(2998), + [anon_sym_always] = ACTIONS(2998), + [anon_sym_thereis] = ACTIONS(2998), + [anon_sym_never] = ACTIONS(2998), + [anon_sym_else] = ACTIONS(2998), + [anon_sym_finally] = ACTIONS(2998), + [anon_sym_return] = ACTIONS(2998), + [anon_sym_initially] = ACTIONS(2998), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(3087), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [182] = { - [sym__gap] = STATE(85), - [sym_dis_expr] = STATE(85), - [sym__form] = STATE(2482), - [sym_num_lit] = STATE(2482), - [sym_kwd_lit] = STATE(2482), - [sym_str_lit] = STATE(2482), - [sym_char_lit] = STATE(2482), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2482), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2482), - [sym_set_lit] = STATE(2482), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2482), - [sym_splicing_read_cond_lit] = STATE(2482), - [sym_var_quoting_lit] = STATE(2482), - [sym_quoting_lit] = STATE(2482), - [sym_syn_quoting_lit] = STATE(2482), - [sym_unquote_splicing_lit] = STATE(2482), - [sym_unquoting_lit] = STATE(2482), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2482), - [sym_package_lit] = STATE(2482), - [sym_include_reader_macro] = STATE(2482), - [sym_complex_num_lit] = STATE(2482), - [aux_sym_dis_expr_repeat1] = STATE(85), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(3207), - [sym_comment] = ACTIONS(3207), - [anon_sym_POUND_] = ACTIONS(2035), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(3210), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(2040), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(3210), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2043), - [anon_sym_POUND_CARET] = ACTIONS(2046), - [anon_sym_LPAREN] = ACTIONS(2049), - [anon_sym_RPAREN] = ACTIONS(2052), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(223), + [sym_dis_expr] = STATE(223), + [sym__form] = STATE(2249), + [sym_num_lit] = STATE(2249), + [sym_kwd_lit] = STATE(2249), + [sym_str_lit] = STATE(2249), + [sym_char_lit] = STATE(2249), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2249), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2249), + [sym_set_lit] = STATE(2249), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2249), + [sym_splicing_read_cond_lit] = STATE(2249), + [sym_var_quoting_lit] = STATE(2249), + [sym_quoting_lit] = STATE(2249), + [sym_syn_quoting_lit] = STATE(2249), + [sym_unquote_splicing_lit] = STATE(2249), + [sym_unquoting_lit] = STATE(2249), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2249), + [sym_package_lit] = STATE(2249), + [sym_include_reader_macro] = STATE(2249), + [sym_complex_num_lit] = STATE(2249), + [aux_sym_dis_expr_repeat1] = STATE(223), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(3089), + [sym_comment] = ACTIONS(3089), + [anon_sym_POUND_] = ACTIONS(2976), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(3092), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(2981), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(3092), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(2984), + [anon_sym_POUND_CARET] = ACTIONS(2987), + [anon_sym_LPAREN] = ACTIONS(2990), + [anon_sym_RPAREN] = ACTIONS(2993), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3210), - [anon_sym_cl] = ACTIONS(2054), - [aux_sym_accumulation_verb_token1] = ACTIONS(2057), - [anon_sym_for] = ACTIONS(2057), - [anon_sym_and] = ACTIONS(2057), - [anon_sym_as] = ACTIONS(2057), - [anon_sym_with] = ACTIONS(2057), - [anon_sym_do] = ACTIONS(2057), - [anon_sym_while] = ACTIONS(2057), - [anon_sym_until] = ACTIONS(2057), - [anon_sym_repeat] = ACTIONS(2057), - [anon_sym_when] = ACTIONS(2057), - [anon_sym_if] = ACTIONS(2057), - [anon_sym_unless] = ACTIONS(2057), - [anon_sym_always] = ACTIONS(2057), - [anon_sym_thereis] = ACTIONS(2057), - [anon_sym_never] = ACTIONS(2057), - [anon_sym_else] = ACTIONS(2057), - [anon_sym_finally] = ACTIONS(2057), - [anon_sym_return] = ACTIONS(2057), - [anon_sym_initially] = ACTIONS(2057), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(3212), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(3092), + [anon_sym_cl] = ACTIONS(2995), + [aux_sym_accumulation_verb_token1] = ACTIONS(2998), + [anon_sym_for] = ACTIONS(2998), + [anon_sym_and] = ACTIONS(2998), + [anon_sym_as] = ACTIONS(2998), + [anon_sym_with] = ACTIONS(2998), + [anon_sym_do] = ACTIONS(2998), + [anon_sym_while] = ACTIONS(2998), + [anon_sym_until] = ACTIONS(2998), + [anon_sym_repeat] = ACTIONS(2998), + [anon_sym_when] = ACTIONS(2998), + [anon_sym_if] = ACTIONS(2998), + [anon_sym_unless] = ACTIONS(2998), + [anon_sym_always] = ACTIONS(2998), + [anon_sym_thereis] = ACTIONS(2998), + [anon_sym_never] = ACTIONS(2998), + [anon_sym_else] = ACTIONS(2998), + [anon_sym_finally] = ACTIONS(2998), + [anon_sym_return] = ACTIONS(2998), + [anon_sym_initially] = ACTIONS(2998), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(3094), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [183] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2425), - [sym_num_lit] = STATE(2425), - [sym_kwd_lit] = STATE(2425), - [sym_str_lit] = STATE(2425), - [sym_char_lit] = STATE(2425), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2425), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2425), - [sym_set_lit] = STATE(2425), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2425), - [sym_splicing_read_cond_lit] = STATE(2425), - [sym_var_quoting_lit] = STATE(2425), - [sym_quoting_lit] = STATE(2425), - [sym_syn_quoting_lit] = STATE(2425), - [sym_unquote_splicing_lit] = STATE(2425), - [sym_unquoting_lit] = STATE(2425), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2425), - [sym_package_lit] = STATE(2425), - [sym_include_reader_macro] = STATE(2425), - [sym_complex_num_lit] = STATE(2425), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(2032), - [sym_comment] = ACTIONS(2032), - [anon_sym_POUND_] = ACTIONS(2035), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(3214), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(2040), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(3214), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2043), - [anon_sym_POUND_CARET] = ACTIONS(2046), - [anon_sym_LPAREN] = ACTIONS(2049), - [anon_sym_RPAREN] = ACTIONS(2052), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2251), + [sym_num_lit] = STATE(2251), + [sym_kwd_lit] = STATE(2251), + [sym_str_lit] = STATE(2251), + [sym_char_lit] = STATE(2251), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2251), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2251), + [sym_set_lit] = STATE(2251), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2251), + [sym_splicing_read_cond_lit] = STATE(2251), + [sym_var_quoting_lit] = STATE(2251), + [sym_quoting_lit] = STATE(2251), + [sym_syn_quoting_lit] = STATE(2251), + [sym_unquote_splicing_lit] = STATE(2251), + [sym_unquoting_lit] = STATE(2251), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2251), + [sym_package_lit] = STATE(2251), + [sym_include_reader_macro] = STATE(2251), + [sym_complex_num_lit] = STATE(2251), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(2973), + [sym_comment] = ACTIONS(2973), + [anon_sym_POUND_] = ACTIONS(2976), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(3096), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(2981), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(3096), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(2984), + [anon_sym_POUND_CARET] = ACTIONS(2987), + [anon_sym_LPAREN] = ACTIONS(2990), + [anon_sym_RPAREN] = ACTIONS(2993), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3214), - [anon_sym_cl] = ACTIONS(2054), - [aux_sym_accumulation_verb_token1] = ACTIONS(2057), - [anon_sym_for] = ACTIONS(2057), - [anon_sym_and] = ACTIONS(2057), - [anon_sym_as] = ACTIONS(2057), - [anon_sym_with] = ACTIONS(2057), - [anon_sym_do] = ACTIONS(2057), - [anon_sym_while] = ACTIONS(2057), - [anon_sym_until] = ACTIONS(2057), - [anon_sym_repeat] = ACTIONS(2057), - [anon_sym_when] = ACTIONS(2057), - [anon_sym_if] = ACTIONS(2057), - [anon_sym_unless] = ACTIONS(2057), - [anon_sym_always] = ACTIONS(2057), - [anon_sym_thereis] = ACTIONS(2057), - [anon_sym_never] = ACTIONS(2057), - [anon_sym_else] = ACTIONS(2057), - [anon_sym_finally] = ACTIONS(2057), - [anon_sym_return] = ACTIONS(2057), - [anon_sym_initially] = ACTIONS(2057), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(3216), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(3096), + [anon_sym_cl] = ACTIONS(2995), + [aux_sym_accumulation_verb_token1] = ACTIONS(2998), + [anon_sym_for] = ACTIONS(2998), + [anon_sym_and] = ACTIONS(2998), + [anon_sym_as] = ACTIONS(2998), + [anon_sym_with] = ACTIONS(2998), + [anon_sym_do] = ACTIONS(2998), + [anon_sym_while] = ACTIONS(2998), + [anon_sym_until] = ACTIONS(2998), + [anon_sym_repeat] = ACTIONS(2998), + [anon_sym_when] = ACTIONS(2998), + [anon_sym_if] = ACTIONS(2998), + [anon_sym_unless] = ACTIONS(2998), + [anon_sym_always] = ACTIONS(2998), + [anon_sym_thereis] = ACTIONS(2998), + [anon_sym_never] = ACTIONS(2998), + [anon_sym_else] = ACTIONS(2998), + [anon_sym_finally] = ACTIONS(2998), + [anon_sym_return] = ACTIONS(2998), + [anon_sym_initially] = ACTIONS(2998), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(3098), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [184] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2499), - [sym_num_lit] = STATE(2499), - [sym_kwd_lit] = STATE(2499), - [sym_str_lit] = STATE(2499), - [sym_char_lit] = STATE(2499), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2499), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2499), - [sym_set_lit] = STATE(2499), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2499), - [sym_splicing_read_cond_lit] = STATE(2499), - [sym_var_quoting_lit] = STATE(2499), - [sym_quoting_lit] = STATE(2499), - [sym_syn_quoting_lit] = STATE(2499), - [sym_unquote_splicing_lit] = STATE(2499), - [sym_unquoting_lit] = STATE(2499), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2499), - [sym_package_lit] = STATE(2499), - [sym_include_reader_macro] = STATE(2499), - [sym_complex_num_lit] = STATE(2499), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(2116), - [sym_comment] = ACTIONS(2116), - [anon_sym_POUND_] = ACTIONS(2119), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(3218), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(2124), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(3218), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2127), - [anon_sym_POUND_CARET] = ACTIONS(2130), - [anon_sym_LPAREN] = ACTIONS(2133), - [anon_sym_RPAREN] = ACTIONS(2136), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2253), + [sym_num_lit] = STATE(2253), + [sym_kwd_lit] = STATE(2253), + [sym_str_lit] = STATE(2253), + [sym_char_lit] = STATE(2253), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2253), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2253), + [sym_set_lit] = STATE(2253), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2253), + [sym_splicing_read_cond_lit] = STATE(2253), + [sym_var_quoting_lit] = STATE(2253), + [sym_quoting_lit] = STATE(2253), + [sym_syn_quoting_lit] = STATE(2253), + [sym_unquote_splicing_lit] = STATE(2253), + [sym_unquoting_lit] = STATE(2253), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2253), + [sym_package_lit] = STATE(2253), + [sym_include_reader_macro] = STATE(2253), + [sym_complex_num_lit] = STATE(2253), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(2944), + [sym_comment] = ACTIONS(2944), + [anon_sym_POUND_] = ACTIONS(2947), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(3100), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(2952), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(3100), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(2955), + [anon_sym_POUND_CARET] = ACTIONS(2958), + [anon_sym_LPAREN] = ACTIONS(2961), + [anon_sym_RPAREN] = ACTIONS(2964), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3218), - [anon_sym_cl] = ACTIONS(2138), - [aux_sym_accumulation_verb_token1] = ACTIONS(2141), - [anon_sym_for] = ACTIONS(2141), - [anon_sym_and] = ACTIONS(2141), - [anon_sym_as] = ACTIONS(2141), - [anon_sym_with] = ACTIONS(2141), - [anon_sym_do] = ACTIONS(2141), - [anon_sym_while] = ACTIONS(2141), - [anon_sym_until] = ACTIONS(2141), - [anon_sym_repeat] = ACTIONS(2141), - [anon_sym_when] = ACTIONS(2141), - [anon_sym_if] = ACTIONS(2141), - [anon_sym_unless] = ACTIONS(2141), - [anon_sym_always] = ACTIONS(2141), - [anon_sym_thereis] = ACTIONS(2141), - [anon_sym_never] = ACTIONS(2141), - [anon_sym_else] = ACTIONS(2141), - [anon_sym_finally] = ACTIONS(2141), - [anon_sym_return] = ACTIONS(2141), - [anon_sym_initially] = ACTIONS(2141), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(3220), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(3100), + [anon_sym_cl] = ACTIONS(2966), + [aux_sym_accumulation_verb_token1] = ACTIONS(2969), + [anon_sym_for] = ACTIONS(2969), + [anon_sym_and] = ACTIONS(2969), + [anon_sym_as] = ACTIONS(2969), + [anon_sym_with] = ACTIONS(2969), + [anon_sym_do] = ACTIONS(2969), + [anon_sym_while] = ACTIONS(2969), + [anon_sym_until] = ACTIONS(2969), + [anon_sym_repeat] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_if] = ACTIONS(2969), + [anon_sym_unless] = ACTIONS(2969), + [anon_sym_always] = ACTIONS(2969), + [anon_sym_thereis] = ACTIONS(2969), + [anon_sym_never] = ACTIONS(2969), + [anon_sym_else] = ACTIONS(2969), + [anon_sym_finally] = ACTIONS(2969), + [anon_sym_return] = ACTIONS(2969), + [anon_sym_initially] = ACTIONS(2969), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(3102), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [185] = { - [sym__gap] = STATE(86), - [sym_dis_expr] = STATE(86), - [sym__form] = STATE(2489), - [sym_num_lit] = STATE(2489), - [sym_kwd_lit] = STATE(2489), - [sym_str_lit] = STATE(2489), - [sym_char_lit] = STATE(2489), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2489), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2489), - [sym_set_lit] = STATE(2489), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2489), - [sym_splicing_read_cond_lit] = STATE(2489), - [sym_var_quoting_lit] = STATE(2489), - [sym_quoting_lit] = STATE(2489), - [sym_syn_quoting_lit] = STATE(2489), - [sym_unquote_splicing_lit] = STATE(2489), - [sym_unquoting_lit] = STATE(2489), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2489), - [sym_package_lit] = STATE(2489), - [sym_include_reader_macro] = STATE(2489), - [sym_complex_num_lit] = STATE(2489), - [aux_sym_dis_expr_repeat1] = STATE(86), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(3222), - [sym_comment] = ACTIONS(3222), - [anon_sym_POUND_] = ACTIONS(2148), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(3225), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(2153), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(3225), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2156), - [anon_sym_POUND_CARET] = ACTIONS(2159), - [anon_sym_LPAREN] = ACTIONS(2162), - [anon_sym_RPAREN] = ACTIONS(2165), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(225), + [sym_dis_expr] = STATE(225), + [sym__form] = STATE(2254), + [sym_num_lit] = STATE(2254), + [sym_kwd_lit] = STATE(2254), + [sym_str_lit] = STATE(2254), + [sym_char_lit] = STATE(2254), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2254), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2254), + [sym_set_lit] = STATE(2254), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2254), + [sym_splicing_read_cond_lit] = STATE(2254), + [sym_var_quoting_lit] = STATE(2254), + [sym_quoting_lit] = STATE(2254), + [sym_syn_quoting_lit] = STATE(2254), + [sym_unquote_splicing_lit] = STATE(2254), + [sym_unquoting_lit] = STATE(2254), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2254), + [sym_package_lit] = STATE(2254), + [sym_include_reader_macro] = STATE(2254), + [sym_complex_num_lit] = STATE(2254), + [aux_sym_dis_expr_repeat1] = STATE(225), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(3104), + [sym_comment] = ACTIONS(3104), + [anon_sym_POUND_] = ACTIONS(2947), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(3107), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(2952), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(3107), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(2955), + [anon_sym_POUND_CARET] = ACTIONS(2958), + [anon_sym_LPAREN] = ACTIONS(2961), + [anon_sym_RPAREN] = ACTIONS(2964), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3225), - [anon_sym_cl] = ACTIONS(2167), - [aux_sym_accumulation_verb_token1] = ACTIONS(2170), - [anon_sym_for] = ACTIONS(2170), - [anon_sym_and] = ACTIONS(2170), - [anon_sym_as] = ACTIONS(2170), - [anon_sym_with] = ACTIONS(2170), - [anon_sym_do] = ACTIONS(2170), - [anon_sym_while] = ACTIONS(2170), - [anon_sym_until] = ACTIONS(2170), - [anon_sym_repeat] = ACTIONS(2170), - [anon_sym_when] = ACTIONS(2170), - [anon_sym_if] = ACTIONS(2170), - [anon_sym_unless] = ACTIONS(2170), - [anon_sym_always] = ACTIONS(2170), - [anon_sym_thereis] = ACTIONS(2170), - [anon_sym_never] = ACTIONS(2170), - [anon_sym_else] = ACTIONS(2170), - [anon_sym_finally] = ACTIONS(2170), - [anon_sym_return] = ACTIONS(2170), - [anon_sym_initially] = ACTIONS(2170), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(3227), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(3107), + [anon_sym_cl] = ACTIONS(2966), + [aux_sym_accumulation_verb_token1] = ACTIONS(2969), + [anon_sym_for] = ACTIONS(2969), + [anon_sym_and] = ACTIONS(2969), + [anon_sym_as] = ACTIONS(2969), + [anon_sym_with] = ACTIONS(2969), + [anon_sym_do] = ACTIONS(2969), + [anon_sym_while] = ACTIONS(2969), + [anon_sym_until] = ACTIONS(2969), + [anon_sym_repeat] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_if] = ACTIONS(2969), + [anon_sym_unless] = ACTIONS(2969), + [anon_sym_always] = ACTIONS(2969), + [anon_sym_thereis] = ACTIONS(2969), + [anon_sym_never] = ACTIONS(2969), + [anon_sym_else] = ACTIONS(2969), + [anon_sym_finally] = ACTIONS(2969), + [anon_sym_return] = ACTIONS(2969), + [anon_sym_initially] = ACTIONS(2969), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(3109), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [186] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2490), - [sym_num_lit] = STATE(2490), - [sym_kwd_lit] = STATE(2490), - [sym_str_lit] = STATE(2490), - [sym_char_lit] = STATE(2490), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2490), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2490), - [sym_set_lit] = STATE(2490), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2490), - [sym_splicing_read_cond_lit] = STATE(2490), - [sym_var_quoting_lit] = STATE(2490), - [sym_quoting_lit] = STATE(2490), - [sym_syn_quoting_lit] = STATE(2490), - [sym_unquote_splicing_lit] = STATE(2490), - [sym_unquoting_lit] = STATE(2490), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2490), - [sym_package_lit] = STATE(2490), - [sym_include_reader_macro] = STATE(2490), - [sym_complex_num_lit] = STATE(2490), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(2174), - [sym_comment] = ACTIONS(2174), - [anon_sym_POUND_] = ACTIONS(2148), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(3229), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(2153), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(3229), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2156), - [anon_sym_POUND_CARET] = ACTIONS(2159), - [anon_sym_LPAREN] = ACTIONS(2162), - [anon_sym_RPAREN] = ACTIONS(2165), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(226), + [sym_dis_expr] = STATE(226), + [sym__form] = STATE(2257), + [sym_num_lit] = STATE(2257), + [sym_kwd_lit] = STATE(2257), + [sym_str_lit] = STATE(2257), + [sym_char_lit] = STATE(2257), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2257), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2257), + [sym_set_lit] = STATE(2257), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2257), + [sym_splicing_read_cond_lit] = STATE(2257), + [sym_var_quoting_lit] = STATE(2257), + [sym_quoting_lit] = STATE(2257), + [sym_syn_quoting_lit] = STATE(2257), + [sym_unquote_splicing_lit] = STATE(2257), + [sym_unquoting_lit] = STATE(2257), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2257), + [sym_package_lit] = STATE(2257), + [sym_include_reader_macro] = STATE(2257), + [sym_complex_num_lit] = STATE(2257), + [aux_sym_dis_expr_repeat1] = STATE(226), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(3111), + [sym_comment] = ACTIONS(3111), + [anon_sym_POUND_] = ACTIONS(3034), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(3114), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(3039), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(3114), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(3042), + [anon_sym_POUND_CARET] = ACTIONS(3045), + [anon_sym_LPAREN] = ACTIONS(3048), + [anon_sym_RPAREN] = ACTIONS(3051), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3229), - [anon_sym_cl] = ACTIONS(2167), - [aux_sym_accumulation_verb_token1] = ACTIONS(2170), - [anon_sym_for] = ACTIONS(2170), - [anon_sym_and] = ACTIONS(2170), - [anon_sym_as] = ACTIONS(2170), - [anon_sym_with] = ACTIONS(2170), - [anon_sym_do] = ACTIONS(2170), - [anon_sym_while] = ACTIONS(2170), - [anon_sym_until] = ACTIONS(2170), - [anon_sym_repeat] = ACTIONS(2170), - [anon_sym_when] = ACTIONS(2170), - [anon_sym_if] = ACTIONS(2170), - [anon_sym_unless] = ACTIONS(2170), - [anon_sym_always] = ACTIONS(2170), - [anon_sym_thereis] = ACTIONS(2170), - [anon_sym_never] = ACTIONS(2170), - [anon_sym_else] = ACTIONS(2170), - [anon_sym_finally] = ACTIONS(2170), - [anon_sym_return] = ACTIONS(2170), - [anon_sym_initially] = ACTIONS(2170), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(3231), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(3114), + [anon_sym_cl] = ACTIONS(3053), + [aux_sym_accumulation_verb_token1] = ACTIONS(3056), + [anon_sym_for] = ACTIONS(3056), + [anon_sym_and] = ACTIONS(3056), + [anon_sym_as] = ACTIONS(3056), + [anon_sym_with] = ACTIONS(3056), + [anon_sym_do] = ACTIONS(3056), + [anon_sym_while] = ACTIONS(3056), + [anon_sym_until] = ACTIONS(3056), + [anon_sym_repeat] = ACTIONS(3056), + [anon_sym_when] = ACTIONS(3056), + [anon_sym_if] = ACTIONS(3056), + [anon_sym_unless] = ACTIONS(3056), + [anon_sym_always] = ACTIONS(3056), + [anon_sym_thereis] = ACTIONS(3056), + [anon_sym_never] = ACTIONS(3056), + [anon_sym_else] = ACTIONS(3056), + [anon_sym_finally] = ACTIONS(3056), + [anon_sym_return] = ACTIONS(3056), + [anon_sym_initially] = ACTIONS(3056), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(3116), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [187] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2492), - [sym_num_lit] = STATE(2492), - [sym_kwd_lit] = STATE(2492), - [sym_str_lit] = STATE(2492), - [sym_char_lit] = STATE(2492), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2492), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2492), - [sym_set_lit] = STATE(2492), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2492), - [sym_splicing_read_cond_lit] = STATE(2492), - [sym_var_quoting_lit] = STATE(2492), - [sym_quoting_lit] = STATE(2492), - [sym_syn_quoting_lit] = STATE(2492), - [sym_unquote_splicing_lit] = STATE(2492), - [sym_unquoting_lit] = STATE(2492), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2492), - [sym_package_lit] = STATE(2492), - [sym_include_reader_macro] = STATE(2492), - [sym_complex_num_lit] = STATE(2492), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(2174), - [sym_comment] = ACTIONS(2174), - [anon_sym_POUND_] = ACTIONS(2148), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(3233), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(2153), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(3233), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2156), - [anon_sym_POUND_CARET] = ACTIONS(2159), - [anon_sym_LPAREN] = ACTIONS(2162), - [anon_sym_RPAREN] = ACTIONS(2165), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2259), + [sym_num_lit] = STATE(2259), + [sym_kwd_lit] = STATE(2259), + [sym_str_lit] = STATE(2259), + [sym_char_lit] = STATE(2259), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2259), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2259), + [sym_set_lit] = STATE(2259), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2259), + [sym_splicing_read_cond_lit] = STATE(2259), + [sym_var_quoting_lit] = STATE(2259), + [sym_quoting_lit] = STATE(2259), + [sym_syn_quoting_lit] = STATE(2259), + [sym_unquote_splicing_lit] = STATE(2259), + [sym_unquoting_lit] = STATE(2259), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2259), + [sym_package_lit] = STATE(2259), + [sym_include_reader_macro] = STATE(2259), + [sym_complex_num_lit] = STATE(2259), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(3060), + [sym_comment] = ACTIONS(3060), + [anon_sym_POUND_] = ACTIONS(3034), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(3118), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(3039), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(3118), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(3042), + [anon_sym_POUND_CARET] = ACTIONS(3045), + [anon_sym_LPAREN] = ACTIONS(3048), + [anon_sym_RPAREN] = ACTIONS(3051), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3233), - [anon_sym_cl] = ACTIONS(2167), - [aux_sym_accumulation_verb_token1] = ACTIONS(2170), - [anon_sym_for] = ACTIONS(2170), - [anon_sym_and] = ACTIONS(2170), - [anon_sym_as] = ACTIONS(2170), - [anon_sym_with] = ACTIONS(2170), - [anon_sym_do] = ACTIONS(2170), - [anon_sym_while] = ACTIONS(2170), - [anon_sym_until] = ACTIONS(2170), - [anon_sym_repeat] = ACTIONS(2170), - [anon_sym_when] = ACTIONS(2170), - [anon_sym_if] = ACTIONS(2170), - [anon_sym_unless] = ACTIONS(2170), - [anon_sym_always] = ACTIONS(2170), - [anon_sym_thereis] = ACTIONS(2170), - [anon_sym_never] = ACTIONS(2170), - [anon_sym_else] = ACTIONS(2170), - [anon_sym_finally] = ACTIONS(2170), - [anon_sym_return] = ACTIONS(2170), - [anon_sym_initially] = ACTIONS(2170), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(3235), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(3118), + [anon_sym_cl] = ACTIONS(3053), + [aux_sym_accumulation_verb_token1] = ACTIONS(3056), + [anon_sym_for] = ACTIONS(3056), + [anon_sym_and] = ACTIONS(3056), + [anon_sym_as] = ACTIONS(3056), + [anon_sym_with] = ACTIONS(3056), + [anon_sym_do] = ACTIONS(3056), + [anon_sym_while] = ACTIONS(3056), + [anon_sym_until] = ACTIONS(3056), + [anon_sym_repeat] = ACTIONS(3056), + [anon_sym_when] = ACTIONS(3056), + [anon_sym_if] = ACTIONS(3056), + [anon_sym_unless] = ACTIONS(3056), + [anon_sym_always] = ACTIONS(3056), + [anon_sym_thereis] = ACTIONS(3056), + [anon_sym_never] = ACTIONS(3056), + [anon_sym_else] = ACTIONS(3056), + [anon_sym_finally] = ACTIONS(3056), + [anon_sym_return] = ACTIONS(3056), + [anon_sym_initially] = ACTIONS(3056), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(3120), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [188] = { - [sym__gap] = STATE(87), - [sym_dis_expr] = STATE(87), - [sym__form] = STATE(2507), - [sym_num_lit] = STATE(2507), - [sym_kwd_lit] = STATE(2507), - [sym_str_lit] = STATE(2507), - [sym_char_lit] = STATE(2507), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2507), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2507), - [sym_set_lit] = STATE(2507), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2507), - [sym_splicing_read_cond_lit] = STATE(2507), - [sym_var_quoting_lit] = STATE(2507), - [sym_quoting_lit] = STATE(2507), - [sym_syn_quoting_lit] = STATE(2507), - [sym_unquote_splicing_lit] = STATE(2507), - [sym_unquoting_lit] = STATE(2507), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2507), - [sym_package_lit] = STATE(2507), - [sym_include_reader_macro] = STATE(2507), - [sym_complex_num_lit] = STATE(2507), - [aux_sym_dis_expr_repeat1] = STATE(87), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(3237), - [sym_comment] = ACTIONS(3237), - [anon_sym_POUND_] = ACTIONS(3240), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(3243), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(3245), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(3243), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(3248), - [anon_sym_POUND_CARET] = ACTIONS(3251), - [anon_sym_LPAREN] = ACTIONS(3254), - [anon_sym_RPAREN] = ACTIONS(3257), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(229), + [sym_dis_expr] = STATE(229), + [sym__form] = STATE(2260), + [sym_num_lit] = STATE(2260), + [sym_kwd_lit] = STATE(2260), + [sym_str_lit] = STATE(2260), + [sym_char_lit] = STATE(2260), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2260), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2260), + [sym_set_lit] = STATE(2260), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2260), + [sym_splicing_read_cond_lit] = STATE(2260), + [sym_var_quoting_lit] = STATE(2260), + [sym_quoting_lit] = STATE(2260), + [sym_syn_quoting_lit] = STATE(2260), + [sym_unquote_splicing_lit] = STATE(2260), + [sym_unquoting_lit] = STATE(2260), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2260), + [sym_package_lit] = STATE(2260), + [sym_include_reader_macro] = STATE(2260), + [sym_complex_num_lit] = STATE(2260), + [aux_sym_dis_expr_repeat1] = STATE(229), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(3122), + [sym_comment] = ACTIONS(3122), + [anon_sym_POUND_] = ACTIONS(3034), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(3125), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(3039), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(3125), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(3042), + [anon_sym_POUND_CARET] = ACTIONS(3045), + [anon_sym_LPAREN] = ACTIONS(3048), + [anon_sym_RPAREN] = ACTIONS(3051), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3243), - [anon_sym_cl] = ACTIONS(3259), - [aux_sym_accumulation_verb_token1] = ACTIONS(3262), - [anon_sym_for] = ACTIONS(3262), - [anon_sym_and] = ACTIONS(3262), - [anon_sym_as] = ACTIONS(3262), - [anon_sym_with] = ACTIONS(3262), - [anon_sym_do] = ACTIONS(3262), - [anon_sym_while] = ACTIONS(3262), - [anon_sym_until] = ACTIONS(3262), - [anon_sym_repeat] = ACTIONS(3262), - [anon_sym_when] = ACTIONS(3262), - [anon_sym_if] = ACTIONS(3262), - [anon_sym_unless] = ACTIONS(3262), - [anon_sym_always] = ACTIONS(3262), - [anon_sym_thereis] = ACTIONS(3262), - [anon_sym_never] = ACTIONS(3262), - [anon_sym_else] = ACTIONS(3262), - [anon_sym_finally] = ACTIONS(3262), - [anon_sym_return] = ACTIONS(3262), - [anon_sym_initially] = ACTIONS(3262), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(3264), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(3125), + [anon_sym_cl] = ACTIONS(3053), + [aux_sym_accumulation_verb_token1] = ACTIONS(3056), + [anon_sym_for] = ACTIONS(3056), + [anon_sym_and] = ACTIONS(3056), + [anon_sym_as] = ACTIONS(3056), + [anon_sym_with] = ACTIONS(3056), + [anon_sym_do] = ACTIONS(3056), + [anon_sym_while] = ACTIONS(3056), + [anon_sym_until] = ACTIONS(3056), + [anon_sym_repeat] = ACTIONS(3056), + [anon_sym_when] = ACTIONS(3056), + [anon_sym_if] = ACTIONS(3056), + [anon_sym_unless] = ACTIONS(3056), + [anon_sym_always] = ACTIONS(3056), + [anon_sym_thereis] = ACTIONS(3056), + [anon_sym_never] = ACTIONS(3056), + [anon_sym_else] = ACTIONS(3056), + [anon_sym_finally] = ACTIONS(3056), + [anon_sym_return] = ACTIONS(3056), + [anon_sym_initially] = ACTIONS(3056), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(3127), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [189] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2508), - [sym_num_lit] = STATE(2508), - [sym_kwd_lit] = STATE(2508), - [sym_str_lit] = STATE(2508), - [sym_char_lit] = STATE(2508), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2508), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2508), - [sym_set_lit] = STATE(2508), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2508), - [sym_splicing_read_cond_lit] = STATE(2508), - [sym_var_quoting_lit] = STATE(2508), - [sym_quoting_lit] = STATE(2508), - [sym_syn_quoting_lit] = STATE(2508), - [sym_unquote_splicing_lit] = STATE(2508), - [sym_unquoting_lit] = STATE(2508), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2508), - [sym_package_lit] = STATE(2508), - [sym_include_reader_macro] = STATE(2508), - [sym_complex_num_lit] = STATE(2508), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(3266), - [sym_comment] = ACTIONS(3266), - [anon_sym_POUND_] = ACTIONS(3240), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(3269), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(3245), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(3269), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(3248), - [anon_sym_POUND_CARET] = ACTIONS(3251), - [anon_sym_LPAREN] = ACTIONS(3254), - [anon_sym_RPAREN] = ACTIONS(3257), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2263), + [sym_num_lit] = STATE(2263), + [sym_kwd_lit] = STATE(2263), + [sym_str_lit] = STATE(2263), + [sym_char_lit] = STATE(2263), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2263), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2263), + [sym_set_lit] = STATE(2263), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2263), + [sym_splicing_read_cond_lit] = STATE(2263), + [sym_var_quoting_lit] = STATE(2263), + [sym_quoting_lit] = STATE(2263), + [sym_syn_quoting_lit] = STATE(2263), + [sym_unquote_splicing_lit] = STATE(2263), + [sym_unquoting_lit] = STATE(2263), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2263), + [sym_package_lit] = STATE(2263), + [sym_include_reader_macro] = STATE(2263), + [sym_complex_num_lit] = STATE(2263), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(3129), + [sym_comment] = ACTIONS(3129), + [anon_sym_POUND_] = ACTIONS(3132), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(3135), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(3137), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(3135), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(3140), + [anon_sym_POUND_CARET] = ACTIONS(3143), + [anon_sym_LPAREN] = ACTIONS(3146), + [anon_sym_RPAREN] = ACTIONS(3149), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3269), - [anon_sym_cl] = ACTIONS(3259), - [aux_sym_accumulation_verb_token1] = ACTIONS(3262), - [anon_sym_for] = ACTIONS(3262), - [anon_sym_and] = ACTIONS(3262), - [anon_sym_as] = ACTIONS(3262), - [anon_sym_with] = ACTIONS(3262), - [anon_sym_do] = ACTIONS(3262), - [anon_sym_while] = ACTIONS(3262), - [anon_sym_until] = ACTIONS(3262), - [anon_sym_repeat] = ACTIONS(3262), - [anon_sym_when] = ACTIONS(3262), - [anon_sym_if] = ACTIONS(3262), - [anon_sym_unless] = ACTIONS(3262), - [anon_sym_always] = ACTIONS(3262), - [anon_sym_thereis] = ACTIONS(3262), - [anon_sym_never] = ACTIONS(3262), - [anon_sym_else] = ACTIONS(3262), - [anon_sym_finally] = ACTIONS(3262), - [anon_sym_return] = ACTIONS(3262), - [anon_sym_initially] = ACTIONS(3262), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(3271), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(3135), + [anon_sym_cl] = ACTIONS(3151), + [aux_sym_accumulation_verb_token1] = ACTIONS(3154), + [anon_sym_for] = ACTIONS(3154), + [anon_sym_and] = ACTIONS(3154), + [anon_sym_as] = ACTIONS(3154), + [anon_sym_with] = ACTIONS(3154), + [anon_sym_do] = ACTIONS(3154), + [anon_sym_while] = ACTIONS(3154), + [anon_sym_until] = ACTIONS(3154), + [anon_sym_repeat] = ACTIONS(3154), + [anon_sym_when] = ACTIONS(3154), + [anon_sym_if] = ACTIONS(3154), + [anon_sym_unless] = ACTIONS(3154), + [anon_sym_always] = ACTIONS(3154), + [anon_sym_thereis] = ACTIONS(3154), + [anon_sym_never] = ACTIONS(3154), + [anon_sym_else] = ACTIONS(3154), + [anon_sym_finally] = ACTIONS(3154), + [anon_sym_return] = ACTIONS(3154), + [anon_sym_initially] = ACTIONS(3154), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(3156), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [190] = { - [sym__gap] = STATE(95), - [sym_dis_expr] = STATE(95), - [sym__form] = STATE(2512), - [sym_num_lit] = STATE(2512), - [sym_kwd_lit] = STATE(2512), - [sym_str_lit] = STATE(2512), - [sym_char_lit] = STATE(2512), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2512), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2512), - [sym_set_lit] = STATE(2512), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2512), - [sym_splicing_read_cond_lit] = STATE(2512), - [sym_var_quoting_lit] = STATE(2512), - [sym_quoting_lit] = STATE(2512), - [sym_syn_quoting_lit] = STATE(2512), - [sym_unquote_splicing_lit] = STATE(2512), - [sym_unquoting_lit] = STATE(2512), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2512), - [sym_package_lit] = STATE(2512), - [sym_include_reader_macro] = STATE(2512), - [sym_complex_num_lit] = STATE(2512), - [aux_sym_dis_expr_repeat1] = STATE(95), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(3273), - [sym_comment] = ACTIONS(3273), - [anon_sym_POUND_] = ACTIONS(3240), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(3276), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(3245), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(3276), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(3248), - [anon_sym_POUND_CARET] = ACTIONS(3251), - [anon_sym_LPAREN] = ACTIONS(3254), - [anon_sym_RPAREN] = ACTIONS(3257), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(230), + [sym_dis_expr] = STATE(230), + [sym__form] = STATE(2264), + [sym_num_lit] = STATE(2264), + [sym_kwd_lit] = STATE(2264), + [sym_str_lit] = STATE(2264), + [sym_char_lit] = STATE(2264), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2264), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2264), + [sym_set_lit] = STATE(2264), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2264), + [sym_splicing_read_cond_lit] = STATE(2264), + [sym_var_quoting_lit] = STATE(2264), + [sym_quoting_lit] = STATE(2264), + [sym_syn_quoting_lit] = STATE(2264), + [sym_unquote_splicing_lit] = STATE(2264), + [sym_unquoting_lit] = STATE(2264), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2264), + [sym_package_lit] = STATE(2264), + [sym_include_reader_macro] = STATE(2264), + [sym_complex_num_lit] = STATE(2264), + [aux_sym_dis_expr_repeat1] = STATE(230), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(3158), + [sym_comment] = ACTIONS(3158), + [anon_sym_POUND_] = ACTIONS(3132), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(3161), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(3137), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(3161), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(3140), + [anon_sym_POUND_CARET] = ACTIONS(3143), + [anon_sym_LPAREN] = ACTIONS(3146), + [anon_sym_RPAREN] = ACTIONS(3149), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3276), - [anon_sym_cl] = ACTIONS(3259), - [aux_sym_accumulation_verb_token1] = ACTIONS(3262), - [anon_sym_for] = ACTIONS(3262), - [anon_sym_and] = ACTIONS(3262), - [anon_sym_as] = ACTIONS(3262), - [anon_sym_with] = ACTIONS(3262), - [anon_sym_do] = ACTIONS(3262), - [anon_sym_while] = ACTIONS(3262), - [anon_sym_until] = ACTIONS(3262), - [anon_sym_repeat] = ACTIONS(3262), - [anon_sym_when] = ACTIONS(3262), - [anon_sym_if] = ACTIONS(3262), - [anon_sym_unless] = ACTIONS(3262), - [anon_sym_always] = ACTIONS(3262), - [anon_sym_thereis] = ACTIONS(3262), - [anon_sym_never] = ACTIONS(3262), - [anon_sym_else] = ACTIONS(3262), - [anon_sym_finally] = ACTIONS(3262), - [anon_sym_return] = ACTIONS(3262), - [anon_sym_initially] = ACTIONS(3262), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(3278), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(3161), + [anon_sym_cl] = ACTIONS(3151), + [aux_sym_accumulation_verb_token1] = ACTIONS(3154), + [anon_sym_for] = ACTIONS(3154), + [anon_sym_and] = ACTIONS(3154), + [anon_sym_as] = ACTIONS(3154), + [anon_sym_with] = ACTIONS(3154), + [anon_sym_do] = ACTIONS(3154), + [anon_sym_while] = ACTIONS(3154), + [anon_sym_until] = ACTIONS(3154), + [anon_sym_repeat] = ACTIONS(3154), + [anon_sym_when] = ACTIONS(3154), + [anon_sym_if] = ACTIONS(3154), + [anon_sym_unless] = ACTIONS(3154), + [anon_sym_always] = ACTIONS(3154), + [anon_sym_thereis] = ACTIONS(3154), + [anon_sym_never] = ACTIONS(3154), + [anon_sym_else] = ACTIONS(3154), + [anon_sym_finally] = ACTIONS(3154), + [anon_sym_return] = ACTIONS(3154), + [anon_sym_initially] = ACTIONS(3154), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(3163), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [191] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2096), - [sym_num_lit] = STATE(2096), - [sym_kwd_lit] = STATE(2096), - [sym_str_lit] = STATE(2096), - [sym_char_lit] = STATE(2096), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2096), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2096), - [sym_set_lit] = STATE(2096), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2096), - [sym_splicing_read_cond_lit] = STATE(2096), - [sym_var_quoting_lit] = STATE(2096), - [sym_quoting_lit] = STATE(2096), - [sym_syn_quoting_lit] = STATE(2096), - [sym_unquote_splicing_lit] = STATE(2096), - [sym_unquoting_lit] = STATE(2096), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2096), - [sym_package_lit] = STATE(2096), - [sym_include_reader_macro] = STATE(2096), - [sym_complex_num_lit] = STATE(2096), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(2003), - [sym_comment] = ACTIONS(2003), - [anon_sym_POUND_] = ACTIONS(2006), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(3280), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(2011), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(3280), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2014), - [anon_sym_POUND_CARET] = ACTIONS(2017), - [anon_sym_LPAREN] = ACTIONS(2020), - [anon_sym_RPAREN] = ACTIONS(2023), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(231), + [sym_dis_expr] = STATE(231), + [sym__form] = STATE(2267), + [sym_num_lit] = STATE(2267), + [sym_kwd_lit] = STATE(2267), + [sym_str_lit] = STATE(2267), + [sym_char_lit] = STATE(2267), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2267), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2267), + [sym_set_lit] = STATE(2267), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2267), + [sym_splicing_read_cond_lit] = STATE(2267), + [sym_var_quoting_lit] = STATE(2267), + [sym_quoting_lit] = STATE(2267), + [sym_syn_quoting_lit] = STATE(2267), + [sym_unquote_splicing_lit] = STATE(2267), + [sym_unquoting_lit] = STATE(2267), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2267), + [sym_package_lit] = STATE(2267), + [sym_include_reader_macro] = STATE(2267), + [sym_complex_num_lit] = STATE(2267), + [aux_sym_dis_expr_repeat1] = STATE(231), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(3165), + [sym_comment] = ACTIONS(3165), + [anon_sym_POUND_] = ACTIONS(3168), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(3171), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(3173), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(3171), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(3176), + [anon_sym_POUND_CARET] = ACTIONS(3179), + [anon_sym_LPAREN] = ACTIONS(3182), + [anon_sym_RPAREN] = ACTIONS(3185), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3280), - [anon_sym_cl] = ACTIONS(2025), - [aux_sym_accumulation_verb_token1] = ACTIONS(2028), - [anon_sym_for] = ACTIONS(2028), - [anon_sym_and] = ACTIONS(2028), - [anon_sym_as] = ACTIONS(2028), - [anon_sym_with] = ACTIONS(2028), - [anon_sym_do] = ACTIONS(2028), - [anon_sym_while] = ACTIONS(2028), - [anon_sym_until] = ACTIONS(2028), - [anon_sym_repeat] = ACTIONS(2028), - [anon_sym_when] = ACTIONS(2028), - [anon_sym_if] = ACTIONS(2028), - [anon_sym_unless] = ACTIONS(2028), - [anon_sym_always] = ACTIONS(2028), - [anon_sym_thereis] = ACTIONS(2028), - [anon_sym_never] = ACTIONS(2028), - [anon_sym_else] = ACTIONS(2028), - [anon_sym_finally] = ACTIONS(2028), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_initially] = ACTIONS(2028), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(3282), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(3171), + [anon_sym_cl] = ACTIONS(3187), + [aux_sym_accumulation_verb_token1] = ACTIONS(3190), + [anon_sym_for] = ACTIONS(3190), + [anon_sym_and] = ACTIONS(3190), + [anon_sym_as] = ACTIONS(3190), + [anon_sym_with] = ACTIONS(3190), + [anon_sym_do] = ACTIONS(3190), + [anon_sym_while] = ACTIONS(3190), + [anon_sym_until] = ACTIONS(3190), + [anon_sym_repeat] = ACTIONS(3190), + [anon_sym_when] = ACTIONS(3190), + [anon_sym_if] = ACTIONS(3190), + [anon_sym_unless] = ACTIONS(3190), + [anon_sym_always] = ACTIONS(3190), + [anon_sym_thereis] = ACTIONS(3190), + [anon_sym_never] = ACTIONS(3190), + [anon_sym_else] = ACTIONS(3190), + [anon_sym_finally] = ACTIONS(3190), + [anon_sym_return] = ACTIONS(3190), + [anon_sym_initially] = ACTIONS(3190), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(3192), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [192] = { - [sym__gap] = STATE(232), - [sym_dis_expr] = STATE(232), - [sym__form] = STATE(2254), - [sym_num_lit] = STATE(2254), - [sym_kwd_lit] = STATE(2254), - [sym_str_lit] = STATE(2254), - [sym_char_lit] = STATE(2254), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2254), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2254), - [sym_set_lit] = STATE(2254), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2254), - [sym_splicing_read_cond_lit] = STATE(2254), - [sym_var_quoting_lit] = STATE(2254), - [sym_quoting_lit] = STATE(2254), - [sym_syn_quoting_lit] = STATE(2254), - [sym_unquote_splicing_lit] = STATE(2254), - [sym_unquoting_lit] = STATE(2254), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2254), - [sym_package_lit] = STATE(2254), - [sym_include_reader_macro] = STATE(2254), - [sym_complex_num_lit] = STATE(2254), - [aux_sym_dis_expr_repeat1] = STATE(232), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(3284), - [sym_comment] = ACTIONS(3284), - [anon_sym_POUND_] = ACTIONS(3287), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(3290), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(3290), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1018), - [anon_sym_POUND_CARET] = ACTIONS(1021), - [anon_sym_LPAREN] = ACTIONS(3295), - [anon_sym_RPAREN] = ACTIONS(1027), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2270), + [sym_num_lit] = STATE(2270), + [sym_kwd_lit] = STATE(2270), + [sym_str_lit] = STATE(2270), + [sym_char_lit] = STATE(2270), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2270), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2270), + [sym_set_lit] = STATE(2270), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2270), + [sym_splicing_read_cond_lit] = STATE(2270), + [sym_var_quoting_lit] = STATE(2270), + [sym_quoting_lit] = STATE(2270), + [sym_syn_quoting_lit] = STATE(2270), + [sym_unquote_splicing_lit] = STATE(2270), + [sym_unquoting_lit] = STATE(2270), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2270), + [sym_package_lit] = STATE(2270), + [sym_include_reader_macro] = STATE(2270), + [sym_complex_num_lit] = STATE(2270), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(3194), + [sym_comment] = ACTIONS(3194), + [anon_sym_POUND_] = ACTIONS(3168), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(3197), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(3173), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(3197), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(3176), + [anon_sym_POUND_CARET] = ACTIONS(3179), + [anon_sym_LPAREN] = ACTIONS(3182), + [anon_sym_RPAREN] = ACTIONS(3185), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3290), - [anon_sym_cl] = ACTIONS(3298), - [aux_sym_accumulation_verb_token1] = ACTIONS(1034), - [anon_sym_for] = ACTIONS(1034), - [anon_sym_and] = ACTIONS(1034), - [anon_sym_as] = ACTIONS(1034), - [anon_sym_with] = ACTIONS(1034), - [anon_sym_do] = ACTIONS(1034), - [anon_sym_while] = ACTIONS(1034), - [anon_sym_until] = ACTIONS(1034), - [anon_sym_repeat] = ACTIONS(1034), - [anon_sym_when] = ACTIONS(1034), - [anon_sym_if] = ACTIONS(1034), - [anon_sym_unless] = ACTIONS(1034), - [anon_sym_always] = ACTIONS(1034), - [anon_sym_thereis] = ACTIONS(1034), - [anon_sym_never] = ACTIONS(1034), - [anon_sym_else] = ACTIONS(1034), - [anon_sym_finally] = ACTIONS(1034), - [anon_sym_return] = ACTIONS(1034), - [anon_sym_initially] = ACTIONS(1034), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(3301), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(3197), + [anon_sym_cl] = ACTIONS(3187), + [aux_sym_accumulation_verb_token1] = ACTIONS(3190), + [anon_sym_for] = ACTIONS(3190), + [anon_sym_and] = ACTIONS(3190), + [anon_sym_as] = ACTIONS(3190), + [anon_sym_with] = ACTIONS(3190), + [anon_sym_do] = ACTIONS(3190), + [anon_sym_while] = ACTIONS(3190), + [anon_sym_until] = ACTIONS(3190), + [anon_sym_repeat] = ACTIONS(3190), + [anon_sym_when] = ACTIONS(3190), + [anon_sym_if] = ACTIONS(3190), + [anon_sym_unless] = ACTIONS(3190), + [anon_sym_always] = ACTIONS(3190), + [anon_sym_thereis] = ACTIONS(3190), + [anon_sym_never] = ACTIONS(3190), + [anon_sym_else] = ACTIONS(3190), + [anon_sym_finally] = ACTIONS(3190), + [anon_sym_return] = ACTIONS(3190), + [anon_sym_initially] = ACTIONS(3190), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(3199), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [193] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2451), - [sym_num_lit] = STATE(2451), - [sym_kwd_lit] = STATE(2451), - [sym_str_lit] = STATE(2451), - [sym_char_lit] = STATE(2451), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2451), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2451), - [sym_set_lit] = STATE(2451), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2451), - [sym_splicing_read_cond_lit] = STATE(2451), - [sym_var_quoting_lit] = STATE(2451), - [sym_quoting_lit] = STATE(2451), - [sym_syn_quoting_lit] = STATE(2451), - [sym_unquote_splicing_lit] = STATE(2451), - [sym_unquoting_lit] = STATE(2451), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2451), - [sym_package_lit] = STATE(2451), - [sym_include_reader_macro] = STATE(2451), - [sym_complex_num_lit] = STATE(2451), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(3303), - [sym_comment] = ACTIONS(3303), - [anon_sym_POUND_] = ACTIONS(3306), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(3309), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(3311), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(3309), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(3314), - [anon_sym_POUND_CARET] = ACTIONS(3317), - [anon_sym_LPAREN] = ACTIONS(3320), - [anon_sym_RPAREN] = ACTIONS(3323), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(234), + [sym_dis_expr] = STATE(234), + [sym__form] = STATE(2271), + [sym_num_lit] = STATE(2271), + [sym_kwd_lit] = STATE(2271), + [sym_str_lit] = STATE(2271), + [sym_char_lit] = STATE(2271), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2271), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2271), + [sym_set_lit] = STATE(2271), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2271), + [sym_splicing_read_cond_lit] = STATE(2271), + [sym_var_quoting_lit] = STATE(2271), + [sym_quoting_lit] = STATE(2271), + [sym_syn_quoting_lit] = STATE(2271), + [sym_unquote_splicing_lit] = STATE(2271), + [sym_unquoting_lit] = STATE(2271), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2271), + [sym_package_lit] = STATE(2271), + [sym_include_reader_macro] = STATE(2271), + [sym_complex_num_lit] = STATE(2271), + [aux_sym_dis_expr_repeat1] = STATE(234), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(3201), + [sym_comment] = ACTIONS(3201), + [anon_sym_POUND_] = ACTIONS(3168), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(3204), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(3173), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(3204), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(3176), + [anon_sym_POUND_CARET] = ACTIONS(3179), + [anon_sym_LPAREN] = ACTIONS(3182), + [anon_sym_RPAREN] = ACTIONS(3185), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3309), - [anon_sym_cl] = ACTIONS(3325), - [aux_sym_accumulation_verb_token1] = ACTIONS(3328), - [anon_sym_for] = ACTIONS(3328), - [anon_sym_and] = ACTIONS(3328), - [anon_sym_as] = ACTIONS(3328), - [anon_sym_with] = ACTIONS(3328), - [anon_sym_do] = ACTIONS(3328), - [anon_sym_while] = ACTIONS(3328), - [anon_sym_until] = ACTIONS(3328), - [anon_sym_repeat] = ACTIONS(3328), - [anon_sym_when] = ACTIONS(3328), - [anon_sym_if] = ACTIONS(3328), - [anon_sym_unless] = ACTIONS(3328), - [anon_sym_always] = ACTIONS(3328), - [anon_sym_thereis] = ACTIONS(3328), - [anon_sym_never] = ACTIONS(3328), - [anon_sym_else] = ACTIONS(3328), - [anon_sym_finally] = ACTIONS(3328), - [anon_sym_return] = ACTIONS(3328), - [anon_sym_initially] = ACTIONS(3328), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(3330), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(3204), + [anon_sym_cl] = ACTIONS(3187), + [aux_sym_accumulation_verb_token1] = ACTIONS(3190), + [anon_sym_for] = ACTIONS(3190), + [anon_sym_and] = ACTIONS(3190), + [anon_sym_as] = ACTIONS(3190), + [anon_sym_with] = ACTIONS(3190), + [anon_sym_do] = ACTIONS(3190), + [anon_sym_while] = ACTIONS(3190), + [anon_sym_until] = ACTIONS(3190), + [anon_sym_repeat] = ACTIONS(3190), + [anon_sym_when] = ACTIONS(3190), + [anon_sym_if] = ACTIONS(3190), + [anon_sym_unless] = ACTIONS(3190), + [anon_sym_always] = ACTIONS(3190), + [anon_sym_thereis] = ACTIONS(3190), + [anon_sym_never] = ACTIONS(3190), + [anon_sym_else] = ACTIONS(3190), + [anon_sym_finally] = ACTIONS(3190), + [anon_sym_return] = ACTIONS(3190), + [anon_sym_initially] = ACTIONS(3190), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(3206), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [194] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2247), - [sym_num_lit] = STATE(2247), - [sym_kwd_lit] = STATE(2247), - [sym_str_lit] = STATE(2247), - [sym_char_lit] = STATE(2247), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2247), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2247), - [sym_set_lit] = STATE(2247), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2247), - [sym_splicing_read_cond_lit] = STATE(2247), - [sym_var_quoting_lit] = STATE(2247), - [sym_quoting_lit] = STATE(2247), - [sym_syn_quoting_lit] = STATE(2247), - [sym_unquote_splicing_lit] = STATE(2247), - [sym_unquoting_lit] = STATE(2247), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2247), - [sym_package_lit] = STATE(2247), - [sym_include_reader_macro] = STATE(2247), - [sym_complex_num_lit] = STATE(2247), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(3332), - [sym_comment] = ACTIONS(3332), - [anon_sym_POUND_] = ACTIONS(3335), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(3338), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(3340), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(3338), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(3343), - [anon_sym_POUND_CARET] = ACTIONS(3346), - [anon_sym_LPAREN] = ACTIONS(3349), - [anon_sym_RPAREN] = ACTIONS(3352), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(235), + [sym_dis_expr] = STATE(235), + [sym__form] = STATE(2273), + [sym_num_lit] = STATE(2273), + [sym_kwd_lit] = STATE(2273), + [sym_str_lit] = STATE(2273), + [sym_char_lit] = STATE(2273), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2273), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2273), + [sym_set_lit] = STATE(2273), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2273), + [sym_splicing_read_cond_lit] = STATE(2273), + [sym_var_quoting_lit] = STATE(2273), + [sym_quoting_lit] = STATE(2273), + [sym_syn_quoting_lit] = STATE(2273), + [sym_unquote_splicing_lit] = STATE(2273), + [sym_unquoting_lit] = STATE(2273), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2273), + [sym_package_lit] = STATE(2273), + [sym_include_reader_macro] = STATE(2273), + [sym_complex_num_lit] = STATE(2273), + [aux_sym_dis_expr_repeat1] = STATE(235), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(3208), + [sym_comment] = ACTIONS(3208), + [anon_sym_POUND_] = ACTIONS(3132), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(3211), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(3137), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(3211), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(3140), + [anon_sym_POUND_CARET] = ACTIONS(3143), + [anon_sym_LPAREN] = ACTIONS(3146), + [anon_sym_RPAREN] = ACTIONS(3149), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3338), - [anon_sym_cl] = ACTIONS(3354), - [aux_sym_accumulation_verb_token1] = ACTIONS(3357), - [anon_sym_for] = ACTIONS(3357), - [anon_sym_and] = ACTIONS(3357), - [anon_sym_as] = ACTIONS(3357), - [anon_sym_with] = ACTIONS(3357), - [anon_sym_do] = ACTIONS(3357), - [anon_sym_while] = ACTIONS(3357), - [anon_sym_until] = ACTIONS(3357), - [anon_sym_repeat] = ACTIONS(3357), - [anon_sym_when] = ACTIONS(3357), - [anon_sym_if] = ACTIONS(3357), - [anon_sym_unless] = ACTIONS(3357), - [anon_sym_always] = ACTIONS(3357), - [anon_sym_thereis] = ACTIONS(3357), - [anon_sym_never] = ACTIONS(3357), - [anon_sym_else] = ACTIONS(3357), - [anon_sym_finally] = ACTIONS(3357), - [anon_sym_return] = ACTIONS(3357), - [anon_sym_initially] = ACTIONS(3357), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(3359), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(3211), + [anon_sym_cl] = ACTIONS(3151), + [aux_sym_accumulation_verb_token1] = ACTIONS(3154), + [anon_sym_for] = ACTIONS(3154), + [anon_sym_and] = ACTIONS(3154), + [anon_sym_as] = ACTIONS(3154), + [anon_sym_with] = ACTIONS(3154), + [anon_sym_do] = ACTIONS(3154), + [anon_sym_while] = ACTIONS(3154), + [anon_sym_until] = ACTIONS(3154), + [anon_sym_repeat] = ACTIONS(3154), + [anon_sym_when] = ACTIONS(3154), + [anon_sym_if] = ACTIONS(3154), + [anon_sym_unless] = ACTIONS(3154), + [anon_sym_always] = ACTIONS(3154), + [anon_sym_thereis] = ACTIONS(3154), + [anon_sym_never] = ACTIONS(3154), + [anon_sym_else] = ACTIONS(3154), + [anon_sym_finally] = ACTIONS(3154), + [anon_sym_return] = ACTIONS(3154), + [anon_sym_initially] = ACTIONS(3154), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(3213), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [195] = { - [sym__gap] = STATE(96), - [sym_dis_expr] = STATE(96), - [sym__form] = STATE(2518), - [sym_num_lit] = STATE(2518), - [sym_kwd_lit] = STATE(2518), - [sym_str_lit] = STATE(2518), - [sym_char_lit] = STATE(2518), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2518), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2518), - [sym_set_lit] = STATE(2518), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2518), - [sym_splicing_read_cond_lit] = STATE(2518), - [sym_var_quoting_lit] = STATE(2518), - [sym_quoting_lit] = STATE(2518), - [sym_syn_quoting_lit] = STATE(2518), - [sym_unquote_splicing_lit] = STATE(2518), - [sym_unquoting_lit] = STATE(2518), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2518), - [sym_package_lit] = STATE(2518), - [sym_include_reader_macro] = STATE(2518), - [sym_complex_num_lit] = STATE(2518), - [aux_sym_dis_expr_repeat1] = STATE(96), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(3361), - [sym_comment] = ACTIONS(3361), - [anon_sym_POUND_] = ACTIONS(3364), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(3367), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(3369), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(3367), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(3372), - [anon_sym_POUND_CARET] = ACTIONS(3375), - [anon_sym_LPAREN] = ACTIONS(3378), - [anon_sym_RPAREN] = ACTIONS(3381), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2275), + [sym_num_lit] = STATE(2275), + [sym_kwd_lit] = STATE(2275), + [sym_str_lit] = STATE(2275), + [sym_char_lit] = STATE(2275), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2275), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2275), + [sym_set_lit] = STATE(2275), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2275), + [sym_splicing_read_cond_lit] = STATE(2275), + [sym_var_quoting_lit] = STATE(2275), + [sym_quoting_lit] = STATE(2275), + [sym_syn_quoting_lit] = STATE(2275), + [sym_unquote_splicing_lit] = STATE(2275), + [sym_unquoting_lit] = STATE(2275), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2275), + [sym_package_lit] = STATE(2275), + [sym_include_reader_macro] = STATE(2275), + [sym_complex_num_lit] = STATE(2275), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(3129), + [sym_comment] = ACTIONS(3129), + [anon_sym_POUND_] = ACTIONS(3132), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(3215), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(3137), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(3215), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(3140), + [anon_sym_POUND_CARET] = ACTIONS(3143), + [anon_sym_LPAREN] = ACTIONS(3146), + [anon_sym_RPAREN] = ACTIONS(3149), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3367), - [anon_sym_cl] = ACTIONS(3383), - [aux_sym_accumulation_verb_token1] = ACTIONS(3386), - [anon_sym_for] = ACTIONS(3386), - [anon_sym_and] = ACTIONS(3386), - [anon_sym_as] = ACTIONS(3386), - [anon_sym_with] = ACTIONS(3386), - [anon_sym_do] = ACTIONS(3386), - [anon_sym_while] = ACTIONS(3386), - [anon_sym_until] = ACTIONS(3386), - [anon_sym_repeat] = ACTIONS(3386), - [anon_sym_when] = ACTIONS(3386), - [anon_sym_if] = ACTIONS(3386), - [anon_sym_unless] = ACTIONS(3386), - [anon_sym_always] = ACTIONS(3386), - [anon_sym_thereis] = ACTIONS(3386), - [anon_sym_never] = ACTIONS(3386), - [anon_sym_else] = ACTIONS(3386), - [anon_sym_finally] = ACTIONS(3386), - [anon_sym_return] = ACTIONS(3386), - [anon_sym_initially] = ACTIONS(3386), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(3388), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(3215), + [anon_sym_cl] = ACTIONS(3151), + [aux_sym_accumulation_verb_token1] = ACTIONS(3154), + [anon_sym_for] = ACTIONS(3154), + [anon_sym_and] = ACTIONS(3154), + [anon_sym_as] = ACTIONS(3154), + [anon_sym_with] = ACTIONS(3154), + [anon_sym_do] = ACTIONS(3154), + [anon_sym_while] = ACTIONS(3154), + [anon_sym_until] = ACTIONS(3154), + [anon_sym_repeat] = ACTIONS(3154), + [anon_sym_when] = ACTIONS(3154), + [anon_sym_if] = ACTIONS(3154), + [anon_sym_unless] = ACTIONS(3154), + [anon_sym_always] = ACTIONS(3154), + [anon_sym_thereis] = ACTIONS(3154), + [anon_sym_never] = ACTIONS(3154), + [anon_sym_else] = ACTIONS(3154), + [anon_sym_finally] = ACTIONS(3154), + [anon_sym_return] = ACTIONS(3154), + [anon_sym_initially] = ACTIONS(3154), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(3217), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [196] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2519), - [sym_num_lit] = STATE(2519), - [sym_kwd_lit] = STATE(2519), - [sym_str_lit] = STATE(2519), - [sym_char_lit] = STATE(2519), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2519), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2519), - [sym_set_lit] = STATE(2519), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2519), - [sym_splicing_read_cond_lit] = STATE(2519), - [sym_var_quoting_lit] = STATE(2519), - [sym_quoting_lit] = STATE(2519), - [sym_syn_quoting_lit] = STATE(2519), - [sym_unquote_splicing_lit] = STATE(2519), - [sym_unquoting_lit] = STATE(2519), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2519), - [sym_package_lit] = STATE(2519), - [sym_include_reader_macro] = STATE(2519), - [sym_complex_num_lit] = STATE(2519), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(3390), - [sym_comment] = ACTIONS(3390), - [anon_sym_POUND_] = ACTIONS(3364), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(3393), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(3369), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(3393), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(3372), - [anon_sym_POUND_CARET] = ACTIONS(3375), - [anon_sym_LPAREN] = ACTIONS(3378), - [anon_sym_RPAREN] = ACTIONS(3381), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(238), + [sym_dis_expr] = STATE(238), + [sym__form] = STATE(2277), + [sym_num_lit] = STATE(2277), + [sym_kwd_lit] = STATE(2277), + [sym_str_lit] = STATE(2277), + [sym_char_lit] = STATE(2277), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2277), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2277), + [sym_set_lit] = STATE(2277), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2277), + [sym_splicing_read_cond_lit] = STATE(2277), + [sym_var_quoting_lit] = STATE(2277), + [sym_quoting_lit] = STATE(2277), + [sym_syn_quoting_lit] = STATE(2277), + [sym_unquote_splicing_lit] = STATE(2277), + [sym_unquoting_lit] = STATE(2277), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2277), + [sym_package_lit] = STATE(2277), + [sym_include_reader_macro] = STATE(2277), + [sym_complex_num_lit] = STATE(2277), + [aux_sym_dis_expr_repeat1] = STATE(238), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(3219), + [sym_comment] = ACTIONS(3219), + [anon_sym_POUND_] = ACTIONS(3222), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(3225), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(3227), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(3225), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(3230), + [anon_sym_POUND_CARET] = ACTIONS(3233), + [anon_sym_LPAREN] = ACTIONS(3236), + [anon_sym_RPAREN] = ACTIONS(3239), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3393), - [anon_sym_cl] = ACTIONS(3383), - [aux_sym_accumulation_verb_token1] = ACTIONS(3386), - [anon_sym_for] = ACTIONS(3386), - [anon_sym_and] = ACTIONS(3386), - [anon_sym_as] = ACTIONS(3386), - [anon_sym_with] = ACTIONS(3386), - [anon_sym_do] = ACTIONS(3386), - [anon_sym_while] = ACTIONS(3386), - [anon_sym_until] = ACTIONS(3386), - [anon_sym_repeat] = ACTIONS(3386), - [anon_sym_when] = ACTIONS(3386), - [anon_sym_if] = ACTIONS(3386), - [anon_sym_unless] = ACTIONS(3386), - [anon_sym_always] = ACTIONS(3386), - [anon_sym_thereis] = ACTIONS(3386), - [anon_sym_never] = ACTIONS(3386), - [anon_sym_else] = ACTIONS(3386), - [anon_sym_finally] = ACTIONS(3386), - [anon_sym_return] = ACTIONS(3386), - [anon_sym_initially] = ACTIONS(3386), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(3395), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(3225), + [anon_sym_cl] = ACTIONS(3241), + [aux_sym_accumulation_verb_token1] = ACTIONS(3244), + [anon_sym_for] = ACTIONS(3244), + [anon_sym_and] = ACTIONS(3244), + [anon_sym_as] = ACTIONS(3244), + [anon_sym_with] = ACTIONS(3244), + [anon_sym_do] = ACTIONS(3244), + [anon_sym_while] = ACTIONS(3244), + [anon_sym_until] = ACTIONS(3244), + [anon_sym_repeat] = ACTIONS(3244), + [anon_sym_when] = ACTIONS(3244), + [anon_sym_if] = ACTIONS(3244), + [anon_sym_unless] = ACTIONS(3244), + [anon_sym_always] = ACTIONS(3244), + [anon_sym_thereis] = ACTIONS(3244), + [anon_sym_never] = ACTIONS(3244), + [anon_sym_else] = ACTIONS(3244), + [anon_sym_finally] = ACTIONS(3244), + [anon_sym_return] = ACTIONS(3244), + [anon_sym_initially] = ACTIONS(3244), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(3246), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [197] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2525), - [sym_num_lit] = STATE(2525), - [sym_kwd_lit] = STATE(2525), - [sym_str_lit] = STATE(2525), - [sym_char_lit] = STATE(2525), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2525), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2525), - [sym_set_lit] = STATE(2525), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2525), - [sym_splicing_read_cond_lit] = STATE(2525), - [sym_var_quoting_lit] = STATE(2525), - [sym_quoting_lit] = STATE(2525), - [sym_syn_quoting_lit] = STATE(2525), - [sym_unquote_splicing_lit] = STATE(2525), - [sym_unquoting_lit] = STATE(2525), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2525), - [sym_package_lit] = STATE(2525), - [sym_include_reader_macro] = STATE(2525), - [sym_complex_num_lit] = STATE(2525), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(3397), - [sym_comment] = ACTIONS(3397), - [anon_sym_POUND_] = ACTIONS(3400), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(3403), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(3405), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(3403), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(3408), - [anon_sym_POUND_CARET] = ACTIONS(3411), - [anon_sym_LPAREN] = ACTIONS(3414), - [anon_sym_RPAREN] = ACTIONS(3417), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(91), + [sym_dis_expr] = STATE(91), + [sym__form] = STATE(2309), + [sym_num_lit] = STATE(2309), + [sym_kwd_lit] = STATE(2309), + [sym_str_lit] = STATE(2309), + [sym_char_lit] = STATE(2309), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2309), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2309), + [sym_set_lit] = STATE(2309), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2309), + [sym_splicing_read_cond_lit] = STATE(2309), + [sym_var_quoting_lit] = STATE(2309), + [sym_quoting_lit] = STATE(2309), + [sym_syn_quoting_lit] = STATE(2309), + [sym_unquote_splicing_lit] = STATE(2309), + [sym_unquoting_lit] = STATE(2309), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2309), + [sym_package_lit] = STATE(2309), + [sym_include_reader_macro] = STATE(2309), + [sym_complex_num_lit] = STATE(2309), + [aux_sym_dis_expr_repeat1] = STATE(91), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(3248), + [sym_comment] = ACTIONS(3248), + [anon_sym_POUND_] = ACTIONS(3251), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(3254), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(3256), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(3254), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_POUND_CARET] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(3259), + [anon_sym_RPAREN] = ACTIONS(258), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3403), - [anon_sym_cl] = ACTIONS(3419), - [aux_sym_accumulation_verb_token1] = ACTIONS(3422), - [anon_sym_for] = ACTIONS(3422), - [anon_sym_and] = ACTIONS(3422), - [anon_sym_as] = ACTIONS(3422), - [anon_sym_with] = ACTIONS(3422), - [anon_sym_do] = ACTIONS(3422), - [anon_sym_while] = ACTIONS(3422), - [anon_sym_until] = ACTIONS(3422), - [anon_sym_repeat] = ACTIONS(3422), - [anon_sym_when] = ACTIONS(3422), - [anon_sym_if] = ACTIONS(3422), - [anon_sym_unless] = ACTIONS(3422), - [anon_sym_always] = ACTIONS(3422), - [anon_sym_thereis] = ACTIONS(3422), - [anon_sym_never] = ACTIONS(3422), - [anon_sym_else] = ACTIONS(3422), - [anon_sym_finally] = ACTIONS(3422), - [anon_sym_return] = ACTIONS(3422), - [anon_sym_initially] = ACTIONS(3422), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(3424), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(3254), + [anon_sym_cl] = ACTIONS(3262), + [aux_sym_accumulation_verb_token1] = ACTIONS(265), + [anon_sym_for] = ACTIONS(265), + [anon_sym_and] = ACTIONS(265), + [anon_sym_as] = ACTIONS(265), + [anon_sym_with] = ACTIONS(265), + [anon_sym_do] = ACTIONS(265), + [anon_sym_while] = ACTIONS(265), + [anon_sym_until] = ACTIONS(265), + [anon_sym_repeat] = ACTIONS(265), + [anon_sym_when] = ACTIONS(265), + [anon_sym_if] = ACTIONS(265), + [anon_sym_unless] = ACTIONS(265), + [anon_sym_always] = ACTIONS(265), + [anon_sym_thereis] = ACTIONS(265), + [anon_sym_never] = ACTIONS(265), + [anon_sym_else] = ACTIONS(265), + [anon_sym_finally] = ACTIONS(265), + [anon_sym_return] = ACTIONS(265), + [anon_sym_initially] = ACTIONS(265), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(3265), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [198] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2245), - [sym_num_lit] = STATE(2245), - [sym_kwd_lit] = STATE(2245), - [sym_str_lit] = STATE(2245), - [sym_char_lit] = STATE(2245), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2245), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2245), - [sym_set_lit] = STATE(2245), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2245), - [sym_splicing_read_cond_lit] = STATE(2245), - [sym_var_quoting_lit] = STATE(2245), - [sym_quoting_lit] = STATE(2245), - [sym_syn_quoting_lit] = STATE(2245), - [sym_unquote_splicing_lit] = STATE(2245), - [sym_unquoting_lit] = STATE(2245), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2245), - [sym_package_lit] = STATE(2245), - [sym_include_reader_macro] = STATE(2245), - [sym_complex_num_lit] = STATE(2245), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(3426), - [sym_comment] = ACTIONS(3426), - [anon_sym_POUND_] = ACTIONS(3429), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(3432), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(3434), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(3432), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(3437), - [anon_sym_POUND_CARET] = ACTIONS(3440), - [anon_sym_LPAREN] = ACTIONS(3443), - [anon_sym_RPAREN] = ACTIONS(3446), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2284), + [sym_num_lit] = STATE(2284), + [sym_kwd_lit] = STATE(2284), + [sym_str_lit] = STATE(2284), + [sym_char_lit] = STATE(2284), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2284), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2284), + [sym_set_lit] = STATE(2284), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2284), + [sym_splicing_read_cond_lit] = STATE(2284), + [sym_var_quoting_lit] = STATE(2284), + [sym_quoting_lit] = STATE(2284), + [sym_syn_quoting_lit] = STATE(2284), + [sym_unquote_splicing_lit] = STATE(2284), + [sym_unquoting_lit] = STATE(2284), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2284), + [sym_package_lit] = STATE(2284), + [sym_include_reader_macro] = STATE(2284), + [sym_complex_num_lit] = STATE(2284), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(3267), + [sym_comment] = ACTIONS(3267), + [anon_sym_POUND_] = ACTIONS(3270), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(3273), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(3275), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(3273), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(3278), + [anon_sym_POUND_CARET] = ACTIONS(3281), + [anon_sym_LPAREN] = ACTIONS(3284), + [anon_sym_RPAREN] = ACTIONS(3287), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3432), - [anon_sym_cl] = ACTIONS(3448), - [aux_sym_accumulation_verb_token1] = ACTIONS(3451), - [anon_sym_for] = ACTIONS(3451), - [anon_sym_and] = ACTIONS(3451), - [anon_sym_as] = ACTIONS(3451), - [anon_sym_with] = ACTIONS(3451), - [anon_sym_do] = ACTIONS(3451), - [anon_sym_while] = ACTIONS(3451), - [anon_sym_until] = ACTIONS(3451), - [anon_sym_repeat] = ACTIONS(3451), - [anon_sym_when] = ACTIONS(3451), - [anon_sym_if] = ACTIONS(3451), - [anon_sym_unless] = ACTIONS(3451), - [anon_sym_always] = ACTIONS(3451), - [anon_sym_thereis] = ACTIONS(3451), - [anon_sym_never] = ACTIONS(3451), - [anon_sym_else] = ACTIONS(3451), - [anon_sym_finally] = ACTIONS(3451), - [anon_sym_return] = ACTIONS(3451), - [anon_sym_initially] = ACTIONS(3451), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(3453), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(3273), + [anon_sym_cl] = ACTIONS(3289), + [aux_sym_accumulation_verb_token1] = ACTIONS(3292), + [anon_sym_for] = ACTIONS(3292), + [anon_sym_and] = ACTIONS(3292), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_with] = ACTIONS(3292), + [anon_sym_do] = ACTIONS(3292), + [anon_sym_while] = ACTIONS(3292), + [anon_sym_until] = ACTIONS(3292), + [anon_sym_repeat] = ACTIONS(3292), + [anon_sym_when] = ACTIONS(3292), + [anon_sym_if] = ACTIONS(3292), + [anon_sym_unless] = ACTIONS(3292), + [anon_sym_always] = ACTIONS(3292), + [anon_sym_thereis] = ACTIONS(3292), + [anon_sym_never] = ACTIONS(3292), + [anon_sym_else] = ACTIONS(3292), + [anon_sym_finally] = ACTIONS(3292), + [anon_sym_return] = ACTIONS(3292), + [anon_sym_initially] = ACTIONS(3292), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(3294), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [199] = { - [sym__gap] = STATE(160), - [sym_dis_expr] = STATE(160), - [sym__form] = STATE(2244), - [sym_num_lit] = STATE(2244), - [sym_kwd_lit] = STATE(2244), - [sym_str_lit] = STATE(2244), - [sym_char_lit] = STATE(2244), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2244), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2244), - [sym_set_lit] = STATE(2244), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2244), - [sym_splicing_read_cond_lit] = STATE(2244), - [sym_var_quoting_lit] = STATE(2244), - [sym_quoting_lit] = STATE(2244), - [sym_syn_quoting_lit] = STATE(2244), - [sym_unquote_splicing_lit] = STATE(2244), - [sym_unquoting_lit] = STATE(2244), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2244), - [sym_package_lit] = STATE(2244), - [sym_include_reader_macro] = STATE(2244), - [sym_complex_num_lit] = STATE(2244), - [aux_sym_dis_expr_repeat1] = STATE(160), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(3455), - [sym_comment] = ACTIONS(3455), - [anon_sym_POUND_] = ACTIONS(3429), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(3458), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(3434), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(3458), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(3437), - [anon_sym_POUND_CARET] = ACTIONS(3440), - [anon_sym_LPAREN] = ACTIONS(3443), - [anon_sym_RPAREN] = ACTIONS(3446), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2288), + [sym_num_lit] = STATE(2288), + [sym_kwd_lit] = STATE(2288), + [sym_str_lit] = STATE(2288), + [sym_char_lit] = STATE(2288), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2288), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2288), + [sym_set_lit] = STATE(2288), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2288), + [sym_splicing_read_cond_lit] = STATE(2288), + [sym_var_quoting_lit] = STATE(2288), + [sym_quoting_lit] = STATE(2288), + [sym_syn_quoting_lit] = STATE(2288), + [sym_unquote_splicing_lit] = STATE(2288), + [sym_unquoting_lit] = STATE(2288), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2288), + [sym_package_lit] = STATE(2288), + [sym_include_reader_macro] = STATE(2288), + [sym_complex_num_lit] = STATE(2288), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(3296), + [sym_comment] = ACTIONS(3296), + [anon_sym_POUND_] = ACTIONS(3299), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(3302), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(3304), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(3302), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(3307), + [anon_sym_POUND_CARET] = ACTIONS(3310), + [anon_sym_LPAREN] = ACTIONS(3313), + [anon_sym_RPAREN] = ACTIONS(3316), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3458), - [anon_sym_cl] = ACTIONS(3448), - [aux_sym_accumulation_verb_token1] = ACTIONS(3451), - [anon_sym_for] = ACTIONS(3451), - [anon_sym_and] = ACTIONS(3451), - [anon_sym_as] = ACTIONS(3451), - [anon_sym_with] = ACTIONS(3451), - [anon_sym_do] = ACTIONS(3451), - [anon_sym_while] = ACTIONS(3451), - [anon_sym_until] = ACTIONS(3451), - [anon_sym_repeat] = ACTIONS(3451), - [anon_sym_when] = ACTIONS(3451), - [anon_sym_if] = ACTIONS(3451), - [anon_sym_unless] = ACTIONS(3451), - [anon_sym_always] = ACTIONS(3451), - [anon_sym_thereis] = ACTIONS(3451), - [anon_sym_never] = ACTIONS(3451), - [anon_sym_else] = ACTIONS(3451), - [anon_sym_finally] = ACTIONS(3451), - [anon_sym_return] = ACTIONS(3451), - [anon_sym_initially] = ACTIONS(3451), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(3460), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(3302), + [anon_sym_cl] = ACTIONS(3318), + [aux_sym_accumulation_verb_token1] = ACTIONS(3321), + [anon_sym_for] = ACTIONS(3321), + [anon_sym_and] = ACTIONS(3321), + [anon_sym_as] = ACTIONS(3321), + [anon_sym_with] = ACTIONS(3321), + [anon_sym_do] = ACTIONS(3321), + [anon_sym_while] = ACTIONS(3321), + [anon_sym_until] = ACTIONS(3321), + [anon_sym_repeat] = ACTIONS(3321), + [anon_sym_when] = ACTIONS(3321), + [anon_sym_if] = ACTIONS(3321), + [anon_sym_unless] = ACTIONS(3321), + [anon_sym_always] = ACTIONS(3321), + [anon_sym_thereis] = ACTIONS(3321), + [anon_sym_never] = ACTIONS(3321), + [anon_sym_else] = ACTIONS(3321), + [anon_sym_finally] = ACTIONS(3321), + [anon_sym_return] = ACTIONS(3321), + [anon_sym_initially] = ACTIONS(3321), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(3323), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [200] = { - [sym__gap] = STATE(169), - [sym_dis_expr] = STATE(169), - [sym__form] = STATE(2242), - [sym_num_lit] = STATE(2242), - [sym_kwd_lit] = STATE(2242), - [sym_str_lit] = STATE(2242), - [sym_char_lit] = STATE(2242), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2242), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2242), - [sym_set_lit] = STATE(2242), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2242), - [sym_splicing_read_cond_lit] = STATE(2242), - [sym_var_quoting_lit] = STATE(2242), - [sym_quoting_lit] = STATE(2242), - [sym_syn_quoting_lit] = STATE(2242), - [sym_unquote_splicing_lit] = STATE(2242), - [sym_unquoting_lit] = STATE(2242), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2242), - [sym_package_lit] = STATE(2242), - [sym_include_reader_macro] = STATE(2242), - [sym_complex_num_lit] = STATE(2242), - [aux_sym_dis_expr_repeat1] = STATE(169), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(3462), - [sym_comment] = ACTIONS(3462), - [anon_sym_POUND_] = ACTIONS(3429), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(3465), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(3434), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(3465), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(3437), - [anon_sym_POUND_CARET] = ACTIONS(3440), - [anon_sym_LPAREN] = ACTIONS(3443), - [anon_sym_RPAREN] = ACTIONS(3446), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2290), + [sym_num_lit] = STATE(2290), + [sym_kwd_lit] = STATE(2290), + [sym_str_lit] = STATE(2290), + [sym_char_lit] = STATE(2290), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2290), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2290), + [sym_set_lit] = STATE(2290), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2290), + [sym_splicing_read_cond_lit] = STATE(2290), + [sym_var_quoting_lit] = STATE(2290), + [sym_quoting_lit] = STATE(2290), + [sym_syn_quoting_lit] = STATE(2290), + [sym_unquote_splicing_lit] = STATE(2290), + [sym_unquoting_lit] = STATE(2290), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2290), + [sym_package_lit] = STATE(2290), + [sym_include_reader_macro] = STATE(2290), + [sym_complex_num_lit] = STATE(2290), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(3296), + [sym_comment] = ACTIONS(3296), + [anon_sym_POUND_] = ACTIONS(3299), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(3325), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(3304), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(3325), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(3307), + [anon_sym_POUND_CARET] = ACTIONS(3310), + [anon_sym_LPAREN] = ACTIONS(3313), + [anon_sym_RPAREN] = ACTIONS(3316), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3465), - [anon_sym_cl] = ACTIONS(3448), - [aux_sym_accumulation_verb_token1] = ACTIONS(3451), - [anon_sym_for] = ACTIONS(3451), - [anon_sym_and] = ACTIONS(3451), - [anon_sym_as] = ACTIONS(3451), - [anon_sym_with] = ACTIONS(3451), - [anon_sym_do] = ACTIONS(3451), - [anon_sym_while] = ACTIONS(3451), - [anon_sym_until] = ACTIONS(3451), - [anon_sym_repeat] = ACTIONS(3451), - [anon_sym_when] = ACTIONS(3451), - [anon_sym_if] = ACTIONS(3451), - [anon_sym_unless] = ACTIONS(3451), - [anon_sym_always] = ACTIONS(3451), - [anon_sym_thereis] = ACTIONS(3451), - [anon_sym_never] = ACTIONS(3451), - [anon_sym_else] = ACTIONS(3451), - [anon_sym_finally] = ACTIONS(3451), - [anon_sym_return] = ACTIONS(3451), - [anon_sym_initially] = ACTIONS(3451), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(3467), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(3325), + [anon_sym_cl] = ACTIONS(3318), + [aux_sym_accumulation_verb_token1] = ACTIONS(3321), + [anon_sym_for] = ACTIONS(3321), + [anon_sym_and] = ACTIONS(3321), + [anon_sym_as] = ACTIONS(3321), + [anon_sym_with] = ACTIONS(3321), + [anon_sym_do] = ACTIONS(3321), + [anon_sym_while] = ACTIONS(3321), + [anon_sym_until] = ACTIONS(3321), + [anon_sym_repeat] = ACTIONS(3321), + [anon_sym_when] = ACTIONS(3321), + [anon_sym_if] = ACTIONS(3321), + [anon_sym_unless] = ACTIONS(3321), + [anon_sym_always] = ACTIONS(3321), + [anon_sym_thereis] = ACTIONS(3321), + [anon_sym_never] = ACTIONS(3321), + [anon_sym_else] = ACTIONS(3321), + [anon_sym_finally] = ACTIONS(3321), + [anon_sym_return] = ACTIONS(3321), + [anon_sym_initially] = ACTIONS(3321), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(3327), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [201] = { - [sym__gap] = STATE(98), - [sym_dis_expr] = STATE(98), - [sym__form] = STATE(2528), - [sym_num_lit] = STATE(2528), - [sym_kwd_lit] = STATE(2528), - [sym_str_lit] = STATE(2528), - [sym_char_lit] = STATE(2528), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2528), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2528), - [sym_set_lit] = STATE(2528), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2528), - [sym_splicing_read_cond_lit] = STATE(2528), - [sym_var_quoting_lit] = STATE(2528), - [sym_quoting_lit] = STATE(2528), - [sym_syn_quoting_lit] = STATE(2528), - [sym_unquote_splicing_lit] = STATE(2528), - [sym_unquoting_lit] = STATE(2528), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2528), - [sym_package_lit] = STATE(2528), - [sym_include_reader_macro] = STATE(2528), - [sym_complex_num_lit] = STATE(2528), - [aux_sym_dis_expr_repeat1] = STATE(98), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(3469), - [sym_comment] = ACTIONS(3469), - [anon_sym_POUND_] = ACTIONS(3400), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(3472), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(3405), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(3472), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(3408), - [anon_sym_POUND_CARET] = ACTIONS(3411), - [anon_sym_LPAREN] = ACTIONS(3414), - [anon_sym_RPAREN] = ACTIONS(3417), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(240), + [sym_dis_expr] = STATE(240), + [sym__form] = STATE(2291), + [sym_num_lit] = STATE(2291), + [sym_kwd_lit] = STATE(2291), + [sym_str_lit] = STATE(2291), + [sym_char_lit] = STATE(2291), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2291), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2291), + [sym_set_lit] = STATE(2291), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2291), + [sym_splicing_read_cond_lit] = STATE(2291), + [sym_var_quoting_lit] = STATE(2291), + [sym_quoting_lit] = STATE(2291), + [sym_syn_quoting_lit] = STATE(2291), + [sym_unquote_splicing_lit] = STATE(2291), + [sym_unquoting_lit] = STATE(2291), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2291), + [sym_package_lit] = STATE(2291), + [sym_include_reader_macro] = STATE(2291), + [sym_complex_num_lit] = STATE(2291), + [aux_sym_dis_expr_repeat1] = STATE(240), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(3329), + [sym_comment] = ACTIONS(3329), + [anon_sym_POUND_] = ACTIONS(3299), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(3332), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(3304), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(3332), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(3307), + [anon_sym_POUND_CARET] = ACTIONS(3310), + [anon_sym_LPAREN] = ACTIONS(3313), + [anon_sym_RPAREN] = ACTIONS(3316), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3472), - [anon_sym_cl] = ACTIONS(3419), - [aux_sym_accumulation_verb_token1] = ACTIONS(3422), - [anon_sym_for] = ACTIONS(3422), - [anon_sym_and] = ACTIONS(3422), - [anon_sym_as] = ACTIONS(3422), - [anon_sym_with] = ACTIONS(3422), - [anon_sym_do] = ACTIONS(3422), - [anon_sym_while] = ACTIONS(3422), - [anon_sym_until] = ACTIONS(3422), - [anon_sym_repeat] = ACTIONS(3422), - [anon_sym_when] = ACTIONS(3422), - [anon_sym_if] = ACTIONS(3422), - [anon_sym_unless] = ACTIONS(3422), - [anon_sym_always] = ACTIONS(3422), - [anon_sym_thereis] = ACTIONS(3422), - [anon_sym_never] = ACTIONS(3422), - [anon_sym_else] = ACTIONS(3422), - [anon_sym_finally] = ACTIONS(3422), - [anon_sym_return] = ACTIONS(3422), - [anon_sym_initially] = ACTIONS(3422), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(3474), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(3332), + [anon_sym_cl] = ACTIONS(3318), + [aux_sym_accumulation_verb_token1] = ACTIONS(3321), + [anon_sym_for] = ACTIONS(3321), + [anon_sym_and] = ACTIONS(3321), + [anon_sym_as] = ACTIONS(3321), + [anon_sym_with] = ACTIONS(3321), + [anon_sym_do] = ACTIONS(3321), + [anon_sym_while] = ACTIONS(3321), + [anon_sym_until] = ACTIONS(3321), + [anon_sym_repeat] = ACTIONS(3321), + [anon_sym_when] = ACTIONS(3321), + [anon_sym_if] = ACTIONS(3321), + [anon_sym_unless] = ACTIONS(3321), + [anon_sym_always] = ACTIONS(3321), + [anon_sym_thereis] = ACTIONS(3321), + [anon_sym_never] = ACTIONS(3321), + [anon_sym_else] = ACTIONS(3321), + [anon_sym_finally] = ACTIONS(3321), + [anon_sym_return] = ACTIONS(3321), + [anon_sym_initially] = ACTIONS(3321), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(3334), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [202] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2240), - [sym_num_lit] = STATE(2240), - [sym_kwd_lit] = STATE(2240), - [sym_str_lit] = STATE(2240), - [sym_char_lit] = STATE(2240), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2240), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2240), - [sym_set_lit] = STATE(2240), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2240), - [sym_splicing_read_cond_lit] = STATE(2240), - [sym_var_quoting_lit] = STATE(2240), - [sym_quoting_lit] = STATE(2240), - [sym_syn_quoting_lit] = STATE(2240), - [sym_unquote_splicing_lit] = STATE(2240), - [sym_unquoting_lit] = STATE(2240), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2240), - [sym_package_lit] = STATE(2240), - [sym_include_reader_macro] = STATE(2240), - [sym_complex_num_lit] = STATE(2240), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(3426), - [sym_comment] = ACTIONS(3426), - [anon_sym_POUND_] = ACTIONS(3429), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(3476), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(3434), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(3476), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(3437), - [anon_sym_POUND_CARET] = ACTIONS(3440), - [anon_sym_LPAREN] = ACTIONS(3443), - [anon_sym_RPAREN] = ACTIONS(3446), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2296), + [sym_num_lit] = STATE(2296), + [sym_kwd_lit] = STATE(2296), + [sym_str_lit] = STATE(2296), + [sym_char_lit] = STATE(2296), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2296), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2296), + [sym_set_lit] = STATE(2296), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2296), + [sym_splicing_read_cond_lit] = STATE(2296), + [sym_var_quoting_lit] = STATE(2296), + [sym_quoting_lit] = STATE(2296), + [sym_syn_quoting_lit] = STATE(2296), + [sym_unquote_splicing_lit] = STATE(2296), + [sym_unquoting_lit] = STATE(2296), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2296), + [sym_package_lit] = STATE(2296), + [sym_include_reader_macro] = STATE(2296), + [sym_complex_num_lit] = STATE(2296), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(2857), + [sym_comment] = ACTIONS(2857), + [anon_sym_POUND_] = ACTIONS(2860), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(3336), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(2865), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(3336), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(2868), + [anon_sym_POUND_CARET] = ACTIONS(2871), + [anon_sym_LPAREN] = ACTIONS(2874), + [anon_sym_RPAREN] = ACTIONS(2877), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3476), - [anon_sym_cl] = ACTIONS(3448), - [aux_sym_accumulation_verb_token1] = ACTIONS(3451), - [anon_sym_for] = ACTIONS(3451), - [anon_sym_and] = ACTIONS(3451), - [anon_sym_as] = ACTIONS(3451), - [anon_sym_with] = ACTIONS(3451), - [anon_sym_do] = ACTIONS(3451), - [anon_sym_while] = ACTIONS(3451), - [anon_sym_until] = ACTIONS(3451), - [anon_sym_repeat] = ACTIONS(3451), - [anon_sym_when] = ACTIONS(3451), - [anon_sym_if] = ACTIONS(3451), - [anon_sym_unless] = ACTIONS(3451), - [anon_sym_always] = ACTIONS(3451), - [anon_sym_thereis] = ACTIONS(3451), - [anon_sym_never] = ACTIONS(3451), - [anon_sym_else] = ACTIONS(3451), - [anon_sym_finally] = ACTIONS(3451), - [anon_sym_return] = ACTIONS(3451), - [anon_sym_initially] = ACTIONS(3451), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(3478), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(3336), + [anon_sym_cl] = ACTIONS(2879), + [aux_sym_accumulation_verb_token1] = ACTIONS(2882), + [anon_sym_for] = ACTIONS(2882), + [anon_sym_and] = ACTIONS(2882), + [anon_sym_as] = ACTIONS(2882), + [anon_sym_with] = ACTIONS(2882), + [anon_sym_do] = ACTIONS(2882), + [anon_sym_while] = ACTIONS(2882), + [anon_sym_until] = ACTIONS(2882), + [anon_sym_repeat] = ACTIONS(2882), + [anon_sym_when] = ACTIONS(2882), + [anon_sym_if] = ACTIONS(2882), + [anon_sym_unless] = ACTIONS(2882), + [anon_sym_always] = ACTIONS(2882), + [anon_sym_thereis] = ACTIONS(2882), + [anon_sym_never] = ACTIONS(2882), + [anon_sym_else] = ACTIONS(2882), + [anon_sym_finally] = ACTIONS(2882), + [anon_sym_return] = ACTIONS(2882), + [anon_sym_initially] = ACTIONS(2882), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(3338), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [203] = { - [sym__gap] = STATE(99), - [sym_dis_expr] = STATE(99), - [sym__form] = STATE(2538), - [sym_num_lit] = STATE(2538), - [sym_kwd_lit] = STATE(2538), - [sym_str_lit] = STATE(2538), - [sym_char_lit] = STATE(2538), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2538), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2538), - [sym_set_lit] = STATE(2538), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2538), - [sym_splicing_read_cond_lit] = STATE(2538), - [sym_var_quoting_lit] = STATE(2538), - [sym_quoting_lit] = STATE(2538), - [sym_syn_quoting_lit] = STATE(2538), - [sym_unquote_splicing_lit] = STATE(2538), - [sym_unquoting_lit] = STATE(2538), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2538), - [sym_package_lit] = STATE(2538), - [sym_include_reader_macro] = STATE(2538), - [sym_complex_num_lit] = STATE(2538), - [aux_sym_dis_expr_repeat1] = STATE(99), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(3480), - [sym_comment] = ACTIONS(3480), - [anon_sym_POUND_] = ACTIONS(3400), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(3483), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(3405), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(3483), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(3408), - [anon_sym_POUND_CARET] = ACTIONS(3411), - [anon_sym_LPAREN] = ACTIONS(3414), - [anon_sym_RPAREN] = ACTIONS(3417), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2298), + [sym_num_lit] = STATE(2298), + [sym_kwd_lit] = STATE(2298), + [sym_str_lit] = STATE(2298), + [sym_char_lit] = STATE(2298), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2298), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2298), + [sym_set_lit] = STATE(2298), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2298), + [sym_splicing_read_cond_lit] = STATE(2298), + [sym_var_quoting_lit] = STATE(2298), + [sym_quoting_lit] = STATE(2298), + [sym_syn_quoting_lit] = STATE(2298), + [sym_unquote_splicing_lit] = STATE(2298), + [sym_unquoting_lit] = STATE(2298), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2298), + [sym_package_lit] = STATE(2298), + [sym_include_reader_macro] = STATE(2298), + [sym_complex_num_lit] = STATE(2298), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(2857), + [sym_comment] = ACTIONS(2857), + [anon_sym_POUND_] = ACTIONS(2860), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(3340), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(2865), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(3340), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(2868), + [anon_sym_POUND_CARET] = ACTIONS(2871), + [anon_sym_LPAREN] = ACTIONS(2874), + [anon_sym_RPAREN] = ACTIONS(2877), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3483), - [anon_sym_cl] = ACTIONS(3419), - [aux_sym_accumulation_verb_token1] = ACTIONS(3422), - [anon_sym_for] = ACTIONS(3422), - [anon_sym_and] = ACTIONS(3422), - [anon_sym_as] = ACTIONS(3422), - [anon_sym_with] = ACTIONS(3422), - [anon_sym_do] = ACTIONS(3422), - [anon_sym_while] = ACTIONS(3422), - [anon_sym_until] = ACTIONS(3422), - [anon_sym_repeat] = ACTIONS(3422), - [anon_sym_when] = ACTIONS(3422), - [anon_sym_if] = ACTIONS(3422), - [anon_sym_unless] = ACTIONS(3422), - [anon_sym_always] = ACTIONS(3422), - [anon_sym_thereis] = ACTIONS(3422), - [anon_sym_never] = ACTIONS(3422), - [anon_sym_else] = ACTIONS(3422), - [anon_sym_finally] = ACTIONS(3422), - [anon_sym_return] = ACTIONS(3422), - [anon_sym_initially] = ACTIONS(3422), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(3485), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(3340), + [anon_sym_cl] = ACTIONS(2879), + [aux_sym_accumulation_verb_token1] = ACTIONS(2882), + [anon_sym_for] = ACTIONS(2882), + [anon_sym_and] = ACTIONS(2882), + [anon_sym_as] = ACTIONS(2882), + [anon_sym_with] = ACTIONS(2882), + [anon_sym_do] = ACTIONS(2882), + [anon_sym_while] = ACTIONS(2882), + [anon_sym_until] = ACTIONS(2882), + [anon_sym_repeat] = ACTIONS(2882), + [anon_sym_when] = ACTIONS(2882), + [anon_sym_if] = ACTIONS(2882), + [anon_sym_unless] = ACTIONS(2882), + [anon_sym_always] = ACTIONS(2882), + [anon_sym_thereis] = ACTIONS(2882), + [anon_sym_never] = ACTIONS(2882), + [anon_sym_else] = ACTIONS(2882), + [anon_sym_finally] = ACTIONS(2882), + [anon_sym_return] = ACTIONS(2882), + [anon_sym_initially] = ACTIONS(2882), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(3342), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [204] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2539), - [sym_num_lit] = STATE(2539), - [sym_kwd_lit] = STATE(2539), - [sym_str_lit] = STATE(2539), - [sym_char_lit] = STATE(2539), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2539), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2539), - [sym_set_lit] = STATE(2539), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2539), - [sym_splicing_read_cond_lit] = STATE(2539), - [sym_var_quoting_lit] = STATE(2539), - [sym_quoting_lit] = STATE(2539), - [sym_syn_quoting_lit] = STATE(2539), - [sym_unquote_splicing_lit] = STATE(2539), - [sym_unquoting_lit] = STATE(2539), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2539), - [sym_package_lit] = STATE(2539), - [sym_include_reader_macro] = STATE(2539), - [sym_complex_num_lit] = STATE(2539), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(3397), - [sym_comment] = ACTIONS(3397), - [anon_sym_POUND_] = ACTIONS(3400), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(3487), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(3405), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(3487), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(3408), - [anon_sym_POUND_CARET] = ACTIONS(3411), - [anon_sym_LPAREN] = ACTIONS(3414), - [anon_sym_RPAREN] = ACTIONS(3417), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(241), + [sym_dis_expr] = STATE(241), + [sym__form] = STATE(2299), + [sym_num_lit] = STATE(2299), + [sym_kwd_lit] = STATE(2299), + [sym_str_lit] = STATE(2299), + [sym_char_lit] = STATE(2299), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2299), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2299), + [sym_set_lit] = STATE(2299), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2299), + [sym_splicing_read_cond_lit] = STATE(2299), + [sym_var_quoting_lit] = STATE(2299), + [sym_quoting_lit] = STATE(2299), + [sym_syn_quoting_lit] = STATE(2299), + [sym_unquote_splicing_lit] = STATE(2299), + [sym_unquoting_lit] = STATE(2299), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2299), + [sym_package_lit] = STATE(2299), + [sym_include_reader_macro] = STATE(2299), + [sym_complex_num_lit] = STATE(2299), + [aux_sym_dis_expr_repeat1] = STATE(241), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(3344), + [sym_comment] = ACTIONS(3344), + [anon_sym_POUND_] = ACTIONS(2860), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(3347), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(2865), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(3347), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(2868), + [anon_sym_POUND_CARET] = ACTIONS(2871), + [anon_sym_LPAREN] = ACTIONS(2874), + [anon_sym_RPAREN] = ACTIONS(2877), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3487), - [anon_sym_cl] = ACTIONS(3419), - [aux_sym_accumulation_verb_token1] = ACTIONS(3422), - [anon_sym_for] = ACTIONS(3422), - [anon_sym_and] = ACTIONS(3422), - [anon_sym_as] = ACTIONS(3422), - [anon_sym_with] = ACTIONS(3422), - [anon_sym_do] = ACTIONS(3422), - [anon_sym_while] = ACTIONS(3422), - [anon_sym_until] = ACTIONS(3422), - [anon_sym_repeat] = ACTIONS(3422), - [anon_sym_when] = ACTIONS(3422), - [anon_sym_if] = ACTIONS(3422), - [anon_sym_unless] = ACTIONS(3422), - [anon_sym_always] = ACTIONS(3422), - [anon_sym_thereis] = ACTIONS(3422), - [anon_sym_never] = ACTIONS(3422), - [anon_sym_else] = ACTIONS(3422), - [anon_sym_finally] = ACTIONS(3422), - [anon_sym_return] = ACTIONS(3422), - [anon_sym_initially] = ACTIONS(3422), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(3489), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(3347), + [anon_sym_cl] = ACTIONS(2879), + [aux_sym_accumulation_verb_token1] = ACTIONS(2882), + [anon_sym_for] = ACTIONS(2882), + [anon_sym_and] = ACTIONS(2882), + [anon_sym_as] = ACTIONS(2882), + [anon_sym_with] = ACTIONS(2882), + [anon_sym_do] = ACTIONS(2882), + [anon_sym_while] = ACTIONS(2882), + [anon_sym_until] = ACTIONS(2882), + [anon_sym_repeat] = ACTIONS(2882), + [anon_sym_when] = ACTIONS(2882), + [anon_sym_if] = ACTIONS(2882), + [anon_sym_unless] = ACTIONS(2882), + [anon_sym_always] = ACTIONS(2882), + [anon_sym_thereis] = ACTIONS(2882), + [anon_sym_never] = ACTIONS(2882), + [anon_sym_else] = ACTIONS(2882), + [anon_sym_finally] = ACTIONS(2882), + [anon_sym_return] = ACTIONS(2882), + [anon_sym_initially] = ACTIONS(2882), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(3349), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [205] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2238), - [sym_num_lit] = STATE(2238), - [sym_kwd_lit] = STATE(2238), - [sym_str_lit] = STATE(2238), - [sym_char_lit] = STATE(2238), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2238), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2238), - [sym_set_lit] = STATE(2238), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2238), - [sym_splicing_read_cond_lit] = STATE(2238), - [sym_var_quoting_lit] = STATE(2238), - [sym_quoting_lit] = STATE(2238), - [sym_syn_quoting_lit] = STATE(2238), - [sym_unquote_splicing_lit] = STATE(2238), - [sym_unquoting_lit] = STATE(2238), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2238), - [sym_package_lit] = STATE(2238), - [sym_include_reader_macro] = STATE(2238), - [sym_complex_num_lit] = STATE(2238), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(3332), - [sym_comment] = ACTIONS(3332), - [anon_sym_POUND_] = ACTIONS(3335), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(3491), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(3340), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(3491), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(3343), - [anon_sym_POUND_CARET] = ACTIONS(3346), - [anon_sym_LPAREN] = ACTIONS(3349), - [anon_sym_RPAREN] = ACTIONS(3352), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2303), + [sym_num_lit] = STATE(2303), + [sym_kwd_lit] = STATE(2303), + [sym_str_lit] = STATE(2303), + [sym_char_lit] = STATE(2303), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2303), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2303), + [sym_set_lit] = STATE(2303), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2303), + [sym_splicing_read_cond_lit] = STATE(2303), + [sym_var_quoting_lit] = STATE(2303), + [sym_quoting_lit] = STATE(2303), + [sym_syn_quoting_lit] = STATE(2303), + [sym_unquote_splicing_lit] = STATE(2303), + [sym_unquoting_lit] = STATE(2303), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2303), + [sym_package_lit] = STATE(2303), + [sym_include_reader_macro] = STATE(2303), + [sym_complex_num_lit] = STATE(2303), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(3351), + [sym_comment] = ACTIONS(3351), + [anon_sym_POUND_] = ACTIONS(3354), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(3357), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(3359), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(3357), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(3362), + [anon_sym_POUND_CARET] = ACTIONS(3365), + [anon_sym_LPAREN] = ACTIONS(3368), + [anon_sym_RPAREN] = ACTIONS(3371), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3491), - [anon_sym_cl] = ACTIONS(3354), - [aux_sym_accumulation_verb_token1] = ACTIONS(3357), - [anon_sym_for] = ACTIONS(3357), - [anon_sym_and] = ACTIONS(3357), - [anon_sym_as] = ACTIONS(3357), - [anon_sym_with] = ACTIONS(3357), - [anon_sym_do] = ACTIONS(3357), - [anon_sym_while] = ACTIONS(3357), - [anon_sym_until] = ACTIONS(3357), - [anon_sym_repeat] = ACTIONS(3357), - [anon_sym_when] = ACTIONS(3357), - [anon_sym_if] = ACTIONS(3357), - [anon_sym_unless] = ACTIONS(3357), - [anon_sym_always] = ACTIONS(3357), - [anon_sym_thereis] = ACTIONS(3357), - [anon_sym_never] = ACTIONS(3357), - [anon_sym_else] = ACTIONS(3357), - [anon_sym_finally] = ACTIONS(3357), - [anon_sym_return] = ACTIONS(3357), - [anon_sym_initially] = ACTIONS(3357), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(3493), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(3357), + [anon_sym_cl] = ACTIONS(3373), + [aux_sym_accumulation_verb_token1] = ACTIONS(3376), + [anon_sym_for] = ACTIONS(3376), + [anon_sym_and] = ACTIONS(3376), + [anon_sym_as] = ACTIONS(3376), + [anon_sym_with] = ACTIONS(3376), + [anon_sym_do] = ACTIONS(3376), + [anon_sym_while] = ACTIONS(3376), + [anon_sym_until] = ACTIONS(3376), + [anon_sym_repeat] = ACTIONS(3376), + [anon_sym_when] = ACTIONS(3376), + [anon_sym_if] = ACTIONS(3376), + [anon_sym_unless] = ACTIONS(3376), + [anon_sym_always] = ACTIONS(3376), + [anon_sym_thereis] = ACTIONS(3376), + [anon_sym_never] = ACTIONS(3376), + [anon_sym_else] = ACTIONS(3376), + [anon_sym_finally] = ACTIONS(3376), + [anon_sym_return] = ACTIONS(3376), + [anon_sym_initially] = ACTIONS(3376), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(3378), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [206] = { - [sym__gap] = STATE(219), - [sym_dis_expr] = STATE(219), - [sym__form] = STATE(2237), - [sym_num_lit] = STATE(2237), - [sym_kwd_lit] = STATE(2237), - [sym_str_lit] = STATE(2237), - [sym_char_lit] = STATE(2237), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2237), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2237), - [sym_set_lit] = STATE(2237), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2237), - [sym_splicing_read_cond_lit] = STATE(2237), - [sym_var_quoting_lit] = STATE(2237), - [sym_quoting_lit] = STATE(2237), - [sym_syn_quoting_lit] = STATE(2237), - [sym_unquote_splicing_lit] = STATE(2237), - [sym_unquoting_lit] = STATE(2237), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2237), - [sym_package_lit] = STATE(2237), - [sym_include_reader_macro] = STATE(2237), - [sym_complex_num_lit] = STATE(2237), - [aux_sym_dis_expr_repeat1] = STATE(219), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(3495), - [sym_comment] = ACTIONS(3495), - [anon_sym_POUND_] = ACTIONS(3335), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(3498), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(3340), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(3498), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(3343), - [anon_sym_POUND_CARET] = ACTIONS(3346), - [anon_sym_LPAREN] = ACTIONS(3349), - [anon_sym_RPAREN] = ACTIONS(3352), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2305), + [sym_num_lit] = STATE(2305), + [sym_kwd_lit] = STATE(2305), + [sym_str_lit] = STATE(2305), + [sym_char_lit] = STATE(2305), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2305), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2305), + [sym_set_lit] = STATE(2305), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2305), + [sym_splicing_read_cond_lit] = STATE(2305), + [sym_var_quoting_lit] = STATE(2305), + [sym_quoting_lit] = STATE(2305), + [sym_syn_quoting_lit] = STATE(2305), + [sym_unquote_splicing_lit] = STATE(2305), + [sym_unquoting_lit] = STATE(2305), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2305), + [sym_package_lit] = STATE(2305), + [sym_include_reader_macro] = STATE(2305), + [sym_complex_num_lit] = STATE(2305), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(2897), + [sym_comment] = ACTIONS(2897), + [anon_sym_POUND_] = ACTIONS(2900), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(3380), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(2905), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(3380), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(2908), + [anon_sym_POUND_CARET] = ACTIONS(2911), + [anon_sym_LPAREN] = ACTIONS(2914), + [anon_sym_RPAREN] = ACTIONS(2917), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3498), - [anon_sym_cl] = ACTIONS(3354), - [aux_sym_accumulation_verb_token1] = ACTIONS(3357), - [anon_sym_for] = ACTIONS(3357), - [anon_sym_and] = ACTIONS(3357), - [anon_sym_as] = ACTIONS(3357), - [anon_sym_with] = ACTIONS(3357), - [anon_sym_do] = ACTIONS(3357), - [anon_sym_while] = ACTIONS(3357), - [anon_sym_until] = ACTIONS(3357), - [anon_sym_repeat] = ACTIONS(3357), - [anon_sym_when] = ACTIONS(3357), - [anon_sym_if] = ACTIONS(3357), - [anon_sym_unless] = ACTIONS(3357), - [anon_sym_always] = ACTIONS(3357), - [anon_sym_thereis] = ACTIONS(3357), - [anon_sym_never] = ACTIONS(3357), - [anon_sym_else] = ACTIONS(3357), - [anon_sym_finally] = ACTIONS(3357), - [anon_sym_return] = ACTIONS(3357), - [anon_sym_initially] = ACTIONS(3357), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(3500), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(3380), + [anon_sym_cl] = ACTIONS(2919), + [aux_sym_accumulation_verb_token1] = ACTIONS(2922), + [anon_sym_for] = ACTIONS(2922), + [anon_sym_and] = ACTIONS(2922), + [anon_sym_as] = ACTIONS(2922), + [anon_sym_with] = ACTIONS(2922), + [anon_sym_do] = ACTIONS(2922), + [anon_sym_while] = ACTIONS(2922), + [anon_sym_until] = ACTIONS(2922), + [anon_sym_repeat] = ACTIONS(2922), + [anon_sym_when] = ACTIONS(2922), + [anon_sym_if] = ACTIONS(2922), + [anon_sym_unless] = ACTIONS(2922), + [anon_sym_always] = ACTIONS(2922), + [anon_sym_thereis] = ACTIONS(2922), + [anon_sym_never] = ACTIONS(2922), + [anon_sym_else] = ACTIONS(2922), + [anon_sym_finally] = ACTIONS(2922), + [anon_sym_return] = ACTIONS(2922), + [anon_sym_initially] = ACTIONS(2922), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(3382), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [207] = { - [sym__gap] = STATE(410), - [sym_dis_expr] = STATE(410), - [sym__form] = STATE(56), - [sym_num_lit] = STATE(56), - [sym_kwd_lit] = STATE(56), - [sym_str_lit] = STATE(56), - [sym_char_lit] = STATE(56), - [sym_sym_lit] = STATE(1484), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(56), - [sym__bare_list_lit] = STATE(1483), - [sym_vec_lit] = STATE(56), - [sym_set_lit] = STATE(56), - [sym__bare_set_lit] = STATE(1482), - [sym_read_cond_lit] = STATE(56), - [sym_splicing_read_cond_lit] = STATE(56), - [sym_var_quoting_lit] = STATE(56), - [sym_quoting_lit] = STATE(56), - [sym_syn_quoting_lit] = STATE(56), - [sym_unquote_splicing_lit] = STATE(56), - [sym_unquoting_lit] = STATE(56), - [sym_defun] = STATE(1483), - [sym_loop_macro] = STATE(1483), - [sym_path_lit] = STATE(56), - [sym_package_lit] = STATE(56), - [sym_include_reader_macro] = STATE(56), - [sym_complex_num_lit] = STATE(56), - [aux_sym_dis_expr_repeat1] = STATE(410), - [aux_sym_list_lit_repeat1] = STATE(2813), - [sym__ws] = ACTIONS(3502), - [sym_comment] = ACTIONS(3502), - [anon_sym_POUND_] = ACTIONS(3505), - [anon_sym_POUND] = ACTIONS(2728), - [anon_sym_DOT] = ACTIONS(3508), - [aux_sym_num_lit_token1] = ACTIONS(2732), - [anon_sym_COLON] = ACTIONS(3510), - [anon_sym_COLON_COLON] = ACTIONS(2737), - [anon_sym_DQUOTE] = ACTIONS(2739), - [sym_nil_lit] = ACTIONS(3508), - [aux_sym_sym_lit_token1] = ACTIONS(2741), - [anon_sym_CARET] = ACTIONS(3513), - [anon_sym_POUND_CARET] = ACTIONS(3516), - [anon_sym_LPAREN] = ACTIONS(3519), - [anon_sym_RPAREN] = ACTIONS(3522), - [anon_sym_POUND0A] = ACTIONS(2754), - [anon_sym_POUND0a] = ACTIONS(2754), - [anon_sym_POUND_QMARK] = ACTIONS(2756), - [anon_sym_POUND_QMARK_AT] = ACTIONS(2758), - [anon_sym_POUND_SQUOTE] = ACTIONS(2760), - [anon_sym_SQUOTE] = ACTIONS(2762), - [anon_sym_BQUOTE] = ACTIONS(2764), - [anon_sym_COMMA_AT] = ACTIONS(2766), - [anon_sym_COMMA] = ACTIONS(2768), + [sym__gap] = STATE(242), + [sym_dis_expr] = STATE(242), + [sym__form] = STATE(2306), + [sym_num_lit] = STATE(2306), + [sym_kwd_lit] = STATE(2306), + [sym_str_lit] = STATE(2306), + [sym_char_lit] = STATE(2306), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2306), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2306), + [sym_set_lit] = STATE(2306), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2306), + [sym_splicing_read_cond_lit] = STATE(2306), + [sym_var_quoting_lit] = STATE(2306), + [sym_quoting_lit] = STATE(2306), + [sym_syn_quoting_lit] = STATE(2306), + [sym_unquote_splicing_lit] = STATE(2306), + [sym_unquoting_lit] = STATE(2306), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2306), + [sym_package_lit] = STATE(2306), + [sym_include_reader_macro] = STATE(2306), + [sym_complex_num_lit] = STATE(2306), + [aux_sym_dis_expr_repeat1] = STATE(242), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(3384), + [sym_comment] = ACTIONS(3384), + [anon_sym_POUND_] = ACTIONS(2900), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(3387), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(2905), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(3387), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(2908), + [anon_sym_POUND_CARET] = ACTIONS(2911), + [anon_sym_LPAREN] = ACTIONS(2914), + [anon_sym_RPAREN] = ACTIONS(2917), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3508), - [anon_sym_cl] = ACTIONS(3524), - [aux_sym_accumulation_verb_token1] = ACTIONS(3527), - [anon_sym_for] = ACTIONS(3527), - [anon_sym_and] = ACTIONS(3527), - [anon_sym_as] = ACTIONS(3527), - [anon_sym_with] = ACTIONS(3527), - [anon_sym_do] = ACTIONS(3527), - [anon_sym_while] = ACTIONS(3527), - [anon_sym_until] = ACTIONS(3527), - [anon_sym_repeat] = ACTIONS(3527), - [anon_sym_when] = ACTIONS(3527), - [anon_sym_if] = ACTIONS(3527), - [anon_sym_unless] = ACTIONS(3527), - [anon_sym_always] = ACTIONS(3527), - [anon_sym_thereis] = ACTIONS(3527), - [anon_sym_never] = ACTIONS(3527), - [anon_sym_else] = ACTIONS(3527), - [anon_sym_finally] = ACTIONS(3527), - [anon_sym_return] = ACTIONS(3527), - [anon_sym_initially] = ACTIONS(3527), - [anon_sym_POUNDP] = ACTIONS(2775), - [anon_sym_POUNDp] = ACTIONS(2775), - [sym_self_referential_reader_macro] = ACTIONS(3529), - [anon_sym_POUND_PLUS] = ACTIONS(2779), - [anon_sym_POUND_DASH] = ACTIONS(2779), - [anon_sym_POUNDC] = ACTIONS(2781), - [anon_sym_POUNDc] = ACTIONS(2781), + [sym_fancy_literal] = ACTIONS(3387), + [anon_sym_cl] = ACTIONS(2919), + [aux_sym_accumulation_verb_token1] = ACTIONS(2922), + [anon_sym_for] = ACTIONS(2922), + [anon_sym_and] = ACTIONS(2922), + [anon_sym_as] = ACTIONS(2922), + [anon_sym_with] = ACTIONS(2922), + [anon_sym_do] = ACTIONS(2922), + [anon_sym_while] = ACTIONS(2922), + [anon_sym_until] = ACTIONS(2922), + [anon_sym_repeat] = ACTIONS(2922), + [anon_sym_when] = ACTIONS(2922), + [anon_sym_if] = ACTIONS(2922), + [anon_sym_unless] = ACTIONS(2922), + [anon_sym_always] = ACTIONS(2922), + [anon_sym_thereis] = ACTIONS(2922), + [anon_sym_never] = ACTIONS(2922), + [anon_sym_else] = ACTIONS(2922), + [anon_sym_finally] = ACTIONS(2922), + [anon_sym_return] = ACTIONS(2922), + [anon_sym_initially] = ACTIONS(2922), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(3389), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [208] = { - [sym__gap] = STATE(217), - [sym_dis_expr] = STATE(217), - [sym__form] = STATE(2235), - [sym_num_lit] = STATE(2235), - [sym_kwd_lit] = STATE(2235), - [sym_str_lit] = STATE(2235), - [sym_char_lit] = STATE(2235), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2235), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2235), - [sym_set_lit] = STATE(2235), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2235), - [sym_splicing_read_cond_lit] = STATE(2235), - [sym_var_quoting_lit] = STATE(2235), - [sym_quoting_lit] = STATE(2235), - [sym_syn_quoting_lit] = STATE(2235), - [sym_unquote_splicing_lit] = STATE(2235), - [sym_unquoting_lit] = STATE(2235), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2235), - [sym_package_lit] = STATE(2235), - [sym_include_reader_macro] = STATE(2235), - [sym_complex_num_lit] = STATE(2235), - [aux_sym_dis_expr_repeat1] = STATE(217), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(3531), - [sym_comment] = ACTIONS(3531), - [anon_sym_POUND_] = ACTIONS(3534), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(3537), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(3539), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(3537), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(3542), - [anon_sym_POUND_CARET] = ACTIONS(3545), - [anon_sym_LPAREN] = ACTIONS(3548), - [anon_sym_RPAREN] = ACTIONS(3551), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(243), + [sym_dis_expr] = STATE(243), + [sym__form] = STATE(2308), + [sym_num_lit] = STATE(2308), + [sym_kwd_lit] = STATE(2308), + [sym_str_lit] = STATE(2308), + [sym_char_lit] = STATE(2308), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2308), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2308), + [sym_set_lit] = STATE(2308), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2308), + [sym_splicing_read_cond_lit] = STATE(2308), + [sym_var_quoting_lit] = STATE(2308), + [sym_quoting_lit] = STATE(2308), + [sym_syn_quoting_lit] = STATE(2308), + [sym_unquote_splicing_lit] = STATE(2308), + [sym_unquoting_lit] = STATE(2308), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2308), + [sym_package_lit] = STATE(2308), + [sym_include_reader_macro] = STATE(2308), + [sym_complex_num_lit] = STATE(2308), + [aux_sym_dis_expr_repeat1] = STATE(243), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(3391), + [sym_comment] = ACTIONS(3391), + [anon_sym_POUND_] = ACTIONS(2900), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(3394), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(2905), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(3394), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(2908), + [anon_sym_POUND_CARET] = ACTIONS(2911), + [anon_sym_LPAREN] = ACTIONS(2914), + [anon_sym_RPAREN] = ACTIONS(2917), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3537), - [anon_sym_cl] = ACTIONS(3553), - [aux_sym_accumulation_verb_token1] = ACTIONS(3556), - [anon_sym_for] = ACTIONS(3556), - [anon_sym_and] = ACTIONS(3556), - [anon_sym_as] = ACTIONS(3556), - [anon_sym_with] = ACTIONS(3556), - [anon_sym_do] = ACTIONS(3556), - [anon_sym_while] = ACTIONS(3556), - [anon_sym_until] = ACTIONS(3556), - [anon_sym_repeat] = ACTIONS(3556), - [anon_sym_when] = ACTIONS(3556), - [anon_sym_if] = ACTIONS(3556), - [anon_sym_unless] = ACTIONS(3556), - [anon_sym_always] = ACTIONS(3556), - [anon_sym_thereis] = ACTIONS(3556), - [anon_sym_never] = ACTIONS(3556), - [anon_sym_else] = ACTIONS(3556), - [anon_sym_finally] = ACTIONS(3556), - [anon_sym_return] = ACTIONS(3556), - [anon_sym_initially] = ACTIONS(3556), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(3558), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(3394), + [anon_sym_cl] = ACTIONS(2919), + [aux_sym_accumulation_verb_token1] = ACTIONS(2922), + [anon_sym_for] = ACTIONS(2922), + [anon_sym_and] = ACTIONS(2922), + [anon_sym_as] = ACTIONS(2922), + [anon_sym_with] = ACTIONS(2922), + [anon_sym_do] = ACTIONS(2922), + [anon_sym_while] = ACTIONS(2922), + [anon_sym_until] = ACTIONS(2922), + [anon_sym_repeat] = ACTIONS(2922), + [anon_sym_when] = ACTIONS(2922), + [anon_sym_if] = ACTIONS(2922), + [anon_sym_unless] = ACTIONS(2922), + [anon_sym_always] = ACTIONS(2922), + [anon_sym_thereis] = ACTIONS(2922), + [anon_sym_never] = ACTIONS(2922), + [anon_sym_else] = ACTIONS(2922), + [anon_sym_finally] = ACTIONS(2922), + [anon_sym_return] = ACTIONS(2922), + [anon_sym_initially] = ACTIONS(2922), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(3396), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [209] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2541), - [sym_num_lit] = STATE(2541), - [sym_kwd_lit] = STATE(2541), - [sym_str_lit] = STATE(2541), - [sym_char_lit] = STATE(2541), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2541), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2541), - [sym_set_lit] = STATE(2541), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2541), - [sym_splicing_read_cond_lit] = STATE(2541), - [sym_var_quoting_lit] = STATE(2541), - [sym_quoting_lit] = STATE(2541), - [sym_syn_quoting_lit] = STATE(2541), - [sym_unquote_splicing_lit] = STATE(2541), - [sym_unquoting_lit] = STATE(2541), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2541), - [sym_package_lit] = STATE(2541), - [sym_include_reader_macro] = STATE(2541), - [sym_complex_num_lit] = STATE(2541), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(3390), - [sym_comment] = ACTIONS(3390), - [anon_sym_POUND_] = ACTIONS(3364), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(3560), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(3369), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(3560), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(3372), - [anon_sym_POUND_CARET] = ACTIONS(3375), - [anon_sym_LPAREN] = ACTIONS(3378), - [anon_sym_RPAREN] = ACTIONS(3381), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2312), + [sym_num_lit] = STATE(2312), + [sym_kwd_lit] = STATE(2312), + [sym_str_lit] = STATE(2312), + [sym_char_lit] = STATE(2312), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2312), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2312), + [sym_set_lit] = STATE(2312), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2312), + [sym_splicing_read_cond_lit] = STATE(2312), + [sym_var_quoting_lit] = STATE(2312), + [sym_quoting_lit] = STATE(2312), + [sym_syn_quoting_lit] = STATE(2312), + [sym_unquote_splicing_lit] = STATE(2312), + [sym_unquoting_lit] = STATE(2312), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2312), + [sym_package_lit] = STATE(2312), + [sym_include_reader_macro] = STATE(2312), + [sym_complex_num_lit] = STATE(2312), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(2897), + [sym_comment] = ACTIONS(2897), + [anon_sym_POUND_] = ACTIONS(2900), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(3398), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(2905), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(3398), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(2908), + [anon_sym_POUND_CARET] = ACTIONS(2911), + [anon_sym_LPAREN] = ACTIONS(2914), + [anon_sym_RPAREN] = ACTIONS(2917), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3560), - [anon_sym_cl] = ACTIONS(3383), - [aux_sym_accumulation_verb_token1] = ACTIONS(3386), - [anon_sym_for] = ACTIONS(3386), - [anon_sym_and] = ACTIONS(3386), - [anon_sym_as] = ACTIONS(3386), - [anon_sym_with] = ACTIONS(3386), - [anon_sym_do] = ACTIONS(3386), - [anon_sym_while] = ACTIONS(3386), - [anon_sym_until] = ACTIONS(3386), - [anon_sym_repeat] = ACTIONS(3386), - [anon_sym_when] = ACTIONS(3386), - [anon_sym_if] = ACTIONS(3386), - [anon_sym_unless] = ACTIONS(3386), - [anon_sym_always] = ACTIONS(3386), - [anon_sym_thereis] = ACTIONS(3386), - [anon_sym_never] = ACTIONS(3386), - [anon_sym_else] = ACTIONS(3386), - [anon_sym_finally] = ACTIONS(3386), - [anon_sym_return] = ACTIONS(3386), - [anon_sym_initially] = ACTIONS(3386), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(3562), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(3398), + [anon_sym_cl] = ACTIONS(2919), + [aux_sym_accumulation_verb_token1] = ACTIONS(2922), + [anon_sym_for] = ACTIONS(2922), + [anon_sym_and] = ACTIONS(2922), + [anon_sym_as] = ACTIONS(2922), + [anon_sym_with] = ACTIONS(2922), + [anon_sym_do] = ACTIONS(2922), + [anon_sym_while] = ACTIONS(2922), + [anon_sym_until] = ACTIONS(2922), + [anon_sym_repeat] = ACTIONS(2922), + [anon_sym_when] = ACTIONS(2922), + [anon_sym_if] = ACTIONS(2922), + [anon_sym_unless] = ACTIONS(2922), + [anon_sym_always] = ACTIONS(2922), + [anon_sym_thereis] = ACTIONS(2922), + [anon_sym_never] = ACTIONS(2922), + [anon_sym_else] = ACTIONS(2922), + [anon_sym_finally] = ACTIONS(2922), + [anon_sym_return] = ACTIONS(2922), + [anon_sym_initially] = ACTIONS(2922), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(3400), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [210] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2480), - [sym_num_lit] = STATE(2480), - [sym_kwd_lit] = STATE(2480), - [sym_str_lit] = STATE(2480), - [sym_char_lit] = STATE(2480), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2480), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2480), - [sym_set_lit] = STATE(2480), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2480), - [sym_splicing_read_cond_lit] = STATE(2480), - [sym_var_quoting_lit] = STATE(2480), - [sym_quoting_lit] = STATE(2480), - [sym_syn_quoting_lit] = STATE(2480), - [sym_unquote_splicing_lit] = STATE(2480), - [sym_unquoting_lit] = STATE(2480), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2480), - [sym_package_lit] = STATE(2480), - [sym_include_reader_macro] = STATE(2480), - [sym_complex_num_lit] = STATE(2480), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(3564), - [sym_comment] = ACTIONS(3564), - [anon_sym_POUND_] = ACTIONS(3567), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(3570), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(3572), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(3570), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(3575), - [anon_sym_POUND_CARET] = ACTIONS(3578), - [anon_sym_LPAREN] = ACTIONS(3581), - [anon_sym_RPAREN] = ACTIONS(3584), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2316), + [sym_num_lit] = STATE(2316), + [sym_kwd_lit] = STATE(2316), + [sym_str_lit] = STATE(2316), + [sym_char_lit] = STATE(2316), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2316), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2316), + [sym_set_lit] = STATE(2316), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2316), + [sym_splicing_read_cond_lit] = STATE(2316), + [sym_var_quoting_lit] = STATE(2316), + [sym_quoting_lit] = STATE(2316), + [sym_syn_quoting_lit] = STATE(2316), + [sym_unquote_splicing_lit] = STATE(2316), + [sym_unquoting_lit] = STATE(2316), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2316), + [sym_package_lit] = STATE(2316), + [sym_include_reader_macro] = STATE(2316), + [sym_complex_num_lit] = STATE(2316), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(3402), + [sym_comment] = ACTIONS(3402), + [anon_sym_POUND_] = ACTIONS(3405), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(3408), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(3410), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(3408), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(3413), + [anon_sym_POUND_CARET] = ACTIONS(3416), + [anon_sym_LPAREN] = ACTIONS(3419), + [anon_sym_RPAREN] = ACTIONS(3422), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3570), - [anon_sym_cl] = ACTIONS(3586), - [aux_sym_accumulation_verb_token1] = ACTIONS(3589), - [anon_sym_for] = ACTIONS(3589), - [anon_sym_and] = ACTIONS(3589), - [anon_sym_as] = ACTIONS(3589), - [anon_sym_with] = ACTIONS(3589), - [anon_sym_do] = ACTIONS(3589), - [anon_sym_while] = ACTIONS(3589), - [anon_sym_until] = ACTIONS(3589), - [anon_sym_repeat] = ACTIONS(3589), - [anon_sym_when] = ACTIONS(3589), - [anon_sym_if] = ACTIONS(3589), - [anon_sym_unless] = ACTIONS(3589), - [anon_sym_always] = ACTIONS(3589), - [anon_sym_thereis] = ACTIONS(3589), - [anon_sym_never] = ACTIONS(3589), - [anon_sym_else] = ACTIONS(3589), - [anon_sym_finally] = ACTIONS(3589), - [anon_sym_return] = ACTIONS(3589), - [anon_sym_initially] = ACTIONS(3589), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(3591), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(3408), + [anon_sym_cl] = ACTIONS(3424), + [aux_sym_accumulation_verb_token1] = ACTIONS(3427), + [anon_sym_for] = ACTIONS(3427), + [anon_sym_and] = ACTIONS(3427), + [anon_sym_as] = ACTIONS(3427), + [anon_sym_with] = ACTIONS(3427), + [anon_sym_do] = ACTIONS(3427), + [anon_sym_while] = ACTIONS(3427), + [anon_sym_until] = ACTIONS(3427), + [anon_sym_repeat] = ACTIONS(3427), + [anon_sym_when] = ACTIONS(3427), + [anon_sym_if] = ACTIONS(3427), + [anon_sym_unless] = ACTIONS(3427), + [anon_sym_always] = ACTIONS(3427), + [anon_sym_thereis] = ACTIONS(3427), + [anon_sym_never] = ACTIONS(3427), + [anon_sym_else] = ACTIONS(3427), + [anon_sym_finally] = ACTIONS(3427), + [anon_sym_return] = ACTIONS(3427), + [anon_sym_initially] = ACTIONS(3427), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(3429), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [211] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2233), - [sym_num_lit] = STATE(2233), - [sym_kwd_lit] = STATE(2233), - [sym_str_lit] = STATE(2233), - [sym_char_lit] = STATE(2233), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2233), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2233), - [sym_set_lit] = STATE(2233), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2233), - [sym_splicing_read_cond_lit] = STATE(2233), - [sym_var_quoting_lit] = STATE(2233), - [sym_quoting_lit] = STATE(2233), - [sym_syn_quoting_lit] = STATE(2233), - [sym_unquote_splicing_lit] = STATE(2233), - [sym_unquoting_lit] = STATE(2233), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2233), - [sym_package_lit] = STATE(2233), - [sym_include_reader_macro] = STATE(2233), - [sym_complex_num_lit] = STATE(2233), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(3593), - [sym_comment] = ACTIONS(3593), - [anon_sym_POUND_] = ACTIONS(3534), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(3596), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(3539), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(3596), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(3542), - [anon_sym_POUND_CARET] = ACTIONS(3545), - [anon_sym_LPAREN] = ACTIONS(3548), - [anon_sym_RPAREN] = ACTIONS(3551), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2320), + [sym_num_lit] = STATE(2320), + [sym_kwd_lit] = STATE(2320), + [sym_str_lit] = STATE(2320), + [sym_char_lit] = STATE(2320), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2320), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2320), + [sym_set_lit] = STATE(2320), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2320), + [sym_splicing_read_cond_lit] = STATE(2320), + [sym_var_quoting_lit] = STATE(2320), + [sym_quoting_lit] = STATE(2320), + [sym_syn_quoting_lit] = STATE(2320), + [sym_unquote_splicing_lit] = STATE(2320), + [sym_unquoting_lit] = STATE(2320), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2320), + [sym_package_lit] = STATE(2320), + [sym_include_reader_macro] = STATE(2320), + [sym_complex_num_lit] = STATE(2320), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(3431), + [sym_comment] = ACTIONS(3431), + [anon_sym_POUND_] = ACTIONS(3434), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(3437), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(3439), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(3437), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(3442), + [anon_sym_POUND_CARET] = ACTIONS(3445), + [anon_sym_LPAREN] = ACTIONS(3448), + [anon_sym_RPAREN] = ACTIONS(3451), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3596), - [anon_sym_cl] = ACTIONS(3553), - [aux_sym_accumulation_verb_token1] = ACTIONS(3556), - [anon_sym_for] = ACTIONS(3556), - [anon_sym_and] = ACTIONS(3556), - [anon_sym_as] = ACTIONS(3556), - [anon_sym_with] = ACTIONS(3556), - [anon_sym_do] = ACTIONS(3556), - [anon_sym_while] = ACTIONS(3556), - [anon_sym_until] = ACTIONS(3556), - [anon_sym_repeat] = ACTIONS(3556), - [anon_sym_when] = ACTIONS(3556), - [anon_sym_if] = ACTIONS(3556), - [anon_sym_unless] = ACTIONS(3556), - [anon_sym_always] = ACTIONS(3556), - [anon_sym_thereis] = ACTIONS(3556), - [anon_sym_never] = ACTIONS(3556), - [anon_sym_else] = ACTIONS(3556), - [anon_sym_finally] = ACTIONS(3556), - [anon_sym_return] = ACTIONS(3556), - [anon_sym_initially] = ACTIONS(3556), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(3598), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(3437), + [anon_sym_cl] = ACTIONS(3453), + [aux_sym_accumulation_verb_token1] = ACTIONS(3456), + [anon_sym_for] = ACTIONS(3456), + [anon_sym_and] = ACTIONS(3456), + [anon_sym_as] = ACTIONS(3456), + [anon_sym_with] = ACTIONS(3456), + [anon_sym_do] = ACTIONS(3456), + [anon_sym_while] = ACTIONS(3456), + [anon_sym_until] = ACTIONS(3456), + [anon_sym_repeat] = ACTIONS(3456), + [anon_sym_when] = ACTIONS(3456), + [anon_sym_if] = ACTIONS(3456), + [anon_sym_unless] = ACTIONS(3456), + [anon_sym_always] = ACTIONS(3456), + [anon_sym_thereis] = ACTIONS(3456), + [anon_sym_never] = ACTIONS(3456), + [anon_sym_else] = ACTIONS(3456), + [anon_sym_finally] = ACTIONS(3456), + [anon_sym_return] = ACTIONS(3456), + [anon_sym_initially] = ACTIONS(3456), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(3458), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [212] = { - [sym__gap] = STATE(210), - [sym_dis_expr] = STATE(210), - [sym__form] = STATE(2231), - [sym_num_lit] = STATE(2231), - [sym_kwd_lit] = STATE(2231), - [sym_str_lit] = STATE(2231), - [sym_char_lit] = STATE(2231), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2231), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2231), - [sym_set_lit] = STATE(2231), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2231), - [sym_splicing_read_cond_lit] = STATE(2231), - [sym_var_quoting_lit] = STATE(2231), - [sym_quoting_lit] = STATE(2231), - [sym_syn_quoting_lit] = STATE(2231), - [sym_unquote_splicing_lit] = STATE(2231), - [sym_unquoting_lit] = STATE(2231), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2231), - [sym_package_lit] = STATE(2231), - [sym_include_reader_macro] = STATE(2231), - [sym_complex_num_lit] = STATE(2231), - [aux_sym_dis_expr_repeat1] = STATE(210), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(3600), - [sym_comment] = ACTIONS(3600), - [anon_sym_POUND_] = ACTIONS(3534), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(3603), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(3539), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(3603), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(3542), - [anon_sym_POUND_CARET] = ACTIONS(3545), - [anon_sym_LPAREN] = ACTIONS(3548), - [anon_sym_RPAREN] = ACTIONS(3551), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2322), + [sym_num_lit] = STATE(2322), + [sym_kwd_lit] = STATE(2322), + [sym_str_lit] = STATE(2322), + [sym_char_lit] = STATE(2322), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2322), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2322), + [sym_set_lit] = STATE(2322), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2322), + [sym_splicing_read_cond_lit] = STATE(2322), + [sym_var_quoting_lit] = STATE(2322), + [sym_quoting_lit] = STATE(2322), + [sym_syn_quoting_lit] = STATE(2322), + [sym_unquote_splicing_lit] = STATE(2322), + [sym_unquoting_lit] = STATE(2322), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2322), + [sym_package_lit] = STATE(2322), + [sym_include_reader_macro] = STATE(2322), + [sym_complex_num_lit] = STATE(2322), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(3431), + [sym_comment] = ACTIONS(3431), + [anon_sym_POUND_] = ACTIONS(3434), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(3460), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(3439), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(3460), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(3442), + [anon_sym_POUND_CARET] = ACTIONS(3445), + [anon_sym_LPAREN] = ACTIONS(3448), + [anon_sym_RPAREN] = ACTIONS(3451), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3603), - [anon_sym_cl] = ACTIONS(3553), - [aux_sym_accumulation_verb_token1] = ACTIONS(3556), - [anon_sym_for] = ACTIONS(3556), - [anon_sym_and] = ACTIONS(3556), - [anon_sym_as] = ACTIONS(3556), - [anon_sym_with] = ACTIONS(3556), - [anon_sym_do] = ACTIONS(3556), - [anon_sym_while] = ACTIONS(3556), - [anon_sym_until] = ACTIONS(3556), - [anon_sym_repeat] = ACTIONS(3556), - [anon_sym_when] = ACTIONS(3556), - [anon_sym_if] = ACTIONS(3556), - [anon_sym_unless] = ACTIONS(3556), - [anon_sym_always] = ACTIONS(3556), - [anon_sym_thereis] = ACTIONS(3556), - [anon_sym_never] = ACTIONS(3556), - [anon_sym_else] = ACTIONS(3556), - [anon_sym_finally] = ACTIONS(3556), - [anon_sym_return] = ACTIONS(3556), - [anon_sym_initially] = ACTIONS(3556), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(3605), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(3460), + [anon_sym_cl] = ACTIONS(3453), + [aux_sym_accumulation_verb_token1] = ACTIONS(3456), + [anon_sym_for] = ACTIONS(3456), + [anon_sym_and] = ACTIONS(3456), + [anon_sym_as] = ACTIONS(3456), + [anon_sym_with] = ACTIONS(3456), + [anon_sym_do] = ACTIONS(3456), + [anon_sym_while] = ACTIONS(3456), + [anon_sym_until] = ACTIONS(3456), + [anon_sym_repeat] = ACTIONS(3456), + [anon_sym_when] = ACTIONS(3456), + [anon_sym_if] = ACTIONS(3456), + [anon_sym_unless] = ACTIONS(3456), + [anon_sym_always] = ACTIONS(3456), + [anon_sym_thereis] = ACTIONS(3456), + [anon_sym_never] = ACTIONS(3456), + [anon_sym_else] = ACTIONS(3456), + [anon_sym_finally] = ACTIONS(3456), + [anon_sym_return] = ACTIONS(3456), + [anon_sym_initially] = ACTIONS(3456), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(3462), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [213] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2228), - [sym_num_lit] = STATE(2228), - [sym_kwd_lit] = STATE(2228), - [sym_str_lit] = STATE(2228), - [sym_char_lit] = STATE(2228), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2228), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2228), - [sym_set_lit] = STATE(2228), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2228), - [sym_splicing_read_cond_lit] = STATE(2228), - [sym_var_quoting_lit] = STATE(2228), - [sym_quoting_lit] = STATE(2228), - [sym_syn_quoting_lit] = STATE(2228), - [sym_unquote_splicing_lit] = STATE(2228), - [sym_unquoting_lit] = STATE(2228), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2228), - [sym_package_lit] = STATE(2228), - [sym_include_reader_macro] = STATE(2228), - [sym_complex_num_lit] = STATE(2228), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(2618), - [sym_comment] = ACTIONS(2618), - [anon_sym_POUND_] = ACTIONS(2621), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(3607), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(2626), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(3607), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2629), - [anon_sym_POUND_CARET] = ACTIONS(2632), - [anon_sym_LPAREN] = ACTIONS(2635), - [anon_sym_RPAREN] = ACTIONS(2638), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(245), + [sym_dis_expr] = STATE(245), + [sym__form] = STATE(2323), + [sym_num_lit] = STATE(2323), + [sym_kwd_lit] = STATE(2323), + [sym_str_lit] = STATE(2323), + [sym_char_lit] = STATE(2323), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2323), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2323), + [sym_set_lit] = STATE(2323), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2323), + [sym_splicing_read_cond_lit] = STATE(2323), + [sym_var_quoting_lit] = STATE(2323), + [sym_quoting_lit] = STATE(2323), + [sym_syn_quoting_lit] = STATE(2323), + [sym_unquote_splicing_lit] = STATE(2323), + [sym_unquoting_lit] = STATE(2323), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2323), + [sym_package_lit] = STATE(2323), + [sym_include_reader_macro] = STATE(2323), + [sym_complex_num_lit] = STATE(2323), + [aux_sym_dis_expr_repeat1] = STATE(245), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(3464), + [sym_comment] = ACTIONS(3464), + [anon_sym_POUND_] = ACTIONS(3434), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(3467), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(3439), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(3467), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(3442), + [anon_sym_POUND_CARET] = ACTIONS(3445), + [anon_sym_LPAREN] = ACTIONS(3448), + [anon_sym_RPAREN] = ACTIONS(3451), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3607), - [anon_sym_cl] = ACTIONS(2640), - [aux_sym_accumulation_verb_token1] = ACTIONS(2643), - [anon_sym_for] = ACTIONS(2643), - [anon_sym_and] = ACTIONS(2643), - [anon_sym_as] = ACTIONS(2643), - [anon_sym_with] = ACTIONS(2643), - [anon_sym_do] = ACTIONS(2643), - [anon_sym_while] = ACTIONS(2643), - [anon_sym_until] = ACTIONS(2643), - [anon_sym_repeat] = ACTIONS(2643), - [anon_sym_when] = ACTIONS(2643), - [anon_sym_if] = ACTIONS(2643), - [anon_sym_unless] = ACTIONS(2643), - [anon_sym_always] = ACTIONS(2643), - [anon_sym_thereis] = ACTIONS(2643), - [anon_sym_never] = ACTIONS(2643), - [anon_sym_else] = ACTIONS(2643), - [anon_sym_finally] = ACTIONS(2643), - [anon_sym_return] = ACTIONS(2643), - [anon_sym_initially] = ACTIONS(2643), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(3609), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(3467), + [anon_sym_cl] = ACTIONS(3453), + [aux_sym_accumulation_verb_token1] = ACTIONS(3456), + [anon_sym_for] = ACTIONS(3456), + [anon_sym_and] = ACTIONS(3456), + [anon_sym_as] = ACTIONS(3456), + [anon_sym_with] = ACTIONS(3456), + [anon_sym_do] = ACTIONS(3456), + [anon_sym_while] = ACTIONS(3456), + [anon_sym_until] = ACTIONS(3456), + [anon_sym_repeat] = ACTIONS(3456), + [anon_sym_when] = ACTIONS(3456), + [anon_sym_if] = ACTIONS(3456), + [anon_sym_unless] = ACTIONS(3456), + [anon_sym_always] = ACTIONS(3456), + [anon_sym_thereis] = ACTIONS(3456), + [anon_sym_never] = ACTIONS(3456), + [anon_sym_else] = ACTIONS(3456), + [anon_sym_finally] = ACTIONS(3456), + [anon_sym_return] = ACTIONS(3456), + [anon_sym_initially] = ACTIONS(3456), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(3469), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [214] = { - [sym__gap] = STATE(209), - [sym_dis_expr] = STATE(209), - [sym__form] = STATE(2227), - [sym_num_lit] = STATE(2227), - [sym_kwd_lit] = STATE(2227), - [sym_str_lit] = STATE(2227), - [sym_char_lit] = STATE(2227), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2227), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2227), - [sym_set_lit] = STATE(2227), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2227), - [sym_splicing_read_cond_lit] = STATE(2227), - [sym_var_quoting_lit] = STATE(2227), - [sym_quoting_lit] = STATE(2227), - [sym_syn_quoting_lit] = STATE(2227), - [sym_unquote_splicing_lit] = STATE(2227), - [sym_unquoting_lit] = STATE(2227), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2227), - [sym_package_lit] = STATE(2227), - [sym_include_reader_macro] = STATE(2227), - [sym_complex_num_lit] = STATE(2227), - [aux_sym_dis_expr_repeat1] = STATE(209), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(3611), - [sym_comment] = ACTIONS(3611), - [anon_sym_POUND_] = ACTIONS(2621), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(3614), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(2626), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(3614), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2629), - [anon_sym_POUND_CARET] = ACTIONS(2632), - [anon_sym_LPAREN] = ACTIONS(2635), - [anon_sym_RPAREN] = ACTIONS(2638), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2328), + [sym_num_lit] = STATE(2328), + [sym_kwd_lit] = STATE(2328), + [sym_str_lit] = STATE(2328), + [sym_char_lit] = STATE(2328), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2328), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2328), + [sym_set_lit] = STATE(2328), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2328), + [sym_splicing_read_cond_lit] = STATE(2328), + [sym_var_quoting_lit] = STATE(2328), + [sym_quoting_lit] = STATE(2328), + [sym_syn_quoting_lit] = STATE(2328), + [sym_unquote_splicing_lit] = STATE(2328), + [sym_unquoting_lit] = STATE(2328), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2328), + [sym_package_lit] = STATE(2328), + [sym_include_reader_macro] = STATE(2328), + [sym_complex_num_lit] = STATE(2328), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(3471), + [sym_comment] = ACTIONS(3471), + [anon_sym_POUND_] = ACTIONS(3474), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(3477), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(3479), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(3477), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(3482), + [anon_sym_POUND_CARET] = ACTIONS(3485), + [anon_sym_LPAREN] = ACTIONS(3488), + [anon_sym_RPAREN] = ACTIONS(3491), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3614), - [anon_sym_cl] = ACTIONS(2640), - [aux_sym_accumulation_verb_token1] = ACTIONS(2643), - [anon_sym_for] = ACTIONS(2643), - [anon_sym_and] = ACTIONS(2643), - [anon_sym_as] = ACTIONS(2643), - [anon_sym_with] = ACTIONS(2643), - [anon_sym_do] = ACTIONS(2643), - [anon_sym_while] = ACTIONS(2643), - [anon_sym_until] = ACTIONS(2643), - [anon_sym_repeat] = ACTIONS(2643), - [anon_sym_when] = ACTIONS(2643), - [anon_sym_if] = ACTIONS(2643), - [anon_sym_unless] = ACTIONS(2643), - [anon_sym_always] = ACTIONS(2643), - [anon_sym_thereis] = ACTIONS(2643), - [anon_sym_never] = ACTIONS(2643), - [anon_sym_else] = ACTIONS(2643), - [anon_sym_finally] = ACTIONS(2643), - [anon_sym_return] = ACTIONS(2643), - [anon_sym_initially] = ACTIONS(2643), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(3616), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(3477), + [anon_sym_cl] = ACTIONS(3493), + [aux_sym_accumulation_verb_token1] = ACTIONS(3496), + [anon_sym_for] = ACTIONS(3496), + [anon_sym_and] = ACTIONS(3496), + [anon_sym_as] = ACTIONS(3496), + [anon_sym_with] = ACTIONS(3496), + [anon_sym_do] = ACTIONS(3496), + [anon_sym_while] = ACTIONS(3496), + [anon_sym_until] = ACTIONS(3496), + [anon_sym_repeat] = ACTIONS(3496), + [anon_sym_when] = ACTIONS(3496), + [anon_sym_if] = ACTIONS(3496), + [anon_sym_unless] = ACTIONS(3496), + [anon_sym_always] = ACTIONS(3496), + [anon_sym_thereis] = ACTIONS(3496), + [anon_sym_never] = ACTIONS(3496), + [anon_sym_else] = ACTIONS(3496), + [anon_sym_finally] = ACTIONS(3496), + [anon_sym_return] = ACTIONS(3496), + [anon_sym_initially] = ACTIONS(3496), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(3498), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [215] = { - [sym__gap] = STATE(101), - [sym_dis_expr] = STATE(101), - [sym__form] = STATE(2474), - [sym_num_lit] = STATE(2474), - [sym_kwd_lit] = STATE(2474), - [sym_str_lit] = STATE(2474), - [sym_char_lit] = STATE(2474), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2474), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2474), - [sym_set_lit] = STATE(2474), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2474), - [sym_splicing_read_cond_lit] = STATE(2474), - [sym_var_quoting_lit] = STATE(2474), - [sym_quoting_lit] = STATE(2474), - [sym_syn_quoting_lit] = STATE(2474), - [sym_unquote_splicing_lit] = STATE(2474), - [sym_unquoting_lit] = STATE(2474), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2474), - [sym_package_lit] = STATE(2474), - [sym_include_reader_macro] = STATE(2474), - [sym_complex_num_lit] = STATE(2474), - [aux_sym_dis_expr_repeat1] = STATE(101), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(3618), - [sym_comment] = ACTIONS(3618), - [anon_sym_POUND_] = ACTIONS(3567), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(3621), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(3572), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(3621), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(3575), - [anon_sym_POUND_CARET] = ACTIONS(3578), - [anon_sym_LPAREN] = ACTIONS(3581), - [anon_sym_RPAREN] = ACTIONS(3584), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2330), + [sym_num_lit] = STATE(2330), + [sym_kwd_lit] = STATE(2330), + [sym_str_lit] = STATE(2330), + [sym_char_lit] = STATE(2330), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2330), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2330), + [sym_set_lit] = STATE(2330), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2330), + [sym_splicing_read_cond_lit] = STATE(2330), + [sym_var_quoting_lit] = STATE(2330), + [sym_quoting_lit] = STATE(2330), + [sym_syn_quoting_lit] = STATE(2330), + [sym_unquote_splicing_lit] = STATE(2330), + [sym_unquoting_lit] = STATE(2330), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2330), + [sym_package_lit] = STATE(2330), + [sym_include_reader_macro] = STATE(2330), + [sym_complex_num_lit] = STATE(2330), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(3471), + [sym_comment] = ACTIONS(3471), + [anon_sym_POUND_] = ACTIONS(3474), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(3500), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(3479), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(3500), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(3482), + [anon_sym_POUND_CARET] = ACTIONS(3485), + [anon_sym_LPAREN] = ACTIONS(3488), + [anon_sym_RPAREN] = ACTIONS(3491), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3621), - [anon_sym_cl] = ACTIONS(3586), - [aux_sym_accumulation_verb_token1] = ACTIONS(3589), - [anon_sym_for] = ACTIONS(3589), - [anon_sym_and] = ACTIONS(3589), - [anon_sym_as] = ACTIONS(3589), - [anon_sym_with] = ACTIONS(3589), - [anon_sym_do] = ACTIONS(3589), - [anon_sym_while] = ACTIONS(3589), - [anon_sym_until] = ACTIONS(3589), - [anon_sym_repeat] = ACTIONS(3589), - [anon_sym_when] = ACTIONS(3589), - [anon_sym_if] = ACTIONS(3589), - [anon_sym_unless] = ACTIONS(3589), - [anon_sym_always] = ACTIONS(3589), - [anon_sym_thereis] = ACTIONS(3589), - [anon_sym_never] = ACTIONS(3589), - [anon_sym_else] = ACTIONS(3589), - [anon_sym_finally] = ACTIONS(3589), - [anon_sym_return] = ACTIONS(3589), - [anon_sym_initially] = ACTIONS(3589), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(3623), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(3500), + [anon_sym_cl] = ACTIONS(3493), + [aux_sym_accumulation_verb_token1] = ACTIONS(3496), + [anon_sym_for] = ACTIONS(3496), + [anon_sym_and] = ACTIONS(3496), + [anon_sym_as] = ACTIONS(3496), + [anon_sym_with] = ACTIONS(3496), + [anon_sym_do] = ACTIONS(3496), + [anon_sym_while] = ACTIONS(3496), + [anon_sym_until] = ACTIONS(3496), + [anon_sym_repeat] = ACTIONS(3496), + [anon_sym_when] = ACTIONS(3496), + [anon_sym_if] = ACTIONS(3496), + [anon_sym_unless] = ACTIONS(3496), + [anon_sym_always] = ACTIONS(3496), + [anon_sym_thereis] = ACTIONS(3496), + [anon_sym_never] = ACTIONS(3496), + [anon_sym_else] = ACTIONS(3496), + [anon_sym_finally] = ACTIONS(3496), + [anon_sym_return] = ACTIONS(3496), + [anon_sym_initially] = ACTIONS(3496), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(3502), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [216] = { - [sym__gap] = STATE(106), - [sym_dis_expr] = STATE(106), - [sym__form] = STATE(2471), - [sym_num_lit] = STATE(2471), - [sym_kwd_lit] = STATE(2471), - [sym_str_lit] = STATE(2471), - [sym_char_lit] = STATE(2471), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2471), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2471), - [sym_set_lit] = STATE(2471), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2471), - [sym_splicing_read_cond_lit] = STATE(2471), - [sym_var_quoting_lit] = STATE(2471), - [sym_quoting_lit] = STATE(2471), - [sym_syn_quoting_lit] = STATE(2471), - [sym_unquote_splicing_lit] = STATE(2471), - [sym_unquoting_lit] = STATE(2471), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2471), - [sym_package_lit] = STATE(2471), - [sym_include_reader_macro] = STATE(2471), - [sym_complex_num_lit] = STATE(2471), - [aux_sym_dis_expr_repeat1] = STATE(106), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(3625), - [sym_comment] = ACTIONS(3625), - [anon_sym_POUND_] = ACTIONS(3567), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(3628), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(3572), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(3628), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(3575), - [anon_sym_POUND_CARET] = ACTIONS(3578), - [anon_sym_LPAREN] = ACTIONS(3581), - [anon_sym_RPAREN] = ACTIONS(3584), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(246), + [sym_dis_expr] = STATE(246), + [sym__form] = STATE(2331), + [sym_num_lit] = STATE(2331), + [sym_kwd_lit] = STATE(2331), + [sym_str_lit] = STATE(2331), + [sym_char_lit] = STATE(2331), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2331), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2331), + [sym_set_lit] = STATE(2331), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2331), + [sym_splicing_read_cond_lit] = STATE(2331), + [sym_var_quoting_lit] = STATE(2331), + [sym_quoting_lit] = STATE(2331), + [sym_syn_quoting_lit] = STATE(2331), + [sym_unquote_splicing_lit] = STATE(2331), + [sym_unquoting_lit] = STATE(2331), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2331), + [sym_package_lit] = STATE(2331), + [sym_include_reader_macro] = STATE(2331), + [sym_complex_num_lit] = STATE(2331), + [aux_sym_dis_expr_repeat1] = STATE(246), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(3504), + [sym_comment] = ACTIONS(3504), + [anon_sym_POUND_] = ACTIONS(3474), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(3507), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(3479), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(3507), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(3482), + [anon_sym_POUND_CARET] = ACTIONS(3485), + [anon_sym_LPAREN] = ACTIONS(3488), + [anon_sym_RPAREN] = ACTIONS(3491), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3628), - [anon_sym_cl] = ACTIONS(3586), - [aux_sym_accumulation_verb_token1] = ACTIONS(3589), - [anon_sym_for] = ACTIONS(3589), - [anon_sym_and] = ACTIONS(3589), - [anon_sym_as] = ACTIONS(3589), - [anon_sym_with] = ACTIONS(3589), - [anon_sym_do] = ACTIONS(3589), - [anon_sym_while] = ACTIONS(3589), - [anon_sym_until] = ACTIONS(3589), - [anon_sym_repeat] = ACTIONS(3589), - [anon_sym_when] = ACTIONS(3589), - [anon_sym_if] = ACTIONS(3589), - [anon_sym_unless] = ACTIONS(3589), - [anon_sym_always] = ACTIONS(3589), - [anon_sym_thereis] = ACTIONS(3589), - [anon_sym_never] = ACTIONS(3589), - [anon_sym_else] = ACTIONS(3589), - [anon_sym_finally] = ACTIONS(3589), - [anon_sym_return] = ACTIONS(3589), - [anon_sym_initially] = ACTIONS(3589), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(3630), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(3507), + [anon_sym_cl] = ACTIONS(3493), + [aux_sym_accumulation_verb_token1] = ACTIONS(3496), + [anon_sym_for] = ACTIONS(3496), + [anon_sym_and] = ACTIONS(3496), + [anon_sym_as] = ACTIONS(3496), + [anon_sym_with] = ACTIONS(3496), + [anon_sym_do] = ACTIONS(3496), + [anon_sym_while] = ACTIONS(3496), + [anon_sym_until] = ACTIONS(3496), + [anon_sym_repeat] = ACTIONS(3496), + [anon_sym_when] = ACTIONS(3496), + [anon_sym_if] = ACTIONS(3496), + [anon_sym_unless] = ACTIONS(3496), + [anon_sym_always] = ACTIONS(3496), + [anon_sym_thereis] = ACTIONS(3496), + [anon_sym_never] = ACTIONS(3496), + [anon_sym_else] = ACTIONS(3496), + [anon_sym_finally] = ACTIONS(3496), + [anon_sym_return] = ACTIONS(3496), + [anon_sym_initially] = ACTIONS(3496), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(3509), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [217] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2464), - [sym_num_lit] = STATE(2464), - [sym_kwd_lit] = STATE(2464), - [sym_str_lit] = STATE(2464), - [sym_char_lit] = STATE(2464), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2464), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2464), - [sym_set_lit] = STATE(2464), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2464), - [sym_splicing_read_cond_lit] = STATE(2464), - [sym_var_quoting_lit] = STATE(2464), - [sym_quoting_lit] = STATE(2464), - [sym_syn_quoting_lit] = STATE(2464), - [sym_unquote_splicing_lit] = STATE(2464), - [sym_unquoting_lit] = STATE(2464), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2464), - [sym_package_lit] = STATE(2464), - [sym_include_reader_macro] = STATE(2464), - [sym_complex_num_lit] = STATE(2464), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(3564), - [sym_comment] = ACTIONS(3564), - [anon_sym_POUND_] = ACTIONS(3567), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(3632), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(3572), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(3632), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(3575), - [anon_sym_POUND_CARET] = ACTIONS(3578), - [anon_sym_LPAREN] = ACTIONS(3581), - [anon_sym_RPAREN] = ACTIONS(3584), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2335), + [sym_num_lit] = STATE(2335), + [sym_kwd_lit] = STATE(2335), + [sym_str_lit] = STATE(2335), + [sym_char_lit] = STATE(2335), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2335), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2335), + [sym_set_lit] = STATE(2335), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2335), + [sym_splicing_read_cond_lit] = STATE(2335), + [sym_var_quoting_lit] = STATE(2335), + [sym_quoting_lit] = STATE(2335), + [sym_syn_quoting_lit] = STATE(2335), + [sym_unquote_splicing_lit] = STATE(2335), + [sym_unquoting_lit] = STATE(2335), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2335), + [sym_package_lit] = STATE(2335), + [sym_include_reader_macro] = STATE(2335), + [sym_complex_num_lit] = STATE(2335), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(3511), + [sym_comment] = ACTIONS(3511), + [anon_sym_POUND_] = ACTIONS(3514), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(3517), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(3519), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(3517), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(3522), + [anon_sym_POUND_CARET] = ACTIONS(3525), + [anon_sym_LPAREN] = ACTIONS(3528), + [anon_sym_RPAREN] = ACTIONS(3531), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3632), - [anon_sym_cl] = ACTIONS(3586), - [aux_sym_accumulation_verb_token1] = ACTIONS(3589), - [anon_sym_for] = ACTIONS(3589), - [anon_sym_and] = ACTIONS(3589), - [anon_sym_as] = ACTIONS(3589), - [anon_sym_with] = ACTIONS(3589), - [anon_sym_do] = ACTIONS(3589), - [anon_sym_while] = ACTIONS(3589), - [anon_sym_until] = ACTIONS(3589), - [anon_sym_repeat] = ACTIONS(3589), - [anon_sym_when] = ACTIONS(3589), - [anon_sym_if] = ACTIONS(3589), - [anon_sym_unless] = ACTIONS(3589), - [anon_sym_always] = ACTIONS(3589), - [anon_sym_thereis] = ACTIONS(3589), - [anon_sym_never] = ACTIONS(3589), - [anon_sym_else] = ACTIONS(3589), - [anon_sym_finally] = ACTIONS(3589), - [anon_sym_return] = ACTIONS(3589), - [anon_sym_initially] = ACTIONS(3589), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(3634), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(3517), + [anon_sym_cl] = ACTIONS(3533), + [aux_sym_accumulation_verb_token1] = ACTIONS(3536), + [anon_sym_for] = ACTIONS(3536), + [anon_sym_and] = ACTIONS(3536), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_with] = ACTIONS(3536), + [anon_sym_do] = ACTIONS(3536), + [anon_sym_while] = ACTIONS(3536), + [anon_sym_until] = ACTIONS(3536), + [anon_sym_repeat] = ACTIONS(3536), + [anon_sym_when] = ACTIONS(3536), + [anon_sym_if] = ACTIONS(3536), + [anon_sym_unless] = ACTIONS(3536), + [anon_sym_always] = ACTIONS(3536), + [anon_sym_thereis] = ACTIONS(3536), + [anon_sym_never] = ACTIONS(3536), + [anon_sym_else] = ACTIONS(3536), + [anon_sym_finally] = ACTIONS(3536), + [anon_sym_return] = ACTIONS(3536), + [anon_sym_initially] = ACTIONS(3536), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(3538), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [218] = { - [sym__gap] = STATE(829), - [sym_dis_expr] = STATE(829), - [sym__form] = STATE(247), - [sym_num_lit] = STATE(247), - [sym_kwd_lit] = STATE(247), - [sym_str_lit] = STATE(247), - [sym_char_lit] = STATE(247), - [sym_sym_lit] = STATE(1484), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(247), - [sym__bare_list_lit] = STATE(1483), - [sym_vec_lit] = STATE(247), - [sym_set_lit] = STATE(247), - [sym__bare_set_lit] = STATE(1482), - [sym_read_cond_lit] = STATE(247), - [sym_splicing_read_cond_lit] = STATE(247), - [sym_var_quoting_lit] = STATE(247), - [sym_quoting_lit] = STATE(247), - [sym_syn_quoting_lit] = STATE(247), - [sym_unquote_splicing_lit] = STATE(247), - [sym_unquoting_lit] = STATE(247), - [sym_defun] = STATE(1483), - [sym_loop_macro] = STATE(1483), - [sym_path_lit] = STATE(247), - [sym_package_lit] = STATE(247), - [sym_include_reader_macro] = STATE(247), - [sym_complex_num_lit] = STATE(247), - [aux_sym_dis_expr_repeat1] = STATE(829), - [aux_sym_list_lit_repeat1] = STATE(2813), - [sym__ws] = ACTIONS(3636), - [sym_comment] = ACTIONS(3636), - [anon_sym_POUND_] = ACTIONS(3639), - [anon_sym_POUND] = ACTIONS(2728), - [anon_sym_DOT] = ACTIONS(3642), - [aux_sym_num_lit_token1] = ACTIONS(2732), - [anon_sym_COLON] = ACTIONS(3644), - [anon_sym_COLON_COLON] = ACTIONS(2737), - [anon_sym_DQUOTE] = ACTIONS(2739), - [sym_nil_lit] = ACTIONS(3642), - [aux_sym_sym_lit_token1] = ACTIONS(2741), - [anon_sym_CARET] = ACTIONS(3647), - [anon_sym_POUND_CARET] = ACTIONS(3650), - [anon_sym_LPAREN] = ACTIONS(3653), - [anon_sym_RPAREN] = ACTIONS(3656), - [anon_sym_POUND0A] = ACTIONS(2754), - [anon_sym_POUND0a] = ACTIONS(2754), - [anon_sym_POUND_QMARK] = ACTIONS(2756), - [anon_sym_POUND_QMARK_AT] = ACTIONS(2758), - [anon_sym_POUND_SQUOTE] = ACTIONS(2760), - [anon_sym_SQUOTE] = ACTIONS(2762), - [anon_sym_BQUOTE] = ACTIONS(2764), - [anon_sym_COMMA_AT] = ACTIONS(2766), - [anon_sym_COMMA] = ACTIONS(2768), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2337), + [sym_num_lit] = STATE(2337), + [sym_kwd_lit] = STATE(2337), + [sym_str_lit] = STATE(2337), + [sym_char_lit] = STATE(2337), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2337), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2337), + [sym_set_lit] = STATE(2337), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2337), + [sym_splicing_read_cond_lit] = STATE(2337), + [sym_var_quoting_lit] = STATE(2337), + [sym_quoting_lit] = STATE(2337), + [sym_syn_quoting_lit] = STATE(2337), + [sym_unquote_splicing_lit] = STATE(2337), + [sym_unquoting_lit] = STATE(2337), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2337), + [sym_package_lit] = STATE(2337), + [sym_include_reader_macro] = STATE(2337), + [sym_complex_num_lit] = STATE(2337), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(3540), + [sym_comment] = ACTIONS(3540), + [anon_sym_POUND_] = ACTIONS(3543), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(3546), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(3548), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(3546), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(3551), + [anon_sym_POUND_CARET] = ACTIONS(3554), + [anon_sym_LPAREN] = ACTIONS(3557), + [anon_sym_RPAREN] = ACTIONS(3560), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3642), - [anon_sym_cl] = ACTIONS(3658), - [aux_sym_accumulation_verb_token1] = ACTIONS(3661), - [anon_sym_for] = ACTIONS(3661), - [anon_sym_and] = ACTIONS(3661), - [anon_sym_as] = ACTIONS(3661), - [anon_sym_with] = ACTIONS(3661), - [anon_sym_do] = ACTIONS(3661), - [anon_sym_while] = ACTIONS(3661), - [anon_sym_until] = ACTIONS(3661), - [anon_sym_repeat] = ACTIONS(3661), - [anon_sym_when] = ACTIONS(3661), - [anon_sym_if] = ACTIONS(3661), - [anon_sym_unless] = ACTIONS(3661), - [anon_sym_always] = ACTIONS(3661), - [anon_sym_thereis] = ACTIONS(3661), - [anon_sym_never] = ACTIONS(3661), - [anon_sym_else] = ACTIONS(3661), - [anon_sym_finally] = ACTIONS(3661), - [anon_sym_return] = ACTIONS(3661), - [anon_sym_initially] = ACTIONS(3661), - [anon_sym_POUNDP] = ACTIONS(2775), - [anon_sym_POUNDp] = ACTIONS(2775), - [sym_self_referential_reader_macro] = ACTIONS(3663), - [anon_sym_POUND_PLUS] = ACTIONS(2779), - [anon_sym_POUND_DASH] = ACTIONS(2779), - [anon_sym_POUNDC] = ACTIONS(2781), - [anon_sym_POUNDc] = ACTIONS(2781), + [sym_fancy_literal] = ACTIONS(3546), + [anon_sym_cl] = ACTIONS(3562), + [aux_sym_accumulation_verb_token1] = ACTIONS(3565), + [anon_sym_for] = ACTIONS(3565), + [anon_sym_and] = ACTIONS(3565), + [anon_sym_as] = ACTIONS(3565), + [anon_sym_with] = ACTIONS(3565), + [anon_sym_do] = ACTIONS(3565), + [anon_sym_while] = ACTIONS(3565), + [anon_sym_until] = ACTIONS(3565), + [anon_sym_repeat] = ACTIONS(3565), + [anon_sym_when] = ACTIONS(3565), + [anon_sym_if] = ACTIONS(3565), + [anon_sym_unless] = ACTIONS(3565), + [anon_sym_always] = ACTIONS(3565), + [anon_sym_thereis] = ACTIONS(3565), + [anon_sym_never] = ACTIONS(3565), + [anon_sym_else] = ACTIONS(3565), + [anon_sym_finally] = ACTIONS(3565), + [anon_sym_return] = ACTIONS(3565), + [anon_sym_initially] = ACTIONS(3565), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(3567), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [219] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2437), - [sym_num_lit] = STATE(2437), - [sym_kwd_lit] = STATE(2437), - [sym_str_lit] = STATE(2437), - [sym_char_lit] = STATE(2437), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2437), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2437), - [sym_set_lit] = STATE(2437), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2437), - [sym_splicing_read_cond_lit] = STATE(2437), - [sym_var_quoting_lit] = STATE(2437), - [sym_quoting_lit] = STATE(2437), - [sym_syn_quoting_lit] = STATE(2437), - [sym_unquote_splicing_lit] = STATE(2437), - [sym_unquoting_lit] = STATE(2437), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2437), - [sym_package_lit] = STATE(2437), - [sym_include_reader_macro] = STATE(2437), - [sym_complex_num_lit] = STATE(2437), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(3665), - [sym_comment] = ACTIONS(3665), - [anon_sym_POUND_] = ACTIONS(3668), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(3671), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(3673), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(3671), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(3676), - [anon_sym_POUND_CARET] = ACTIONS(3679), - [anon_sym_LPAREN] = ACTIONS(3682), - [anon_sym_RPAREN] = ACTIONS(3685), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(247), + [sym_dis_expr] = STATE(247), + [sym__form] = STATE(2338), + [sym_num_lit] = STATE(2338), + [sym_kwd_lit] = STATE(2338), + [sym_str_lit] = STATE(2338), + [sym_char_lit] = STATE(2338), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2338), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2338), + [sym_set_lit] = STATE(2338), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2338), + [sym_splicing_read_cond_lit] = STATE(2338), + [sym_var_quoting_lit] = STATE(2338), + [sym_quoting_lit] = STATE(2338), + [sym_syn_quoting_lit] = STATE(2338), + [sym_unquote_splicing_lit] = STATE(2338), + [sym_unquoting_lit] = STATE(2338), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2338), + [sym_package_lit] = STATE(2338), + [sym_include_reader_macro] = STATE(2338), + [sym_complex_num_lit] = STATE(2338), + [aux_sym_dis_expr_repeat1] = STATE(247), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(3569), + [sym_comment] = ACTIONS(3569), + [anon_sym_POUND_] = ACTIONS(3543), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(3572), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(3548), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(3572), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(3551), + [anon_sym_POUND_CARET] = ACTIONS(3554), + [anon_sym_LPAREN] = ACTIONS(3557), + [anon_sym_RPAREN] = ACTIONS(3560), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3671), - [anon_sym_cl] = ACTIONS(3687), - [aux_sym_accumulation_verb_token1] = ACTIONS(3690), - [anon_sym_for] = ACTIONS(3690), - [anon_sym_and] = ACTIONS(3690), - [anon_sym_as] = ACTIONS(3690), - [anon_sym_with] = ACTIONS(3690), - [anon_sym_do] = ACTIONS(3690), - [anon_sym_while] = ACTIONS(3690), - [anon_sym_until] = ACTIONS(3690), - [anon_sym_repeat] = ACTIONS(3690), - [anon_sym_when] = ACTIONS(3690), - [anon_sym_if] = ACTIONS(3690), - [anon_sym_unless] = ACTIONS(3690), - [anon_sym_always] = ACTIONS(3690), - [anon_sym_thereis] = ACTIONS(3690), - [anon_sym_never] = ACTIONS(3690), - [anon_sym_else] = ACTIONS(3690), - [anon_sym_finally] = ACTIONS(3690), - [anon_sym_return] = ACTIONS(3690), - [anon_sym_initially] = ACTIONS(3690), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(3692), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(3572), + [anon_sym_cl] = ACTIONS(3562), + [aux_sym_accumulation_verb_token1] = ACTIONS(3565), + [anon_sym_for] = ACTIONS(3565), + [anon_sym_and] = ACTIONS(3565), + [anon_sym_as] = ACTIONS(3565), + [anon_sym_with] = ACTIONS(3565), + [anon_sym_do] = ACTIONS(3565), + [anon_sym_while] = ACTIONS(3565), + [anon_sym_until] = ACTIONS(3565), + [anon_sym_repeat] = ACTIONS(3565), + [anon_sym_when] = ACTIONS(3565), + [anon_sym_if] = ACTIONS(3565), + [anon_sym_unless] = ACTIONS(3565), + [anon_sym_always] = ACTIONS(3565), + [anon_sym_thereis] = ACTIONS(3565), + [anon_sym_never] = ACTIONS(3565), + [anon_sym_else] = ACTIONS(3565), + [anon_sym_finally] = ACTIONS(3565), + [anon_sym_return] = ACTIONS(3565), + [anon_sym_initially] = ACTIONS(3565), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(3574), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [220] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2120), - [sym_num_lit] = STATE(2120), - [sym_kwd_lit] = STATE(2120), - [sym_str_lit] = STATE(2120), - [sym_char_lit] = STATE(2120), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2120), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2120), - [sym_set_lit] = STATE(2120), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2120), - [sym_splicing_read_cond_lit] = STATE(2120), - [sym_var_quoting_lit] = STATE(2120), - [sym_quoting_lit] = STATE(2120), - [sym_syn_quoting_lit] = STATE(2120), - [sym_unquote_splicing_lit] = STATE(2120), - [sym_unquoting_lit] = STATE(2120), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2120), - [sym_package_lit] = STATE(2120), - [sym_include_reader_macro] = STATE(2120), - [sym_complex_num_lit] = STATE(2120), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(3694), - [sym_comment] = ACTIONS(3694), - [anon_sym_POUND_] = ACTIONS(1969), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(3697), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(1974), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(3697), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1977), - [anon_sym_POUND_CARET] = ACTIONS(1980), - [anon_sym_LPAREN] = ACTIONS(1983), - [anon_sym_RPAREN] = ACTIONS(1986), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(248), + [sym_dis_expr] = STATE(248), + [sym__form] = STATE(2341), + [sym_num_lit] = STATE(2341), + [sym_kwd_lit] = STATE(2341), + [sym_str_lit] = STATE(2341), + [sym_char_lit] = STATE(2341), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2341), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2341), + [sym_set_lit] = STATE(2341), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2341), + [sym_splicing_read_cond_lit] = STATE(2341), + [sym_var_quoting_lit] = STATE(2341), + [sym_quoting_lit] = STATE(2341), + [sym_syn_quoting_lit] = STATE(2341), + [sym_unquote_splicing_lit] = STATE(2341), + [sym_unquoting_lit] = STATE(2341), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2341), + [sym_package_lit] = STATE(2341), + [sym_include_reader_macro] = STATE(2341), + [sym_complex_num_lit] = STATE(2341), + [aux_sym_dis_expr_repeat1] = STATE(248), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(3576), + [sym_comment] = ACTIONS(3576), + [anon_sym_POUND_] = ACTIONS(3543), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(3579), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(3548), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(3579), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(3551), + [anon_sym_POUND_CARET] = ACTIONS(3554), + [anon_sym_LPAREN] = ACTIONS(3557), + [anon_sym_RPAREN] = ACTIONS(3560), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3697), - [anon_sym_cl] = ACTIONS(1988), - [aux_sym_accumulation_verb_token1] = ACTIONS(1991), - [anon_sym_for] = ACTIONS(1991), - [anon_sym_and] = ACTIONS(1991), - [anon_sym_as] = ACTIONS(1991), - [anon_sym_with] = ACTIONS(1991), - [anon_sym_do] = ACTIONS(1991), - [anon_sym_while] = ACTIONS(1991), - [anon_sym_until] = ACTIONS(1991), - [anon_sym_repeat] = ACTIONS(1991), - [anon_sym_when] = ACTIONS(1991), - [anon_sym_if] = ACTIONS(1991), - [anon_sym_unless] = ACTIONS(1991), - [anon_sym_always] = ACTIONS(1991), - [anon_sym_thereis] = ACTIONS(1991), - [anon_sym_never] = ACTIONS(1991), - [anon_sym_else] = ACTIONS(1991), - [anon_sym_finally] = ACTIONS(1991), - [anon_sym_return] = ACTIONS(1991), - [anon_sym_initially] = ACTIONS(1991), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(3699), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(3579), + [anon_sym_cl] = ACTIONS(3562), + [aux_sym_accumulation_verb_token1] = ACTIONS(3565), + [anon_sym_for] = ACTIONS(3565), + [anon_sym_and] = ACTIONS(3565), + [anon_sym_as] = ACTIONS(3565), + [anon_sym_with] = ACTIONS(3565), + [anon_sym_do] = ACTIONS(3565), + [anon_sym_while] = ACTIONS(3565), + [anon_sym_until] = ACTIONS(3565), + [anon_sym_repeat] = ACTIONS(3565), + [anon_sym_when] = ACTIONS(3565), + [anon_sym_if] = ACTIONS(3565), + [anon_sym_unless] = ACTIONS(3565), + [anon_sym_always] = ACTIONS(3565), + [anon_sym_thereis] = ACTIONS(3565), + [anon_sym_never] = ACTIONS(3565), + [anon_sym_else] = ACTIONS(3565), + [anon_sym_finally] = ACTIONS(3565), + [anon_sym_return] = ACTIONS(3565), + [anon_sym_initially] = ACTIONS(3565), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(3581), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [221] = { - [sym__gap] = STATE(107), - [sym_dis_expr] = STATE(107), - [sym__form] = STATE(2416), - [sym_num_lit] = STATE(2416), - [sym_kwd_lit] = STATE(2416), - [sym_str_lit] = STATE(2416), - [sym_char_lit] = STATE(2416), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2416), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2416), - [sym_set_lit] = STATE(2416), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2416), - [sym_splicing_read_cond_lit] = STATE(2416), - [sym_var_quoting_lit] = STATE(2416), - [sym_quoting_lit] = STATE(2416), - [sym_syn_quoting_lit] = STATE(2416), - [sym_unquote_splicing_lit] = STATE(2416), - [sym_unquoting_lit] = STATE(2416), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2416), - [sym_package_lit] = STATE(2416), - [sym_include_reader_macro] = STATE(2416), - [sym_complex_num_lit] = STATE(2416), - [aux_sym_dis_expr_repeat1] = STATE(107), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(3701), - [sym_comment] = ACTIONS(3701), - [anon_sym_POUND_] = ACTIONS(3053), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(3704), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(3058), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(3704), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(3061), - [anon_sym_POUND_CARET] = ACTIONS(3064), - [anon_sym_LPAREN] = ACTIONS(3067), - [anon_sym_RPAREN] = ACTIONS(3070), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2345), + [sym_num_lit] = STATE(2345), + [sym_kwd_lit] = STATE(2345), + [sym_str_lit] = STATE(2345), + [sym_char_lit] = STATE(2345), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2345), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2345), + [sym_set_lit] = STATE(2345), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2345), + [sym_splicing_read_cond_lit] = STATE(2345), + [sym_var_quoting_lit] = STATE(2345), + [sym_quoting_lit] = STATE(2345), + [sym_syn_quoting_lit] = STATE(2345), + [sym_unquote_splicing_lit] = STATE(2345), + [sym_unquoting_lit] = STATE(2345), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2345), + [sym_package_lit] = STATE(2345), + [sym_include_reader_macro] = STATE(2345), + [sym_complex_num_lit] = STATE(2345), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(3540), + [sym_comment] = ACTIONS(3540), + [anon_sym_POUND_] = ACTIONS(3543), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(3583), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(3548), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(3583), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(3551), + [anon_sym_POUND_CARET] = ACTIONS(3554), + [anon_sym_LPAREN] = ACTIONS(3557), + [anon_sym_RPAREN] = ACTIONS(3560), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3704), - [anon_sym_cl] = ACTIONS(3072), - [aux_sym_accumulation_verb_token1] = ACTIONS(3075), - [anon_sym_for] = ACTIONS(3075), - [anon_sym_and] = ACTIONS(3075), - [anon_sym_as] = ACTIONS(3075), - [anon_sym_with] = ACTIONS(3075), - [anon_sym_do] = ACTIONS(3075), - [anon_sym_while] = ACTIONS(3075), - [anon_sym_until] = ACTIONS(3075), - [anon_sym_repeat] = ACTIONS(3075), - [anon_sym_when] = ACTIONS(3075), - [anon_sym_if] = ACTIONS(3075), - [anon_sym_unless] = ACTIONS(3075), - [anon_sym_always] = ACTIONS(3075), - [anon_sym_thereis] = ACTIONS(3075), - [anon_sym_never] = ACTIONS(3075), - [anon_sym_else] = ACTIONS(3075), - [anon_sym_finally] = ACTIONS(3075), - [anon_sym_return] = ACTIONS(3075), - [anon_sym_initially] = ACTIONS(3075), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(3706), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(3583), + [anon_sym_cl] = ACTIONS(3562), + [aux_sym_accumulation_verb_token1] = ACTIONS(3565), + [anon_sym_for] = ACTIONS(3565), + [anon_sym_and] = ACTIONS(3565), + [anon_sym_as] = ACTIONS(3565), + [anon_sym_with] = ACTIONS(3565), + [anon_sym_do] = ACTIONS(3565), + [anon_sym_while] = ACTIONS(3565), + [anon_sym_until] = ACTIONS(3565), + [anon_sym_repeat] = ACTIONS(3565), + [anon_sym_when] = ACTIONS(3565), + [anon_sym_if] = ACTIONS(3565), + [anon_sym_unless] = ACTIONS(3565), + [anon_sym_always] = ACTIONS(3565), + [anon_sym_thereis] = ACTIONS(3565), + [anon_sym_never] = ACTIONS(3565), + [anon_sym_else] = ACTIONS(3565), + [anon_sym_finally] = ACTIONS(3565), + [anon_sym_return] = ACTIONS(3565), + [anon_sym_initially] = ACTIONS(3565), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(3585), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [222] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2223), - [sym_num_lit] = STATE(2223), - [sym_kwd_lit] = STATE(2223), - [sym_str_lit] = STATE(2223), - [sym_char_lit] = STATE(2223), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2223), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2223), - [sym_set_lit] = STATE(2223), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2223), - [sym_splicing_read_cond_lit] = STATE(2223), - [sym_var_quoting_lit] = STATE(2223), - [sym_quoting_lit] = STATE(2223), - [sym_syn_quoting_lit] = STATE(2223), - [sym_unquote_splicing_lit] = STATE(2223), - [sym_unquoting_lit] = STATE(2223), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2223), - [sym_package_lit] = STATE(2223), - [sym_include_reader_macro] = STATE(2223), - [sym_complex_num_lit] = STATE(2223), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(2701), - [sym_comment] = ACTIONS(2701), - [anon_sym_POUND_] = ACTIONS(1323), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(3708), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(1328), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(3708), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1331), - [anon_sym_POUND_CARET] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1337), - [anon_sym_RPAREN] = ACTIONS(1340), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2349), + [sym_num_lit] = STATE(2349), + [sym_kwd_lit] = STATE(2349), + [sym_str_lit] = STATE(2349), + [sym_char_lit] = STATE(2349), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2349), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2349), + [sym_set_lit] = STATE(2349), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2349), + [sym_splicing_read_cond_lit] = STATE(2349), + [sym_var_quoting_lit] = STATE(2349), + [sym_quoting_lit] = STATE(2349), + [sym_syn_quoting_lit] = STATE(2349), + [sym_unquote_splicing_lit] = STATE(2349), + [sym_unquoting_lit] = STATE(2349), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2349), + [sym_package_lit] = STATE(2349), + [sym_include_reader_macro] = STATE(2349), + [sym_complex_num_lit] = STATE(2349), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(3471), + [sym_comment] = ACTIONS(3471), + [anon_sym_POUND_] = ACTIONS(3474), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(3587), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(3479), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(3587), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(3482), + [anon_sym_POUND_CARET] = ACTIONS(3485), + [anon_sym_LPAREN] = ACTIONS(3488), + [anon_sym_RPAREN] = ACTIONS(3491), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3708), - [anon_sym_cl] = ACTIONS(1342), - [aux_sym_accumulation_verb_token1] = ACTIONS(1345), - [anon_sym_for] = ACTIONS(1345), - [anon_sym_and] = ACTIONS(1345), - [anon_sym_as] = ACTIONS(1345), - [anon_sym_with] = ACTIONS(1345), - [anon_sym_do] = ACTIONS(1345), - [anon_sym_while] = ACTIONS(1345), - [anon_sym_until] = ACTIONS(1345), - [anon_sym_repeat] = ACTIONS(1345), - [anon_sym_when] = ACTIONS(1345), - [anon_sym_if] = ACTIONS(1345), - [anon_sym_unless] = ACTIONS(1345), - [anon_sym_always] = ACTIONS(1345), - [anon_sym_thereis] = ACTIONS(1345), - [anon_sym_never] = ACTIONS(1345), - [anon_sym_else] = ACTIONS(1345), - [anon_sym_finally] = ACTIONS(1345), - [anon_sym_return] = ACTIONS(1345), - [anon_sym_initially] = ACTIONS(1345), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(3710), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(3587), + [anon_sym_cl] = ACTIONS(3493), + [aux_sym_accumulation_verb_token1] = ACTIONS(3496), + [anon_sym_for] = ACTIONS(3496), + [anon_sym_and] = ACTIONS(3496), + [anon_sym_as] = ACTIONS(3496), + [anon_sym_with] = ACTIONS(3496), + [anon_sym_do] = ACTIONS(3496), + [anon_sym_while] = ACTIONS(3496), + [anon_sym_until] = ACTIONS(3496), + [anon_sym_repeat] = ACTIONS(3496), + [anon_sym_when] = ACTIONS(3496), + [anon_sym_if] = ACTIONS(3496), + [anon_sym_unless] = ACTIONS(3496), + [anon_sym_always] = ACTIONS(3496), + [anon_sym_thereis] = ACTIONS(3496), + [anon_sym_never] = ACTIONS(3496), + [anon_sym_else] = ACTIONS(3496), + [anon_sym_finally] = ACTIONS(3496), + [anon_sym_return] = ACTIONS(3496), + [anon_sym_initially] = ACTIONS(3496), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(3589), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [223] = { - [sym__gap] = STATE(75), - [sym_dis_expr] = STATE(75), - [sym__form] = STATE(2444), - [sym_num_lit] = STATE(2444), - [sym_kwd_lit] = STATE(2444), - [sym_str_lit] = STATE(2444), - [sym_char_lit] = STATE(2444), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2444), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2444), - [sym_set_lit] = STATE(2444), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2444), - [sym_splicing_read_cond_lit] = STATE(2444), - [sym_var_quoting_lit] = STATE(2444), - [sym_quoting_lit] = STATE(2444), - [sym_syn_quoting_lit] = STATE(2444), - [sym_unquote_splicing_lit] = STATE(2444), - [sym_unquoting_lit] = STATE(2444), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2444), - [sym_package_lit] = STATE(2444), - [sym_include_reader_macro] = STATE(2444), - [sym_complex_num_lit] = STATE(2444), - [aux_sym_dis_expr_repeat1] = STATE(75), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(3712), - [sym_comment] = ACTIONS(3712), - [anon_sym_POUND_] = ACTIONS(2800), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(3715), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(2805), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(3715), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2808), - [anon_sym_POUND_CARET] = ACTIONS(2811), - [anon_sym_LPAREN] = ACTIONS(2814), - [anon_sym_RPAREN] = ACTIONS(2817), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2351), + [sym_num_lit] = STATE(2351), + [sym_kwd_lit] = STATE(2351), + [sym_str_lit] = STATE(2351), + [sym_char_lit] = STATE(2351), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2351), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2351), + [sym_set_lit] = STATE(2351), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2351), + [sym_splicing_read_cond_lit] = STATE(2351), + [sym_var_quoting_lit] = STATE(2351), + [sym_quoting_lit] = STATE(2351), + [sym_syn_quoting_lit] = STATE(2351), + [sym_unquote_splicing_lit] = STATE(2351), + [sym_unquoting_lit] = STATE(2351), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2351), + [sym_package_lit] = STATE(2351), + [sym_include_reader_macro] = STATE(2351), + [sym_complex_num_lit] = STATE(2351), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(3471), + [sym_comment] = ACTIONS(3471), + [anon_sym_POUND_] = ACTIONS(3474), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(3591), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(3479), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(3591), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(3482), + [anon_sym_POUND_CARET] = ACTIONS(3485), + [anon_sym_LPAREN] = ACTIONS(3488), + [anon_sym_RPAREN] = ACTIONS(3491), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3715), - [anon_sym_cl] = ACTIONS(2819), - [aux_sym_accumulation_verb_token1] = ACTIONS(2822), - [anon_sym_for] = ACTIONS(2822), - [anon_sym_and] = ACTIONS(2822), - [anon_sym_as] = ACTIONS(2822), - [anon_sym_with] = ACTIONS(2822), - [anon_sym_do] = ACTIONS(2822), - [anon_sym_while] = ACTIONS(2822), - [anon_sym_until] = ACTIONS(2822), - [anon_sym_repeat] = ACTIONS(2822), - [anon_sym_when] = ACTIONS(2822), - [anon_sym_if] = ACTIONS(2822), - [anon_sym_unless] = ACTIONS(2822), - [anon_sym_always] = ACTIONS(2822), - [anon_sym_thereis] = ACTIONS(2822), - [anon_sym_never] = ACTIONS(2822), - [anon_sym_else] = ACTIONS(2822), - [anon_sym_finally] = ACTIONS(2822), - [anon_sym_return] = ACTIONS(2822), - [anon_sym_initially] = ACTIONS(2822), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(3717), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(3591), + [anon_sym_cl] = ACTIONS(3493), + [aux_sym_accumulation_verb_token1] = ACTIONS(3496), + [anon_sym_for] = ACTIONS(3496), + [anon_sym_and] = ACTIONS(3496), + [anon_sym_as] = ACTIONS(3496), + [anon_sym_with] = ACTIONS(3496), + [anon_sym_do] = ACTIONS(3496), + [anon_sym_while] = ACTIONS(3496), + [anon_sym_until] = ACTIONS(3496), + [anon_sym_repeat] = ACTIONS(3496), + [anon_sym_when] = ACTIONS(3496), + [anon_sym_if] = ACTIONS(3496), + [anon_sym_unless] = ACTIONS(3496), + [anon_sym_always] = ACTIONS(3496), + [anon_sym_thereis] = ACTIONS(3496), + [anon_sym_never] = ACTIONS(3496), + [anon_sym_else] = ACTIONS(3496), + [anon_sym_finally] = ACTIONS(3496), + [anon_sym_return] = ACTIONS(3496), + [anon_sym_initially] = ACTIONS(3496), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(3593), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [224] = { - [sym__gap] = STATE(44), - [sym_dis_expr] = STATE(44), - [sym__form] = STATE(2050), - [sym_num_lit] = STATE(2050), - [sym_kwd_lit] = STATE(2050), - [sym_str_lit] = STATE(2050), - [sym_char_lit] = STATE(2050), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2050), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2050), - [sym_set_lit] = STATE(2050), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2050), - [sym_splicing_read_cond_lit] = STATE(2050), - [sym_var_quoting_lit] = STATE(2050), - [sym_quoting_lit] = STATE(2050), - [sym_syn_quoting_lit] = STATE(2050), - [sym_unquote_splicing_lit] = STATE(2050), - [sym_unquoting_lit] = STATE(2050), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2050), - [sym_package_lit] = STATE(2050), - [sym_include_reader_macro] = STATE(2050), - [sym_complex_num_lit] = STATE(2050), - [aux_sym_dis_expr_repeat1] = STATE(44), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(3719), - [sym_comment] = ACTIONS(3719), - [anon_sym_POUND_] = ACTIONS(3722), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(3725), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(3727), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(3725), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(3730), - [anon_sym_POUND_CARET] = ACTIONS(3733), - [anon_sym_LPAREN] = ACTIONS(3736), - [anon_sym_RPAREN] = ACTIONS(3739), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(250), + [sym_dis_expr] = STATE(250), + [sym__form] = STATE(2352), + [sym_num_lit] = STATE(2352), + [sym_kwd_lit] = STATE(2352), + [sym_str_lit] = STATE(2352), + [sym_char_lit] = STATE(2352), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2352), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2352), + [sym_set_lit] = STATE(2352), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2352), + [sym_splicing_read_cond_lit] = STATE(2352), + [sym_var_quoting_lit] = STATE(2352), + [sym_quoting_lit] = STATE(2352), + [sym_syn_quoting_lit] = STATE(2352), + [sym_unquote_splicing_lit] = STATE(2352), + [sym_unquoting_lit] = STATE(2352), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2352), + [sym_package_lit] = STATE(2352), + [sym_include_reader_macro] = STATE(2352), + [sym_complex_num_lit] = STATE(2352), + [aux_sym_dis_expr_repeat1] = STATE(250), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(3595), + [sym_comment] = ACTIONS(3595), + [anon_sym_POUND_] = ACTIONS(3474), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(3598), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(3479), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(3598), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(3482), + [anon_sym_POUND_CARET] = ACTIONS(3485), + [anon_sym_LPAREN] = ACTIONS(3488), + [anon_sym_RPAREN] = ACTIONS(3491), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3725), - [anon_sym_cl] = ACTIONS(3741), - [aux_sym_accumulation_verb_token1] = ACTIONS(3744), - [anon_sym_for] = ACTIONS(3744), - [anon_sym_and] = ACTIONS(3744), - [anon_sym_as] = ACTIONS(3744), - [anon_sym_with] = ACTIONS(3744), - [anon_sym_do] = ACTIONS(3744), - [anon_sym_while] = ACTIONS(3744), - [anon_sym_until] = ACTIONS(3744), - [anon_sym_repeat] = ACTIONS(3744), - [anon_sym_when] = ACTIONS(3744), - [anon_sym_if] = ACTIONS(3744), - [anon_sym_unless] = ACTIONS(3744), - [anon_sym_always] = ACTIONS(3744), - [anon_sym_thereis] = ACTIONS(3744), - [anon_sym_never] = ACTIONS(3744), - [anon_sym_else] = ACTIONS(3744), - [anon_sym_finally] = ACTIONS(3744), - [anon_sym_return] = ACTIONS(3744), - [anon_sym_initially] = ACTIONS(3744), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(3746), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(3598), + [anon_sym_cl] = ACTIONS(3493), + [aux_sym_accumulation_verb_token1] = ACTIONS(3496), + [anon_sym_for] = ACTIONS(3496), + [anon_sym_and] = ACTIONS(3496), + [anon_sym_as] = ACTIONS(3496), + [anon_sym_with] = ACTIONS(3496), + [anon_sym_do] = ACTIONS(3496), + [anon_sym_while] = ACTIONS(3496), + [anon_sym_until] = ACTIONS(3496), + [anon_sym_repeat] = ACTIONS(3496), + [anon_sym_when] = ACTIONS(3496), + [anon_sym_if] = ACTIONS(3496), + [anon_sym_unless] = ACTIONS(3496), + [anon_sym_always] = ACTIONS(3496), + [anon_sym_thereis] = ACTIONS(3496), + [anon_sym_never] = ACTIONS(3496), + [anon_sym_else] = ACTIONS(3496), + [anon_sym_finally] = ACTIONS(3496), + [anon_sym_return] = ACTIONS(3496), + [anon_sym_initially] = ACTIONS(3496), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(3600), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [225] = { - [sym__gap] = STATE(114), - [sym_dis_expr] = STATE(114), - [sym__form] = STATE(2049), - [sym_num_lit] = STATE(2049), - [sym_kwd_lit] = STATE(2049), - [sym_str_lit] = STATE(2049), - [sym_char_lit] = STATE(2049), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2049), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2049), - [sym_set_lit] = STATE(2049), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2049), - [sym_splicing_read_cond_lit] = STATE(2049), - [sym_var_quoting_lit] = STATE(2049), - [sym_quoting_lit] = STATE(2049), - [sym_syn_quoting_lit] = STATE(2049), - [sym_unquote_splicing_lit] = STATE(2049), - [sym_unquoting_lit] = STATE(2049), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2049), - [sym_package_lit] = STATE(2049), - [sym_include_reader_macro] = STATE(2049), - [sym_complex_num_lit] = STATE(2049), - [aux_sym_dis_expr_repeat1] = STATE(114), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(3748), - [sym_comment] = ACTIONS(3748), - [anon_sym_POUND_] = ACTIONS(3751), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(3754), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(3756), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(3754), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(3759), - [anon_sym_POUND_CARET] = ACTIONS(3762), - [anon_sym_LPAREN] = ACTIONS(3765), - [anon_sym_RPAREN] = ACTIONS(3768), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2356), + [sym_num_lit] = STATE(2356), + [sym_kwd_lit] = STATE(2356), + [sym_str_lit] = STATE(2356), + [sym_char_lit] = STATE(2356), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2356), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2356), + [sym_set_lit] = STATE(2356), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2356), + [sym_splicing_read_cond_lit] = STATE(2356), + [sym_var_quoting_lit] = STATE(2356), + [sym_quoting_lit] = STATE(2356), + [sym_syn_quoting_lit] = STATE(2356), + [sym_unquote_splicing_lit] = STATE(2356), + [sym_unquoting_lit] = STATE(2356), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2356), + [sym_package_lit] = STATE(2356), + [sym_include_reader_macro] = STATE(2356), + [sym_complex_num_lit] = STATE(2356), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(3511), + [sym_comment] = ACTIONS(3511), + [anon_sym_POUND_] = ACTIONS(3514), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(3602), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(3519), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(3602), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(3522), + [anon_sym_POUND_CARET] = ACTIONS(3525), + [anon_sym_LPAREN] = ACTIONS(3528), + [anon_sym_RPAREN] = ACTIONS(3531), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3754), - [anon_sym_cl] = ACTIONS(3770), - [aux_sym_accumulation_verb_token1] = ACTIONS(3773), - [anon_sym_for] = ACTIONS(3773), - [anon_sym_and] = ACTIONS(3773), - [anon_sym_as] = ACTIONS(3773), - [anon_sym_with] = ACTIONS(3773), - [anon_sym_do] = ACTIONS(3773), - [anon_sym_while] = ACTIONS(3773), - [anon_sym_until] = ACTIONS(3773), - [anon_sym_repeat] = ACTIONS(3773), - [anon_sym_when] = ACTIONS(3773), - [anon_sym_if] = ACTIONS(3773), - [anon_sym_unless] = ACTIONS(3773), - [anon_sym_always] = ACTIONS(3773), - [anon_sym_thereis] = ACTIONS(3773), - [anon_sym_never] = ACTIONS(3773), - [anon_sym_else] = ACTIONS(3773), - [anon_sym_finally] = ACTIONS(3773), - [anon_sym_return] = ACTIONS(3773), - [anon_sym_initially] = ACTIONS(3773), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(3775), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(3602), + [anon_sym_cl] = ACTIONS(3533), + [aux_sym_accumulation_verb_token1] = ACTIONS(3536), + [anon_sym_for] = ACTIONS(3536), + [anon_sym_and] = ACTIONS(3536), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_with] = ACTIONS(3536), + [anon_sym_do] = ACTIONS(3536), + [anon_sym_while] = ACTIONS(3536), + [anon_sym_until] = ACTIONS(3536), + [anon_sym_repeat] = ACTIONS(3536), + [anon_sym_when] = ACTIONS(3536), + [anon_sym_if] = ACTIONS(3536), + [anon_sym_unless] = ACTIONS(3536), + [anon_sym_always] = ACTIONS(3536), + [anon_sym_thereis] = ACTIONS(3536), + [anon_sym_never] = ACTIONS(3536), + [anon_sym_else] = ACTIONS(3536), + [anon_sym_finally] = ACTIONS(3536), + [anon_sym_return] = ACTIONS(3536), + [anon_sym_initially] = ACTIONS(3536), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(3604), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [226] = { - [sym__gap] = STATE(197), - [sym_dis_expr] = STATE(197), - [sym__form] = STATE(2221), - [sym_num_lit] = STATE(2221), - [sym_kwd_lit] = STATE(2221), - [sym_str_lit] = STATE(2221), - [sym_char_lit] = STATE(2221), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2221), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2221), - [sym_set_lit] = STATE(2221), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2221), - [sym_splicing_read_cond_lit] = STATE(2221), - [sym_var_quoting_lit] = STATE(2221), - [sym_quoting_lit] = STATE(2221), - [sym_syn_quoting_lit] = STATE(2221), - [sym_unquote_splicing_lit] = STATE(2221), - [sym_unquoting_lit] = STATE(2221), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2221), - [sym_package_lit] = STATE(2221), - [sym_include_reader_macro] = STATE(2221), - [sym_complex_num_lit] = STATE(2221), - [aux_sym_dis_expr_repeat1] = STATE(197), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(3777), - [sym_comment] = ACTIONS(3777), - [anon_sym_POUND_] = ACTIONS(1323), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(3780), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(1328), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(3780), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1331), - [anon_sym_POUND_CARET] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1337), - [anon_sym_RPAREN] = ACTIONS(1340), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2358), + [sym_num_lit] = STATE(2358), + [sym_kwd_lit] = STATE(2358), + [sym_str_lit] = STATE(2358), + [sym_char_lit] = STATE(2358), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2358), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2358), + [sym_set_lit] = STATE(2358), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2358), + [sym_splicing_read_cond_lit] = STATE(2358), + [sym_var_quoting_lit] = STATE(2358), + [sym_quoting_lit] = STATE(2358), + [sym_syn_quoting_lit] = STATE(2358), + [sym_unquote_splicing_lit] = STATE(2358), + [sym_unquoting_lit] = STATE(2358), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2358), + [sym_package_lit] = STATE(2358), + [sym_include_reader_macro] = STATE(2358), + [sym_complex_num_lit] = STATE(2358), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(3540), + [sym_comment] = ACTIONS(3540), + [anon_sym_POUND_] = ACTIONS(3543), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(3606), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(3548), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(3606), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(3551), + [anon_sym_POUND_CARET] = ACTIONS(3554), + [anon_sym_LPAREN] = ACTIONS(3557), + [anon_sym_RPAREN] = ACTIONS(3560), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3780), - [anon_sym_cl] = ACTIONS(1342), - [aux_sym_accumulation_verb_token1] = ACTIONS(1345), - [anon_sym_for] = ACTIONS(1345), - [anon_sym_and] = ACTIONS(1345), - [anon_sym_as] = ACTIONS(1345), - [anon_sym_with] = ACTIONS(1345), - [anon_sym_do] = ACTIONS(1345), - [anon_sym_while] = ACTIONS(1345), - [anon_sym_until] = ACTIONS(1345), - [anon_sym_repeat] = ACTIONS(1345), - [anon_sym_when] = ACTIONS(1345), - [anon_sym_if] = ACTIONS(1345), - [anon_sym_unless] = ACTIONS(1345), - [anon_sym_always] = ACTIONS(1345), - [anon_sym_thereis] = ACTIONS(1345), - [anon_sym_never] = ACTIONS(1345), - [anon_sym_else] = ACTIONS(1345), - [anon_sym_finally] = ACTIONS(1345), - [anon_sym_return] = ACTIONS(1345), - [anon_sym_initially] = ACTIONS(1345), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(3782), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(3606), + [anon_sym_cl] = ACTIONS(3562), + [aux_sym_accumulation_verb_token1] = ACTIONS(3565), + [anon_sym_for] = ACTIONS(3565), + [anon_sym_and] = ACTIONS(3565), + [anon_sym_as] = ACTIONS(3565), + [anon_sym_with] = ACTIONS(3565), + [anon_sym_do] = ACTIONS(3565), + [anon_sym_while] = ACTIONS(3565), + [anon_sym_until] = ACTIONS(3565), + [anon_sym_repeat] = ACTIONS(3565), + [anon_sym_when] = ACTIONS(3565), + [anon_sym_if] = ACTIONS(3565), + [anon_sym_unless] = ACTIONS(3565), + [anon_sym_always] = ACTIONS(3565), + [anon_sym_thereis] = ACTIONS(3565), + [anon_sym_never] = ACTIONS(3565), + [anon_sym_else] = ACTIONS(3565), + [anon_sym_finally] = ACTIONS(3565), + [anon_sym_return] = ACTIONS(3565), + [anon_sym_initially] = ACTIONS(3565), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(3608), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [227] = { - [sym__gap] = STATE(277), - [sym_dis_expr] = STATE(277), - [sym__form] = STATE(2717), - [sym_num_lit] = STATE(2717), - [sym_kwd_lit] = STATE(2717), - [sym_str_lit] = STATE(2717), - [sym_char_lit] = STATE(2717), - [sym_sym_lit] = STATE(2762), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2717), - [sym__bare_list_lit] = STATE(1892), - [sym_vec_lit] = STATE(2717), - [sym_set_lit] = STATE(2717), - [sym__bare_set_lit] = STATE(1893), - [sym_read_cond_lit] = STATE(2717), - [sym_splicing_read_cond_lit] = STATE(2717), - [sym_var_quoting_lit] = STATE(2717), - [sym_quoting_lit] = STATE(2717), - [sym_syn_quoting_lit] = STATE(2717), - [sym_unquote_splicing_lit] = STATE(2717), - [sym_unquoting_lit] = STATE(2717), - [sym_defun] = STATE(1892), - [sym_for_clause_word] = STATE(405), - [sym__for_part] = STATE(1611), - [sym_loop_macro] = STATE(1892), - [sym_path_lit] = STATE(2717), - [sym_package_lit] = STATE(2717), - [sym_include_reader_macro] = STATE(2717), - [sym_complex_num_lit] = STATE(2717), - [aux_sym_dis_expr_repeat1] = STATE(277), - [aux_sym_list_lit_repeat1] = STATE(2840), - [aux_sym_for_clause_repeat1] = STATE(1272), - [sym__ws] = ACTIONS(3784), - [sym_comment] = ACTIONS(3784), - [anon_sym_POUND_] = ACTIONS(1596), - [anon_sym_POUND] = ACTIONS(1598), - [anon_sym_DOT] = ACTIONS(3786), - [aux_sym_num_lit_token1] = ACTIONS(1602), - [anon_sym_COLON] = ACTIONS(1604), - [anon_sym_COLON_COLON] = ACTIONS(1606), - [anon_sym_DQUOTE] = ACTIONS(1608), - [sym_nil_lit] = ACTIONS(3786), - [aux_sym_sym_lit_token1] = ACTIONS(1610), - [anon_sym_CARET] = ACTIONS(25), - [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(1612), - [anon_sym_POUND0A] = ACTIONS(1614), - [anon_sym_POUND0a] = ACTIONS(1614), - [anon_sym_POUND_QMARK] = ACTIONS(1616), - [anon_sym_POUND_QMARK_AT] = ACTIONS(1618), - [anon_sym_POUND_SQUOTE] = ACTIONS(1620), - [anon_sym_SQUOTE] = ACTIONS(1622), - [anon_sym_BQUOTE] = ACTIONS(1624), - [anon_sym_COMMA_AT] = ACTIONS(1626), - [anon_sym_COMMA] = ACTIONS(1628), + [sym__gap] = STATE(251), + [sym_dis_expr] = STATE(251), + [sym__form] = STATE(2359), + [sym_num_lit] = STATE(2359), + [sym_kwd_lit] = STATE(2359), + [sym_str_lit] = STATE(2359), + [sym_char_lit] = STATE(2359), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2359), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2359), + [sym_set_lit] = STATE(2359), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2359), + [sym_splicing_read_cond_lit] = STATE(2359), + [sym_var_quoting_lit] = STATE(2359), + [sym_quoting_lit] = STATE(2359), + [sym_syn_quoting_lit] = STATE(2359), + [sym_unquote_splicing_lit] = STATE(2359), + [sym_unquoting_lit] = STATE(2359), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2359), + [sym_package_lit] = STATE(2359), + [sym_include_reader_macro] = STATE(2359), + [sym_complex_num_lit] = STATE(2359), + [aux_sym_dis_expr_repeat1] = STATE(251), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(3610), + [sym_comment] = ACTIONS(3610), + [anon_sym_POUND_] = ACTIONS(3543), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(3613), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(3548), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(3613), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(3551), + [anon_sym_POUND_CARET] = ACTIONS(3554), + [anon_sym_LPAREN] = ACTIONS(3557), + [anon_sym_RPAREN] = ACTIONS(3560), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3786), - [anon_sym_cl] = ACTIONS(1630), - [anon_sym_in] = ACTIONS(1632), - [anon_sym_across] = ACTIONS(1632), - [anon_sym_being] = ACTIONS(1632), - [anon_sym_using] = ACTIONS(1632), - [aux_sym_for_clause_word_token1] = ACTIONS(1634), - [anon_sym_below] = ACTIONS(1632), - [anon_sym_above] = ACTIONS(1632), - [anon_sym_from] = ACTIONS(1632), - [anon_sym_to] = ACTIONS(1632), - [anon_sym_upto] = ACTIONS(1632), - [anon_sym_upfrom] = ACTIONS(1632), - [anon_sym_downto] = ACTIONS(1632), - [anon_sym_downfrom] = ACTIONS(1632), - [anon_sym_on] = ACTIONS(1632), - [anon_sym_by] = ACTIONS(1632), - [anon_sym_then] = ACTIONS(1632), - [anon_sym_EQ] = ACTIONS(1632), - [anon_sym_POUNDP] = ACTIONS(1636), - [anon_sym_POUNDp] = ACTIONS(1636), - [sym_self_referential_reader_macro] = ACTIONS(3788), - [anon_sym_POUND_PLUS] = ACTIONS(1640), - [anon_sym_POUND_DASH] = ACTIONS(1640), - [anon_sym_POUNDC] = ACTIONS(1642), - [anon_sym_POUNDc] = ACTIONS(1642), + [sym_fancy_literal] = ACTIONS(3613), + [anon_sym_cl] = ACTIONS(3562), + [aux_sym_accumulation_verb_token1] = ACTIONS(3565), + [anon_sym_for] = ACTIONS(3565), + [anon_sym_and] = ACTIONS(3565), + [anon_sym_as] = ACTIONS(3565), + [anon_sym_with] = ACTIONS(3565), + [anon_sym_do] = ACTIONS(3565), + [anon_sym_while] = ACTIONS(3565), + [anon_sym_until] = ACTIONS(3565), + [anon_sym_repeat] = ACTIONS(3565), + [anon_sym_when] = ACTIONS(3565), + [anon_sym_if] = ACTIONS(3565), + [anon_sym_unless] = ACTIONS(3565), + [anon_sym_always] = ACTIONS(3565), + [anon_sym_thereis] = ACTIONS(3565), + [anon_sym_never] = ACTIONS(3565), + [anon_sym_else] = ACTIONS(3565), + [anon_sym_finally] = ACTIONS(3565), + [anon_sym_return] = ACTIONS(3565), + [anon_sym_initially] = ACTIONS(3565), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(3615), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [228] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2128), - [sym_num_lit] = STATE(2128), - [sym_kwd_lit] = STATE(2128), - [sym_str_lit] = STATE(2128), - [sym_char_lit] = STATE(2128), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2128), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2128), - [sym_set_lit] = STATE(2128), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2128), - [sym_splicing_read_cond_lit] = STATE(2128), - [sym_var_quoting_lit] = STATE(2128), - [sym_quoting_lit] = STATE(2128), - [sym_syn_quoting_lit] = STATE(2128), - [sym_unquote_splicing_lit] = STATE(2128), - [sym_unquoting_lit] = STATE(2128), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2128), - [sym_package_lit] = STATE(2128), - [sym_include_reader_macro] = STATE(2128), - [sym_complex_num_lit] = STATE(2128), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(3694), - [sym_comment] = ACTIONS(3694), - [anon_sym_POUND_] = ACTIONS(1969), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(3790), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(1974), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(3790), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1977), - [anon_sym_POUND_CARET] = ACTIONS(1980), - [anon_sym_LPAREN] = ACTIONS(1983), - [anon_sym_RPAREN] = ACTIONS(1986), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(252), + [sym_dis_expr] = STATE(252), + [sym__form] = STATE(2362), + [sym_num_lit] = STATE(2362), + [sym_kwd_lit] = STATE(2362), + [sym_str_lit] = STATE(2362), + [sym_char_lit] = STATE(2362), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2362), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2362), + [sym_set_lit] = STATE(2362), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2362), + [sym_splicing_read_cond_lit] = STATE(2362), + [sym_var_quoting_lit] = STATE(2362), + [sym_quoting_lit] = STATE(2362), + [sym_syn_quoting_lit] = STATE(2362), + [sym_unquote_splicing_lit] = STATE(2362), + [sym_unquoting_lit] = STATE(2362), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2362), + [sym_package_lit] = STATE(2362), + [sym_include_reader_macro] = STATE(2362), + [sym_complex_num_lit] = STATE(2362), + [aux_sym_dis_expr_repeat1] = STATE(252), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(3617), + [sym_comment] = ACTIONS(3617), + [anon_sym_POUND_] = ACTIONS(3543), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(3620), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(3548), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(3620), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(3551), + [anon_sym_POUND_CARET] = ACTIONS(3554), + [anon_sym_LPAREN] = ACTIONS(3557), + [anon_sym_RPAREN] = ACTIONS(3560), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3790), - [anon_sym_cl] = ACTIONS(1988), - [aux_sym_accumulation_verb_token1] = ACTIONS(1991), - [anon_sym_for] = ACTIONS(1991), - [anon_sym_and] = ACTIONS(1991), - [anon_sym_as] = ACTIONS(1991), - [anon_sym_with] = ACTIONS(1991), - [anon_sym_do] = ACTIONS(1991), - [anon_sym_while] = ACTIONS(1991), - [anon_sym_until] = ACTIONS(1991), - [anon_sym_repeat] = ACTIONS(1991), - [anon_sym_when] = ACTIONS(1991), - [anon_sym_if] = ACTIONS(1991), - [anon_sym_unless] = ACTIONS(1991), - [anon_sym_always] = ACTIONS(1991), - [anon_sym_thereis] = ACTIONS(1991), - [anon_sym_never] = ACTIONS(1991), - [anon_sym_else] = ACTIONS(1991), - [anon_sym_finally] = ACTIONS(1991), - [anon_sym_return] = ACTIONS(1991), - [anon_sym_initially] = ACTIONS(1991), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(3792), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(3620), + [anon_sym_cl] = ACTIONS(3562), + [aux_sym_accumulation_verb_token1] = ACTIONS(3565), + [anon_sym_for] = ACTIONS(3565), + [anon_sym_and] = ACTIONS(3565), + [anon_sym_as] = ACTIONS(3565), + [anon_sym_with] = ACTIONS(3565), + [anon_sym_do] = ACTIONS(3565), + [anon_sym_while] = ACTIONS(3565), + [anon_sym_until] = ACTIONS(3565), + [anon_sym_repeat] = ACTIONS(3565), + [anon_sym_when] = ACTIONS(3565), + [anon_sym_if] = ACTIONS(3565), + [anon_sym_unless] = ACTIONS(3565), + [anon_sym_always] = ACTIONS(3565), + [anon_sym_thereis] = ACTIONS(3565), + [anon_sym_never] = ACTIONS(3565), + [anon_sym_else] = ACTIONS(3565), + [anon_sym_finally] = ACTIONS(3565), + [anon_sym_return] = ACTIONS(3565), + [anon_sym_initially] = ACTIONS(3565), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(3622), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [229] = { - [sym__gap] = STATE(278), - [sym_dis_expr] = STATE(278), - [sym__form] = STATE(2713), - [sym_num_lit] = STATE(2713), - [sym_kwd_lit] = STATE(2713), - [sym_str_lit] = STATE(2713), - [sym_char_lit] = STATE(2713), - [sym_sym_lit] = STATE(2762), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2713), - [sym__bare_list_lit] = STATE(1892), - [sym_vec_lit] = STATE(2713), - [sym_set_lit] = STATE(2713), - [sym__bare_set_lit] = STATE(1893), - [sym_read_cond_lit] = STATE(2713), - [sym_splicing_read_cond_lit] = STATE(2713), - [sym_var_quoting_lit] = STATE(2713), - [sym_quoting_lit] = STATE(2713), - [sym_syn_quoting_lit] = STATE(2713), - [sym_unquote_splicing_lit] = STATE(2713), - [sym_unquoting_lit] = STATE(2713), - [sym_defun] = STATE(1892), - [sym_for_clause_word] = STATE(405), - [sym__for_part] = STATE(1611), - [sym_loop_macro] = STATE(1892), - [sym_path_lit] = STATE(2713), - [sym_package_lit] = STATE(2713), - [sym_include_reader_macro] = STATE(2713), - [sym_complex_num_lit] = STATE(2713), - [aux_sym_dis_expr_repeat1] = STATE(278), - [aux_sym_list_lit_repeat1] = STATE(2840), - [aux_sym_for_clause_repeat1] = STATE(1274), - [sym__ws] = ACTIONS(3794), - [sym_comment] = ACTIONS(3794), - [anon_sym_POUND_] = ACTIONS(1596), - [anon_sym_POUND] = ACTIONS(1598), - [anon_sym_DOT] = ACTIONS(3796), - [aux_sym_num_lit_token1] = ACTIONS(1602), - [anon_sym_COLON] = ACTIONS(1604), - [anon_sym_COLON_COLON] = ACTIONS(1606), - [anon_sym_DQUOTE] = ACTIONS(1608), - [sym_nil_lit] = ACTIONS(3796), - [aux_sym_sym_lit_token1] = ACTIONS(1610), - [anon_sym_CARET] = ACTIONS(25), - [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(1612), - [anon_sym_POUND0A] = ACTIONS(1614), - [anon_sym_POUND0a] = ACTIONS(1614), - [anon_sym_POUND_QMARK] = ACTIONS(1616), - [anon_sym_POUND_QMARK_AT] = ACTIONS(1618), - [anon_sym_POUND_SQUOTE] = ACTIONS(1620), - [anon_sym_SQUOTE] = ACTIONS(1622), - [anon_sym_BQUOTE] = ACTIONS(1624), - [anon_sym_COMMA_AT] = ACTIONS(1626), - [anon_sym_COMMA] = ACTIONS(1628), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2366), + [sym_num_lit] = STATE(2366), + [sym_kwd_lit] = STATE(2366), + [sym_str_lit] = STATE(2366), + [sym_char_lit] = STATE(2366), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2366), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2366), + [sym_set_lit] = STATE(2366), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2366), + [sym_splicing_read_cond_lit] = STATE(2366), + [sym_var_quoting_lit] = STATE(2366), + [sym_quoting_lit] = STATE(2366), + [sym_syn_quoting_lit] = STATE(2366), + [sym_unquote_splicing_lit] = STATE(2366), + [sym_unquoting_lit] = STATE(2366), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2366), + [sym_package_lit] = STATE(2366), + [sym_include_reader_macro] = STATE(2366), + [sym_complex_num_lit] = STATE(2366), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(3540), + [sym_comment] = ACTIONS(3540), + [anon_sym_POUND_] = ACTIONS(3543), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(3624), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(3548), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(3624), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(3551), + [anon_sym_POUND_CARET] = ACTIONS(3554), + [anon_sym_LPAREN] = ACTIONS(3557), + [anon_sym_RPAREN] = ACTIONS(3560), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3796), - [anon_sym_cl] = ACTIONS(1630), - [anon_sym_in] = ACTIONS(1632), - [anon_sym_across] = ACTIONS(1632), - [anon_sym_being] = ACTIONS(1632), - [anon_sym_using] = ACTIONS(1632), - [aux_sym_for_clause_word_token1] = ACTIONS(1634), - [anon_sym_below] = ACTIONS(1632), - [anon_sym_above] = ACTIONS(1632), - [anon_sym_from] = ACTIONS(1632), - [anon_sym_to] = ACTIONS(1632), - [anon_sym_upto] = ACTIONS(1632), - [anon_sym_upfrom] = ACTIONS(1632), - [anon_sym_downto] = ACTIONS(1632), - [anon_sym_downfrom] = ACTIONS(1632), - [anon_sym_on] = ACTIONS(1632), - [anon_sym_by] = ACTIONS(1632), - [anon_sym_then] = ACTIONS(1632), - [anon_sym_EQ] = ACTIONS(1632), - [anon_sym_POUNDP] = ACTIONS(1636), - [anon_sym_POUNDp] = ACTIONS(1636), - [sym_self_referential_reader_macro] = ACTIONS(3798), - [anon_sym_POUND_PLUS] = ACTIONS(1640), - [anon_sym_POUND_DASH] = ACTIONS(1640), - [anon_sym_POUNDC] = ACTIONS(1642), - [anon_sym_POUNDc] = ACTIONS(1642), + [sym_fancy_literal] = ACTIONS(3624), + [anon_sym_cl] = ACTIONS(3562), + [aux_sym_accumulation_verb_token1] = ACTIONS(3565), + [anon_sym_for] = ACTIONS(3565), + [anon_sym_and] = ACTIONS(3565), + [anon_sym_as] = ACTIONS(3565), + [anon_sym_with] = ACTIONS(3565), + [anon_sym_do] = ACTIONS(3565), + [anon_sym_while] = ACTIONS(3565), + [anon_sym_until] = ACTIONS(3565), + [anon_sym_repeat] = ACTIONS(3565), + [anon_sym_when] = ACTIONS(3565), + [anon_sym_if] = ACTIONS(3565), + [anon_sym_unless] = ACTIONS(3565), + [anon_sym_always] = ACTIONS(3565), + [anon_sym_thereis] = ACTIONS(3565), + [anon_sym_never] = ACTIONS(3565), + [anon_sym_else] = ACTIONS(3565), + [anon_sym_finally] = ACTIONS(3565), + [anon_sym_return] = ACTIONS(3565), + [anon_sym_initially] = ACTIONS(3565), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(3626), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [230] = { - [sym__gap] = STATE(196), - [sym_dis_expr] = STATE(196), - [sym__form] = STATE(2219), - [sym_num_lit] = STATE(2219), - [sym_kwd_lit] = STATE(2219), - [sym_str_lit] = STATE(2219), - [sym_char_lit] = STATE(2219), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2219), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2219), - [sym_set_lit] = STATE(2219), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2219), - [sym_splicing_read_cond_lit] = STATE(2219), - [sym_var_quoting_lit] = STATE(2219), - [sym_quoting_lit] = STATE(2219), - [sym_syn_quoting_lit] = STATE(2219), - [sym_unquote_splicing_lit] = STATE(2219), - [sym_unquoting_lit] = STATE(2219), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2219), - [sym_package_lit] = STATE(2219), - [sym_include_reader_macro] = STATE(2219), - [sym_complex_num_lit] = STATE(2219), - [aux_sym_dis_expr_repeat1] = STATE(196), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(3800), - [sym_comment] = ACTIONS(3800), - [anon_sym_POUND_] = ACTIONS(2621), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(3803), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(2626), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(3803), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2629), - [anon_sym_POUND_CARET] = ACTIONS(2632), - [anon_sym_LPAREN] = ACTIONS(2635), - [anon_sym_RPAREN] = ACTIONS(2638), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2369), + [sym_num_lit] = STATE(2369), + [sym_kwd_lit] = STATE(2369), + [sym_str_lit] = STATE(2369), + [sym_char_lit] = STATE(2369), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2369), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2369), + [sym_set_lit] = STATE(2369), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2369), + [sym_splicing_read_cond_lit] = STATE(2369), + [sym_var_quoting_lit] = STATE(2369), + [sym_quoting_lit] = STATE(2369), + [sym_syn_quoting_lit] = STATE(2369), + [sym_unquote_splicing_lit] = STATE(2369), + [sym_unquoting_lit] = STATE(2369), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2369), + [sym_package_lit] = STATE(2369), + [sym_include_reader_macro] = STATE(2369), + [sym_complex_num_lit] = STATE(2369), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(3628), + [sym_comment] = ACTIONS(3628), + [anon_sym_POUND_] = ACTIONS(3631), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(3634), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(3636), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(3634), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(3639), + [anon_sym_POUND_CARET] = ACTIONS(3642), + [anon_sym_LPAREN] = ACTIONS(3645), + [anon_sym_RPAREN] = ACTIONS(3648), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3803), - [anon_sym_cl] = ACTIONS(2640), - [aux_sym_accumulation_verb_token1] = ACTIONS(2643), - [anon_sym_for] = ACTIONS(2643), - [anon_sym_and] = ACTIONS(2643), - [anon_sym_as] = ACTIONS(2643), - [anon_sym_with] = ACTIONS(2643), - [anon_sym_do] = ACTIONS(2643), - [anon_sym_while] = ACTIONS(2643), - [anon_sym_until] = ACTIONS(2643), - [anon_sym_repeat] = ACTIONS(2643), - [anon_sym_when] = ACTIONS(2643), - [anon_sym_if] = ACTIONS(2643), - [anon_sym_unless] = ACTIONS(2643), - [anon_sym_always] = ACTIONS(2643), - [anon_sym_thereis] = ACTIONS(2643), - [anon_sym_never] = ACTIONS(2643), - [anon_sym_else] = ACTIONS(2643), - [anon_sym_finally] = ACTIONS(2643), - [anon_sym_return] = ACTIONS(2643), - [anon_sym_initially] = ACTIONS(2643), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(3805), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(3634), + [anon_sym_cl] = ACTIONS(3650), + [aux_sym_accumulation_verb_token1] = ACTIONS(3653), + [anon_sym_for] = ACTIONS(3653), + [anon_sym_and] = ACTIONS(3653), + [anon_sym_as] = ACTIONS(3653), + [anon_sym_with] = ACTIONS(3653), + [anon_sym_do] = ACTIONS(3653), + [anon_sym_while] = ACTIONS(3653), + [anon_sym_until] = ACTIONS(3653), + [anon_sym_repeat] = ACTIONS(3653), + [anon_sym_when] = ACTIONS(3653), + [anon_sym_if] = ACTIONS(3653), + [anon_sym_unless] = ACTIONS(3653), + [anon_sym_always] = ACTIONS(3653), + [anon_sym_thereis] = ACTIONS(3653), + [anon_sym_never] = ACTIONS(3653), + [anon_sym_else] = ACTIONS(3653), + [anon_sym_finally] = ACTIONS(3653), + [anon_sym_return] = ACTIONS(3653), + [anon_sym_initially] = ACTIONS(3653), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(3655), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [231] = { - [sym__gap] = STATE(121), - [sym_dis_expr] = STATE(121), - [sym__form] = STATE(2070), - [sym_num_lit] = STATE(2070), - [sym_kwd_lit] = STATE(2070), - [sym_str_lit] = STATE(2070), - [sym_char_lit] = STATE(2070), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2070), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2070), - [sym_set_lit] = STATE(2070), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2070), - [sym_splicing_read_cond_lit] = STATE(2070), - [sym_var_quoting_lit] = STATE(2070), - [sym_quoting_lit] = STATE(2070), - [sym_syn_quoting_lit] = STATE(2070), - [sym_unquote_splicing_lit] = STATE(2070), - [sym_unquoting_lit] = STATE(2070), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2070), - [sym_package_lit] = STATE(2070), - [sym_include_reader_macro] = STATE(2070), - [sym_complex_num_lit] = STATE(2070), - [aux_sym_dis_expr_repeat1] = STATE(121), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(3807), - [sym_comment] = ACTIONS(3807), - [anon_sym_POUND_] = ACTIONS(3810), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(3813), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(3815), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(3813), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(3818), - [anon_sym_POUND_CARET] = ACTIONS(3821), - [anon_sym_LPAREN] = ACTIONS(3824), - [anon_sym_RPAREN] = ACTIONS(3827), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2371), + [sym_num_lit] = STATE(2371), + [sym_kwd_lit] = STATE(2371), + [sym_str_lit] = STATE(2371), + [sym_char_lit] = STATE(2371), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2371), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2371), + [sym_set_lit] = STATE(2371), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2371), + [sym_splicing_read_cond_lit] = STATE(2371), + [sym_var_quoting_lit] = STATE(2371), + [sym_quoting_lit] = STATE(2371), + [sym_syn_quoting_lit] = STATE(2371), + [sym_unquote_splicing_lit] = STATE(2371), + [sym_unquoting_lit] = STATE(2371), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2371), + [sym_package_lit] = STATE(2371), + [sym_include_reader_macro] = STATE(2371), + [sym_complex_num_lit] = STATE(2371), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(3657), + [sym_comment] = ACTIONS(3657), + [anon_sym_POUND_] = ACTIONS(3660), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(3663), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(3665), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(3663), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(3668), + [anon_sym_POUND_CARET] = ACTIONS(3671), + [anon_sym_LPAREN] = ACTIONS(3674), + [anon_sym_RPAREN] = ACTIONS(3677), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3813), - [anon_sym_cl] = ACTIONS(3829), - [aux_sym_accumulation_verb_token1] = ACTIONS(3832), - [anon_sym_for] = ACTIONS(3832), - [anon_sym_and] = ACTIONS(3832), - [anon_sym_as] = ACTIONS(3832), - [anon_sym_with] = ACTIONS(3832), - [anon_sym_do] = ACTIONS(3832), - [anon_sym_while] = ACTIONS(3832), - [anon_sym_until] = ACTIONS(3832), - [anon_sym_repeat] = ACTIONS(3832), - [anon_sym_when] = ACTIONS(3832), - [anon_sym_if] = ACTIONS(3832), - [anon_sym_unless] = ACTIONS(3832), - [anon_sym_always] = ACTIONS(3832), - [anon_sym_thereis] = ACTIONS(3832), - [anon_sym_never] = ACTIONS(3832), - [anon_sym_else] = ACTIONS(3832), - [anon_sym_finally] = ACTIONS(3832), - [anon_sym_return] = ACTIONS(3832), - [anon_sym_initially] = ACTIONS(3832), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(3834), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(3663), + [anon_sym_cl] = ACTIONS(3679), + [aux_sym_accumulation_verb_token1] = ACTIONS(3682), + [anon_sym_for] = ACTIONS(3682), + [anon_sym_and] = ACTIONS(3682), + [anon_sym_as] = ACTIONS(3682), + [anon_sym_with] = ACTIONS(3682), + [anon_sym_do] = ACTIONS(3682), + [anon_sym_while] = ACTIONS(3682), + [anon_sym_until] = ACTIONS(3682), + [anon_sym_repeat] = ACTIONS(3682), + [anon_sym_when] = ACTIONS(3682), + [anon_sym_if] = ACTIONS(3682), + [anon_sym_unless] = ACTIONS(3682), + [anon_sym_always] = ACTIONS(3682), + [anon_sym_thereis] = ACTIONS(3682), + [anon_sym_never] = ACTIONS(3682), + [anon_sym_else] = ACTIONS(3682), + [anon_sym_finally] = ACTIONS(3682), + [anon_sym_return] = ACTIONS(3682), + [anon_sym_initially] = ACTIONS(3682), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(3684), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [232] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2081), - [sym_num_lit] = STATE(2081), - [sym_kwd_lit] = STATE(2081), - [sym_str_lit] = STATE(2081), - [sym_char_lit] = STATE(2081), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2081), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2081), - [sym_set_lit] = STATE(2081), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2081), - [sym_splicing_read_cond_lit] = STATE(2081), - [sym_var_quoting_lit] = STATE(2081), - [sym_quoting_lit] = STATE(2081), - [sym_syn_quoting_lit] = STATE(2081), - [sym_unquote_splicing_lit] = STATE(2081), - [sym_unquoting_lit] = STATE(2081), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2081), - [sym_package_lit] = STATE(2081), - [sym_include_reader_macro] = STATE(2081), - [sym_complex_num_lit] = STATE(2081), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(3836), - [sym_comment] = ACTIONS(3836), - [anon_sym_POUND_] = ACTIONS(3751), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(3839), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(3756), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(3839), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(3759), - [anon_sym_POUND_CARET] = ACTIONS(3762), - [anon_sym_LPAREN] = ACTIONS(3765), - [anon_sym_RPAREN] = ACTIONS(3768), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(254), + [sym_dis_expr] = STATE(254), + [sym__form] = STATE(2372), + [sym_num_lit] = STATE(2372), + [sym_kwd_lit] = STATE(2372), + [sym_str_lit] = STATE(2372), + [sym_char_lit] = STATE(2372), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2372), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2372), + [sym_set_lit] = STATE(2372), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2372), + [sym_splicing_read_cond_lit] = STATE(2372), + [sym_var_quoting_lit] = STATE(2372), + [sym_quoting_lit] = STATE(2372), + [sym_syn_quoting_lit] = STATE(2372), + [sym_unquote_splicing_lit] = STATE(2372), + [sym_unquoting_lit] = STATE(2372), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2372), + [sym_package_lit] = STATE(2372), + [sym_include_reader_macro] = STATE(2372), + [sym_complex_num_lit] = STATE(2372), + [aux_sym_dis_expr_repeat1] = STATE(254), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(3686), + [sym_comment] = ACTIONS(3686), + [anon_sym_POUND_] = ACTIONS(3660), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(3689), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(3665), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(3689), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(3668), + [anon_sym_POUND_CARET] = ACTIONS(3671), + [anon_sym_LPAREN] = ACTIONS(3674), + [anon_sym_RPAREN] = ACTIONS(3677), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3839), - [anon_sym_cl] = ACTIONS(3770), - [aux_sym_accumulation_verb_token1] = ACTIONS(3773), - [anon_sym_for] = ACTIONS(3773), - [anon_sym_and] = ACTIONS(3773), - [anon_sym_as] = ACTIONS(3773), - [anon_sym_with] = ACTIONS(3773), - [anon_sym_do] = ACTIONS(3773), - [anon_sym_while] = ACTIONS(3773), - [anon_sym_until] = ACTIONS(3773), - [anon_sym_repeat] = ACTIONS(3773), - [anon_sym_when] = ACTIONS(3773), - [anon_sym_if] = ACTIONS(3773), - [anon_sym_unless] = ACTIONS(3773), - [anon_sym_always] = ACTIONS(3773), - [anon_sym_thereis] = ACTIONS(3773), - [anon_sym_never] = ACTIONS(3773), - [anon_sym_else] = ACTIONS(3773), - [anon_sym_finally] = ACTIONS(3773), - [anon_sym_return] = ACTIONS(3773), - [anon_sym_initially] = ACTIONS(3773), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(3841), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(3689), + [anon_sym_cl] = ACTIONS(3679), + [aux_sym_accumulation_verb_token1] = ACTIONS(3682), + [anon_sym_for] = ACTIONS(3682), + [anon_sym_and] = ACTIONS(3682), + [anon_sym_as] = ACTIONS(3682), + [anon_sym_with] = ACTIONS(3682), + [anon_sym_do] = ACTIONS(3682), + [anon_sym_while] = ACTIONS(3682), + [anon_sym_until] = ACTIONS(3682), + [anon_sym_repeat] = ACTIONS(3682), + [anon_sym_when] = ACTIONS(3682), + [anon_sym_if] = ACTIONS(3682), + [anon_sym_unless] = ACTIONS(3682), + [anon_sym_always] = ACTIONS(3682), + [anon_sym_thereis] = ACTIONS(3682), + [anon_sym_never] = ACTIONS(3682), + [anon_sym_else] = ACTIONS(3682), + [anon_sym_finally] = ACTIONS(3682), + [anon_sym_return] = ACTIONS(3682), + [anon_sym_initially] = ACTIONS(3682), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(3691), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [233] = { - [sym__gap] = STATE(133), - [sym_dis_expr] = STATE(133), - [sym__form] = STATE(2441), - [sym_num_lit] = STATE(2441), - [sym_kwd_lit] = STATE(2441), - [sym_str_lit] = STATE(2441), - [sym_char_lit] = STATE(2441), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2441), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2441), - [sym_set_lit] = STATE(2441), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2441), - [sym_splicing_read_cond_lit] = STATE(2441), - [sym_var_quoting_lit] = STATE(2441), - [sym_quoting_lit] = STATE(2441), - [sym_syn_quoting_lit] = STATE(2441), - [sym_unquote_splicing_lit] = STATE(2441), - [sym_unquoting_lit] = STATE(2441), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2441), - [sym_package_lit] = STATE(2441), - [sym_include_reader_macro] = STATE(2441), - [sym_complex_num_lit] = STATE(2441), - [aux_sym_dis_expr_repeat1] = STATE(133), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(3843), - [sym_comment] = ACTIONS(3843), - [anon_sym_POUND_] = ACTIONS(3751), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(3846), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(3756), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(3846), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(3759), - [anon_sym_POUND_CARET] = ACTIONS(3762), - [anon_sym_LPAREN] = ACTIONS(3765), - [anon_sym_RPAREN] = ACTIONS(3768), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(255), + [sym_dis_expr] = STATE(255), + [sym__form] = STATE(2374), + [sym_num_lit] = STATE(2374), + [sym_kwd_lit] = STATE(2374), + [sym_str_lit] = STATE(2374), + [sym_char_lit] = STATE(2374), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2374), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2374), + [sym_set_lit] = STATE(2374), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2374), + [sym_splicing_read_cond_lit] = STATE(2374), + [sym_var_quoting_lit] = STATE(2374), + [sym_quoting_lit] = STATE(2374), + [sym_syn_quoting_lit] = STATE(2374), + [sym_unquote_splicing_lit] = STATE(2374), + [sym_unquoting_lit] = STATE(2374), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2374), + [sym_package_lit] = STATE(2374), + [sym_include_reader_macro] = STATE(2374), + [sym_complex_num_lit] = STATE(2374), + [aux_sym_dis_expr_repeat1] = STATE(255), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(3693), + [sym_comment] = ACTIONS(3693), + [anon_sym_POUND_] = ACTIONS(3660), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(3696), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(3665), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(3696), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(3668), + [anon_sym_POUND_CARET] = ACTIONS(3671), + [anon_sym_LPAREN] = ACTIONS(3674), + [anon_sym_RPAREN] = ACTIONS(3677), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3846), - [anon_sym_cl] = ACTIONS(3770), - [aux_sym_accumulation_verb_token1] = ACTIONS(3773), - [anon_sym_for] = ACTIONS(3773), - [anon_sym_and] = ACTIONS(3773), - [anon_sym_as] = ACTIONS(3773), - [anon_sym_with] = ACTIONS(3773), - [anon_sym_do] = ACTIONS(3773), - [anon_sym_while] = ACTIONS(3773), - [anon_sym_until] = ACTIONS(3773), - [anon_sym_repeat] = ACTIONS(3773), - [anon_sym_when] = ACTIONS(3773), - [anon_sym_if] = ACTIONS(3773), - [anon_sym_unless] = ACTIONS(3773), - [anon_sym_always] = ACTIONS(3773), - [anon_sym_thereis] = ACTIONS(3773), - [anon_sym_never] = ACTIONS(3773), - [anon_sym_else] = ACTIONS(3773), - [anon_sym_finally] = ACTIONS(3773), - [anon_sym_return] = ACTIONS(3773), - [anon_sym_initially] = ACTIONS(3773), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(3848), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(3696), + [anon_sym_cl] = ACTIONS(3679), + [aux_sym_accumulation_verb_token1] = ACTIONS(3682), + [anon_sym_for] = ACTIONS(3682), + [anon_sym_and] = ACTIONS(3682), + [anon_sym_as] = ACTIONS(3682), + [anon_sym_with] = ACTIONS(3682), + [anon_sym_do] = ACTIONS(3682), + [anon_sym_while] = ACTIONS(3682), + [anon_sym_until] = ACTIONS(3682), + [anon_sym_repeat] = ACTIONS(3682), + [anon_sym_when] = ACTIONS(3682), + [anon_sym_if] = ACTIONS(3682), + [anon_sym_unless] = ACTIONS(3682), + [anon_sym_always] = ACTIONS(3682), + [anon_sym_thereis] = ACTIONS(3682), + [anon_sym_never] = ACTIONS(3682), + [anon_sym_else] = ACTIONS(3682), + [anon_sym_finally] = ACTIONS(3682), + [anon_sym_return] = ACTIONS(3682), + [anon_sym_initially] = ACTIONS(3682), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(3698), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [234] = { - [sym__gap] = STATE(104), - [sym_dis_expr] = STATE(104), - [sym__form] = STATE(2127), - [sym_num_lit] = STATE(2127), - [sym_kwd_lit] = STATE(2127), - [sym_str_lit] = STATE(2127), - [sym_char_lit] = STATE(2127), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2127), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2127), - [sym_set_lit] = STATE(2127), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2127), - [sym_splicing_read_cond_lit] = STATE(2127), - [sym_var_quoting_lit] = STATE(2127), - [sym_quoting_lit] = STATE(2127), - [sym_syn_quoting_lit] = STATE(2127), - [sym_unquote_splicing_lit] = STATE(2127), - [sym_unquoting_lit] = STATE(2127), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2127), - [sym_package_lit] = STATE(2127), - [sym_include_reader_macro] = STATE(2127), - [sym_complex_num_lit] = STATE(2127), - [aux_sym_dis_expr_repeat1] = STATE(104), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(3850), - [sym_comment] = ACTIONS(3850), - [anon_sym_POUND_] = ACTIONS(1969), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(3853), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(1974), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(3853), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1977), - [anon_sym_POUND_CARET] = ACTIONS(1980), - [anon_sym_LPAREN] = ACTIONS(1983), - [anon_sym_RPAREN] = ACTIONS(1986), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2378), + [sym_num_lit] = STATE(2378), + [sym_kwd_lit] = STATE(2378), + [sym_str_lit] = STATE(2378), + [sym_char_lit] = STATE(2378), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2378), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2378), + [sym_set_lit] = STATE(2378), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2378), + [sym_splicing_read_cond_lit] = STATE(2378), + [sym_var_quoting_lit] = STATE(2378), + [sym_quoting_lit] = STATE(2378), + [sym_syn_quoting_lit] = STATE(2378), + [sym_unquote_splicing_lit] = STATE(2378), + [sym_unquoting_lit] = STATE(2378), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2378), + [sym_package_lit] = STATE(2378), + [sym_include_reader_macro] = STATE(2378), + [sym_complex_num_lit] = STATE(2378), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(3657), + [sym_comment] = ACTIONS(3657), + [anon_sym_POUND_] = ACTIONS(3660), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(3700), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(3665), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(3700), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(3668), + [anon_sym_POUND_CARET] = ACTIONS(3671), + [anon_sym_LPAREN] = ACTIONS(3674), + [anon_sym_RPAREN] = ACTIONS(3677), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3853), - [anon_sym_cl] = ACTIONS(1988), - [aux_sym_accumulation_verb_token1] = ACTIONS(1991), - [anon_sym_for] = ACTIONS(1991), - [anon_sym_and] = ACTIONS(1991), - [anon_sym_as] = ACTIONS(1991), - [anon_sym_with] = ACTIONS(1991), - [anon_sym_do] = ACTIONS(1991), - [anon_sym_while] = ACTIONS(1991), - [anon_sym_until] = ACTIONS(1991), - [anon_sym_repeat] = ACTIONS(1991), - [anon_sym_when] = ACTIONS(1991), - [anon_sym_if] = ACTIONS(1991), - [anon_sym_unless] = ACTIONS(1991), - [anon_sym_always] = ACTIONS(1991), - [anon_sym_thereis] = ACTIONS(1991), - [anon_sym_never] = ACTIONS(1991), - [anon_sym_else] = ACTIONS(1991), - [anon_sym_finally] = ACTIONS(1991), - [anon_sym_return] = ACTIONS(1991), - [anon_sym_initially] = ACTIONS(1991), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(3855), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(3700), + [anon_sym_cl] = ACTIONS(3679), + [aux_sym_accumulation_verb_token1] = ACTIONS(3682), + [anon_sym_for] = ACTIONS(3682), + [anon_sym_and] = ACTIONS(3682), + [anon_sym_as] = ACTIONS(3682), + [anon_sym_with] = ACTIONS(3682), + [anon_sym_do] = ACTIONS(3682), + [anon_sym_while] = ACTIONS(3682), + [anon_sym_until] = ACTIONS(3682), + [anon_sym_repeat] = ACTIONS(3682), + [anon_sym_when] = ACTIONS(3682), + [anon_sym_if] = ACTIONS(3682), + [anon_sym_unless] = ACTIONS(3682), + [anon_sym_always] = ACTIONS(3682), + [anon_sym_thereis] = ACTIONS(3682), + [anon_sym_never] = ACTIONS(3682), + [anon_sym_else] = ACTIONS(3682), + [anon_sym_finally] = ACTIONS(3682), + [anon_sym_return] = ACTIONS(3682), + [anon_sym_initially] = ACTIONS(3682), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(3702), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [235] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2217), - [sym_num_lit] = STATE(2217), - [sym_kwd_lit] = STATE(2217), - [sym_str_lit] = STATE(2217), - [sym_char_lit] = STATE(2217), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2217), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2217), - [sym_set_lit] = STATE(2217), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2217), - [sym_splicing_read_cond_lit] = STATE(2217), - [sym_var_quoting_lit] = STATE(2217), - [sym_quoting_lit] = STATE(2217), - [sym_syn_quoting_lit] = STATE(2217), - [sym_unquote_splicing_lit] = STATE(2217), - [sym_unquoting_lit] = STATE(2217), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2217), - [sym_package_lit] = STATE(2217), - [sym_include_reader_macro] = STATE(2217), - [sym_complex_num_lit] = STATE(2217), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(2618), - [sym_comment] = ACTIONS(2618), - [anon_sym_POUND_] = ACTIONS(2621), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(3857), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(2626), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(3857), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2629), - [anon_sym_POUND_CARET] = ACTIONS(2632), - [anon_sym_LPAREN] = ACTIONS(2635), - [anon_sym_RPAREN] = ACTIONS(2638), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2380), + [sym_num_lit] = STATE(2380), + [sym_kwd_lit] = STATE(2380), + [sym_str_lit] = STATE(2380), + [sym_char_lit] = STATE(2380), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2380), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2380), + [sym_set_lit] = STATE(2380), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2380), + [sym_splicing_read_cond_lit] = STATE(2380), + [sym_var_quoting_lit] = STATE(2380), + [sym_quoting_lit] = STATE(2380), + [sym_syn_quoting_lit] = STATE(2380), + [sym_unquote_splicing_lit] = STATE(2380), + [sym_unquoting_lit] = STATE(2380), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2380), + [sym_package_lit] = STATE(2380), + [sym_include_reader_macro] = STATE(2380), + [sym_complex_num_lit] = STATE(2380), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(3628), + [sym_comment] = ACTIONS(3628), + [anon_sym_POUND_] = ACTIONS(3631), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(3704), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(3636), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(3704), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(3639), + [anon_sym_POUND_CARET] = ACTIONS(3642), + [anon_sym_LPAREN] = ACTIONS(3645), + [anon_sym_RPAREN] = ACTIONS(3648), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3857), - [anon_sym_cl] = ACTIONS(2640), - [aux_sym_accumulation_verb_token1] = ACTIONS(2643), - [anon_sym_for] = ACTIONS(2643), - [anon_sym_and] = ACTIONS(2643), - [anon_sym_as] = ACTIONS(2643), - [anon_sym_with] = ACTIONS(2643), - [anon_sym_do] = ACTIONS(2643), - [anon_sym_while] = ACTIONS(2643), - [anon_sym_until] = ACTIONS(2643), - [anon_sym_repeat] = ACTIONS(2643), - [anon_sym_when] = ACTIONS(2643), - [anon_sym_if] = ACTIONS(2643), - [anon_sym_unless] = ACTIONS(2643), - [anon_sym_always] = ACTIONS(2643), - [anon_sym_thereis] = ACTIONS(2643), - [anon_sym_never] = ACTIONS(2643), - [anon_sym_else] = ACTIONS(2643), - [anon_sym_finally] = ACTIONS(2643), - [anon_sym_return] = ACTIONS(2643), - [anon_sym_initially] = ACTIONS(2643), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(3859), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(3704), + [anon_sym_cl] = ACTIONS(3650), + [aux_sym_accumulation_verb_token1] = ACTIONS(3653), + [anon_sym_for] = ACTIONS(3653), + [anon_sym_and] = ACTIONS(3653), + [anon_sym_as] = ACTIONS(3653), + [anon_sym_with] = ACTIONS(3653), + [anon_sym_do] = ACTIONS(3653), + [anon_sym_while] = ACTIONS(3653), + [anon_sym_until] = ACTIONS(3653), + [anon_sym_repeat] = ACTIONS(3653), + [anon_sym_when] = ACTIONS(3653), + [anon_sym_if] = ACTIONS(3653), + [anon_sym_unless] = ACTIONS(3653), + [anon_sym_always] = ACTIONS(3653), + [anon_sym_thereis] = ACTIONS(3653), + [anon_sym_never] = ACTIONS(3653), + [anon_sym_else] = ACTIONS(3653), + [anon_sym_finally] = ACTIONS(3653), + [anon_sym_return] = ACTIONS(3653), + [anon_sym_initially] = ACTIONS(3653), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(3706), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [236] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2048), - [sym_num_lit] = STATE(2048), - [sym_kwd_lit] = STATE(2048), - [sym_str_lit] = STATE(2048), - [sym_char_lit] = STATE(2048), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2048), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2048), - [sym_set_lit] = STATE(2048), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2048), - [sym_splicing_read_cond_lit] = STATE(2048), - [sym_var_quoting_lit] = STATE(2048), - [sym_quoting_lit] = STATE(2048), - [sym_syn_quoting_lit] = STATE(2048), - [sym_unquote_splicing_lit] = STATE(2048), - [sym_unquoting_lit] = STATE(2048), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2048), - [sym_package_lit] = STATE(2048), - [sym_include_reader_macro] = STATE(2048), - [sym_complex_num_lit] = STATE(2048), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(3861), - [sym_comment] = ACTIONS(3861), - [anon_sym_POUND_] = ACTIONS(3722), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(3864), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(3727), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(3864), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(3730), - [anon_sym_POUND_CARET] = ACTIONS(3733), - [anon_sym_LPAREN] = ACTIONS(3736), - [anon_sym_RPAREN] = ACTIONS(3739), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(42), + [sym_dis_expr] = STATE(42), + [sym__form] = STATE(2381), + [sym_num_lit] = STATE(2381), + [sym_kwd_lit] = STATE(2381), + [sym_str_lit] = STATE(2381), + [sym_char_lit] = STATE(2381), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2381), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2381), + [sym_set_lit] = STATE(2381), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2381), + [sym_splicing_read_cond_lit] = STATE(2381), + [sym_var_quoting_lit] = STATE(2381), + [sym_quoting_lit] = STATE(2381), + [sym_syn_quoting_lit] = STATE(2381), + [sym_unquote_splicing_lit] = STATE(2381), + [sym_unquoting_lit] = STATE(2381), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2381), + [sym_package_lit] = STATE(2381), + [sym_include_reader_macro] = STATE(2381), + [sym_complex_num_lit] = STATE(2381), + [aux_sym_dis_expr_repeat1] = STATE(42), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(3708), + [sym_comment] = ACTIONS(3708), + [anon_sym_POUND_] = ACTIONS(3631), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(3711), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(3636), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(3711), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(3639), + [anon_sym_POUND_CARET] = ACTIONS(3642), + [anon_sym_LPAREN] = ACTIONS(3645), + [anon_sym_RPAREN] = ACTIONS(3648), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3864), - [anon_sym_cl] = ACTIONS(3741), - [aux_sym_accumulation_verb_token1] = ACTIONS(3744), - [anon_sym_for] = ACTIONS(3744), - [anon_sym_and] = ACTIONS(3744), - [anon_sym_as] = ACTIONS(3744), - [anon_sym_with] = ACTIONS(3744), - [anon_sym_do] = ACTIONS(3744), - [anon_sym_while] = ACTIONS(3744), - [anon_sym_until] = ACTIONS(3744), - [anon_sym_repeat] = ACTIONS(3744), - [anon_sym_when] = ACTIONS(3744), - [anon_sym_if] = ACTIONS(3744), - [anon_sym_unless] = ACTIONS(3744), - [anon_sym_always] = ACTIONS(3744), - [anon_sym_thereis] = ACTIONS(3744), - [anon_sym_never] = ACTIONS(3744), - [anon_sym_else] = ACTIONS(3744), - [anon_sym_finally] = ACTIONS(3744), - [anon_sym_return] = ACTIONS(3744), - [anon_sym_initially] = ACTIONS(3744), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(3866), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(3711), + [anon_sym_cl] = ACTIONS(3650), + [aux_sym_accumulation_verb_token1] = ACTIONS(3653), + [anon_sym_for] = ACTIONS(3653), + [anon_sym_and] = ACTIONS(3653), + [anon_sym_as] = ACTIONS(3653), + [anon_sym_with] = ACTIONS(3653), + [anon_sym_do] = ACTIONS(3653), + [anon_sym_while] = ACTIONS(3653), + [anon_sym_until] = ACTIONS(3653), + [anon_sym_repeat] = ACTIONS(3653), + [anon_sym_when] = ACTIONS(3653), + [anon_sym_if] = ACTIONS(3653), + [anon_sym_unless] = ACTIONS(3653), + [anon_sym_always] = ACTIONS(3653), + [anon_sym_thereis] = ACTIONS(3653), + [anon_sym_never] = ACTIONS(3653), + [anon_sym_else] = ACTIONS(3653), + [anon_sym_finally] = ACTIONS(3653), + [anon_sym_return] = ACTIONS(3653), + [anon_sym_initially] = ACTIONS(3653), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(3713), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [237] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2461), - [sym_num_lit] = STATE(2461), - [sym_kwd_lit] = STATE(2461), - [sym_str_lit] = STATE(2461), - [sym_char_lit] = STATE(2461), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2461), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2461), - [sym_set_lit] = STATE(2461), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2461), - [sym_splicing_read_cond_lit] = STATE(2461), - [sym_var_quoting_lit] = STATE(2461), - [sym_quoting_lit] = STATE(2461), - [sym_syn_quoting_lit] = STATE(2461), - [sym_unquote_splicing_lit] = STATE(2461), - [sym_unquoting_lit] = STATE(2461), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2461), - [sym_package_lit] = STATE(2461), - [sym_include_reader_macro] = STATE(2461), - [sym_complex_num_lit] = STATE(2461), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(3303), - [sym_comment] = ACTIONS(3303), - [anon_sym_POUND_] = ACTIONS(3306), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(3868), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(3311), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(3868), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(3314), - [anon_sym_POUND_CARET] = ACTIONS(3317), - [anon_sym_LPAREN] = ACTIONS(3320), - [anon_sym_RPAREN] = ACTIONS(3323), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(258), + [sym_dis_expr] = STATE(258), + [sym__form] = STATE(2383), + [sym_num_lit] = STATE(2383), + [sym_kwd_lit] = STATE(2383), + [sym_str_lit] = STATE(2383), + [sym_char_lit] = STATE(2383), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2383), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2383), + [sym_set_lit] = STATE(2383), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2383), + [sym_splicing_read_cond_lit] = STATE(2383), + [sym_var_quoting_lit] = STATE(2383), + [sym_quoting_lit] = STATE(2383), + [sym_syn_quoting_lit] = STATE(2383), + [sym_unquote_splicing_lit] = STATE(2383), + [sym_unquoting_lit] = STATE(2383), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2383), + [sym_package_lit] = STATE(2383), + [sym_include_reader_macro] = STATE(2383), + [sym_complex_num_lit] = STATE(2383), + [aux_sym_dis_expr_repeat1] = STATE(258), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(3715), + [sym_comment] = ACTIONS(3715), + [anon_sym_POUND_] = ACTIONS(3718), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(3721), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(3723), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(3721), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(3726), + [anon_sym_POUND_CARET] = ACTIONS(3729), + [anon_sym_LPAREN] = ACTIONS(3732), + [anon_sym_RPAREN] = ACTIONS(3735), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3868), - [anon_sym_cl] = ACTIONS(3325), - [aux_sym_accumulation_verb_token1] = ACTIONS(3328), - [anon_sym_for] = ACTIONS(3328), - [anon_sym_and] = ACTIONS(3328), - [anon_sym_as] = ACTIONS(3328), - [anon_sym_with] = ACTIONS(3328), - [anon_sym_do] = ACTIONS(3328), - [anon_sym_while] = ACTIONS(3328), - [anon_sym_until] = ACTIONS(3328), - [anon_sym_repeat] = ACTIONS(3328), - [anon_sym_when] = ACTIONS(3328), - [anon_sym_if] = ACTIONS(3328), - [anon_sym_unless] = ACTIONS(3328), - [anon_sym_always] = ACTIONS(3328), - [anon_sym_thereis] = ACTIONS(3328), - [anon_sym_never] = ACTIONS(3328), - [anon_sym_else] = ACTIONS(3328), - [anon_sym_finally] = ACTIONS(3328), - [anon_sym_return] = ACTIONS(3328), - [anon_sym_initially] = ACTIONS(3328), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(3870), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(3721), + [anon_sym_cl] = ACTIONS(3737), + [aux_sym_accumulation_verb_token1] = ACTIONS(3740), + [anon_sym_for] = ACTIONS(3740), + [anon_sym_and] = ACTIONS(3740), + [anon_sym_as] = ACTIONS(3740), + [anon_sym_with] = ACTIONS(3740), + [anon_sym_do] = ACTIONS(3740), + [anon_sym_while] = ACTIONS(3740), + [anon_sym_until] = ACTIONS(3740), + [anon_sym_repeat] = ACTIONS(3740), + [anon_sym_when] = ACTIONS(3740), + [anon_sym_if] = ACTIONS(3740), + [anon_sym_unless] = ACTIONS(3740), + [anon_sym_always] = ACTIONS(3740), + [anon_sym_thereis] = ACTIONS(3740), + [anon_sym_never] = ACTIONS(3740), + [anon_sym_else] = ACTIONS(3740), + [anon_sym_finally] = ACTIONS(3740), + [anon_sym_return] = ACTIONS(3740), + [anon_sym_initially] = ACTIONS(3740), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(3742), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [238] = { - [sym__gap] = STATE(137), - [sym_dis_expr] = STATE(137), - [sym__form] = STATE(2138), - [sym_num_lit] = STATE(2138), - [sym_kwd_lit] = STATE(2138), - [sym_str_lit] = STATE(2138), - [sym_char_lit] = STATE(2138), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2138), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2138), - [sym_set_lit] = STATE(2138), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2138), - [sym_splicing_read_cond_lit] = STATE(2138), - [sym_var_quoting_lit] = STATE(2138), - [sym_quoting_lit] = STATE(2138), - [sym_syn_quoting_lit] = STATE(2138), - [sym_unquote_splicing_lit] = STATE(2138), - [sym_unquoting_lit] = STATE(2138), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2138), - [sym_package_lit] = STATE(2138), - [sym_include_reader_macro] = STATE(2138), - [sym_complex_num_lit] = STATE(2138), - [aux_sym_dis_expr_repeat1] = STATE(137), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(3872), - [sym_comment] = ACTIONS(3872), - [anon_sym_POUND_] = ACTIONS(3875), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(3878), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(3880), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(3878), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(3883), - [anon_sym_POUND_CARET] = ACTIONS(3886), - [anon_sym_LPAREN] = ACTIONS(3889), - [anon_sym_RPAREN] = ACTIONS(3892), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2385), + [sym_num_lit] = STATE(2385), + [sym_kwd_lit] = STATE(2385), + [sym_str_lit] = STATE(2385), + [sym_char_lit] = STATE(2385), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2385), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2385), + [sym_set_lit] = STATE(2385), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2385), + [sym_splicing_read_cond_lit] = STATE(2385), + [sym_var_quoting_lit] = STATE(2385), + [sym_quoting_lit] = STATE(2385), + [sym_syn_quoting_lit] = STATE(2385), + [sym_unquote_splicing_lit] = STATE(2385), + [sym_unquoting_lit] = STATE(2385), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2385), + [sym_package_lit] = STATE(2385), + [sym_include_reader_macro] = STATE(2385), + [sym_complex_num_lit] = STATE(2385), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(3744), + [sym_comment] = ACTIONS(3744), + [anon_sym_POUND_] = ACTIONS(3718), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(3747), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(3723), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(3747), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(3726), + [anon_sym_POUND_CARET] = ACTIONS(3729), + [anon_sym_LPAREN] = ACTIONS(3732), + [anon_sym_RPAREN] = ACTIONS(3735), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3878), - [anon_sym_cl] = ACTIONS(3894), - [aux_sym_accumulation_verb_token1] = ACTIONS(3897), - [anon_sym_for] = ACTIONS(3897), - [anon_sym_and] = ACTIONS(3897), - [anon_sym_as] = ACTIONS(3897), - [anon_sym_with] = ACTIONS(3897), - [anon_sym_do] = ACTIONS(3897), - [anon_sym_while] = ACTIONS(3897), - [anon_sym_until] = ACTIONS(3897), - [anon_sym_repeat] = ACTIONS(3897), - [anon_sym_when] = ACTIONS(3897), - [anon_sym_if] = ACTIONS(3897), - [anon_sym_unless] = ACTIONS(3897), - [anon_sym_always] = ACTIONS(3897), - [anon_sym_thereis] = ACTIONS(3897), - [anon_sym_never] = ACTIONS(3897), - [anon_sym_else] = ACTIONS(3897), - [anon_sym_finally] = ACTIONS(3897), - [anon_sym_return] = ACTIONS(3897), - [anon_sym_initially] = ACTIONS(3897), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(3899), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(3747), + [anon_sym_cl] = ACTIONS(3737), + [aux_sym_accumulation_verb_token1] = ACTIONS(3740), + [anon_sym_for] = ACTIONS(3740), + [anon_sym_and] = ACTIONS(3740), + [anon_sym_as] = ACTIONS(3740), + [anon_sym_with] = ACTIONS(3740), + [anon_sym_do] = ACTIONS(3740), + [anon_sym_while] = ACTIONS(3740), + [anon_sym_until] = ACTIONS(3740), + [anon_sym_repeat] = ACTIONS(3740), + [anon_sym_when] = ACTIONS(3740), + [anon_sym_if] = ACTIONS(3740), + [anon_sym_unless] = ACTIONS(3740), + [anon_sym_always] = ACTIONS(3740), + [anon_sym_thereis] = ACTIONS(3740), + [anon_sym_never] = ACTIONS(3740), + [anon_sym_else] = ACTIONS(3740), + [anon_sym_finally] = ACTIONS(3740), + [anon_sym_return] = ACTIONS(3740), + [anon_sym_initially] = ACTIONS(3740), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(3749), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [239] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2140), - [sym_num_lit] = STATE(2140), - [sym_kwd_lit] = STATE(2140), - [sym_str_lit] = STATE(2140), - [sym_char_lit] = STATE(2140), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2140), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2140), - [sym_set_lit] = STATE(2140), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2140), - [sym_splicing_read_cond_lit] = STATE(2140), - [sym_var_quoting_lit] = STATE(2140), - [sym_quoting_lit] = STATE(2140), - [sym_syn_quoting_lit] = STATE(2140), - [sym_unquote_splicing_lit] = STATE(2140), - [sym_unquoting_lit] = STATE(2140), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2140), - [sym_package_lit] = STATE(2140), - [sym_include_reader_macro] = STATE(2140), - [sym_complex_num_lit] = STATE(2140), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(3901), - [sym_comment] = ACTIONS(3901), - [anon_sym_POUND_] = ACTIONS(3904), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(3907), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(3909), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(3907), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(3912), - [anon_sym_POUND_CARET] = ACTIONS(3915), - [anon_sym_LPAREN] = ACTIONS(3918), - [anon_sym_RPAREN] = ACTIONS(3921), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(261), + [sym_dis_expr] = STATE(261), + [sym__form] = STATE(2386), + [sym_num_lit] = STATE(2386), + [sym_kwd_lit] = STATE(2386), + [sym_str_lit] = STATE(2386), + [sym_char_lit] = STATE(2386), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2386), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2386), + [sym_set_lit] = STATE(2386), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2386), + [sym_splicing_read_cond_lit] = STATE(2386), + [sym_var_quoting_lit] = STATE(2386), + [sym_quoting_lit] = STATE(2386), + [sym_syn_quoting_lit] = STATE(2386), + [sym_unquote_splicing_lit] = STATE(2386), + [sym_unquoting_lit] = STATE(2386), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2386), + [sym_package_lit] = STATE(2386), + [sym_include_reader_macro] = STATE(2386), + [sym_complex_num_lit] = STATE(2386), + [aux_sym_dis_expr_repeat1] = STATE(261), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(3751), + [sym_comment] = ACTIONS(3751), + [anon_sym_POUND_] = ACTIONS(3718), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(3754), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(3723), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(3754), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(3726), + [anon_sym_POUND_CARET] = ACTIONS(3729), + [anon_sym_LPAREN] = ACTIONS(3732), + [anon_sym_RPAREN] = ACTIONS(3735), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3907), - [anon_sym_cl] = ACTIONS(3923), - [aux_sym_accumulation_verb_token1] = ACTIONS(3926), - [anon_sym_for] = ACTIONS(3926), - [anon_sym_and] = ACTIONS(3926), - [anon_sym_as] = ACTIONS(3926), - [anon_sym_with] = ACTIONS(3926), - [anon_sym_do] = ACTIONS(3926), - [anon_sym_while] = ACTIONS(3926), - [anon_sym_until] = ACTIONS(3926), - [anon_sym_repeat] = ACTIONS(3926), - [anon_sym_when] = ACTIONS(3926), - [anon_sym_if] = ACTIONS(3926), - [anon_sym_unless] = ACTIONS(3926), - [anon_sym_always] = ACTIONS(3926), - [anon_sym_thereis] = ACTIONS(3926), - [anon_sym_never] = ACTIONS(3926), - [anon_sym_else] = ACTIONS(3926), - [anon_sym_finally] = ACTIONS(3926), - [anon_sym_return] = ACTIONS(3926), - [anon_sym_initially] = ACTIONS(3926), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(3928), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(3754), + [anon_sym_cl] = ACTIONS(3737), + [aux_sym_accumulation_verb_token1] = ACTIONS(3740), + [anon_sym_for] = ACTIONS(3740), + [anon_sym_and] = ACTIONS(3740), + [anon_sym_as] = ACTIONS(3740), + [anon_sym_with] = ACTIONS(3740), + [anon_sym_do] = ACTIONS(3740), + [anon_sym_while] = ACTIONS(3740), + [anon_sym_until] = ACTIONS(3740), + [anon_sym_repeat] = ACTIONS(3740), + [anon_sym_when] = ACTIONS(3740), + [anon_sym_if] = ACTIONS(3740), + [anon_sym_unless] = ACTIONS(3740), + [anon_sym_always] = ACTIONS(3740), + [anon_sym_thereis] = ACTIONS(3740), + [anon_sym_never] = ACTIONS(3740), + [anon_sym_else] = ACTIONS(3740), + [anon_sym_finally] = ACTIONS(3740), + [anon_sym_return] = ACTIONS(3740), + [anon_sym_initially] = ACTIONS(3740), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(3756), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [240] = { - [sym__gap] = STATE(142), - [sym_dis_expr] = STATE(142), - [sym__form] = STATE(2142), - [sym_num_lit] = STATE(2142), - [sym_kwd_lit] = STATE(2142), - [sym_str_lit] = STATE(2142), - [sym_char_lit] = STATE(2142), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2142), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2142), - [sym_set_lit] = STATE(2142), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2142), - [sym_splicing_read_cond_lit] = STATE(2142), - [sym_var_quoting_lit] = STATE(2142), - [sym_quoting_lit] = STATE(2142), - [sym_syn_quoting_lit] = STATE(2142), - [sym_unquote_splicing_lit] = STATE(2142), - [sym_unquoting_lit] = STATE(2142), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2142), - [sym_package_lit] = STATE(2142), - [sym_include_reader_macro] = STATE(2142), - [sym_complex_num_lit] = STATE(2142), - [aux_sym_dis_expr_repeat1] = STATE(142), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(3930), - [sym_comment] = ACTIONS(3930), - [anon_sym_POUND_] = ACTIONS(3904), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(3933), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(3909), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(3933), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(3912), - [anon_sym_POUND_CARET] = ACTIONS(3915), - [anon_sym_LPAREN] = ACTIONS(3918), - [anon_sym_RPAREN] = ACTIONS(3921), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2392), + [sym_num_lit] = STATE(2392), + [sym_kwd_lit] = STATE(2392), + [sym_str_lit] = STATE(2392), + [sym_char_lit] = STATE(2392), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2392), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2392), + [sym_set_lit] = STATE(2392), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2392), + [sym_splicing_read_cond_lit] = STATE(2392), + [sym_var_quoting_lit] = STATE(2392), + [sym_quoting_lit] = STATE(2392), + [sym_syn_quoting_lit] = STATE(2392), + [sym_unquote_splicing_lit] = STATE(2392), + [sym_unquoting_lit] = STATE(2392), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2392), + [sym_package_lit] = STATE(2392), + [sym_include_reader_macro] = STATE(2392), + [sym_complex_num_lit] = STATE(2392), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(3758), + [sym_comment] = ACTIONS(3758), + [anon_sym_POUND_] = ACTIONS(3761), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(3764), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(3766), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(3764), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(3769), + [anon_sym_POUND_CARET] = ACTIONS(3772), + [anon_sym_LPAREN] = ACTIONS(3775), + [anon_sym_RPAREN] = ACTIONS(3778), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3933), - [anon_sym_cl] = ACTIONS(3923), - [aux_sym_accumulation_verb_token1] = ACTIONS(3926), - [anon_sym_for] = ACTIONS(3926), - [anon_sym_and] = ACTIONS(3926), - [anon_sym_as] = ACTIONS(3926), - [anon_sym_with] = ACTIONS(3926), - [anon_sym_do] = ACTIONS(3926), - [anon_sym_while] = ACTIONS(3926), - [anon_sym_until] = ACTIONS(3926), - [anon_sym_repeat] = ACTIONS(3926), - [anon_sym_when] = ACTIONS(3926), - [anon_sym_if] = ACTIONS(3926), - [anon_sym_unless] = ACTIONS(3926), - [anon_sym_always] = ACTIONS(3926), - [anon_sym_thereis] = ACTIONS(3926), - [anon_sym_never] = ACTIONS(3926), - [anon_sym_else] = ACTIONS(3926), - [anon_sym_finally] = ACTIONS(3926), - [anon_sym_return] = ACTIONS(3926), - [anon_sym_initially] = ACTIONS(3926), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(3935), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(3764), + [anon_sym_cl] = ACTIONS(3780), + [aux_sym_accumulation_verb_token1] = ACTIONS(3783), + [anon_sym_for] = ACTIONS(3783), + [anon_sym_and] = ACTIONS(3783), + [anon_sym_as] = ACTIONS(3783), + [anon_sym_with] = ACTIONS(3783), + [anon_sym_do] = ACTIONS(3783), + [anon_sym_while] = ACTIONS(3783), + [anon_sym_until] = ACTIONS(3783), + [anon_sym_repeat] = ACTIONS(3783), + [anon_sym_when] = ACTIONS(3783), + [anon_sym_if] = ACTIONS(3783), + [anon_sym_unless] = ACTIONS(3783), + [anon_sym_always] = ACTIONS(3783), + [anon_sym_thereis] = ACTIONS(3783), + [anon_sym_never] = ACTIONS(3783), + [anon_sym_else] = ACTIONS(3783), + [anon_sym_finally] = ACTIONS(3783), + [anon_sym_return] = ACTIONS(3783), + [anon_sym_initially] = ACTIONS(3783), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(3785), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [241] = { - [sym__gap] = STATE(189), - [sym_dis_expr] = STATE(189), - [sym__form] = STATE(2215), - [sym_num_lit] = STATE(2215), - [sym_kwd_lit] = STATE(2215), - [sym_str_lit] = STATE(2215), - [sym_char_lit] = STATE(2215), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2215), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2215), - [sym_set_lit] = STATE(2215), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2215), - [sym_splicing_read_cond_lit] = STATE(2215), - [sym_var_quoting_lit] = STATE(2215), - [sym_quoting_lit] = STATE(2215), - [sym_syn_quoting_lit] = STATE(2215), - [sym_unquote_splicing_lit] = STATE(2215), - [sym_unquoting_lit] = STATE(2215), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2215), - [sym_package_lit] = STATE(2215), - [sym_include_reader_macro] = STATE(2215), - [sym_complex_num_lit] = STATE(2215), - [aux_sym_dis_expr_repeat1] = STATE(189), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(3937), - [sym_comment] = ACTIONS(3937), - [anon_sym_POUND_] = ACTIONS(2887), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(3940), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(2892), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(3940), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2895), - [anon_sym_POUND_CARET] = ACTIONS(2898), - [anon_sym_LPAREN] = ACTIONS(2901), - [anon_sym_RPAREN] = ACTIONS(2904), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2396), + [sym_num_lit] = STATE(2396), + [sym_kwd_lit] = STATE(2396), + [sym_str_lit] = STATE(2396), + [sym_char_lit] = STATE(2396), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2396), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2396), + [sym_set_lit] = STATE(2396), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2396), + [sym_splicing_read_cond_lit] = STATE(2396), + [sym_var_quoting_lit] = STATE(2396), + [sym_quoting_lit] = STATE(2396), + [sym_syn_quoting_lit] = STATE(2396), + [sym_unquote_splicing_lit] = STATE(2396), + [sym_unquoting_lit] = STATE(2396), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2396), + [sym_package_lit] = STATE(2396), + [sym_include_reader_macro] = STATE(2396), + [sym_complex_num_lit] = STATE(2396), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(3402), + [sym_comment] = ACTIONS(3402), + [anon_sym_POUND_] = ACTIONS(3405), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(3787), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(3410), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(3787), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(3413), + [anon_sym_POUND_CARET] = ACTIONS(3416), + [anon_sym_LPAREN] = ACTIONS(3419), + [anon_sym_RPAREN] = ACTIONS(3422), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3940), - [anon_sym_cl] = ACTIONS(2906), - [aux_sym_accumulation_verb_token1] = ACTIONS(2909), - [anon_sym_for] = ACTIONS(2909), - [anon_sym_and] = ACTIONS(2909), - [anon_sym_as] = ACTIONS(2909), - [anon_sym_with] = ACTIONS(2909), - [anon_sym_do] = ACTIONS(2909), - [anon_sym_while] = ACTIONS(2909), - [anon_sym_until] = ACTIONS(2909), - [anon_sym_repeat] = ACTIONS(2909), - [anon_sym_when] = ACTIONS(2909), - [anon_sym_if] = ACTIONS(2909), - [anon_sym_unless] = ACTIONS(2909), - [anon_sym_always] = ACTIONS(2909), - [anon_sym_thereis] = ACTIONS(2909), - [anon_sym_never] = ACTIONS(2909), - [anon_sym_else] = ACTIONS(2909), - [anon_sym_finally] = ACTIONS(2909), - [anon_sym_return] = ACTIONS(2909), - [anon_sym_initially] = ACTIONS(2909), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(3942), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(3787), + [anon_sym_cl] = ACTIONS(3424), + [aux_sym_accumulation_verb_token1] = ACTIONS(3427), + [anon_sym_for] = ACTIONS(3427), + [anon_sym_and] = ACTIONS(3427), + [anon_sym_as] = ACTIONS(3427), + [anon_sym_with] = ACTIONS(3427), + [anon_sym_do] = ACTIONS(3427), + [anon_sym_while] = ACTIONS(3427), + [anon_sym_until] = ACTIONS(3427), + [anon_sym_repeat] = ACTIONS(3427), + [anon_sym_when] = ACTIONS(3427), + [anon_sym_if] = ACTIONS(3427), + [anon_sym_unless] = ACTIONS(3427), + [anon_sym_always] = ACTIONS(3427), + [anon_sym_thereis] = ACTIONS(3427), + [anon_sym_never] = ACTIONS(3427), + [anon_sym_else] = ACTIONS(3427), + [anon_sym_finally] = ACTIONS(3427), + [anon_sym_return] = ACTIONS(3427), + [anon_sym_initially] = ACTIONS(3427), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(3789), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [242] = { - [sym__gap] = STATE(143), - [sym_dis_expr] = STATE(143), - [sym__form] = STATE(2144), - [sym_num_lit] = STATE(2144), - [sym_kwd_lit] = STATE(2144), - [sym_str_lit] = STATE(2144), - [sym_char_lit] = STATE(2144), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2144), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2144), - [sym_set_lit] = STATE(2144), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2144), - [sym_splicing_read_cond_lit] = STATE(2144), - [sym_var_quoting_lit] = STATE(2144), - [sym_quoting_lit] = STATE(2144), - [sym_syn_quoting_lit] = STATE(2144), - [sym_unquote_splicing_lit] = STATE(2144), - [sym_unquoting_lit] = STATE(2144), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2144), - [sym_package_lit] = STATE(2144), - [sym_include_reader_macro] = STATE(2144), - [sym_complex_num_lit] = STATE(2144), - [aux_sym_dis_expr_repeat1] = STATE(143), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(3944), - [sym_comment] = ACTIONS(3944), - [anon_sym_POUND_] = ACTIONS(3947), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(3950), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(3952), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(3950), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(3955), - [anon_sym_POUND_CARET] = ACTIONS(3958), - [anon_sym_LPAREN] = ACTIONS(3961), - [anon_sym_RPAREN] = ACTIONS(3964), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2400), + [sym_num_lit] = STATE(2400), + [sym_kwd_lit] = STATE(2400), + [sym_str_lit] = STATE(2400), + [sym_char_lit] = STATE(2400), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2400), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2400), + [sym_set_lit] = STATE(2400), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2400), + [sym_splicing_read_cond_lit] = STATE(2400), + [sym_var_quoting_lit] = STATE(2400), + [sym_quoting_lit] = STATE(2400), + [sym_syn_quoting_lit] = STATE(2400), + [sym_unquote_splicing_lit] = STATE(2400), + [sym_unquoting_lit] = STATE(2400), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2400), + [sym_package_lit] = STATE(2400), + [sym_include_reader_macro] = STATE(2400), + [sym_complex_num_lit] = STATE(2400), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(3431), + [sym_comment] = ACTIONS(3431), + [anon_sym_POUND_] = ACTIONS(3434), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(3791), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(3439), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(3791), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(3442), + [anon_sym_POUND_CARET] = ACTIONS(3445), + [anon_sym_LPAREN] = ACTIONS(3448), + [anon_sym_RPAREN] = ACTIONS(3451), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3950), - [anon_sym_cl] = ACTIONS(3966), - [aux_sym_accumulation_verb_token1] = ACTIONS(3969), - [anon_sym_for] = ACTIONS(3969), - [anon_sym_and] = ACTIONS(3969), - [anon_sym_as] = ACTIONS(3969), - [anon_sym_with] = ACTIONS(3969), - [anon_sym_do] = ACTIONS(3969), - [anon_sym_while] = ACTIONS(3969), - [anon_sym_until] = ACTIONS(3969), - [anon_sym_repeat] = ACTIONS(3969), - [anon_sym_when] = ACTIONS(3969), - [anon_sym_if] = ACTIONS(3969), - [anon_sym_unless] = ACTIONS(3969), - [anon_sym_always] = ACTIONS(3969), - [anon_sym_thereis] = ACTIONS(3969), - [anon_sym_never] = ACTIONS(3969), - [anon_sym_else] = ACTIONS(3969), - [anon_sym_finally] = ACTIONS(3969), - [anon_sym_return] = ACTIONS(3969), - [anon_sym_initially] = ACTIONS(3969), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(3971), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(3791), + [anon_sym_cl] = ACTIONS(3453), + [aux_sym_accumulation_verb_token1] = ACTIONS(3456), + [anon_sym_for] = ACTIONS(3456), + [anon_sym_and] = ACTIONS(3456), + [anon_sym_as] = ACTIONS(3456), + [anon_sym_with] = ACTIONS(3456), + [anon_sym_do] = ACTIONS(3456), + [anon_sym_while] = ACTIONS(3456), + [anon_sym_until] = ACTIONS(3456), + [anon_sym_repeat] = ACTIONS(3456), + [anon_sym_when] = ACTIONS(3456), + [anon_sym_if] = ACTIONS(3456), + [anon_sym_unless] = ACTIONS(3456), + [anon_sym_always] = ACTIONS(3456), + [anon_sym_thereis] = ACTIONS(3456), + [anon_sym_never] = ACTIONS(3456), + [anon_sym_else] = ACTIONS(3456), + [anon_sym_finally] = ACTIONS(3456), + [anon_sym_return] = ACTIONS(3456), + [anon_sym_initially] = ACTIONS(3456), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(3793), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [243] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2146), - [sym_num_lit] = STATE(2146), - [sym_kwd_lit] = STATE(2146), - [sym_str_lit] = STATE(2146), - [sym_char_lit] = STATE(2146), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2146), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2146), - [sym_set_lit] = STATE(2146), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2146), - [sym_splicing_read_cond_lit] = STATE(2146), - [sym_var_quoting_lit] = STATE(2146), - [sym_quoting_lit] = STATE(2146), - [sym_syn_quoting_lit] = STATE(2146), - [sym_unquote_splicing_lit] = STATE(2146), - [sym_unquoting_lit] = STATE(2146), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2146), - [sym_package_lit] = STATE(2146), - [sym_include_reader_macro] = STATE(2146), - [sym_complex_num_lit] = STATE(2146), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(3973), - [sym_comment] = ACTIONS(3973), - [anon_sym_POUND_] = ACTIONS(3947), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(3976), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(3952), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(3976), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(3955), - [anon_sym_POUND_CARET] = ACTIONS(3958), - [anon_sym_LPAREN] = ACTIONS(3961), - [anon_sym_RPAREN] = ACTIONS(3964), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2402), + [sym_num_lit] = STATE(2402), + [sym_kwd_lit] = STATE(2402), + [sym_str_lit] = STATE(2402), + [sym_char_lit] = STATE(2402), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2402), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2402), + [sym_set_lit] = STATE(2402), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2402), + [sym_splicing_read_cond_lit] = STATE(2402), + [sym_var_quoting_lit] = STATE(2402), + [sym_quoting_lit] = STATE(2402), + [sym_syn_quoting_lit] = STATE(2402), + [sym_unquote_splicing_lit] = STATE(2402), + [sym_unquoting_lit] = STATE(2402), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2402), + [sym_package_lit] = STATE(2402), + [sym_include_reader_macro] = STATE(2402), + [sym_complex_num_lit] = STATE(2402), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(3431), + [sym_comment] = ACTIONS(3431), + [anon_sym_POUND_] = ACTIONS(3434), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(3795), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(3439), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(3795), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(3442), + [anon_sym_POUND_CARET] = ACTIONS(3445), + [anon_sym_LPAREN] = ACTIONS(3448), + [anon_sym_RPAREN] = ACTIONS(3451), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3976), - [anon_sym_cl] = ACTIONS(3966), - [aux_sym_accumulation_verb_token1] = ACTIONS(3969), - [anon_sym_for] = ACTIONS(3969), - [anon_sym_and] = ACTIONS(3969), - [anon_sym_as] = ACTIONS(3969), - [anon_sym_with] = ACTIONS(3969), - [anon_sym_do] = ACTIONS(3969), - [anon_sym_while] = ACTIONS(3969), - [anon_sym_until] = ACTIONS(3969), - [anon_sym_repeat] = ACTIONS(3969), - [anon_sym_when] = ACTIONS(3969), - [anon_sym_if] = ACTIONS(3969), - [anon_sym_unless] = ACTIONS(3969), - [anon_sym_always] = ACTIONS(3969), - [anon_sym_thereis] = ACTIONS(3969), - [anon_sym_never] = ACTIONS(3969), - [anon_sym_else] = ACTIONS(3969), - [anon_sym_finally] = ACTIONS(3969), - [anon_sym_return] = ACTIONS(3969), - [anon_sym_initially] = ACTIONS(3969), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(3978), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(3795), + [anon_sym_cl] = ACTIONS(3453), + [aux_sym_accumulation_verb_token1] = ACTIONS(3456), + [anon_sym_for] = ACTIONS(3456), + [anon_sym_and] = ACTIONS(3456), + [anon_sym_as] = ACTIONS(3456), + [anon_sym_with] = ACTIONS(3456), + [anon_sym_do] = ACTIONS(3456), + [anon_sym_while] = ACTIONS(3456), + [anon_sym_until] = ACTIONS(3456), + [anon_sym_repeat] = ACTIONS(3456), + [anon_sym_when] = ACTIONS(3456), + [anon_sym_if] = ACTIONS(3456), + [anon_sym_unless] = ACTIONS(3456), + [anon_sym_always] = ACTIONS(3456), + [anon_sym_thereis] = ACTIONS(3456), + [anon_sym_never] = ACTIONS(3456), + [anon_sym_else] = ACTIONS(3456), + [anon_sym_finally] = ACTIONS(3456), + [anon_sym_return] = ACTIONS(3456), + [anon_sym_initially] = ACTIONS(3456), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(3797), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [244] = { - [sym__gap] = STATE(147), - [sym_dis_expr] = STATE(147), - [sym__form] = STATE(2148), - [sym_num_lit] = STATE(2148), - [sym_kwd_lit] = STATE(2148), - [sym_str_lit] = STATE(2148), - [sym_char_lit] = STATE(2148), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2148), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2148), - [sym_set_lit] = STATE(2148), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2148), - [sym_splicing_read_cond_lit] = STATE(2148), - [sym_var_quoting_lit] = STATE(2148), - [sym_quoting_lit] = STATE(2148), - [sym_syn_quoting_lit] = STATE(2148), - [sym_unquote_splicing_lit] = STATE(2148), - [sym_unquoting_lit] = STATE(2148), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2148), - [sym_package_lit] = STATE(2148), - [sym_include_reader_macro] = STATE(2148), - [sym_complex_num_lit] = STATE(2148), - [aux_sym_dis_expr_repeat1] = STATE(147), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(3980), - [sym_comment] = ACTIONS(3980), - [anon_sym_POUND_] = ACTIONS(3947), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(3983), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(3952), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(3983), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(3955), - [anon_sym_POUND_CARET] = ACTIONS(3958), - [anon_sym_LPAREN] = ACTIONS(3961), - [anon_sym_RPAREN] = ACTIONS(3964), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(262), + [sym_dis_expr] = STATE(262), + [sym__form] = STATE(2403), + [sym_num_lit] = STATE(2403), + [sym_kwd_lit] = STATE(2403), + [sym_str_lit] = STATE(2403), + [sym_char_lit] = STATE(2403), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2403), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2403), + [sym_set_lit] = STATE(2403), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2403), + [sym_splicing_read_cond_lit] = STATE(2403), + [sym_var_quoting_lit] = STATE(2403), + [sym_quoting_lit] = STATE(2403), + [sym_syn_quoting_lit] = STATE(2403), + [sym_unquote_splicing_lit] = STATE(2403), + [sym_unquoting_lit] = STATE(2403), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2403), + [sym_package_lit] = STATE(2403), + [sym_include_reader_macro] = STATE(2403), + [sym_complex_num_lit] = STATE(2403), + [aux_sym_dis_expr_repeat1] = STATE(262), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(3799), + [sym_comment] = ACTIONS(3799), + [anon_sym_POUND_] = ACTIONS(3434), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(3802), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(3439), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(3802), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(3442), + [anon_sym_POUND_CARET] = ACTIONS(3445), + [anon_sym_LPAREN] = ACTIONS(3448), + [anon_sym_RPAREN] = ACTIONS(3451), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3983), - [anon_sym_cl] = ACTIONS(3966), - [aux_sym_accumulation_verb_token1] = ACTIONS(3969), - [anon_sym_for] = ACTIONS(3969), - [anon_sym_and] = ACTIONS(3969), - [anon_sym_as] = ACTIONS(3969), - [anon_sym_with] = ACTIONS(3969), - [anon_sym_do] = ACTIONS(3969), - [anon_sym_while] = ACTIONS(3969), - [anon_sym_until] = ACTIONS(3969), - [anon_sym_repeat] = ACTIONS(3969), - [anon_sym_when] = ACTIONS(3969), - [anon_sym_if] = ACTIONS(3969), - [anon_sym_unless] = ACTIONS(3969), - [anon_sym_always] = ACTIONS(3969), - [anon_sym_thereis] = ACTIONS(3969), - [anon_sym_never] = ACTIONS(3969), - [anon_sym_else] = ACTIONS(3969), - [anon_sym_finally] = ACTIONS(3969), - [anon_sym_return] = ACTIONS(3969), - [anon_sym_initially] = ACTIONS(3969), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(3985), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(3802), + [anon_sym_cl] = ACTIONS(3453), + [aux_sym_accumulation_verb_token1] = ACTIONS(3456), + [anon_sym_for] = ACTIONS(3456), + [anon_sym_and] = ACTIONS(3456), + [anon_sym_as] = ACTIONS(3456), + [anon_sym_with] = ACTIONS(3456), + [anon_sym_do] = ACTIONS(3456), + [anon_sym_while] = ACTIONS(3456), + [anon_sym_until] = ACTIONS(3456), + [anon_sym_repeat] = ACTIONS(3456), + [anon_sym_when] = ACTIONS(3456), + [anon_sym_if] = ACTIONS(3456), + [anon_sym_unless] = ACTIONS(3456), + [anon_sym_always] = ACTIONS(3456), + [anon_sym_thereis] = ACTIONS(3456), + [anon_sym_never] = ACTIONS(3456), + [anon_sym_else] = ACTIONS(3456), + [anon_sym_finally] = ACTIONS(3456), + [anon_sym_return] = ACTIONS(3456), + [anon_sym_initially] = ACTIONS(3456), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(3804), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [245] = { - [sym__gap] = STATE(149), - [sym_dis_expr] = STATE(149), - [sym__form] = STATE(2150), - [sym_num_lit] = STATE(2150), - [sym_kwd_lit] = STATE(2150), - [sym_str_lit] = STATE(2150), - [sym_char_lit] = STATE(2150), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2150), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2150), - [sym_set_lit] = STATE(2150), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2150), - [sym_splicing_read_cond_lit] = STATE(2150), - [sym_var_quoting_lit] = STATE(2150), - [sym_quoting_lit] = STATE(2150), - [sym_syn_quoting_lit] = STATE(2150), - [sym_unquote_splicing_lit] = STATE(2150), - [sym_unquoting_lit] = STATE(2150), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2150), - [sym_package_lit] = STATE(2150), - [sym_include_reader_macro] = STATE(2150), - [sym_complex_num_lit] = STATE(2150), - [aux_sym_dis_expr_repeat1] = STATE(149), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(3987), - [sym_comment] = ACTIONS(3987), - [anon_sym_POUND_] = ACTIONS(3904), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(3990), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(3909), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(3990), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(3912), - [anon_sym_POUND_CARET] = ACTIONS(3915), - [anon_sym_LPAREN] = ACTIONS(3918), - [anon_sym_RPAREN] = ACTIONS(3921), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2409), + [sym_num_lit] = STATE(2409), + [sym_kwd_lit] = STATE(2409), + [sym_str_lit] = STATE(2409), + [sym_char_lit] = STATE(2409), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2409), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2409), + [sym_set_lit] = STATE(2409), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2409), + [sym_splicing_read_cond_lit] = STATE(2409), + [sym_var_quoting_lit] = STATE(2409), + [sym_quoting_lit] = STATE(2409), + [sym_syn_quoting_lit] = STATE(2409), + [sym_unquote_splicing_lit] = STATE(2409), + [sym_unquoting_lit] = STATE(2409), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2409), + [sym_package_lit] = STATE(2409), + [sym_include_reader_macro] = STATE(2409), + [sym_complex_num_lit] = STATE(2409), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(3806), + [sym_comment] = ACTIONS(3806), + [anon_sym_POUND_] = ACTIONS(3809), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(3812), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(3814), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(3812), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(3817), + [anon_sym_POUND_CARET] = ACTIONS(3820), + [anon_sym_LPAREN] = ACTIONS(3823), + [anon_sym_RPAREN] = ACTIONS(3826), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3990), - [anon_sym_cl] = ACTIONS(3923), - [aux_sym_accumulation_verb_token1] = ACTIONS(3926), - [anon_sym_for] = ACTIONS(3926), - [anon_sym_and] = ACTIONS(3926), - [anon_sym_as] = ACTIONS(3926), - [anon_sym_with] = ACTIONS(3926), - [anon_sym_do] = ACTIONS(3926), - [anon_sym_while] = ACTIONS(3926), - [anon_sym_until] = ACTIONS(3926), - [anon_sym_repeat] = ACTIONS(3926), - [anon_sym_when] = ACTIONS(3926), - [anon_sym_if] = ACTIONS(3926), - [anon_sym_unless] = ACTIONS(3926), - [anon_sym_always] = ACTIONS(3926), - [anon_sym_thereis] = ACTIONS(3926), - [anon_sym_never] = ACTIONS(3926), - [anon_sym_else] = ACTIONS(3926), - [anon_sym_finally] = ACTIONS(3926), - [anon_sym_return] = ACTIONS(3926), - [anon_sym_initially] = ACTIONS(3926), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(3992), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(3812), + [anon_sym_cl] = ACTIONS(3828), + [aux_sym_accumulation_verb_token1] = ACTIONS(3831), + [anon_sym_for] = ACTIONS(3831), + [anon_sym_and] = ACTIONS(3831), + [anon_sym_as] = ACTIONS(3831), + [anon_sym_with] = ACTIONS(3831), + [anon_sym_do] = ACTIONS(3831), + [anon_sym_while] = ACTIONS(3831), + [anon_sym_until] = ACTIONS(3831), + [anon_sym_repeat] = ACTIONS(3831), + [anon_sym_when] = ACTIONS(3831), + [anon_sym_if] = ACTIONS(3831), + [anon_sym_unless] = ACTIONS(3831), + [anon_sym_always] = ACTIONS(3831), + [anon_sym_thereis] = ACTIONS(3831), + [anon_sym_never] = ACTIONS(3831), + [anon_sym_else] = ACTIONS(3831), + [anon_sym_finally] = ACTIONS(3831), + [anon_sym_return] = ACTIONS(3831), + [anon_sym_initially] = ACTIONS(3831), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(3833), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [246] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2467), - [sym_num_lit] = STATE(2467), - [sym_kwd_lit] = STATE(2467), - [sym_str_lit] = STATE(2467), - [sym_char_lit] = STATE(2467), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2467), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2467), - [sym_set_lit] = STATE(2467), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2467), - [sym_splicing_read_cond_lit] = STATE(2467), - [sym_var_quoting_lit] = STATE(2467), - [sym_quoting_lit] = STATE(2467), - [sym_syn_quoting_lit] = STATE(2467), - [sym_unquote_splicing_lit] = STATE(2467), - [sym_unquoting_lit] = STATE(2467), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2467), - [sym_package_lit] = STATE(2467), - [sym_include_reader_macro] = STATE(2467), - [sym_complex_num_lit] = STATE(2467), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(3994), - [sym_comment] = ACTIONS(3994), - [anon_sym_POUND_] = ACTIONS(3997), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(4000), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(4002), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(4000), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(4005), - [anon_sym_POUND_CARET] = ACTIONS(4008), - [anon_sym_LPAREN] = ACTIONS(4011), - [anon_sym_RPAREN] = ACTIONS(4014), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2413), + [sym_num_lit] = STATE(2413), + [sym_kwd_lit] = STATE(2413), + [sym_str_lit] = STATE(2413), + [sym_char_lit] = STATE(2413), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2413), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2413), + [sym_set_lit] = STATE(2413), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2413), + [sym_splicing_read_cond_lit] = STATE(2413), + [sym_var_quoting_lit] = STATE(2413), + [sym_quoting_lit] = STATE(2413), + [sym_syn_quoting_lit] = STATE(2413), + [sym_unquote_splicing_lit] = STATE(2413), + [sym_unquoting_lit] = STATE(2413), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2413), + [sym_package_lit] = STATE(2413), + [sym_include_reader_macro] = STATE(2413), + [sym_complex_num_lit] = STATE(2413), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(3835), + [sym_comment] = ACTIONS(3835), + [anon_sym_POUND_] = ACTIONS(3838), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(3841), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(3843), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(3841), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(3846), + [anon_sym_POUND_CARET] = ACTIONS(3849), + [anon_sym_LPAREN] = ACTIONS(3852), + [anon_sym_RPAREN] = ACTIONS(3855), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(4000), - [anon_sym_cl] = ACTIONS(4016), - [aux_sym_accumulation_verb_token1] = ACTIONS(4019), - [anon_sym_for] = ACTIONS(4019), - [anon_sym_and] = ACTIONS(4019), - [anon_sym_as] = ACTIONS(4019), - [anon_sym_with] = ACTIONS(4019), - [anon_sym_do] = ACTIONS(4019), - [anon_sym_while] = ACTIONS(4019), - [anon_sym_until] = ACTIONS(4019), - [anon_sym_repeat] = ACTIONS(4019), - [anon_sym_when] = ACTIONS(4019), - [anon_sym_if] = ACTIONS(4019), - [anon_sym_unless] = ACTIONS(4019), - [anon_sym_always] = ACTIONS(4019), - [anon_sym_thereis] = ACTIONS(4019), - [anon_sym_never] = ACTIONS(4019), - [anon_sym_else] = ACTIONS(4019), - [anon_sym_finally] = ACTIONS(4019), - [anon_sym_return] = ACTIONS(4019), - [anon_sym_initially] = ACTIONS(4019), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(4021), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(3841), + [anon_sym_cl] = ACTIONS(3857), + [aux_sym_accumulation_verb_token1] = ACTIONS(3860), + [anon_sym_for] = ACTIONS(3860), + [anon_sym_and] = ACTIONS(3860), + [anon_sym_as] = ACTIONS(3860), + [anon_sym_with] = ACTIONS(3860), + [anon_sym_do] = ACTIONS(3860), + [anon_sym_while] = ACTIONS(3860), + [anon_sym_until] = ACTIONS(3860), + [anon_sym_repeat] = ACTIONS(3860), + [anon_sym_when] = ACTIONS(3860), + [anon_sym_if] = ACTIONS(3860), + [anon_sym_unless] = ACTIONS(3860), + [anon_sym_always] = ACTIONS(3860), + [anon_sym_thereis] = ACTIONS(3860), + [anon_sym_never] = ACTIONS(3860), + [anon_sym_else] = ACTIONS(3860), + [anon_sym_finally] = ACTIONS(3860), + [anon_sym_return] = ACTIONS(3860), + [anon_sym_initially] = ACTIONS(3860), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(3862), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [247] = { - [sym__gap] = STATE(271), - [sym_dis_expr] = STATE(271), - [sym__form] = STATE(2733), - [sym_num_lit] = STATE(2733), - [sym_kwd_lit] = STATE(2733), - [sym_str_lit] = STATE(2733), - [sym_char_lit] = STATE(2733), - [sym_sym_lit] = STATE(2762), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2733), - [sym__bare_list_lit] = STATE(1892), - [sym_vec_lit] = STATE(2733), - [sym_set_lit] = STATE(2733), - [sym__bare_set_lit] = STATE(1893), - [sym_read_cond_lit] = STATE(2733), - [sym_splicing_read_cond_lit] = STATE(2733), - [sym_var_quoting_lit] = STATE(2733), - [sym_quoting_lit] = STATE(2733), - [sym_syn_quoting_lit] = STATE(2733), - [sym_unquote_splicing_lit] = STATE(2733), - [sym_unquoting_lit] = STATE(2733), - [sym_defun] = STATE(1892), - [sym_for_clause_word] = STATE(405), - [sym__for_part] = STATE(1611), - [sym_loop_macro] = STATE(1892), - [sym_path_lit] = STATE(2733), - [sym_package_lit] = STATE(2733), - [sym_include_reader_macro] = STATE(2733), - [sym_complex_num_lit] = STATE(2733), - [aux_sym_dis_expr_repeat1] = STATE(271), - [aux_sym_list_lit_repeat1] = STATE(2840), - [aux_sym_for_clause_repeat1] = STATE(1282), - [sym__ws] = ACTIONS(4023), - [sym_comment] = ACTIONS(4023), - [anon_sym_POUND_] = ACTIONS(1596), - [anon_sym_POUND] = ACTIONS(1598), - [anon_sym_DOT] = ACTIONS(4025), - [aux_sym_num_lit_token1] = ACTIONS(1602), - [anon_sym_COLON] = ACTIONS(1604), - [anon_sym_COLON_COLON] = ACTIONS(1606), - [anon_sym_DQUOTE] = ACTIONS(1608), - [sym_nil_lit] = ACTIONS(4025), - [aux_sym_sym_lit_token1] = ACTIONS(1610), - [anon_sym_CARET] = ACTIONS(25), - [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(1612), - [anon_sym_POUND0A] = ACTIONS(1614), - [anon_sym_POUND0a] = ACTIONS(1614), - [anon_sym_POUND_QMARK] = ACTIONS(1616), - [anon_sym_POUND_QMARK_AT] = ACTIONS(1618), - [anon_sym_POUND_SQUOTE] = ACTIONS(1620), - [anon_sym_SQUOTE] = ACTIONS(1622), - [anon_sym_BQUOTE] = ACTIONS(1624), - [anon_sym_COMMA_AT] = ACTIONS(1626), - [anon_sym_COMMA] = ACTIONS(1628), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2417), + [sym_num_lit] = STATE(2417), + [sym_kwd_lit] = STATE(2417), + [sym_str_lit] = STATE(2417), + [sym_char_lit] = STATE(2417), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2417), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2417), + [sym_set_lit] = STATE(2417), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2417), + [sym_splicing_read_cond_lit] = STATE(2417), + [sym_var_quoting_lit] = STATE(2417), + [sym_quoting_lit] = STATE(2417), + [sym_syn_quoting_lit] = STATE(2417), + [sym_unquote_splicing_lit] = STATE(2417), + [sym_unquoting_lit] = STATE(2417), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2417), + [sym_package_lit] = STATE(2417), + [sym_include_reader_macro] = STATE(2417), + [sym_complex_num_lit] = STATE(2417), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(3864), + [sym_comment] = ACTIONS(3864), + [anon_sym_POUND_] = ACTIONS(3867), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(3870), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(3872), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(3870), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(3875), + [anon_sym_POUND_CARET] = ACTIONS(3878), + [anon_sym_LPAREN] = ACTIONS(3881), + [anon_sym_RPAREN] = ACTIONS(3884), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(4025), - [anon_sym_cl] = ACTIONS(1630), - [anon_sym_in] = ACTIONS(1632), - [anon_sym_across] = ACTIONS(1632), - [anon_sym_being] = ACTIONS(1632), - [anon_sym_using] = ACTIONS(1632), - [aux_sym_for_clause_word_token1] = ACTIONS(1634), - [anon_sym_below] = ACTIONS(1632), - [anon_sym_above] = ACTIONS(1632), - [anon_sym_from] = ACTIONS(1632), - [anon_sym_to] = ACTIONS(1632), - [anon_sym_upto] = ACTIONS(1632), - [anon_sym_upfrom] = ACTIONS(1632), - [anon_sym_downto] = ACTIONS(1632), - [anon_sym_downfrom] = ACTIONS(1632), - [anon_sym_on] = ACTIONS(1632), - [anon_sym_by] = ACTIONS(1632), - [anon_sym_then] = ACTIONS(1632), - [anon_sym_EQ] = ACTIONS(1632), - [anon_sym_POUNDP] = ACTIONS(1636), - [anon_sym_POUNDp] = ACTIONS(1636), - [sym_self_referential_reader_macro] = ACTIONS(4027), - [anon_sym_POUND_PLUS] = ACTIONS(1640), - [anon_sym_POUND_DASH] = ACTIONS(1640), - [anon_sym_POUNDC] = ACTIONS(1642), - [anon_sym_POUNDc] = ACTIONS(1642), + [sym_fancy_literal] = ACTIONS(3870), + [anon_sym_cl] = ACTIONS(3886), + [aux_sym_accumulation_verb_token1] = ACTIONS(3889), + [anon_sym_for] = ACTIONS(3889), + [anon_sym_and] = ACTIONS(3889), + [anon_sym_as] = ACTIONS(3889), + [anon_sym_with] = ACTIONS(3889), + [anon_sym_do] = ACTIONS(3889), + [anon_sym_while] = ACTIONS(3889), + [anon_sym_until] = ACTIONS(3889), + [anon_sym_repeat] = ACTIONS(3889), + [anon_sym_when] = ACTIONS(3889), + [anon_sym_if] = ACTIONS(3889), + [anon_sym_unless] = ACTIONS(3889), + [anon_sym_always] = ACTIONS(3889), + [anon_sym_thereis] = ACTIONS(3889), + [anon_sym_never] = ACTIONS(3889), + [anon_sym_else] = ACTIONS(3889), + [anon_sym_finally] = ACTIONS(3889), + [anon_sym_return] = ACTIONS(3889), + [anon_sym_initially] = ACTIONS(3889), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(3891), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [248] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2092), - [sym_num_lit] = STATE(2092), - [sym_kwd_lit] = STATE(2092), - [sym_str_lit] = STATE(2092), - [sym_char_lit] = STATE(2092), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2092), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2092), - [sym_set_lit] = STATE(2092), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2092), - [sym_splicing_read_cond_lit] = STATE(2092), - [sym_var_quoting_lit] = STATE(2092), - [sym_quoting_lit] = STATE(2092), - [sym_syn_quoting_lit] = STATE(2092), - [sym_unquote_splicing_lit] = STATE(2092), - [sym_unquoting_lit] = STATE(2092), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2092), - [sym_package_lit] = STATE(2092), - [sym_include_reader_macro] = STATE(2092), - [sym_complex_num_lit] = STATE(2092), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(1580), - [sym_comment] = ACTIONS(1580), - [anon_sym_POUND_] = ACTIONS(1352), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(4029), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(1357), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(4029), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1360), - [anon_sym_POUND_CARET] = ACTIONS(1363), - [anon_sym_LPAREN] = ACTIONS(1366), - [anon_sym_RPAREN] = ACTIONS(1369), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2419), + [sym_num_lit] = STATE(2419), + [sym_kwd_lit] = STATE(2419), + [sym_str_lit] = STATE(2419), + [sym_char_lit] = STATE(2419), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2419), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2419), + [sym_set_lit] = STATE(2419), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2419), + [sym_splicing_read_cond_lit] = STATE(2419), + [sym_var_quoting_lit] = STATE(2419), + [sym_quoting_lit] = STATE(2419), + [sym_syn_quoting_lit] = STATE(2419), + [sym_unquote_splicing_lit] = STATE(2419), + [sym_unquoting_lit] = STATE(2419), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2419), + [sym_package_lit] = STATE(2419), + [sym_include_reader_macro] = STATE(2419), + [sym_complex_num_lit] = STATE(2419), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(3864), + [sym_comment] = ACTIONS(3864), + [anon_sym_POUND_] = ACTIONS(3867), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(3893), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(3872), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(3893), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(3875), + [anon_sym_POUND_CARET] = ACTIONS(3878), + [anon_sym_LPAREN] = ACTIONS(3881), + [anon_sym_RPAREN] = ACTIONS(3884), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(4029), - [anon_sym_cl] = ACTIONS(1371), - [aux_sym_accumulation_verb_token1] = ACTIONS(1374), - [anon_sym_for] = ACTIONS(1374), - [anon_sym_and] = ACTIONS(1374), - [anon_sym_as] = ACTIONS(1374), - [anon_sym_with] = ACTIONS(1374), - [anon_sym_do] = ACTIONS(1374), - [anon_sym_while] = ACTIONS(1374), - [anon_sym_until] = ACTIONS(1374), - [anon_sym_repeat] = ACTIONS(1374), - [anon_sym_when] = ACTIONS(1374), - [anon_sym_if] = ACTIONS(1374), - [anon_sym_unless] = ACTIONS(1374), - [anon_sym_always] = ACTIONS(1374), - [anon_sym_thereis] = ACTIONS(1374), - [anon_sym_never] = ACTIONS(1374), - [anon_sym_else] = ACTIONS(1374), - [anon_sym_finally] = ACTIONS(1374), - [anon_sym_return] = ACTIONS(1374), - [anon_sym_initially] = ACTIONS(1374), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(4031), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(3893), + [anon_sym_cl] = ACTIONS(3886), + [aux_sym_accumulation_verb_token1] = ACTIONS(3889), + [anon_sym_for] = ACTIONS(3889), + [anon_sym_and] = ACTIONS(3889), + [anon_sym_as] = ACTIONS(3889), + [anon_sym_with] = ACTIONS(3889), + [anon_sym_do] = ACTIONS(3889), + [anon_sym_while] = ACTIONS(3889), + [anon_sym_until] = ACTIONS(3889), + [anon_sym_repeat] = ACTIONS(3889), + [anon_sym_when] = ACTIONS(3889), + [anon_sym_if] = ACTIONS(3889), + [anon_sym_unless] = ACTIONS(3889), + [anon_sym_always] = ACTIONS(3889), + [anon_sym_thereis] = ACTIONS(3889), + [anon_sym_never] = ACTIONS(3889), + [anon_sym_else] = ACTIONS(3889), + [anon_sym_finally] = ACTIONS(3889), + [anon_sym_return] = ACTIONS(3889), + [anon_sym_initially] = ACTIONS(3889), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(3895), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [249] = { - [sym__gap] = STATE(272), - [sym_dis_expr] = STATE(272), - [sym__form] = STATE(2734), - [sym_num_lit] = STATE(2734), - [sym_kwd_lit] = STATE(2734), - [sym_str_lit] = STATE(2734), - [sym_char_lit] = STATE(2734), - [sym_sym_lit] = STATE(2762), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2734), - [sym__bare_list_lit] = STATE(1892), - [sym_vec_lit] = STATE(2734), - [sym_set_lit] = STATE(2734), - [sym__bare_set_lit] = STATE(1893), - [sym_read_cond_lit] = STATE(2734), - [sym_splicing_read_cond_lit] = STATE(2734), - [sym_var_quoting_lit] = STATE(2734), - [sym_quoting_lit] = STATE(2734), - [sym_syn_quoting_lit] = STATE(2734), - [sym_unquote_splicing_lit] = STATE(2734), - [sym_unquoting_lit] = STATE(2734), - [sym_defun] = STATE(1892), - [sym_for_clause_word] = STATE(405), - [sym__for_part] = STATE(1611), - [sym_loop_macro] = STATE(1892), - [sym_path_lit] = STATE(2734), - [sym_package_lit] = STATE(2734), - [sym_include_reader_macro] = STATE(2734), - [sym_complex_num_lit] = STATE(2734), - [aux_sym_dis_expr_repeat1] = STATE(272), - [aux_sym_list_lit_repeat1] = STATE(2840), - [aux_sym_for_clause_repeat1] = STATE(1256), - [sym__ws] = ACTIONS(4033), - [sym_comment] = ACTIONS(4033), - [anon_sym_POUND_] = ACTIONS(1596), - [anon_sym_POUND] = ACTIONS(1598), - [anon_sym_DOT] = ACTIONS(4035), - [aux_sym_num_lit_token1] = ACTIONS(1602), - [anon_sym_COLON] = ACTIONS(1604), - [anon_sym_COLON_COLON] = ACTIONS(1606), - [anon_sym_DQUOTE] = ACTIONS(1608), - [sym_nil_lit] = ACTIONS(4035), - [aux_sym_sym_lit_token1] = ACTIONS(1610), - [anon_sym_CARET] = ACTIONS(25), - [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(1612), - [anon_sym_POUND0A] = ACTIONS(1614), - [anon_sym_POUND0a] = ACTIONS(1614), - [anon_sym_POUND_QMARK] = ACTIONS(1616), - [anon_sym_POUND_QMARK_AT] = ACTIONS(1618), - [anon_sym_POUND_SQUOTE] = ACTIONS(1620), - [anon_sym_SQUOTE] = ACTIONS(1622), - [anon_sym_BQUOTE] = ACTIONS(1624), - [anon_sym_COMMA_AT] = ACTIONS(1626), - [anon_sym_COMMA] = ACTIONS(1628), + [sym__gap] = STATE(263), + [sym_dis_expr] = STATE(263), + [sym__form] = STATE(2420), + [sym_num_lit] = STATE(2420), + [sym_kwd_lit] = STATE(2420), + [sym_str_lit] = STATE(2420), + [sym_char_lit] = STATE(2420), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2420), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2420), + [sym_set_lit] = STATE(2420), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2420), + [sym_splicing_read_cond_lit] = STATE(2420), + [sym_var_quoting_lit] = STATE(2420), + [sym_quoting_lit] = STATE(2420), + [sym_syn_quoting_lit] = STATE(2420), + [sym_unquote_splicing_lit] = STATE(2420), + [sym_unquoting_lit] = STATE(2420), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2420), + [sym_package_lit] = STATE(2420), + [sym_include_reader_macro] = STATE(2420), + [sym_complex_num_lit] = STATE(2420), + [aux_sym_dis_expr_repeat1] = STATE(263), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(3897), + [sym_comment] = ACTIONS(3897), + [anon_sym_POUND_] = ACTIONS(3867), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(3900), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(3872), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(3900), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(3875), + [anon_sym_POUND_CARET] = ACTIONS(3878), + [anon_sym_LPAREN] = ACTIONS(3881), + [anon_sym_RPAREN] = ACTIONS(3884), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(4035), - [anon_sym_cl] = ACTIONS(1630), - [anon_sym_in] = ACTIONS(1632), - [anon_sym_across] = ACTIONS(1632), - [anon_sym_being] = ACTIONS(1632), - [anon_sym_using] = ACTIONS(1632), - [aux_sym_for_clause_word_token1] = ACTIONS(1634), - [anon_sym_below] = ACTIONS(1632), - [anon_sym_above] = ACTIONS(1632), - [anon_sym_from] = ACTIONS(1632), - [anon_sym_to] = ACTIONS(1632), - [anon_sym_upto] = ACTIONS(1632), - [anon_sym_upfrom] = ACTIONS(1632), - [anon_sym_downto] = ACTIONS(1632), - [anon_sym_downfrom] = ACTIONS(1632), - [anon_sym_on] = ACTIONS(1632), - [anon_sym_by] = ACTIONS(1632), - [anon_sym_then] = ACTIONS(1632), - [anon_sym_EQ] = ACTIONS(1632), - [anon_sym_POUNDP] = ACTIONS(1636), - [anon_sym_POUNDp] = ACTIONS(1636), - [sym_self_referential_reader_macro] = ACTIONS(4037), - [anon_sym_POUND_PLUS] = ACTIONS(1640), - [anon_sym_POUND_DASH] = ACTIONS(1640), - [anon_sym_POUNDC] = ACTIONS(1642), - [anon_sym_POUNDc] = ACTIONS(1642), + [sym_fancy_literal] = ACTIONS(3900), + [anon_sym_cl] = ACTIONS(3886), + [aux_sym_accumulation_verb_token1] = ACTIONS(3889), + [anon_sym_for] = ACTIONS(3889), + [anon_sym_and] = ACTIONS(3889), + [anon_sym_as] = ACTIONS(3889), + [anon_sym_with] = ACTIONS(3889), + [anon_sym_do] = ACTIONS(3889), + [anon_sym_while] = ACTIONS(3889), + [anon_sym_until] = ACTIONS(3889), + [anon_sym_repeat] = ACTIONS(3889), + [anon_sym_when] = ACTIONS(3889), + [anon_sym_if] = ACTIONS(3889), + [anon_sym_unless] = ACTIONS(3889), + [anon_sym_always] = ACTIONS(3889), + [anon_sym_thereis] = ACTIONS(3889), + [anon_sym_never] = ACTIONS(3889), + [anon_sym_else] = ACTIONS(3889), + [anon_sym_finally] = ACTIONS(3889), + [anon_sym_return] = ACTIONS(3889), + [anon_sym_initially] = ACTIONS(3889), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(3902), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [250] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2151), - [sym_num_lit] = STATE(2151), - [sym_kwd_lit] = STATE(2151), - [sym_str_lit] = STATE(2151), - [sym_char_lit] = STATE(2151), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2151), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2151), - [sym_set_lit] = STATE(2151), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2151), - [sym_splicing_read_cond_lit] = STATE(2151), - [sym_var_quoting_lit] = STATE(2151), - [sym_quoting_lit] = STATE(2151), - [sym_syn_quoting_lit] = STATE(2151), - [sym_unquote_splicing_lit] = STATE(2151), - [sym_unquoting_lit] = STATE(2151), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2151), - [sym_package_lit] = STATE(2151), - [sym_include_reader_macro] = STATE(2151), - [sym_complex_num_lit] = STATE(2151), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(3901), - [sym_comment] = ACTIONS(3901), - [anon_sym_POUND_] = ACTIONS(3904), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(4039), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(3909), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(4039), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(3912), - [anon_sym_POUND_CARET] = ACTIONS(3915), - [anon_sym_LPAREN] = ACTIONS(3918), - [anon_sym_RPAREN] = ACTIONS(3921), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2425), + [sym_num_lit] = STATE(2425), + [sym_kwd_lit] = STATE(2425), + [sym_str_lit] = STATE(2425), + [sym_char_lit] = STATE(2425), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2425), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2425), + [sym_set_lit] = STATE(2425), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2425), + [sym_splicing_read_cond_lit] = STATE(2425), + [sym_var_quoting_lit] = STATE(2425), + [sym_quoting_lit] = STATE(2425), + [sym_syn_quoting_lit] = STATE(2425), + [sym_unquote_splicing_lit] = STATE(2425), + [sym_unquoting_lit] = STATE(2425), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2425), + [sym_package_lit] = STATE(2425), + [sym_include_reader_macro] = STATE(2425), + [sym_complex_num_lit] = STATE(2425), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(3835), + [sym_comment] = ACTIONS(3835), + [anon_sym_POUND_] = ACTIONS(3838), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(3904), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(3843), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(3904), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(3846), + [anon_sym_POUND_CARET] = ACTIONS(3849), + [anon_sym_LPAREN] = ACTIONS(3852), + [anon_sym_RPAREN] = ACTIONS(3855), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(4039), - [anon_sym_cl] = ACTIONS(3923), - [aux_sym_accumulation_verb_token1] = ACTIONS(3926), - [anon_sym_for] = ACTIONS(3926), - [anon_sym_and] = ACTIONS(3926), - [anon_sym_as] = ACTIONS(3926), - [anon_sym_with] = ACTIONS(3926), - [anon_sym_do] = ACTIONS(3926), - [anon_sym_while] = ACTIONS(3926), - [anon_sym_until] = ACTIONS(3926), - [anon_sym_repeat] = ACTIONS(3926), - [anon_sym_when] = ACTIONS(3926), - [anon_sym_if] = ACTIONS(3926), - [anon_sym_unless] = ACTIONS(3926), - [anon_sym_always] = ACTIONS(3926), - [anon_sym_thereis] = ACTIONS(3926), - [anon_sym_never] = ACTIONS(3926), - [anon_sym_else] = ACTIONS(3926), - [anon_sym_finally] = ACTIONS(3926), - [anon_sym_return] = ACTIONS(3926), - [anon_sym_initially] = ACTIONS(3926), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(4041), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(3904), + [anon_sym_cl] = ACTIONS(3857), + [aux_sym_accumulation_verb_token1] = ACTIONS(3860), + [anon_sym_for] = ACTIONS(3860), + [anon_sym_and] = ACTIONS(3860), + [anon_sym_as] = ACTIONS(3860), + [anon_sym_with] = ACTIONS(3860), + [anon_sym_do] = ACTIONS(3860), + [anon_sym_while] = ACTIONS(3860), + [anon_sym_until] = ACTIONS(3860), + [anon_sym_repeat] = ACTIONS(3860), + [anon_sym_when] = ACTIONS(3860), + [anon_sym_if] = ACTIONS(3860), + [anon_sym_unless] = ACTIONS(3860), + [anon_sym_always] = ACTIONS(3860), + [anon_sym_thereis] = ACTIONS(3860), + [anon_sym_never] = ACTIONS(3860), + [anon_sym_else] = ACTIONS(3860), + [anon_sym_finally] = ACTIONS(3860), + [anon_sym_return] = ACTIONS(3860), + [anon_sym_initially] = ACTIONS(3860), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(3906), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [251] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2190), - [sym_num_lit] = STATE(2190), - [sym_kwd_lit] = STATE(2190), - [sym_str_lit] = STATE(2190), - [sym_char_lit] = STATE(2190), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2190), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2190), - [sym_set_lit] = STATE(2190), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2190), - [sym_splicing_read_cond_lit] = STATE(2190), - [sym_var_quoting_lit] = STATE(2190), - [sym_quoting_lit] = STATE(2190), - [sym_syn_quoting_lit] = STATE(2190), - [sym_unquote_splicing_lit] = STATE(2190), - [sym_unquoting_lit] = STATE(2190), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2190), - [sym_package_lit] = STATE(2190), - [sym_include_reader_macro] = STATE(2190), - [sym_complex_num_lit] = STATE(2190), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(3390), - [sym_comment] = ACTIONS(3390), - [anon_sym_POUND_] = ACTIONS(3364), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(4043), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(3369), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(4043), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(3372), - [anon_sym_POUND_CARET] = ACTIONS(3375), - [anon_sym_LPAREN] = ACTIONS(3378), - [anon_sym_RPAREN] = ACTIONS(3381), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2429), + [sym_num_lit] = STATE(2429), + [sym_kwd_lit] = STATE(2429), + [sym_str_lit] = STATE(2429), + [sym_char_lit] = STATE(2429), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2429), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2429), + [sym_set_lit] = STATE(2429), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2429), + [sym_splicing_read_cond_lit] = STATE(2429), + [sym_var_quoting_lit] = STATE(2429), + [sym_quoting_lit] = STATE(2429), + [sym_syn_quoting_lit] = STATE(2429), + [sym_unquote_splicing_lit] = STATE(2429), + [sym_unquoting_lit] = STATE(2429), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2429), + [sym_package_lit] = STATE(2429), + [sym_include_reader_macro] = STATE(2429), + [sym_complex_num_lit] = STATE(2429), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(3864), + [sym_comment] = ACTIONS(3864), + [anon_sym_POUND_] = ACTIONS(3867), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(3908), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(3872), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(3908), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(3875), + [anon_sym_POUND_CARET] = ACTIONS(3878), + [anon_sym_LPAREN] = ACTIONS(3881), + [anon_sym_RPAREN] = ACTIONS(3884), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(4043), - [anon_sym_cl] = ACTIONS(3383), - [aux_sym_accumulation_verb_token1] = ACTIONS(3386), - [anon_sym_for] = ACTIONS(3386), - [anon_sym_and] = ACTIONS(3386), - [anon_sym_as] = ACTIONS(3386), - [anon_sym_with] = ACTIONS(3386), - [anon_sym_do] = ACTIONS(3386), - [anon_sym_while] = ACTIONS(3386), - [anon_sym_until] = ACTIONS(3386), - [anon_sym_repeat] = ACTIONS(3386), - [anon_sym_when] = ACTIONS(3386), - [anon_sym_if] = ACTIONS(3386), - [anon_sym_unless] = ACTIONS(3386), - [anon_sym_always] = ACTIONS(3386), - [anon_sym_thereis] = ACTIONS(3386), - [anon_sym_never] = ACTIONS(3386), - [anon_sym_else] = ACTIONS(3386), - [anon_sym_finally] = ACTIONS(3386), - [anon_sym_return] = ACTIONS(3386), - [anon_sym_initially] = ACTIONS(3386), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(4045), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(3908), + [anon_sym_cl] = ACTIONS(3886), + [aux_sym_accumulation_verb_token1] = ACTIONS(3889), + [anon_sym_for] = ACTIONS(3889), + [anon_sym_and] = ACTIONS(3889), + [anon_sym_as] = ACTIONS(3889), + [anon_sym_with] = ACTIONS(3889), + [anon_sym_do] = ACTIONS(3889), + [anon_sym_while] = ACTIONS(3889), + [anon_sym_until] = ACTIONS(3889), + [anon_sym_repeat] = ACTIONS(3889), + [anon_sym_when] = ACTIONS(3889), + [anon_sym_if] = ACTIONS(3889), + [anon_sym_unless] = ACTIONS(3889), + [anon_sym_always] = ACTIONS(3889), + [anon_sym_thereis] = ACTIONS(3889), + [anon_sym_never] = ACTIONS(3889), + [anon_sym_else] = ACTIONS(3889), + [anon_sym_finally] = ACTIONS(3889), + [anon_sym_return] = ACTIONS(3889), + [anon_sym_initially] = ACTIONS(3889), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(3910), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [252] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2188), - [sym_num_lit] = STATE(2188), - [sym_kwd_lit] = STATE(2188), - [sym_str_lit] = STATE(2188), - [sym_char_lit] = STATE(2188), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2188), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2188), - [sym_set_lit] = STATE(2188), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2188), - [sym_splicing_read_cond_lit] = STATE(2188), - [sym_var_quoting_lit] = STATE(2188), - [sym_quoting_lit] = STATE(2188), - [sym_syn_quoting_lit] = STATE(2188), - [sym_unquote_splicing_lit] = STATE(2188), - [sym_unquoting_lit] = STATE(2188), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2188), - [sym_package_lit] = STATE(2188), - [sym_include_reader_macro] = STATE(2188), - [sym_complex_num_lit] = STATE(2188), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(3397), - [sym_comment] = ACTIONS(3397), - [anon_sym_POUND_] = ACTIONS(3400), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(4047), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(3405), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(4047), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(3408), - [anon_sym_POUND_CARET] = ACTIONS(3411), - [anon_sym_LPAREN] = ACTIONS(3414), - [anon_sym_RPAREN] = ACTIONS(3417), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2431), + [sym_num_lit] = STATE(2431), + [sym_kwd_lit] = STATE(2431), + [sym_str_lit] = STATE(2431), + [sym_char_lit] = STATE(2431), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2431), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2431), + [sym_set_lit] = STATE(2431), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2431), + [sym_splicing_read_cond_lit] = STATE(2431), + [sym_var_quoting_lit] = STATE(2431), + [sym_quoting_lit] = STATE(2431), + [sym_syn_quoting_lit] = STATE(2431), + [sym_unquote_splicing_lit] = STATE(2431), + [sym_unquoting_lit] = STATE(2431), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2431), + [sym_package_lit] = STATE(2431), + [sym_include_reader_macro] = STATE(2431), + [sym_complex_num_lit] = STATE(2431), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(3864), + [sym_comment] = ACTIONS(3864), + [anon_sym_POUND_] = ACTIONS(3867), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(3912), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(3872), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(3912), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(3875), + [anon_sym_POUND_CARET] = ACTIONS(3878), + [anon_sym_LPAREN] = ACTIONS(3881), + [anon_sym_RPAREN] = ACTIONS(3884), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(4047), - [anon_sym_cl] = ACTIONS(3419), - [aux_sym_accumulation_verb_token1] = ACTIONS(3422), - [anon_sym_for] = ACTIONS(3422), - [anon_sym_and] = ACTIONS(3422), - [anon_sym_as] = ACTIONS(3422), - [anon_sym_with] = ACTIONS(3422), - [anon_sym_do] = ACTIONS(3422), - [anon_sym_while] = ACTIONS(3422), - [anon_sym_until] = ACTIONS(3422), - [anon_sym_repeat] = ACTIONS(3422), - [anon_sym_when] = ACTIONS(3422), - [anon_sym_if] = ACTIONS(3422), - [anon_sym_unless] = ACTIONS(3422), - [anon_sym_always] = ACTIONS(3422), - [anon_sym_thereis] = ACTIONS(3422), - [anon_sym_never] = ACTIONS(3422), - [anon_sym_else] = ACTIONS(3422), - [anon_sym_finally] = ACTIONS(3422), - [anon_sym_return] = ACTIONS(3422), - [anon_sym_initially] = ACTIONS(3422), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(4049), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(3912), + [anon_sym_cl] = ACTIONS(3886), + [aux_sym_accumulation_verb_token1] = ACTIONS(3889), + [anon_sym_for] = ACTIONS(3889), + [anon_sym_and] = ACTIONS(3889), + [anon_sym_as] = ACTIONS(3889), + [anon_sym_with] = ACTIONS(3889), + [anon_sym_do] = ACTIONS(3889), + [anon_sym_while] = ACTIONS(3889), + [anon_sym_until] = ACTIONS(3889), + [anon_sym_repeat] = ACTIONS(3889), + [anon_sym_when] = ACTIONS(3889), + [anon_sym_if] = ACTIONS(3889), + [anon_sym_unless] = ACTIONS(3889), + [anon_sym_always] = ACTIONS(3889), + [anon_sym_thereis] = ACTIONS(3889), + [anon_sym_never] = ACTIONS(3889), + [anon_sym_else] = ACTIONS(3889), + [anon_sym_finally] = ACTIONS(3889), + [anon_sym_return] = ACTIONS(3889), + [anon_sym_initially] = ACTIONS(3889), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(3914), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [253] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2157), - [sym_num_lit] = STATE(2157), - [sym_kwd_lit] = STATE(2157), - [sym_str_lit] = STATE(2157), - [sym_char_lit] = STATE(2157), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2157), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2157), - [sym_set_lit] = STATE(2157), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2157), - [sym_splicing_read_cond_lit] = STATE(2157), - [sym_var_quoting_lit] = STATE(2157), - [sym_quoting_lit] = STATE(2157), - [sym_syn_quoting_lit] = STATE(2157), - [sym_unquote_splicing_lit] = STATE(2157), - [sym_unquoting_lit] = STATE(2157), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2157), - [sym_package_lit] = STATE(2157), - [sym_include_reader_macro] = STATE(2157), - [sym_complex_num_lit] = STATE(2157), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(3861), - [sym_comment] = ACTIONS(3861), - [anon_sym_POUND_] = ACTIONS(3722), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(4051), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(3727), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(4051), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(3730), - [anon_sym_POUND_CARET] = ACTIONS(3733), - [anon_sym_LPAREN] = ACTIONS(3736), - [anon_sym_RPAREN] = ACTIONS(3739), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(264), + [sym_dis_expr] = STATE(264), + [sym__form] = STATE(2432), + [sym_num_lit] = STATE(2432), + [sym_kwd_lit] = STATE(2432), + [sym_str_lit] = STATE(2432), + [sym_char_lit] = STATE(2432), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2432), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2432), + [sym_set_lit] = STATE(2432), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2432), + [sym_splicing_read_cond_lit] = STATE(2432), + [sym_var_quoting_lit] = STATE(2432), + [sym_quoting_lit] = STATE(2432), + [sym_syn_quoting_lit] = STATE(2432), + [sym_unquote_splicing_lit] = STATE(2432), + [sym_unquoting_lit] = STATE(2432), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2432), + [sym_package_lit] = STATE(2432), + [sym_include_reader_macro] = STATE(2432), + [sym_complex_num_lit] = STATE(2432), + [aux_sym_dis_expr_repeat1] = STATE(264), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(3916), + [sym_comment] = ACTIONS(3916), + [anon_sym_POUND_] = ACTIONS(3867), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(3919), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(3872), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(3919), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(3875), + [anon_sym_POUND_CARET] = ACTIONS(3878), + [anon_sym_LPAREN] = ACTIONS(3881), + [anon_sym_RPAREN] = ACTIONS(3884), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(4051), - [anon_sym_cl] = ACTIONS(3741), - [aux_sym_accumulation_verb_token1] = ACTIONS(3744), - [anon_sym_for] = ACTIONS(3744), - [anon_sym_and] = ACTIONS(3744), - [anon_sym_as] = ACTIONS(3744), - [anon_sym_with] = ACTIONS(3744), - [anon_sym_do] = ACTIONS(3744), - [anon_sym_while] = ACTIONS(3744), - [anon_sym_until] = ACTIONS(3744), - [anon_sym_repeat] = ACTIONS(3744), - [anon_sym_when] = ACTIONS(3744), - [anon_sym_if] = ACTIONS(3744), - [anon_sym_unless] = ACTIONS(3744), - [anon_sym_always] = ACTIONS(3744), - [anon_sym_thereis] = ACTIONS(3744), - [anon_sym_never] = ACTIONS(3744), - [anon_sym_else] = ACTIONS(3744), - [anon_sym_finally] = ACTIONS(3744), - [anon_sym_return] = ACTIONS(3744), - [anon_sym_initially] = ACTIONS(3744), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(4053), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(3919), + [anon_sym_cl] = ACTIONS(3886), + [aux_sym_accumulation_verb_token1] = ACTIONS(3889), + [anon_sym_for] = ACTIONS(3889), + [anon_sym_and] = ACTIONS(3889), + [anon_sym_as] = ACTIONS(3889), + [anon_sym_with] = ACTIONS(3889), + [anon_sym_do] = ACTIONS(3889), + [anon_sym_while] = ACTIONS(3889), + [anon_sym_until] = ACTIONS(3889), + [anon_sym_repeat] = ACTIONS(3889), + [anon_sym_when] = ACTIONS(3889), + [anon_sym_if] = ACTIONS(3889), + [anon_sym_unless] = ACTIONS(3889), + [anon_sym_always] = ACTIONS(3889), + [anon_sym_thereis] = ACTIONS(3889), + [anon_sym_never] = ACTIONS(3889), + [anon_sym_else] = ACTIONS(3889), + [anon_sym_finally] = ACTIONS(3889), + [anon_sym_return] = ACTIONS(3889), + [anon_sym_initially] = ACTIONS(3889), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(3921), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [254] = { - [sym__gap] = STATE(187), - [sym_dis_expr] = STATE(187), - [sym__form] = STATE(2187), - [sym_num_lit] = STATE(2187), - [sym_kwd_lit] = STATE(2187), - [sym_str_lit] = STATE(2187), - [sym_char_lit] = STATE(2187), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2187), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2187), - [sym_set_lit] = STATE(2187), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2187), - [sym_splicing_read_cond_lit] = STATE(2187), - [sym_var_quoting_lit] = STATE(2187), - [sym_quoting_lit] = STATE(2187), - [sym_syn_quoting_lit] = STATE(2187), - [sym_unquote_splicing_lit] = STATE(2187), - [sym_unquoting_lit] = STATE(2187), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2187), - [sym_package_lit] = STATE(2187), - [sym_include_reader_macro] = STATE(2187), - [sym_complex_num_lit] = STATE(2187), - [aux_sym_dis_expr_repeat1] = STATE(187), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(4055), - [sym_comment] = ACTIONS(4055), - [anon_sym_POUND_] = ACTIONS(3400), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(4058), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(3405), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(4058), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(3408), - [anon_sym_POUND_CARET] = ACTIONS(3411), - [anon_sym_LPAREN] = ACTIONS(3414), - [anon_sym_RPAREN] = ACTIONS(3417), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2437), + [sym_num_lit] = STATE(2437), + [sym_kwd_lit] = STATE(2437), + [sym_str_lit] = STATE(2437), + [sym_char_lit] = STATE(2437), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2437), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2437), + [sym_set_lit] = STATE(2437), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2437), + [sym_splicing_read_cond_lit] = STATE(2437), + [sym_var_quoting_lit] = STATE(2437), + [sym_quoting_lit] = STATE(2437), + [sym_syn_quoting_lit] = STATE(2437), + [sym_unquote_splicing_lit] = STATE(2437), + [sym_unquoting_lit] = STATE(2437), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2437), + [sym_package_lit] = STATE(2437), + [sym_include_reader_macro] = STATE(2437), + [sym_complex_num_lit] = STATE(2437), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(3923), + [sym_comment] = ACTIONS(3923), + [anon_sym_POUND_] = ACTIONS(3926), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(3929), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(3931), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(3929), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(3934), + [anon_sym_POUND_CARET] = ACTIONS(3937), + [anon_sym_LPAREN] = ACTIONS(3940), + [anon_sym_RPAREN] = ACTIONS(3943), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(4058), - [anon_sym_cl] = ACTIONS(3419), - [aux_sym_accumulation_verb_token1] = ACTIONS(3422), - [anon_sym_for] = ACTIONS(3422), - [anon_sym_and] = ACTIONS(3422), - [anon_sym_as] = ACTIONS(3422), - [anon_sym_with] = ACTIONS(3422), - [anon_sym_do] = ACTIONS(3422), - [anon_sym_while] = ACTIONS(3422), - [anon_sym_until] = ACTIONS(3422), - [anon_sym_repeat] = ACTIONS(3422), - [anon_sym_when] = ACTIONS(3422), - [anon_sym_if] = ACTIONS(3422), - [anon_sym_unless] = ACTIONS(3422), - [anon_sym_always] = ACTIONS(3422), - [anon_sym_thereis] = ACTIONS(3422), - [anon_sym_never] = ACTIONS(3422), - [anon_sym_else] = ACTIONS(3422), - [anon_sym_finally] = ACTIONS(3422), - [anon_sym_return] = ACTIONS(3422), - [anon_sym_initially] = ACTIONS(3422), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(4060), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(3929), + [anon_sym_cl] = ACTIONS(3945), + [aux_sym_accumulation_verb_token1] = ACTIONS(3948), + [anon_sym_for] = ACTIONS(3948), + [anon_sym_and] = ACTIONS(3948), + [anon_sym_as] = ACTIONS(3948), + [anon_sym_with] = ACTIONS(3948), + [anon_sym_do] = ACTIONS(3948), + [anon_sym_while] = ACTIONS(3948), + [anon_sym_until] = ACTIONS(3948), + [anon_sym_repeat] = ACTIONS(3948), + [anon_sym_when] = ACTIONS(3948), + [anon_sym_if] = ACTIONS(3948), + [anon_sym_unless] = ACTIONS(3948), + [anon_sym_always] = ACTIONS(3948), + [anon_sym_thereis] = ACTIONS(3948), + [anon_sym_never] = ACTIONS(3948), + [anon_sym_else] = ACTIONS(3948), + [anon_sym_finally] = ACTIONS(3948), + [anon_sym_return] = ACTIONS(3948), + [anon_sym_initially] = ACTIONS(3948), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(3950), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [255] = { - [sym__gap] = STATE(186), - [sym_dis_expr] = STATE(186), - [sym__form] = STATE(2185), - [sym_num_lit] = STATE(2185), - [sym_kwd_lit] = STATE(2185), - [sym_str_lit] = STATE(2185), - [sym_char_lit] = STATE(2185), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2185), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2185), - [sym_set_lit] = STATE(2185), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2185), - [sym_splicing_read_cond_lit] = STATE(2185), - [sym_var_quoting_lit] = STATE(2185), - [sym_quoting_lit] = STATE(2185), - [sym_syn_quoting_lit] = STATE(2185), - [sym_unquote_splicing_lit] = STATE(2185), - [sym_unquoting_lit] = STATE(2185), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2185), - [sym_package_lit] = STATE(2185), - [sym_include_reader_macro] = STATE(2185), - [sym_complex_num_lit] = STATE(2185), - [aux_sym_dis_expr_repeat1] = STATE(186), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(4062), - [sym_comment] = ACTIONS(4062), - [anon_sym_POUND_] = ACTIONS(3400), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(4065), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(3405), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(4065), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(3408), - [anon_sym_POUND_CARET] = ACTIONS(3411), - [anon_sym_LPAREN] = ACTIONS(3414), - [anon_sym_RPAREN] = ACTIONS(3417), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2439), + [sym_num_lit] = STATE(2439), + [sym_kwd_lit] = STATE(2439), + [sym_str_lit] = STATE(2439), + [sym_char_lit] = STATE(2439), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2439), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2439), + [sym_set_lit] = STATE(2439), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2439), + [sym_splicing_read_cond_lit] = STATE(2439), + [sym_var_quoting_lit] = STATE(2439), + [sym_quoting_lit] = STATE(2439), + [sym_syn_quoting_lit] = STATE(2439), + [sym_unquote_splicing_lit] = STATE(2439), + [sym_unquoting_lit] = STATE(2439), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2439), + [sym_package_lit] = STATE(2439), + [sym_include_reader_macro] = STATE(2439), + [sym_complex_num_lit] = STATE(2439), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(3923), + [sym_comment] = ACTIONS(3923), + [anon_sym_POUND_] = ACTIONS(3926), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(3952), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(3931), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(3952), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(3934), + [anon_sym_POUND_CARET] = ACTIONS(3937), + [anon_sym_LPAREN] = ACTIONS(3940), + [anon_sym_RPAREN] = ACTIONS(3943), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(4065), - [anon_sym_cl] = ACTIONS(3419), - [aux_sym_accumulation_verb_token1] = ACTIONS(3422), - [anon_sym_for] = ACTIONS(3422), - [anon_sym_and] = ACTIONS(3422), - [anon_sym_as] = ACTIONS(3422), - [anon_sym_with] = ACTIONS(3422), - [anon_sym_do] = ACTIONS(3422), - [anon_sym_while] = ACTIONS(3422), - [anon_sym_until] = ACTIONS(3422), - [anon_sym_repeat] = ACTIONS(3422), - [anon_sym_when] = ACTIONS(3422), - [anon_sym_if] = ACTIONS(3422), - [anon_sym_unless] = ACTIONS(3422), - [anon_sym_always] = ACTIONS(3422), - [anon_sym_thereis] = ACTIONS(3422), - [anon_sym_never] = ACTIONS(3422), - [anon_sym_else] = ACTIONS(3422), - [anon_sym_finally] = ACTIONS(3422), - [anon_sym_return] = ACTIONS(3422), - [anon_sym_initially] = ACTIONS(3422), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(4067), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(3952), + [anon_sym_cl] = ACTIONS(3945), + [aux_sym_accumulation_verb_token1] = ACTIONS(3948), + [anon_sym_for] = ACTIONS(3948), + [anon_sym_and] = ACTIONS(3948), + [anon_sym_as] = ACTIONS(3948), + [anon_sym_with] = ACTIONS(3948), + [anon_sym_do] = ACTIONS(3948), + [anon_sym_while] = ACTIONS(3948), + [anon_sym_until] = ACTIONS(3948), + [anon_sym_repeat] = ACTIONS(3948), + [anon_sym_when] = ACTIONS(3948), + [anon_sym_if] = ACTIONS(3948), + [anon_sym_unless] = ACTIONS(3948), + [anon_sym_always] = ACTIONS(3948), + [anon_sym_thereis] = ACTIONS(3948), + [anon_sym_never] = ACTIONS(3948), + [anon_sym_else] = ACTIONS(3948), + [anon_sym_finally] = ACTIONS(3948), + [anon_sym_return] = ACTIONS(3948), + [anon_sym_initially] = ACTIONS(3948), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(3954), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [256] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2183), - [sym_num_lit] = STATE(2183), - [sym_kwd_lit] = STATE(2183), - [sym_str_lit] = STATE(2183), - [sym_char_lit] = STATE(2183), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2183), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2183), - [sym_set_lit] = STATE(2183), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2183), - [sym_splicing_read_cond_lit] = STATE(2183), - [sym_var_quoting_lit] = STATE(2183), - [sym_quoting_lit] = STATE(2183), - [sym_syn_quoting_lit] = STATE(2183), - [sym_unquote_splicing_lit] = STATE(2183), - [sym_unquoting_lit] = STATE(2183), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2183), - [sym_package_lit] = STATE(2183), - [sym_include_reader_macro] = STATE(2183), - [sym_complex_num_lit] = STATE(2183), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(3397), - [sym_comment] = ACTIONS(3397), - [anon_sym_POUND_] = ACTIONS(3400), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(4069), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(3405), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(4069), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(3408), - [anon_sym_POUND_CARET] = ACTIONS(3411), - [anon_sym_LPAREN] = ACTIONS(3414), - [anon_sym_RPAREN] = ACTIONS(3417), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(265), + [sym_dis_expr] = STATE(265), + [sym__form] = STATE(2440), + [sym_num_lit] = STATE(2440), + [sym_kwd_lit] = STATE(2440), + [sym_str_lit] = STATE(2440), + [sym_char_lit] = STATE(2440), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2440), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2440), + [sym_set_lit] = STATE(2440), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2440), + [sym_splicing_read_cond_lit] = STATE(2440), + [sym_var_quoting_lit] = STATE(2440), + [sym_quoting_lit] = STATE(2440), + [sym_syn_quoting_lit] = STATE(2440), + [sym_unquote_splicing_lit] = STATE(2440), + [sym_unquoting_lit] = STATE(2440), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2440), + [sym_package_lit] = STATE(2440), + [sym_include_reader_macro] = STATE(2440), + [sym_complex_num_lit] = STATE(2440), + [aux_sym_dis_expr_repeat1] = STATE(265), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(3956), + [sym_comment] = ACTIONS(3956), + [anon_sym_POUND_] = ACTIONS(3926), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(3959), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(3931), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(3959), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(3934), + [anon_sym_POUND_CARET] = ACTIONS(3937), + [anon_sym_LPAREN] = ACTIONS(3940), + [anon_sym_RPAREN] = ACTIONS(3943), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(4069), - [anon_sym_cl] = ACTIONS(3419), - [aux_sym_accumulation_verb_token1] = ACTIONS(3422), - [anon_sym_for] = ACTIONS(3422), - [anon_sym_and] = ACTIONS(3422), - [anon_sym_as] = ACTIONS(3422), - [anon_sym_with] = ACTIONS(3422), - [anon_sym_do] = ACTIONS(3422), - [anon_sym_while] = ACTIONS(3422), - [anon_sym_until] = ACTIONS(3422), - [anon_sym_repeat] = ACTIONS(3422), - [anon_sym_when] = ACTIONS(3422), - [anon_sym_if] = ACTIONS(3422), - [anon_sym_unless] = ACTIONS(3422), - [anon_sym_always] = ACTIONS(3422), - [anon_sym_thereis] = ACTIONS(3422), - [anon_sym_never] = ACTIONS(3422), - [anon_sym_else] = ACTIONS(3422), - [anon_sym_finally] = ACTIONS(3422), - [anon_sym_return] = ACTIONS(3422), - [anon_sym_initially] = ACTIONS(3422), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(4071), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(3959), + [anon_sym_cl] = ACTIONS(3945), + [aux_sym_accumulation_verb_token1] = ACTIONS(3948), + [anon_sym_for] = ACTIONS(3948), + [anon_sym_and] = ACTIONS(3948), + [anon_sym_as] = ACTIONS(3948), + [anon_sym_with] = ACTIONS(3948), + [anon_sym_do] = ACTIONS(3948), + [anon_sym_while] = ACTIONS(3948), + [anon_sym_until] = ACTIONS(3948), + [anon_sym_repeat] = ACTIONS(3948), + [anon_sym_when] = ACTIONS(3948), + [anon_sym_if] = ACTIONS(3948), + [anon_sym_unless] = ACTIONS(3948), + [anon_sym_always] = ACTIONS(3948), + [anon_sym_thereis] = ACTIONS(3948), + [anon_sym_never] = ACTIONS(3948), + [anon_sym_else] = ACTIONS(3948), + [anon_sym_finally] = ACTIONS(3948), + [anon_sym_return] = ACTIONS(3948), + [anon_sym_initially] = ACTIONS(3948), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(3961), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [257] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2181), - [sym_num_lit] = STATE(2181), - [sym_kwd_lit] = STATE(2181), - [sym_str_lit] = STATE(2181), - [sym_char_lit] = STATE(2181), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2181), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2181), - [sym_set_lit] = STATE(2181), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2181), - [sym_splicing_read_cond_lit] = STATE(2181), - [sym_var_quoting_lit] = STATE(2181), - [sym_quoting_lit] = STATE(2181), - [sym_syn_quoting_lit] = STATE(2181), - [sym_unquote_splicing_lit] = STATE(2181), - [sym_unquoting_lit] = STATE(2181), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2181), - [sym_package_lit] = STATE(2181), - [sym_include_reader_macro] = STATE(2181), - [sym_complex_num_lit] = STATE(2181), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(3390), - [sym_comment] = ACTIONS(3390), - [anon_sym_POUND_] = ACTIONS(3364), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(4073), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(3369), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(4073), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(3372), - [anon_sym_POUND_CARET] = ACTIONS(3375), - [anon_sym_LPAREN] = ACTIONS(3378), - [anon_sym_RPAREN] = ACTIONS(3381), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(887), + [sym_dis_expr] = STATE(887), + [sym__form] = STATE(84), + [sym_num_lit] = STATE(84), + [sym_kwd_lit] = STATE(84), + [sym_str_lit] = STATE(84), + [sym_char_lit] = STATE(84), + [sym_sym_lit] = STATE(1288), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(84), + [sym__bare_list_lit] = STATE(1289), + [sym_vec_lit] = STATE(84), + [sym_set_lit] = STATE(84), + [sym__bare_set_lit] = STATE(1290), + [sym_read_cond_lit] = STATE(84), + [sym_splicing_read_cond_lit] = STATE(84), + [sym_var_quoting_lit] = STATE(84), + [sym_quoting_lit] = STATE(84), + [sym_syn_quoting_lit] = STATE(84), + [sym_unquote_splicing_lit] = STATE(84), + [sym_unquoting_lit] = STATE(84), + [sym_defun] = STATE(1289), + [sym_loop_macro] = STATE(1289), + [sym_path_lit] = STATE(84), + [sym_package_lit] = STATE(84), + [sym_include_reader_macro] = STATE(84), + [sym_complex_num_lit] = STATE(84), + [aux_sym_dis_expr_repeat1] = STATE(887), + [aux_sym_list_lit_repeat1] = STATE(2808), + [sym__ws] = ACTIONS(3963), + [sym_comment] = ACTIONS(3963), + [anon_sym_POUND_] = ACTIONS(3966), + [anon_sym_POUND] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(3969), + [aux_sym_num_lit_token1] = ACTIONS(1692), + [anon_sym_COLON] = ACTIONS(3971), + [anon_sym_COLON_COLON] = ACTIONS(1697), + [anon_sym_DQUOTE] = ACTIONS(1699), + [sym_nil_lit] = ACTIONS(3969), + [aux_sym_sym_lit_token1] = ACTIONS(1701), + [anon_sym_CARET] = ACTIONS(3974), + [anon_sym_POUND_CARET] = ACTIONS(3977), + [anon_sym_LPAREN] = ACTIONS(3980), + [anon_sym_RPAREN] = ACTIONS(3983), + [anon_sym_POUND0A] = ACTIONS(1714), + [anon_sym_POUND0a] = ACTIONS(1714), + [anon_sym_POUND_QMARK] = ACTIONS(1716), + [anon_sym_POUND_QMARK_AT] = ACTIONS(1718), + [anon_sym_POUND_SQUOTE] = ACTIONS(1720), + [anon_sym_SQUOTE] = ACTIONS(1722), + [anon_sym_BQUOTE] = ACTIONS(1724), + [anon_sym_COMMA_AT] = ACTIONS(1726), + [anon_sym_COMMA] = ACTIONS(1728), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(4073), - [anon_sym_cl] = ACTIONS(3383), - [aux_sym_accumulation_verb_token1] = ACTIONS(3386), - [anon_sym_for] = ACTIONS(3386), - [anon_sym_and] = ACTIONS(3386), - [anon_sym_as] = ACTIONS(3386), - [anon_sym_with] = ACTIONS(3386), - [anon_sym_do] = ACTIONS(3386), - [anon_sym_while] = ACTIONS(3386), - [anon_sym_until] = ACTIONS(3386), - [anon_sym_repeat] = ACTIONS(3386), - [anon_sym_when] = ACTIONS(3386), - [anon_sym_if] = ACTIONS(3386), - [anon_sym_unless] = ACTIONS(3386), - [anon_sym_always] = ACTIONS(3386), - [anon_sym_thereis] = ACTIONS(3386), - [anon_sym_never] = ACTIONS(3386), - [anon_sym_else] = ACTIONS(3386), - [anon_sym_finally] = ACTIONS(3386), - [anon_sym_return] = ACTIONS(3386), - [anon_sym_initially] = ACTIONS(3386), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(4075), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(3969), + [anon_sym_cl] = ACTIONS(3985), + [aux_sym_accumulation_verb_token1] = ACTIONS(3988), + [anon_sym_for] = ACTIONS(3988), + [anon_sym_and] = ACTIONS(3988), + [anon_sym_as] = ACTIONS(3988), + [anon_sym_with] = ACTIONS(3988), + [anon_sym_do] = ACTIONS(3988), + [anon_sym_while] = ACTIONS(3988), + [anon_sym_until] = ACTIONS(3988), + [anon_sym_repeat] = ACTIONS(3988), + [anon_sym_when] = ACTIONS(3988), + [anon_sym_if] = ACTIONS(3988), + [anon_sym_unless] = ACTIONS(3988), + [anon_sym_always] = ACTIONS(3988), + [anon_sym_thereis] = ACTIONS(3988), + [anon_sym_never] = ACTIONS(3988), + [anon_sym_else] = ACTIONS(3988), + [anon_sym_finally] = ACTIONS(3988), + [anon_sym_return] = ACTIONS(3988), + [anon_sym_initially] = ACTIONS(3988), + [anon_sym_POUNDP] = ACTIONS(1735), + [anon_sym_POUNDp] = ACTIONS(1735), + [sym_self_referential_reader_macro] = ACTIONS(3990), + [anon_sym_POUND_PLUS] = ACTIONS(1739), + [anon_sym_POUND_DASH] = ACTIONS(1739), + [anon_sym_POUNDC] = ACTIONS(1741), + [anon_sym_POUNDc] = ACTIONS(1741), }, [258] = { - [sym__gap] = STATE(156), - [sym_dis_expr] = STATE(156), - [sym__form] = STATE(2045), - [sym_num_lit] = STATE(2045), - [sym_kwd_lit] = STATE(2045), - [sym_str_lit] = STATE(2045), - [sym_char_lit] = STATE(2045), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2045), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2045), - [sym_set_lit] = STATE(2045), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2045), - [sym_splicing_read_cond_lit] = STATE(2045), - [sym_var_quoting_lit] = STATE(2045), - [sym_quoting_lit] = STATE(2045), - [sym_syn_quoting_lit] = STATE(2045), - [sym_unquote_splicing_lit] = STATE(2045), - [sym_unquoting_lit] = STATE(2045), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2045), - [sym_package_lit] = STATE(2045), - [sym_include_reader_macro] = STATE(2045), - [sym_complex_num_lit] = STATE(2045), - [aux_sym_dis_expr_repeat1] = STATE(156), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(4077), - [sym_comment] = ACTIONS(4077), - [anon_sym_POUND_] = ACTIONS(3875), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(4080), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(3880), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(4080), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(3883), - [anon_sym_POUND_CARET] = ACTIONS(3886), - [anon_sym_LPAREN] = ACTIONS(3889), - [anon_sym_RPAREN] = ACTIONS(3892), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2446), + [sym_num_lit] = STATE(2446), + [sym_kwd_lit] = STATE(2446), + [sym_str_lit] = STATE(2446), + [sym_char_lit] = STATE(2446), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2446), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2446), + [sym_set_lit] = STATE(2446), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2446), + [sym_splicing_read_cond_lit] = STATE(2446), + [sym_var_quoting_lit] = STATE(2446), + [sym_quoting_lit] = STATE(2446), + [sym_syn_quoting_lit] = STATE(2446), + [sym_unquote_splicing_lit] = STATE(2446), + [sym_unquoting_lit] = STATE(2446), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2446), + [sym_package_lit] = STATE(2446), + [sym_include_reader_macro] = STATE(2446), + [sym_complex_num_lit] = STATE(2446), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(3992), + [sym_comment] = ACTIONS(3992), + [anon_sym_POUND_] = ACTIONS(3995), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(3998), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(4000), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(3998), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(4003), + [anon_sym_POUND_CARET] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(4009), + [anon_sym_RPAREN] = ACTIONS(4012), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(4080), - [anon_sym_cl] = ACTIONS(3894), - [aux_sym_accumulation_verb_token1] = ACTIONS(3897), - [anon_sym_for] = ACTIONS(3897), - [anon_sym_and] = ACTIONS(3897), - [anon_sym_as] = ACTIONS(3897), - [anon_sym_with] = ACTIONS(3897), - [anon_sym_do] = ACTIONS(3897), - [anon_sym_while] = ACTIONS(3897), - [anon_sym_until] = ACTIONS(3897), - [anon_sym_repeat] = ACTIONS(3897), - [anon_sym_when] = ACTIONS(3897), - [anon_sym_if] = ACTIONS(3897), - [anon_sym_unless] = ACTIONS(3897), - [anon_sym_always] = ACTIONS(3897), - [anon_sym_thereis] = ACTIONS(3897), - [anon_sym_never] = ACTIONS(3897), - [anon_sym_else] = ACTIONS(3897), - [anon_sym_finally] = ACTIONS(3897), - [anon_sym_return] = ACTIONS(3897), - [anon_sym_initially] = ACTIONS(3897), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(4082), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(3998), + [anon_sym_cl] = ACTIONS(4014), + [aux_sym_accumulation_verb_token1] = ACTIONS(4017), + [anon_sym_for] = ACTIONS(4017), + [anon_sym_and] = ACTIONS(4017), + [anon_sym_as] = ACTIONS(4017), + [anon_sym_with] = ACTIONS(4017), + [anon_sym_do] = ACTIONS(4017), + [anon_sym_while] = ACTIONS(4017), + [anon_sym_until] = ACTIONS(4017), + [anon_sym_repeat] = ACTIONS(4017), + [anon_sym_when] = ACTIONS(4017), + [anon_sym_if] = ACTIONS(4017), + [anon_sym_unless] = ACTIONS(4017), + [anon_sym_always] = ACTIONS(4017), + [anon_sym_thereis] = ACTIONS(4017), + [anon_sym_never] = ACTIONS(4017), + [anon_sym_else] = ACTIONS(4017), + [anon_sym_finally] = ACTIONS(4017), + [anon_sym_return] = ACTIONS(4017), + [anon_sym_initially] = ACTIONS(4017), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(4019), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [259] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2159), - [sym_num_lit] = STATE(2159), - [sym_kwd_lit] = STATE(2159), - [sym_str_lit] = STATE(2159), - [sym_char_lit] = STATE(2159), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2159), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2159), - [sym_set_lit] = STATE(2159), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2159), - [sym_splicing_read_cond_lit] = STATE(2159), - [sym_var_quoting_lit] = STATE(2159), - [sym_quoting_lit] = STATE(2159), - [sym_syn_quoting_lit] = STATE(2159), - [sym_unquote_splicing_lit] = STATE(2159), - [sym_unquoting_lit] = STATE(2159), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2159), - [sym_package_lit] = STATE(2159), - [sym_include_reader_macro] = STATE(2159), - [sym_complex_num_lit] = STATE(2159), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(3901), - [sym_comment] = ACTIONS(3901), - [anon_sym_POUND_] = ACTIONS(3904), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(4084), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(3909), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(4084), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(3912), - [anon_sym_POUND_CARET] = ACTIONS(3915), - [anon_sym_LPAREN] = ACTIONS(3918), - [anon_sym_RPAREN] = ACTIONS(3921), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(266), + [sym_dis_expr] = STATE(266), + [sym__form] = STATE(2447), + [sym_num_lit] = STATE(2447), + [sym_kwd_lit] = STATE(2447), + [sym_str_lit] = STATE(2447), + [sym_char_lit] = STATE(2447), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2447), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2447), + [sym_set_lit] = STATE(2447), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2447), + [sym_splicing_read_cond_lit] = STATE(2447), + [sym_var_quoting_lit] = STATE(2447), + [sym_quoting_lit] = STATE(2447), + [sym_syn_quoting_lit] = STATE(2447), + [sym_unquote_splicing_lit] = STATE(2447), + [sym_unquoting_lit] = STATE(2447), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2447), + [sym_package_lit] = STATE(2447), + [sym_include_reader_macro] = STATE(2447), + [sym_complex_num_lit] = STATE(2447), + [aux_sym_dis_expr_repeat1] = STATE(266), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(4021), + [sym_comment] = ACTIONS(4021), + [anon_sym_POUND_] = ACTIONS(3995), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(4024), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(4000), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(4024), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(4003), + [anon_sym_POUND_CARET] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(4009), + [anon_sym_RPAREN] = ACTIONS(4012), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(4084), - [anon_sym_cl] = ACTIONS(3923), - [aux_sym_accumulation_verb_token1] = ACTIONS(3926), - [anon_sym_for] = ACTIONS(3926), - [anon_sym_and] = ACTIONS(3926), - [anon_sym_as] = ACTIONS(3926), - [anon_sym_with] = ACTIONS(3926), - [anon_sym_do] = ACTIONS(3926), - [anon_sym_while] = ACTIONS(3926), - [anon_sym_until] = ACTIONS(3926), - [anon_sym_repeat] = ACTIONS(3926), - [anon_sym_when] = ACTIONS(3926), - [anon_sym_if] = ACTIONS(3926), - [anon_sym_unless] = ACTIONS(3926), - [anon_sym_always] = ACTIONS(3926), - [anon_sym_thereis] = ACTIONS(3926), - [anon_sym_never] = ACTIONS(3926), - [anon_sym_else] = ACTIONS(3926), - [anon_sym_finally] = ACTIONS(3926), - [anon_sym_return] = ACTIONS(3926), - [anon_sym_initially] = ACTIONS(3926), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(4086), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(4024), + [anon_sym_cl] = ACTIONS(4014), + [aux_sym_accumulation_verb_token1] = ACTIONS(4017), + [anon_sym_for] = ACTIONS(4017), + [anon_sym_and] = ACTIONS(4017), + [anon_sym_as] = ACTIONS(4017), + [anon_sym_with] = ACTIONS(4017), + [anon_sym_do] = ACTIONS(4017), + [anon_sym_while] = ACTIONS(4017), + [anon_sym_until] = ACTIONS(4017), + [anon_sym_repeat] = ACTIONS(4017), + [anon_sym_when] = ACTIONS(4017), + [anon_sym_if] = ACTIONS(4017), + [anon_sym_unless] = ACTIONS(4017), + [anon_sym_always] = ACTIONS(4017), + [anon_sym_thereis] = ACTIONS(4017), + [anon_sym_never] = ACTIONS(4017), + [anon_sym_else] = ACTIONS(4017), + [anon_sym_finally] = ACTIONS(4017), + [anon_sym_return] = ACTIONS(4017), + [anon_sym_initially] = ACTIONS(4017), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(4026), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [260] = { - [sym__gap] = STATE(184), - [sym_dis_expr] = STATE(184), - [sym__form] = STATE(2180), - [sym_num_lit] = STATE(2180), - [sym_kwd_lit] = STATE(2180), - [sym_str_lit] = STATE(2180), - [sym_char_lit] = STATE(2180), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2180), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2180), - [sym_set_lit] = STATE(2180), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2180), - [sym_splicing_read_cond_lit] = STATE(2180), - [sym_var_quoting_lit] = STATE(2180), - [sym_quoting_lit] = STATE(2180), - [sym_syn_quoting_lit] = STATE(2180), - [sym_unquote_splicing_lit] = STATE(2180), - [sym_unquoting_lit] = STATE(2180), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2180), - [sym_package_lit] = STATE(2180), - [sym_include_reader_macro] = STATE(2180), - [sym_complex_num_lit] = STATE(2180), - [aux_sym_dis_expr_repeat1] = STATE(184), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(4088), - [sym_comment] = ACTIONS(4088), - [anon_sym_POUND_] = ACTIONS(3364), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(4091), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(3369), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(4091), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(3372), - [anon_sym_POUND_CARET] = ACTIONS(3375), - [anon_sym_LPAREN] = ACTIONS(3378), - [anon_sym_RPAREN] = ACTIONS(3381), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(267), + [sym_dis_expr] = STATE(267), + [sym__form] = STATE(2450), + [sym_num_lit] = STATE(2450), + [sym_kwd_lit] = STATE(2450), + [sym_str_lit] = STATE(2450), + [sym_char_lit] = STATE(2450), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2450), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2450), + [sym_set_lit] = STATE(2450), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2450), + [sym_splicing_read_cond_lit] = STATE(2450), + [sym_var_quoting_lit] = STATE(2450), + [sym_quoting_lit] = STATE(2450), + [sym_syn_quoting_lit] = STATE(2450), + [sym_unquote_splicing_lit] = STATE(2450), + [sym_unquoting_lit] = STATE(2450), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2450), + [sym_package_lit] = STATE(2450), + [sym_include_reader_macro] = STATE(2450), + [sym_complex_num_lit] = STATE(2450), + [aux_sym_dis_expr_repeat1] = STATE(267), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(4028), + [sym_comment] = ACTIONS(4028), + [anon_sym_POUND_] = ACTIONS(3995), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(4031), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(4000), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(4031), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(4003), + [anon_sym_POUND_CARET] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(4009), + [anon_sym_RPAREN] = ACTIONS(4012), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(4091), - [anon_sym_cl] = ACTIONS(3383), - [aux_sym_accumulation_verb_token1] = ACTIONS(3386), - [anon_sym_for] = ACTIONS(3386), - [anon_sym_and] = ACTIONS(3386), - [anon_sym_as] = ACTIONS(3386), - [anon_sym_with] = ACTIONS(3386), - [anon_sym_do] = ACTIONS(3386), - [anon_sym_while] = ACTIONS(3386), - [anon_sym_until] = ACTIONS(3386), - [anon_sym_repeat] = ACTIONS(3386), - [anon_sym_when] = ACTIONS(3386), - [anon_sym_if] = ACTIONS(3386), - [anon_sym_unless] = ACTIONS(3386), - [anon_sym_always] = ACTIONS(3386), - [anon_sym_thereis] = ACTIONS(3386), - [anon_sym_never] = ACTIONS(3386), - [anon_sym_else] = ACTIONS(3386), - [anon_sym_finally] = ACTIONS(3386), - [anon_sym_return] = ACTIONS(3386), - [anon_sym_initially] = ACTIONS(3386), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(4093), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(4031), + [anon_sym_cl] = ACTIONS(4014), + [aux_sym_accumulation_verb_token1] = ACTIONS(4017), + [anon_sym_for] = ACTIONS(4017), + [anon_sym_and] = ACTIONS(4017), + [anon_sym_as] = ACTIONS(4017), + [anon_sym_with] = ACTIONS(4017), + [anon_sym_do] = ACTIONS(4017), + [anon_sym_while] = ACTIONS(4017), + [anon_sym_until] = ACTIONS(4017), + [anon_sym_repeat] = ACTIONS(4017), + [anon_sym_when] = ACTIONS(4017), + [anon_sym_if] = ACTIONS(4017), + [anon_sym_unless] = ACTIONS(4017), + [anon_sym_always] = ACTIONS(4017), + [anon_sym_thereis] = ACTIONS(4017), + [anon_sym_never] = ACTIONS(4017), + [anon_sym_else] = ACTIONS(4017), + [anon_sym_finally] = ACTIONS(4017), + [anon_sym_return] = ACTIONS(4017), + [anon_sym_initially] = ACTIONS(4017), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(4033), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [261] = { - [sym__gap] = STATE(166), - [sym_dis_expr] = STATE(166), - [sym__form] = STATE(2161), - [sym_num_lit] = STATE(2161), - [sym_kwd_lit] = STATE(2161), - [sym_str_lit] = STATE(2161), - [sym_char_lit] = STATE(2161), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2161), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2161), - [sym_set_lit] = STATE(2161), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2161), - [sym_splicing_read_cond_lit] = STATE(2161), - [sym_var_quoting_lit] = STATE(2161), - [sym_quoting_lit] = STATE(2161), - [sym_syn_quoting_lit] = STATE(2161), - [sym_unquote_splicing_lit] = STATE(2161), - [sym_unquoting_lit] = STATE(2161), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2161), - [sym_package_lit] = STATE(2161), - [sym_include_reader_macro] = STATE(2161), - [sym_complex_num_lit] = STATE(2161), - [aux_sym_dis_expr_repeat1] = STATE(166), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(4095), - [sym_comment] = ACTIONS(4095), - [anon_sym_POUND_] = ACTIONS(3904), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(4098), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(3909), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(4098), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(3912), - [anon_sym_POUND_CARET] = ACTIONS(3915), - [anon_sym_LPAREN] = ACTIONS(3918), - [anon_sym_RPAREN] = ACTIONS(3921), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2452), + [sym_num_lit] = STATE(2452), + [sym_kwd_lit] = STATE(2452), + [sym_str_lit] = STATE(2452), + [sym_char_lit] = STATE(2452), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2452), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2452), + [sym_set_lit] = STATE(2452), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2452), + [sym_splicing_read_cond_lit] = STATE(2452), + [sym_var_quoting_lit] = STATE(2452), + [sym_quoting_lit] = STATE(2452), + [sym_syn_quoting_lit] = STATE(2452), + [sym_unquote_splicing_lit] = STATE(2452), + [sym_unquoting_lit] = STATE(2452), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2452), + [sym_package_lit] = STATE(2452), + [sym_include_reader_macro] = STATE(2452), + [sym_complex_num_lit] = STATE(2452), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(3992), + [sym_comment] = ACTIONS(3992), + [anon_sym_POUND_] = ACTIONS(3995), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(4035), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(4000), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(4035), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(4003), + [anon_sym_POUND_CARET] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(4009), + [anon_sym_RPAREN] = ACTIONS(4012), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(4098), - [anon_sym_cl] = ACTIONS(3923), - [aux_sym_accumulation_verb_token1] = ACTIONS(3926), - [anon_sym_for] = ACTIONS(3926), - [anon_sym_and] = ACTIONS(3926), - [anon_sym_as] = ACTIONS(3926), - [anon_sym_with] = ACTIONS(3926), - [anon_sym_do] = ACTIONS(3926), - [anon_sym_while] = ACTIONS(3926), - [anon_sym_until] = ACTIONS(3926), - [anon_sym_repeat] = ACTIONS(3926), - [anon_sym_when] = ACTIONS(3926), - [anon_sym_if] = ACTIONS(3926), - [anon_sym_unless] = ACTIONS(3926), - [anon_sym_always] = ACTIONS(3926), - [anon_sym_thereis] = ACTIONS(3926), - [anon_sym_never] = ACTIONS(3926), - [anon_sym_else] = ACTIONS(3926), - [anon_sym_finally] = ACTIONS(3926), - [anon_sym_return] = ACTIONS(3926), - [anon_sym_initially] = ACTIONS(3926), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(4100), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(4035), + [anon_sym_cl] = ACTIONS(4014), + [aux_sym_accumulation_verb_token1] = ACTIONS(4017), + [anon_sym_for] = ACTIONS(4017), + [anon_sym_and] = ACTIONS(4017), + [anon_sym_as] = ACTIONS(4017), + [anon_sym_with] = ACTIONS(4017), + [anon_sym_do] = ACTIONS(4017), + [anon_sym_while] = ACTIONS(4017), + [anon_sym_until] = ACTIONS(4017), + [anon_sym_repeat] = ACTIONS(4017), + [anon_sym_when] = ACTIONS(4017), + [anon_sym_if] = ACTIONS(4017), + [anon_sym_unless] = ACTIONS(4017), + [anon_sym_always] = ACTIONS(4017), + [anon_sym_thereis] = ACTIONS(4017), + [anon_sym_never] = ACTIONS(4017), + [anon_sym_else] = ACTIONS(4017), + [anon_sym_finally] = ACTIONS(4017), + [anon_sym_return] = ACTIONS(4017), + [anon_sym_initially] = ACTIONS(4017), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(4037), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [262] = { - [sym__gap] = STATE(183), - [sym_dis_expr] = STATE(183), - [sym__form] = STATE(2178), - [sym_num_lit] = STATE(2178), - [sym_kwd_lit] = STATE(2178), - [sym_str_lit] = STATE(2178), - [sym_char_lit] = STATE(2178), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2178), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2178), - [sym_set_lit] = STATE(2178), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2178), - [sym_splicing_read_cond_lit] = STATE(2178), - [sym_var_quoting_lit] = STATE(2178), - [sym_quoting_lit] = STATE(2178), - [sym_syn_quoting_lit] = STATE(2178), - [sym_unquote_splicing_lit] = STATE(2178), - [sym_unquoting_lit] = STATE(2178), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2178), - [sym_package_lit] = STATE(2178), - [sym_include_reader_macro] = STATE(2178), - [sym_complex_num_lit] = STATE(2178), - [aux_sym_dis_expr_repeat1] = STATE(183), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(4102), - [sym_comment] = ACTIONS(4102), - [anon_sym_POUND_] = ACTIONS(3240), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(4105), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(3245), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(4105), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(3248), - [anon_sym_POUND_CARET] = ACTIONS(3251), - [anon_sym_LPAREN] = ACTIONS(3254), - [anon_sym_RPAREN] = ACTIONS(3257), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2458), + [sym_num_lit] = STATE(2458), + [sym_kwd_lit] = STATE(2458), + [sym_str_lit] = STATE(2458), + [sym_char_lit] = STATE(2458), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2458), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2458), + [sym_set_lit] = STATE(2458), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2458), + [sym_splicing_read_cond_lit] = STATE(2458), + [sym_var_quoting_lit] = STATE(2458), + [sym_quoting_lit] = STATE(2458), + [sym_syn_quoting_lit] = STATE(2458), + [sym_unquote_splicing_lit] = STATE(2458), + [sym_unquoting_lit] = STATE(2458), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2458), + [sym_package_lit] = STATE(2458), + [sym_include_reader_macro] = STATE(2458), + [sym_complex_num_lit] = STATE(2458), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(3806), + [sym_comment] = ACTIONS(3806), + [anon_sym_POUND_] = ACTIONS(3809), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(4039), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(3814), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(4039), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(3817), + [anon_sym_POUND_CARET] = ACTIONS(3820), + [anon_sym_LPAREN] = ACTIONS(3823), + [anon_sym_RPAREN] = ACTIONS(3826), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(4105), - [anon_sym_cl] = ACTIONS(3259), - [aux_sym_accumulation_verb_token1] = ACTIONS(3262), - [anon_sym_for] = ACTIONS(3262), - [anon_sym_and] = ACTIONS(3262), - [anon_sym_as] = ACTIONS(3262), - [anon_sym_with] = ACTIONS(3262), - [anon_sym_do] = ACTIONS(3262), - [anon_sym_while] = ACTIONS(3262), - [anon_sym_until] = ACTIONS(3262), - [anon_sym_repeat] = ACTIONS(3262), - [anon_sym_when] = ACTIONS(3262), - [anon_sym_if] = ACTIONS(3262), - [anon_sym_unless] = ACTIONS(3262), - [anon_sym_always] = ACTIONS(3262), - [anon_sym_thereis] = ACTIONS(3262), - [anon_sym_never] = ACTIONS(3262), - [anon_sym_else] = ACTIONS(3262), - [anon_sym_finally] = ACTIONS(3262), - [anon_sym_return] = ACTIONS(3262), - [anon_sym_initially] = ACTIONS(3262), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(4107), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(4039), + [anon_sym_cl] = ACTIONS(3828), + [aux_sym_accumulation_verb_token1] = ACTIONS(3831), + [anon_sym_for] = ACTIONS(3831), + [anon_sym_and] = ACTIONS(3831), + [anon_sym_as] = ACTIONS(3831), + [anon_sym_with] = ACTIONS(3831), + [anon_sym_do] = ACTIONS(3831), + [anon_sym_while] = ACTIONS(3831), + [anon_sym_until] = ACTIONS(3831), + [anon_sym_repeat] = ACTIONS(3831), + [anon_sym_when] = ACTIONS(3831), + [anon_sym_if] = ACTIONS(3831), + [anon_sym_unless] = ACTIONS(3831), + [anon_sym_always] = ACTIONS(3831), + [anon_sym_thereis] = ACTIONS(3831), + [anon_sym_never] = ACTIONS(3831), + [anon_sym_else] = ACTIONS(3831), + [anon_sym_finally] = ACTIONS(3831), + [anon_sym_return] = ACTIONS(3831), + [anon_sym_initially] = ACTIONS(3831), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(4041), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [263] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2176), - [sym_num_lit] = STATE(2176), - [sym_kwd_lit] = STATE(2176), - [sym_str_lit] = STATE(2176), - [sym_char_lit] = STATE(2176), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2176), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2176), - [sym_set_lit] = STATE(2176), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2176), - [sym_splicing_read_cond_lit] = STATE(2176), - [sym_var_quoting_lit] = STATE(2176), - [sym_quoting_lit] = STATE(2176), - [sym_syn_quoting_lit] = STATE(2176), - [sym_unquote_splicing_lit] = STATE(2176), - [sym_unquoting_lit] = STATE(2176), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2176), - [sym_package_lit] = STATE(2176), - [sym_include_reader_macro] = STATE(2176), - [sym_complex_num_lit] = STATE(2176), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(3266), - [sym_comment] = ACTIONS(3266), - [anon_sym_POUND_] = ACTIONS(3240), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(4109), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(3245), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(4109), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(3248), - [anon_sym_POUND_CARET] = ACTIONS(3251), - [anon_sym_LPAREN] = ACTIONS(3254), - [anon_sym_RPAREN] = ACTIONS(3257), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2464), + [sym_num_lit] = STATE(2464), + [sym_kwd_lit] = STATE(2464), + [sym_str_lit] = STATE(2464), + [sym_char_lit] = STATE(2464), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2464), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2464), + [sym_set_lit] = STATE(2464), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2464), + [sym_splicing_read_cond_lit] = STATE(2464), + [sym_var_quoting_lit] = STATE(2464), + [sym_quoting_lit] = STATE(2464), + [sym_syn_quoting_lit] = STATE(2464), + [sym_unquote_splicing_lit] = STATE(2464), + [sym_unquoting_lit] = STATE(2464), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2464), + [sym_package_lit] = STATE(2464), + [sym_include_reader_macro] = STATE(2464), + [sym_complex_num_lit] = STATE(2464), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(4043), + [sym_comment] = ACTIONS(4043), + [anon_sym_POUND_] = ACTIONS(4046), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(4049), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(4051), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(4049), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(4054), + [anon_sym_POUND_CARET] = ACTIONS(4057), + [anon_sym_LPAREN] = ACTIONS(4060), + [anon_sym_RPAREN] = ACTIONS(4063), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(4109), - [anon_sym_cl] = ACTIONS(3259), - [aux_sym_accumulation_verb_token1] = ACTIONS(3262), - [anon_sym_for] = ACTIONS(3262), - [anon_sym_and] = ACTIONS(3262), - [anon_sym_as] = ACTIONS(3262), - [anon_sym_with] = ACTIONS(3262), - [anon_sym_do] = ACTIONS(3262), - [anon_sym_while] = ACTIONS(3262), - [anon_sym_until] = ACTIONS(3262), - [anon_sym_repeat] = ACTIONS(3262), - [anon_sym_when] = ACTIONS(3262), - [anon_sym_if] = ACTIONS(3262), - [anon_sym_unless] = ACTIONS(3262), - [anon_sym_always] = ACTIONS(3262), - [anon_sym_thereis] = ACTIONS(3262), - [anon_sym_never] = ACTIONS(3262), - [anon_sym_else] = ACTIONS(3262), - [anon_sym_finally] = ACTIONS(3262), - [anon_sym_return] = ACTIONS(3262), - [anon_sym_initially] = ACTIONS(3262), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(4111), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(4049), + [anon_sym_cl] = ACTIONS(4065), + [aux_sym_accumulation_verb_token1] = ACTIONS(4068), + [anon_sym_for] = ACTIONS(4068), + [anon_sym_and] = ACTIONS(4068), + [anon_sym_as] = ACTIONS(4068), + [anon_sym_with] = ACTIONS(4068), + [anon_sym_do] = ACTIONS(4068), + [anon_sym_while] = ACTIONS(4068), + [anon_sym_until] = ACTIONS(4068), + [anon_sym_repeat] = ACTIONS(4068), + [anon_sym_when] = ACTIONS(4068), + [anon_sym_if] = ACTIONS(4068), + [anon_sym_unless] = ACTIONS(4068), + [anon_sym_always] = ACTIONS(4068), + [anon_sym_thereis] = ACTIONS(4068), + [anon_sym_never] = ACTIONS(4068), + [anon_sym_else] = ACTIONS(4068), + [anon_sym_finally] = ACTIONS(4068), + [anon_sym_return] = ACTIONS(4068), + [anon_sym_initially] = ACTIONS(4068), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(4070), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [264] = { - [sym__gap] = STATE(167), - [sym_dis_expr] = STATE(167), - [sym__form] = STATE(2163), - [sym_num_lit] = STATE(2163), - [sym_kwd_lit] = STATE(2163), - [sym_str_lit] = STATE(2163), - [sym_char_lit] = STATE(2163), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2163), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2163), - [sym_set_lit] = STATE(2163), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2163), - [sym_splicing_read_cond_lit] = STATE(2163), - [sym_var_quoting_lit] = STATE(2163), - [sym_quoting_lit] = STATE(2163), - [sym_syn_quoting_lit] = STATE(2163), - [sym_unquote_splicing_lit] = STATE(2163), - [sym_unquoting_lit] = STATE(2163), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2163), - [sym_package_lit] = STATE(2163), - [sym_include_reader_macro] = STATE(2163), - [sym_complex_num_lit] = STATE(2163), - [aux_sym_dis_expr_repeat1] = STATE(167), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(4113), - [sym_comment] = ACTIONS(4113), - [anon_sym_POUND_] = ACTIONS(3947), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(4116), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(3952), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(4116), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(3955), - [anon_sym_POUND_CARET] = ACTIONS(3958), - [anon_sym_LPAREN] = ACTIONS(3961), - [anon_sym_RPAREN] = ACTIONS(3964), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2469), + [sym_num_lit] = STATE(2469), + [sym_kwd_lit] = STATE(2469), + [sym_str_lit] = STATE(2469), + [sym_char_lit] = STATE(2469), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2469), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2469), + [sym_set_lit] = STATE(2469), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2469), + [sym_splicing_read_cond_lit] = STATE(2469), + [sym_var_quoting_lit] = STATE(2469), + [sym_quoting_lit] = STATE(2469), + [sym_syn_quoting_lit] = STATE(2469), + [sym_unquote_splicing_lit] = STATE(2469), + [sym_unquoting_lit] = STATE(2469), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2469), + [sym_package_lit] = STATE(2469), + [sym_include_reader_macro] = STATE(2469), + [sym_complex_num_lit] = STATE(2469), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(4043), + [sym_comment] = ACTIONS(4043), + [anon_sym_POUND_] = ACTIONS(4046), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(4072), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(4051), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(4072), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(4054), + [anon_sym_POUND_CARET] = ACTIONS(4057), + [anon_sym_LPAREN] = ACTIONS(4060), + [anon_sym_RPAREN] = ACTIONS(4063), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(4116), - [anon_sym_cl] = ACTIONS(3966), - [aux_sym_accumulation_verb_token1] = ACTIONS(3969), - [anon_sym_for] = ACTIONS(3969), - [anon_sym_and] = ACTIONS(3969), - [anon_sym_as] = ACTIONS(3969), - [anon_sym_with] = ACTIONS(3969), - [anon_sym_do] = ACTIONS(3969), - [anon_sym_while] = ACTIONS(3969), - [anon_sym_until] = ACTIONS(3969), - [anon_sym_repeat] = ACTIONS(3969), - [anon_sym_when] = ACTIONS(3969), - [anon_sym_if] = ACTIONS(3969), - [anon_sym_unless] = ACTIONS(3969), - [anon_sym_always] = ACTIONS(3969), - [anon_sym_thereis] = ACTIONS(3969), - [anon_sym_never] = ACTIONS(3969), - [anon_sym_else] = ACTIONS(3969), - [anon_sym_finally] = ACTIONS(3969), - [anon_sym_return] = ACTIONS(3969), - [anon_sym_initially] = ACTIONS(3969), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(4118), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(4072), + [anon_sym_cl] = ACTIONS(4065), + [aux_sym_accumulation_verb_token1] = ACTIONS(4068), + [anon_sym_for] = ACTIONS(4068), + [anon_sym_and] = ACTIONS(4068), + [anon_sym_as] = ACTIONS(4068), + [anon_sym_with] = ACTIONS(4068), + [anon_sym_do] = ACTIONS(4068), + [anon_sym_while] = ACTIONS(4068), + [anon_sym_until] = ACTIONS(4068), + [anon_sym_repeat] = ACTIONS(4068), + [anon_sym_when] = ACTIONS(4068), + [anon_sym_if] = ACTIONS(4068), + [anon_sym_unless] = ACTIONS(4068), + [anon_sym_always] = ACTIONS(4068), + [anon_sym_thereis] = ACTIONS(4068), + [anon_sym_never] = ACTIONS(4068), + [anon_sym_else] = ACTIONS(4068), + [anon_sym_finally] = ACTIONS(4068), + [anon_sym_return] = ACTIONS(4068), + [anon_sym_initially] = ACTIONS(4068), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(4074), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [265] = { - [sym__gap] = STATE(176), - [sym_dis_expr] = STATE(176), - [sym__form] = STATE(2174), - [sym_num_lit] = STATE(2174), - [sym_kwd_lit] = STATE(2174), - [sym_str_lit] = STATE(2174), - [sym_char_lit] = STATE(2174), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2174), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2174), - [sym_set_lit] = STATE(2174), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2174), - [sym_splicing_read_cond_lit] = STATE(2174), - [sym_var_quoting_lit] = STATE(2174), - [sym_quoting_lit] = STATE(2174), - [sym_syn_quoting_lit] = STATE(2174), - [sym_unquote_splicing_lit] = STATE(2174), - [sym_unquoting_lit] = STATE(2174), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2174), - [sym_package_lit] = STATE(2174), - [sym_include_reader_macro] = STATE(2174), - [sym_complex_num_lit] = STATE(2174), - [aux_sym_dis_expr_repeat1] = STATE(176), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(4120), - [sym_comment] = ACTIONS(4120), - [anon_sym_POUND_] = ACTIONS(3240), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(4123), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(3245), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(4123), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(3248), - [anon_sym_POUND_CARET] = ACTIONS(3251), - [anon_sym_LPAREN] = ACTIONS(3254), - [anon_sym_RPAREN] = ACTIONS(3257), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2473), + [sym_num_lit] = STATE(2473), + [sym_kwd_lit] = STATE(2473), + [sym_str_lit] = STATE(2473), + [sym_char_lit] = STATE(2473), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2473), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2473), + [sym_set_lit] = STATE(2473), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2473), + [sym_splicing_read_cond_lit] = STATE(2473), + [sym_var_quoting_lit] = STATE(2473), + [sym_quoting_lit] = STATE(2473), + [sym_syn_quoting_lit] = STATE(2473), + [sym_unquote_splicing_lit] = STATE(2473), + [sym_unquoting_lit] = STATE(2473), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2473), + [sym_package_lit] = STATE(2473), + [sym_include_reader_macro] = STATE(2473), + [sym_complex_num_lit] = STATE(2473), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(4076), + [sym_comment] = ACTIONS(4076), + [anon_sym_POUND_] = ACTIONS(4079), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(4082), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(4084), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(4082), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(4087), + [anon_sym_POUND_CARET] = ACTIONS(4090), + [anon_sym_LPAREN] = ACTIONS(4093), + [anon_sym_RPAREN] = ACTIONS(4096), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(4123), - [anon_sym_cl] = ACTIONS(3259), - [aux_sym_accumulation_verb_token1] = ACTIONS(3262), - [anon_sym_for] = ACTIONS(3262), - [anon_sym_and] = ACTIONS(3262), - [anon_sym_as] = ACTIONS(3262), - [anon_sym_with] = ACTIONS(3262), - [anon_sym_do] = ACTIONS(3262), - [anon_sym_while] = ACTIONS(3262), - [anon_sym_until] = ACTIONS(3262), - [anon_sym_repeat] = ACTIONS(3262), - [anon_sym_when] = ACTIONS(3262), - [anon_sym_if] = ACTIONS(3262), - [anon_sym_unless] = ACTIONS(3262), - [anon_sym_always] = ACTIONS(3262), - [anon_sym_thereis] = ACTIONS(3262), - [anon_sym_never] = ACTIONS(3262), - [anon_sym_else] = ACTIONS(3262), - [anon_sym_finally] = ACTIONS(3262), - [anon_sym_return] = ACTIONS(3262), - [anon_sym_initially] = ACTIONS(3262), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(4125), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(4082), + [anon_sym_cl] = ACTIONS(4098), + [aux_sym_accumulation_verb_token1] = ACTIONS(4101), + [anon_sym_for] = ACTIONS(4101), + [anon_sym_and] = ACTIONS(4101), + [anon_sym_as] = ACTIONS(4101), + [anon_sym_with] = ACTIONS(4101), + [anon_sym_do] = ACTIONS(4101), + [anon_sym_while] = ACTIONS(4101), + [anon_sym_until] = ACTIONS(4101), + [anon_sym_repeat] = ACTIONS(4101), + [anon_sym_when] = ACTIONS(4101), + [anon_sym_if] = ACTIONS(4101), + [anon_sym_unless] = ACTIONS(4101), + [anon_sym_always] = ACTIONS(4101), + [anon_sym_thereis] = ACTIONS(4101), + [anon_sym_never] = ACTIONS(4101), + [anon_sym_else] = ACTIONS(4101), + [anon_sym_finally] = ACTIONS(4101), + [anon_sym_return] = ACTIONS(4101), + [anon_sym_initially] = ACTIONS(4101), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(4103), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [266] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2165), - [sym_num_lit] = STATE(2165), - [sym_kwd_lit] = STATE(2165), - [sym_str_lit] = STATE(2165), - [sym_char_lit] = STATE(2165), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2165), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2165), - [sym_set_lit] = STATE(2165), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2165), - [sym_splicing_read_cond_lit] = STATE(2165), - [sym_var_quoting_lit] = STATE(2165), - [sym_quoting_lit] = STATE(2165), - [sym_syn_quoting_lit] = STATE(2165), - [sym_unquote_splicing_lit] = STATE(2165), - [sym_unquoting_lit] = STATE(2165), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2165), - [sym_package_lit] = STATE(2165), - [sym_include_reader_macro] = STATE(2165), - [sym_complex_num_lit] = STATE(2165), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(3973), - [sym_comment] = ACTIONS(3973), - [anon_sym_POUND_] = ACTIONS(3947), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(4127), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(3952), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(4127), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(3955), - [anon_sym_POUND_CARET] = ACTIONS(3958), - [anon_sym_LPAREN] = ACTIONS(3961), - [anon_sym_RPAREN] = ACTIONS(3964), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2477), + [sym_num_lit] = STATE(2477), + [sym_kwd_lit] = STATE(2477), + [sym_str_lit] = STATE(2477), + [sym_char_lit] = STATE(2477), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2477), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2477), + [sym_set_lit] = STATE(2477), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2477), + [sym_splicing_read_cond_lit] = STATE(2477), + [sym_var_quoting_lit] = STATE(2477), + [sym_quoting_lit] = STATE(2477), + [sym_syn_quoting_lit] = STATE(2477), + [sym_unquote_splicing_lit] = STATE(2477), + [sym_unquoting_lit] = STATE(2477), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2477), + [sym_package_lit] = STATE(2477), + [sym_include_reader_macro] = STATE(2477), + [sym_complex_num_lit] = STATE(2477), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(4105), + [sym_comment] = ACTIONS(4105), + [anon_sym_POUND_] = ACTIONS(4108), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(4111), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(4113), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(4111), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(4116), + [anon_sym_POUND_CARET] = ACTIONS(4119), + [anon_sym_LPAREN] = ACTIONS(4122), + [anon_sym_RPAREN] = ACTIONS(4125), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(4127), - [anon_sym_cl] = ACTIONS(3966), - [aux_sym_accumulation_verb_token1] = ACTIONS(3969), - [anon_sym_for] = ACTIONS(3969), - [anon_sym_and] = ACTIONS(3969), - [anon_sym_as] = ACTIONS(3969), - [anon_sym_with] = ACTIONS(3969), - [anon_sym_do] = ACTIONS(3969), - [anon_sym_while] = ACTIONS(3969), - [anon_sym_until] = ACTIONS(3969), - [anon_sym_repeat] = ACTIONS(3969), - [anon_sym_when] = ACTIONS(3969), - [anon_sym_if] = ACTIONS(3969), - [anon_sym_unless] = ACTIONS(3969), - [anon_sym_always] = ACTIONS(3969), - [anon_sym_thereis] = ACTIONS(3969), - [anon_sym_never] = ACTIONS(3969), - [anon_sym_else] = ACTIONS(3969), - [anon_sym_finally] = ACTIONS(3969), - [anon_sym_return] = ACTIONS(3969), - [anon_sym_initially] = ACTIONS(3969), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(4129), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(4111), + [anon_sym_cl] = ACTIONS(4127), + [aux_sym_accumulation_verb_token1] = ACTIONS(4130), + [anon_sym_for] = ACTIONS(4130), + [anon_sym_and] = ACTIONS(4130), + [anon_sym_as] = ACTIONS(4130), + [anon_sym_with] = ACTIONS(4130), + [anon_sym_do] = ACTIONS(4130), + [anon_sym_while] = ACTIONS(4130), + [anon_sym_until] = ACTIONS(4130), + [anon_sym_repeat] = ACTIONS(4130), + [anon_sym_when] = ACTIONS(4130), + [anon_sym_if] = ACTIONS(4130), + [anon_sym_unless] = ACTIONS(4130), + [anon_sym_always] = ACTIONS(4130), + [anon_sym_thereis] = ACTIONS(4130), + [anon_sym_never] = ACTIONS(4130), + [anon_sym_else] = ACTIONS(4130), + [anon_sym_finally] = ACTIONS(4130), + [anon_sym_return] = ACTIONS(4130), + [anon_sym_initially] = ACTIONS(4130), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(4132), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [267] = { - [sym__gap] = STATE(995), - [sym_dis_expr] = STATE(995), - [sym__form] = STATE(2171), - [sym_num_lit] = STATE(2171), - [sym_kwd_lit] = STATE(2171), - [sym_str_lit] = STATE(2171), - [sym_char_lit] = STATE(2171), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2171), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2171), - [sym_set_lit] = STATE(2171), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2171), - [sym_splicing_read_cond_lit] = STATE(2171), - [sym_var_quoting_lit] = STATE(2171), - [sym_quoting_lit] = STATE(2171), - [sym_syn_quoting_lit] = STATE(2171), - [sym_unquote_splicing_lit] = STATE(2171), - [sym_unquoting_lit] = STATE(2171), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2171), - [sym_package_lit] = STATE(2171), - [sym_include_reader_macro] = STATE(2171), - [sym_complex_num_lit] = STATE(2171), - [aux_sym_dis_expr_repeat1] = STATE(995), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(3901), - [sym_comment] = ACTIONS(3901), - [anon_sym_POUND_] = ACTIONS(3904), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(4131), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(3909), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(4131), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(3912), - [anon_sym_POUND_CARET] = ACTIONS(3915), - [anon_sym_LPAREN] = ACTIONS(3918), - [anon_sym_RPAREN] = ACTIONS(3921), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2479), + [sym_num_lit] = STATE(2479), + [sym_kwd_lit] = STATE(2479), + [sym_str_lit] = STATE(2479), + [sym_char_lit] = STATE(2479), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2479), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2479), + [sym_set_lit] = STATE(2479), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2479), + [sym_splicing_read_cond_lit] = STATE(2479), + [sym_var_quoting_lit] = STATE(2479), + [sym_quoting_lit] = STATE(2479), + [sym_syn_quoting_lit] = STATE(2479), + [sym_unquote_splicing_lit] = STATE(2479), + [sym_unquoting_lit] = STATE(2479), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2479), + [sym_package_lit] = STATE(2479), + [sym_include_reader_macro] = STATE(2479), + [sym_complex_num_lit] = STATE(2479), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(4105), + [sym_comment] = ACTIONS(4105), + [anon_sym_POUND_] = ACTIONS(4108), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(4134), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(4113), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(4134), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(4116), + [anon_sym_POUND_CARET] = ACTIONS(4119), + [anon_sym_LPAREN] = ACTIONS(4122), + [anon_sym_RPAREN] = ACTIONS(4125), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(4131), - [anon_sym_cl] = ACTIONS(3923), - [aux_sym_accumulation_verb_token1] = ACTIONS(3926), - [anon_sym_for] = ACTIONS(3926), - [anon_sym_and] = ACTIONS(3926), - [anon_sym_as] = ACTIONS(3926), - [anon_sym_with] = ACTIONS(3926), - [anon_sym_do] = ACTIONS(3926), - [anon_sym_while] = ACTIONS(3926), - [anon_sym_until] = ACTIONS(3926), - [anon_sym_repeat] = ACTIONS(3926), - [anon_sym_when] = ACTIONS(3926), - [anon_sym_if] = ACTIONS(3926), - [anon_sym_unless] = ACTIONS(3926), - [anon_sym_always] = ACTIONS(3926), - [anon_sym_thereis] = ACTIONS(3926), - [anon_sym_never] = ACTIONS(3926), - [anon_sym_else] = ACTIONS(3926), - [anon_sym_finally] = ACTIONS(3926), - [anon_sym_return] = ACTIONS(3926), - [anon_sym_initially] = ACTIONS(3926), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(4133), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(4134), + [anon_sym_cl] = ACTIONS(4127), + [aux_sym_accumulation_verb_token1] = ACTIONS(4130), + [anon_sym_for] = ACTIONS(4130), + [anon_sym_and] = ACTIONS(4130), + [anon_sym_as] = ACTIONS(4130), + [anon_sym_with] = ACTIONS(4130), + [anon_sym_do] = ACTIONS(4130), + [anon_sym_while] = ACTIONS(4130), + [anon_sym_until] = ACTIONS(4130), + [anon_sym_repeat] = ACTIONS(4130), + [anon_sym_when] = ACTIONS(4130), + [anon_sym_if] = ACTIONS(4130), + [anon_sym_unless] = ACTIONS(4130), + [anon_sym_always] = ACTIONS(4130), + [anon_sym_thereis] = ACTIONS(4130), + [anon_sym_never] = ACTIONS(4130), + [anon_sym_else] = ACTIONS(4130), + [anon_sym_finally] = ACTIONS(4130), + [anon_sym_return] = ACTIONS(4130), + [anon_sym_initially] = ACTIONS(4130), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(4136), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [268] = { - [sym__gap] = STATE(173), - [sym_dis_expr] = STATE(173), - [sym__form] = STATE(2168), - [sym_num_lit] = STATE(2168), - [sym_kwd_lit] = STATE(2168), - [sym_str_lit] = STATE(2168), - [sym_char_lit] = STATE(2168), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2168), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2168), - [sym_set_lit] = STATE(2168), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2168), - [sym_splicing_read_cond_lit] = STATE(2168), - [sym_var_quoting_lit] = STATE(2168), - [sym_quoting_lit] = STATE(2168), - [sym_syn_quoting_lit] = STATE(2168), - [sym_unquote_splicing_lit] = STATE(2168), - [sym_unquoting_lit] = STATE(2168), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2168), - [sym_package_lit] = STATE(2168), - [sym_include_reader_macro] = STATE(2168), - [sym_complex_num_lit] = STATE(2168), - [aux_sym_dis_expr_repeat1] = STATE(173), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(4135), - [sym_comment] = ACTIONS(4135), - [anon_sym_POUND_] = ACTIONS(3947), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(4138), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(3952), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_nil_lit] = ACTIONS(4138), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(3955), - [anon_sym_POUND_CARET] = ACTIONS(3958), - [anon_sym_LPAREN] = ACTIONS(3961), - [anon_sym_RPAREN] = ACTIONS(3964), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [sym__gap] = STATE(43), + [sym_dis_expr] = STATE(43), + [sym__form] = STATE(2480), + [sym_num_lit] = STATE(2480), + [sym_kwd_lit] = STATE(2480), + [sym_str_lit] = STATE(2480), + [sym_char_lit] = STATE(2480), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2480), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2480), + [sym_set_lit] = STATE(2480), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2480), + [sym_splicing_read_cond_lit] = STATE(2480), + [sym_var_quoting_lit] = STATE(2480), + [sym_quoting_lit] = STATE(2480), + [sym_syn_quoting_lit] = STATE(2480), + [sym_unquote_splicing_lit] = STATE(2480), + [sym_unquoting_lit] = STATE(2480), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2480), + [sym_package_lit] = STATE(2480), + [sym_include_reader_macro] = STATE(2480), + [sym_complex_num_lit] = STATE(2480), + [aux_sym_dis_expr_repeat1] = STATE(43), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(4138), + [sym_comment] = ACTIONS(4138), + [anon_sym_POUND_] = ACTIONS(4108), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(4141), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(4113), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), + [sym_nil_lit] = ACTIONS(4141), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(4116), + [anon_sym_POUND_CARET] = ACTIONS(4119), + [anon_sym_LPAREN] = ACTIONS(4122), + [anon_sym_RPAREN] = ACTIONS(4125), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(4138), - [anon_sym_cl] = ACTIONS(3966), - [aux_sym_accumulation_verb_token1] = ACTIONS(3969), - [anon_sym_for] = ACTIONS(3969), - [anon_sym_and] = ACTIONS(3969), - [anon_sym_as] = ACTIONS(3969), - [anon_sym_with] = ACTIONS(3969), - [anon_sym_do] = ACTIONS(3969), - [anon_sym_while] = ACTIONS(3969), - [anon_sym_until] = ACTIONS(3969), - [anon_sym_repeat] = ACTIONS(3969), - [anon_sym_when] = ACTIONS(3969), - [anon_sym_if] = ACTIONS(3969), - [anon_sym_unless] = ACTIONS(3969), - [anon_sym_always] = ACTIONS(3969), - [anon_sym_thereis] = ACTIONS(3969), - [anon_sym_never] = ACTIONS(3969), - [anon_sym_else] = ACTIONS(3969), - [anon_sym_finally] = ACTIONS(3969), - [anon_sym_return] = ACTIONS(3969), - [anon_sym_initially] = ACTIONS(3969), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), - [sym_self_referential_reader_macro] = ACTIONS(4140), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [sym_fancy_literal] = ACTIONS(4141), + [anon_sym_cl] = ACTIONS(4127), + [aux_sym_accumulation_verb_token1] = ACTIONS(4130), + [anon_sym_for] = ACTIONS(4130), + [anon_sym_and] = ACTIONS(4130), + [anon_sym_as] = ACTIONS(4130), + [anon_sym_with] = ACTIONS(4130), + [anon_sym_do] = ACTIONS(4130), + [anon_sym_while] = ACTIONS(4130), + [anon_sym_until] = ACTIONS(4130), + [anon_sym_repeat] = ACTIONS(4130), + [anon_sym_when] = ACTIONS(4130), + [anon_sym_if] = ACTIONS(4130), + [anon_sym_unless] = ACTIONS(4130), + [anon_sym_always] = ACTIONS(4130), + [anon_sym_thereis] = ACTIONS(4130), + [anon_sym_never] = ACTIONS(4130), + [anon_sym_else] = ACTIONS(4130), + [anon_sym_finally] = ACTIONS(4130), + [anon_sym_return] = ACTIONS(4130), + [anon_sym_initially] = ACTIONS(4130), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), + [sym_self_referential_reader_macro] = ACTIONS(4143), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [269] = { - [sym__gap] = STATE(174), - [sym_dis_expr] = STATE(174), - [sym__form] = STATE(2170), - [sym_num_lit] = STATE(2170), - [sym_kwd_lit] = STATE(2170), - [sym_str_lit] = STATE(2170), - [sym_char_lit] = STATE(2170), - [sym_sym_lit] = STATE(2497), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2170), - [sym__bare_list_lit] = STATE(2648), - [sym_vec_lit] = STATE(2170), - [sym_set_lit] = STATE(2170), - [sym__bare_set_lit] = STATE(2625), - [sym_read_cond_lit] = STATE(2170), - [sym_splicing_read_cond_lit] = STATE(2170), - [sym_var_quoting_lit] = STATE(2170), - [sym_quoting_lit] = STATE(2170), - [sym_syn_quoting_lit] = STATE(2170), - [sym_unquote_splicing_lit] = STATE(2170), - [sym_unquoting_lit] = STATE(2170), - [sym_defun] = STATE(2648), - [sym_loop_macro] = STATE(2648), - [sym_path_lit] = STATE(2170), - [sym_package_lit] = STATE(2170), - [sym_include_reader_macro] = STATE(2170), - [sym_complex_num_lit] = STATE(2170), - [aux_sym_dis_expr_repeat1] = STATE(174), - [aux_sym_list_lit_repeat1] = STATE(2834), - [sym__ws] = ACTIONS(4142), - [sym_comment] = ACTIONS(4142), - [anon_sym_POUND_] = ACTIONS(3904), - [anon_sym_POUND] = ACTIONS(67), + [sym__gap] = STATE(994), + [sym_dis_expr] = STATE(994), + [sym__form] = STATE(2211), + [sym_num_lit] = STATE(2211), + [sym_kwd_lit] = STATE(2211), + [sym_str_lit] = STATE(2211), + [sym_char_lit] = STATE(2211), + [sym_sym_lit] = STATE(2112), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2211), + [sym__bare_list_lit] = STATE(2584), + [sym_vec_lit] = STATE(2211), + [sym_set_lit] = STATE(2211), + [sym__bare_set_lit] = STATE(2589), + [sym_read_cond_lit] = STATE(2211), + [sym_splicing_read_cond_lit] = STATE(2211), + [sym_var_quoting_lit] = STATE(2211), + [sym_quoting_lit] = STATE(2211), + [sym_syn_quoting_lit] = STATE(2211), + [sym_unquote_splicing_lit] = STATE(2211), + [sym_unquoting_lit] = STATE(2211), + [sym_defun] = STATE(2584), + [sym_loop_macro] = STATE(2584), + [sym_path_lit] = STATE(2211), + [sym_package_lit] = STATE(2211), + [sym_include_reader_macro] = STATE(2211), + [sym_complex_num_lit] = STATE(2211), + [aux_sym_dis_expr_repeat1] = STATE(994), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(3351), + [sym_comment] = ACTIONS(3351), + [anon_sym_POUND_] = ACTIONS(3354), + [anon_sym_POUND] = ACTIONS(174), [anon_sym_DOT] = ACTIONS(4145), - [aux_sym_num_lit_token1] = ACTIONS(71), - [anon_sym_COLON] = ACTIONS(3909), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), + [aux_sym_num_lit_token1] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(3359), + [anon_sym_COLON_COLON] = ACTIONS(184), + [anon_sym_DQUOTE] = ACTIONS(186), [sym_nil_lit] = ACTIONS(4145), - [aux_sym_sym_lit_token1] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(3912), - [anon_sym_POUND_CARET] = ACTIONS(3915), - [anon_sym_LPAREN] = ACTIONS(3918), - [anon_sym_RPAREN] = ACTIONS(3921), - [anon_sym_POUND0A] = ACTIONS(98), - [anon_sym_POUND0a] = ACTIONS(98), - [anon_sym_POUND_QMARK] = ACTIONS(100), - [anon_sym_POUND_QMARK_AT] = ACTIONS(102), - [anon_sym_POUND_SQUOTE] = ACTIONS(104), - [anon_sym_SQUOTE] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_COMMA_AT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(112), + [aux_sym_sym_lit_token1] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(3362), + [anon_sym_POUND_CARET] = ACTIONS(3365), + [anon_sym_LPAREN] = ACTIONS(3368), + [anon_sym_RPAREN] = ACTIONS(3371), + [anon_sym_POUND0A] = ACTIONS(205), + [anon_sym_POUND0a] = ACTIONS(205), + [anon_sym_POUND_QMARK] = ACTIONS(207), + [anon_sym_POUND_QMARK_AT] = ACTIONS(209), + [anon_sym_POUND_SQUOTE] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_COMMA_AT] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(219), [sym_block_comment] = ACTIONS(47), [sym_fancy_literal] = ACTIONS(4145), - [anon_sym_cl] = ACTIONS(3923), - [aux_sym_accumulation_verb_token1] = ACTIONS(3926), - [anon_sym_for] = ACTIONS(3926), - [anon_sym_and] = ACTIONS(3926), - [anon_sym_as] = ACTIONS(3926), - [anon_sym_with] = ACTIONS(3926), - [anon_sym_do] = ACTIONS(3926), - [anon_sym_while] = ACTIONS(3926), - [anon_sym_until] = ACTIONS(3926), - [anon_sym_repeat] = ACTIONS(3926), - [anon_sym_when] = ACTIONS(3926), - [anon_sym_if] = ACTIONS(3926), - [anon_sym_unless] = ACTIONS(3926), - [anon_sym_always] = ACTIONS(3926), - [anon_sym_thereis] = ACTIONS(3926), - [anon_sym_never] = ACTIONS(3926), - [anon_sym_else] = ACTIONS(3926), - [anon_sym_finally] = ACTIONS(3926), - [anon_sym_return] = ACTIONS(3926), - [anon_sym_initially] = ACTIONS(3926), - [anon_sym_POUNDP] = ACTIONS(123), - [anon_sym_POUNDp] = ACTIONS(123), + [anon_sym_cl] = ACTIONS(3373), + [aux_sym_accumulation_verb_token1] = ACTIONS(3376), + [anon_sym_for] = ACTIONS(3376), + [anon_sym_and] = ACTIONS(3376), + [anon_sym_as] = ACTIONS(3376), + [anon_sym_with] = ACTIONS(3376), + [anon_sym_do] = ACTIONS(3376), + [anon_sym_while] = ACTIONS(3376), + [anon_sym_until] = ACTIONS(3376), + [anon_sym_repeat] = ACTIONS(3376), + [anon_sym_when] = ACTIONS(3376), + [anon_sym_if] = ACTIONS(3376), + [anon_sym_unless] = ACTIONS(3376), + [anon_sym_always] = ACTIONS(3376), + [anon_sym_thereis] = ACTIONS(3376), + [anon_sym_never] = ACTIONS(3376), + [anon_sym_else] = ACTIONS(3376), + [anon_sym_finally] = ACTIONS(3376), + [anon_sym_return] = ACTIONS(3376), + [anon_sym_initially] = ACTIONS(3376), + [anon_sym_POUNDP] = ACTIONS(230), + [anon_sym_POUNDp] = ACTIONS(230), [sym_self_referential_reader_macro] = ACTIONS(4147), - [anon_sym_POUND_PLUS] = ACTIONS(127), - [anon_sym_POUND_DASH] = ACTIONS(127), - [anon_sym_POUNDC] = ACTIONS(129), - [anon_sym_POUNDc] = ACTIONS(129), + [anon_sym_POUND_PLUS] = ACTIONS(234), + [anon_sym_POUND_DASH] = ACTIONS(234), + [anon_sym_POUNDC] = ACTIONS(236), + [anon_sym_POUNDc] = ACTIONS(236), }, [270] = { - [sym__gap] = STATE(1147), - [sym_dis_expr] = STATE(1147), - [sym__form] = STATE(2722), - [sym_num_lit] = STATE(2722), - [sym_kwd_lit] = STATE(2722), - [sym_str_lit] = STATE(2722), - [sym_char_lit] = STATE(2722), - [sym_sym_lit] = STATE(2762), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2722), - [sym__bare_list_lit] = STATE(1892), - [sym_vec_lit] = STATE(2722), - [sym_set_lit] = STATE(2722), - [sym__bare_set_lit] = STATE(1893), - [sym_read_cond_lit] = STATE(2722), - [sym_splicing_read_cond_lit] = STATE(2722), - [sym_var_quoting_lit] = STATE(2722), - [sym_quoting_lit] = STATE(2722), - [sym_syn_quoting_lit] = STATE(2722), - [sym_unquote_splicing_lit] = STATE(2722), - [sym_unquoting_lit] = STATE(2722), - [sym_defun] = STATE(1892), - [sym_for_clause_word] = STATE(432), - [sym_loop_macro] = STATE(1892), - [sym_path_lit] = STATE(2722), - [sym_package_lit] = STATE(2722), - [sym_include_reader_macro] = STATE(2722), - [sym_complex_num_lit] = STATE(2722), - [aux_sym_dis_expr_repeat1] = STATE(1147), - [aux_sym_list_lit_repeat1] = STATE(2840), + [sym__gap] = STATE(1134), + [sym_dis_expr] = STATE(1134), + [sym__form] = STATE(2734), + [sym_num_lit] = STATE(2734), + [sym_kwd_lit] = STATE(2734), + [sym_str_lit] = STATE(2734), + [sym_char_lit] = STATE(2734), + [sym_sym_lit] = STATE(2766), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2734), + [sym__bare_list_lit] = STATE(1975), + [sym_vec_lit] = STATE(2734), + [sym_set_lit] = STATE(2734), + [sym__bare_set_lit] = STATE(1976), + [sym_read_cond_lit] = STATE(2734), + [sym_splicing_read_cond_lit] = STATE(2734), + [sym_var_quoting_lit] = STATE(2734), + [sym_quoting_lit] = STATE(2734), + [sym_syn_quoting_lit] = STATE(2734), + [sym_unquote_splicing_lit] = STATE(2734), + [sym_unquoting_lit] = STATE(2734), + [sym_defun] = STATE(1975), + [sym_for_clause_word] = STATE(834), + [sym_loop_macro] = STATE(1975), + [sym_path_lit] = STATE(2734), + [sym_package_lit] = STATE(2734), + [sym_include_reader_macro] = STATE(2734), + [sym_complex_num_lit] = STATE(2734), + [aux_sym_dis_expr_repeat1] = STATE(1134), + [aux_sym_list_lit_repeat1] = STATE(2830), [sym__ws] = ACTIONS(4149), [sym_comment] = ACTIONS(4149), - [anon_sym_POUND_] = ACTIONS(1596), - [anon_sym_POUND] = ACTIONS(1598), + [anon_sym_POUND_] = ACTIONS(1452), + [anon_sym_POUND] = ACTIONS(1454), [anon_sym_DOT] = ACTIONS(4151), - [aux_sym_num_lit_token1] = ACTIONS(1602), - [anon_sym_COLON] = ACTIONS(1604), - [anon_sym_COLON_COLON] = ACTIONS(1606), - [anon_sym_DQUOTE] = ACTIONS(1608), + [aux_sym_num_lit_token1] = ACTIONS(1458), + [anon_sym_COLON] = ACTIONS(1460), + [anon_sym_COLON_COLON] = ACTIONS(1462), + [anon_sym_DQUOTE] = ACTIONS(1464), [sym_nil_lit] = ACTIONS(4151), - [aux_sym_sym_lit_token1] = ACTIONS(1610), + [aux_sym_sym_lit_token1] = ACTIONS(1466), [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(1612), - [anon_sym_POUND0A] = ACTIONS(1614), - [anon_sym_POUND0a] = ACTIONS(1614), - [anon_sym_POUND_QMARK] = ACTIONS(1616), - [anon_sym_POUND_QMARK_AT] = ACTIONS(1618), - [anon_sym_POUND_SQUOTE] = ACTIONS(1620), - [anon_sym_SQUOTE] = ACTIONS(1622), - [anon_sym_BQUOTE] = ACTIONS(1624), - [anon_sym_COMMA_AT] = ACTIONS(1626), - [anon_sym_COMMA] = ACTIONS(1628), + [anon_sym_LPAREN] = ACTIONS(1468), + [anon_sym_POUND0A] = ACTIONS(1470), + [anon_sym_POUND0a] = ACTIONS(1470), + [anon_sym_POUND_QMARK] = ACTIONS(1472), + [anon_sym_POUND_QMARK_AT] = ACTIONS(1474), + [anon_sym_POUND_SQUOTE] = ACTIONS(1476), + [anon_sym_SQUOTE] = ACTIONS(1478), + [anon_sym_BQUOTE] = ACTIONS(1480), + [anon_sym_COMMA_AT] = ACTIONS(1482), + [anon_sym_COMMA] = ACTIONS(1484), [sym_block_comment] = ACTIONS(47), [sym_fancy_literal] = ACTIONS(4151), - [anon_sym_cl] = ACTIONS(1630), - [anon_sym_in] = ACTIONS(1632), - [anon_sym_across] = ACTIONS(1632), - [anon_sym_being] = ACTIONS(1632), - [anon_sym_using] = ACTIONS(1632), - [aux_sym_for_clause_word_token1] = ACTIONS(1634), - [anon_sym_below] = ACTIONS(1632), - [anon_sym_above] = ACTIONS(1632), - [anon_sym_from] = ACTIONS(1632), - [anon_sym_to] = ACTIONS(1632), - [anon_sym_upto] = ACTIONS(1632), - [anon_sym_upfrom] = ACTIONS(1632), - [anon_sym_downto] = ACTIONS(1632), - [anon_sym_downfrom] = ACTIONS(1632), - [anon_sym_on] = ACTIONS(1632), - [anon_sym_by] = ACTIONS(1632), - [anon_sym_then] = ACTIONS(1632), - [anon_sym_EQ] = ACTIONS(1632), - [anon_sym_POUNDP] = ACTIONS(1636), - [anon_sym_POUNDp] = ACTIONS(1636), + [anon_sym_cl] = ACTIONS(1486), + [anon_sym_in] = ACTIONS(1488), + [anon_sym_across] = ACTIONS(1488), + [anon_sym_being] = ACTIONS(1488), + [anon_sym_using] = ACTIONS(1488), + [aux_sym_for_clause_word_token1] = ACTIONS(1490), + [anon_sym_below] = ACTIONS(1488), + [anon_sym_above] = ACTIONS(1488), + [anon_sym_from] = ACTIONS(1488), + [anon_sym_to] = ACTIONS(1488), + [anon_sym_upto] = ACTIONS(1488), + [anon_sym_upfrom] = ACTIONS(1488), + [anon_sym_downto] = ACTIONS(1488), + [anon_sym_downfrom] = ACTIONS(1488), + [anon_sym_on] = ACTIONS(1488), + [anon_sym_by] = ACTIONS(1488), + [anon_sym_then] = ACTIONS(1488), + [anon_sym_EQ] = ACTIONS(1488), + [anon_sym_POUNDP] = ACTIONS(1492), + [anon_sym_POUNDp] = ACTIONS(1492), [sym_self_referential_reader_macro] = ACTIONS(4153), - [anon_sym_POUND_PLUS] = ACTIONS(1640), - [anon_sym_POUND_DASH] = ACTIONS(1640), - [anon_sym_POUNDC] = ACTIONS(1642), - [anon_sym_POUNDc] = ACTIONS(1642), + [anon_sym_POUND_PLUS] = ACTIONS(1496), + [anon_sym_POUND_DASH] = ACTIONS(1496), + [anon_sym_POUNDC] = ACTIONS(1498), + [anon_sym_POUNDc] = ACTIONS(1498), }, [271] = { - [sym__gap] = STATE(1147), - [sym_dis_expr] = STATE(1147), - [sym__form] = STATE(2695), - [sym_num_lit] = STATE(2695), - [sym_kwd_lit] = STATE(2695), - [sym_str_lit] = STATE(2695), - [sym_char_lit] = STATE(2695), - [sym_sym_lit] = STATE(2762), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2695), - [sym__bare_list_lit] = STATE(1892), - [sym_vec_lit] = STATE(2695), - [sym_set_lit] = STATE(2695), - [sym__bare_set_lit] = STATE(1893), - [sym_read_cond_lit] = STATE(2695), - [sym_splicing_read_cond_lit] = STATE(2695), - [sym_var_quoting_lit] = STATE(2695), - [sym_quoting_lit] = STATE(2695), - [sym_syn_quoting_lit] = STATE(2695), - [sym_unquote_splicing_lit] = STATE(2695), - [sym_unquoting_lit] = STATE(2695), - [sym_defun] = STATE(1892), - [sym_for_clause_word] = STATE(432), - [sym_loop_macro] = STATE(1892), - [sym_path_lit] = STATE(2695), - [sym_package_lit] = STATE(2695), - [sym_include_reader_macro] = STATE(2695), - [sym_complex_num_lit] = STATE(2695), - [aux_sym_dis_expr_repeat1] = STATE(1147), - [aux_sym_list_lit_repeat1] = STATE(2840), + [sym__gap] = STATE(1134), + [sym_dis_expr] = STATE(1134), + [sym__form] = STATE(2718), + [sym_num_lit] = STATE(2718), + [sym_kwd_lit] = STATE(2718), + [sym_str_lit] = STATE(2718), + [sym_char_lit] = STATE(2718), + [sym_sym_lit] = STATE(2766), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2718), + [sym__bare_list_lit] = STATE(1975), + [sym_vec_lit] = STATE(2718), + [sym_set_lit] = STATE(2718), + [sym__bare_set_lit] = STATE(1976), + [sym_read_cond_lit] = STATE(2718), + [sym_splicing_read_cond_lit] = STATE(2718), + [sym_var_quoting_lit] = STATE(2718), + [sym_quoting_lit] = STATE(2718), + [sym_syn_quoting_lit] = STATE(2718), + [sym_unquote_splicing_lit] = STATE(2718), + [sym_unquoting_lit] = STATE(2718), + [sym_defun] = STATE(1975), + [sym_for_clause_word] = STATE(834), + [sym_loop_macro] = STATE(1975), + [sym_path_lit] = STATE(2718), + [sym_package_lit] = STATE(2718), + [sym_include_reader_macro] = STATE(2718), + [sym_complex_num_lit] = STATE(2718), + [aux_sym_dis_expr_repeat1] = STATE(1134), + [aux_sym_list_lit_repeat1] = STATE(2830), [sym__ws] = ACTIONS(4149), [sym_comment] = ACTIONS(4149), - [anon_sym_POUND_] = ACTIONS(1596), - [anon_sym_POUND] = ACTIONS(1598), + [anon_sym_POUND_] = ACTIONS(1452), + [anon_sym_POUND] = ACTIONS(1454), [anon_sym_DOT] = ACTIONS(4155), - [aux_sym_num_lit_token1] = ACTIONS(1602), - [anon_sym_COLON] = ACTIONS(1604), - [anon_sym_COLON_COLON] = ACTIONS(1606), - [anon_sym_DQUOTE] = ACTIONS(1608), + [aux_sym_num_lit_token1] = ACTIONS(1458), + [anon_sym_COLON] = ACTIONS(1460), + [anon_sym_COLON_COLON] = ACTIONS(1462), + [anon_sym_DQUOTE] = ACTIONS(1464), [sym_nil_lit] = ACTIONS(4155), - [aux_sym_sym_lit_token1] = ACTIONS(1610), + [aux_sym_sym_lit_token1] = ACTIONS(1466), [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(1612), - [anon_sym_POUND0A] = ACTIONS(1614), - [anon_sym_POUND0a] = ACTIONS(1614), - [anon_sym_POUND_QMARK] = ACTIONS(1616), - [anon_sym_POUND_QMARK_AT] = ACTIONS(1618), - [anon_sym_POUND_SQUOTE] = ACTIONS(1620), - [anon_sym_SQUOTE] = ACTIONS(1622), - [anon_sym_BQUOTE] = ACTIONS(1624), - [anon_sym_COMMA_AT] = ACTIONS(1626), - [anon_sym_COMMA] = ACTIONS(1628), + [anon_sym_LPAREN] = ACTIONS(1468), + [anon_sym_POUND0A] = ACTIONS(1470), + [anon_sym_POUND0a] = ACTIONS(1470), + [anon_sym_POUND_QMARK] = ACTIONS(1472), + [anon_sym_POUND_QMARK_AT] = ACTIONS(1474), + [anon_sym_POUND_SQUOTE] = ACTIONS(1476), + [anon_sym_SQUOTE] = ACTIONS(1478), + [anon_sym_BQUOTE] = ACTIONS(1480), + [anon_sym_COMMA_AT] = ACTIONS(1482), + [anon_sym_COMMA] = ACTIONS(1484), [sym_block_comment] = ACTIONS(47), [sym_fancy_literal] = ACTIONS(4155), - [anon_sym_cl] = ACTIONS(1630), - [anon_sym_in] = ACTIONS(1632), - [anon_sym_across] = ACTIONS(1632), - [anon_sym_being] = ACTIONS(1632), - [anon_sym_using] = ACTIONS(1632), - [aux_sym_for_clause_word_token1] = ACTIONS(1634), - [anon_sym_below] = ACTIONS(1632), - [anon_sym_above] = ACTIONS(1632), - [anon_sym_from] = ACTIONS(1632), - [anon_sym_to] = ACTIONS(1632), - [anon_sym_upto] = ACTIONS(1632), - [anon_sym_upfrom] = ACTIONS(1632), - [anon_sym_downto] = ACTIONS(1632), - [anon_sym_downfrom] = ACTIONS(1632), - [anon_sym_on] = ACTIONS(1632), - [anon_sym_by] = ACTIONS(1632), - [anon_sym_then] = ACTIONS(1632), - [anon_sym_EQ] = ACTIONS(1632), - [anon_sym_POUNDP] = ACTIONS(1636), - [anon_sym_POUNDp] = ACTIONS(1636), + [anon_sym_cl] = ACTIONS(1486), + [anon_sym_in] = ACTIONS(1488), + [anon_sym_across] = ACTIONS(1488), + [anon_sym_being] = ACTIONS(1488), + [anon_sym_using] = ACTIONS(1488), + [aux_sym_for_clause_word_token1] = ACTIONS(1490), + [anon_sym_below] = ACTIONS(1488), + [anon_sym_above] = ACTIONS(1488), + [anon_sym_from] = ACTIONS(1488), + [anon_sym_to] = ACTIONS(1488), + [anon_sym_upto] = ACTIONS(1488), + [anon_sym_upfrom] = ACTIONS(1488), + [anon_sym_downto] = ACTIONS(1488), + [anon_sym_downfrom] = ACTIONS(1488), + [anon_sym_on] = ACTIONS(1488), + [anon_sym_by] = ACTIONS(1488), + [anon_sym_then] = ACTIONS(1488), + [anon_sym_EQ] = ACTIONS(1488), + [anon_sym_POUNDP] = ACTIONS(1492), + [anon_sym_POUNDp] = ACTIONS(1492), [sym_self_referential_reader_macro] = ACTIONS(4157), - [anon_sym_POUND_PLUS] = ACTIONS(1640), - [anon_sym_POUND_DASH] = ACTIONS(1640), - [anon_sym_POUNDC] = ACTIONS(1642), - [anon_sym_POUNDc] = ACTIONS(1642), + [anon_sym_POUND_PLUS] = ACTIONS(1496), + [anon_sym_POUND_DASH] = ACTIONS(1496), + [anon_sym_POUNDC] = ACTIONS(1498), + [anon_sym_POUNDc] = ACTIONS(1498), }, [272] = { - [sym__gap] = STATE(1147), - [sym_dis_expr] = STATE(1147), - [sym__form] = STATE(2743), - [sym_num_lit] = STATE(2743), - [sym_kwd_lit] = STATE(2743), - [sym_str_lit] = STATE(2743), - [sym_char_lit] = STATE(2743), - [sym_sym_lit] = STATE(2762), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2743), - [sym__bare_list_lit] = STATE(1892), - [sym_vec_lit] = STATE(2743), - [sym_set_lit] = STATE(2743), - [sym__bare_set_lit] = STATE(1893), - [sym_read_cond_lit] = STATE(2743), - [sym_splicing_read_cond_lit] = STATE(2743), - [sym_var_quoting_lit] = STATE(2743), - [sym_quoting_lit] = STATE(2743), - [sym_syn_quoting_lit] = STATE(2743), - [sym_unquote_splicing_lit] = STATE(2743), - [sym_unquoting_lit] = STATE(2743), - [sym_defun] = STATE(1892), - [sym_for_clause_word] = STATE(432), - [sym_loop_macro] = STATE(1892), - [sym_path_lit] = STATE(2743), - [sym_package_lit] = STATE(2743), - [sym_include_reader_macro] = STATE(2743), - [sym_complex_num_lit] = STATE(2743), - [aux_sym_dis_expr_repeat1] = STATE(1147), - [aux_sym_list_lit_repeat1] = STATE(2840), + [sym__gap] = STATE(1134), + [sym_dis_expr] = STATE(1134), + [sym__form] = STATE(2730), + [sym_num_lit] = STATE(2730), + [sym_kwd_lit] = STATE(2730), + [sym_str_lit] = STATE(2730), + [sym_char_lit] = STATE(2730), + [sym_sym_lit] = STATE(2766), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2730), + [sym__bare_list_lit] = STATE(1975), + [sym_vec_lit] = STATE(2730), + [sym_set_lit] = STATE(2730), + [sym__bare_set_lit] = STATE(1976), + [sym_read_cond_lit] = STATE(2730), + [sym_splicing_read_cond_lit] = STATE(2730), + [sym_var_quoting_lit] = STATE(2730), + [sym_quoting_lit] = STATE(2730), + [sym_syn_quoting_lit] = STATE(2730), + [sym_unquote_splicing_lit] = STATE(2730), + [sym_unquoting_lit] = STATE(2730), + [sym_defun] = STATE(1975), + [sym_for_clause_word] = STATE(834), + [sym_loop_macro] = STATE(1975), + [sym_path_lit] = STATE(2730), + [sym_package_lit] = STATE(2730), + [sym_include_reader_macro] = STATE(2730), + [sym_complex_num_lit] = STATE(2730), + [aux_sym_dis_expr_repeat1] = STATE(1134), + [aux_sym_list_lit_repeat1] = STATE(2830), [sym__ws] = ACTIONS(4149), [sym_comment] = ACTIONS(4149), - [anon_sym_POUND_] = ACTIONS(1596), - [anon_sym_POUND] = ACTIONS(1598), + [anon_sym_POUND_] = ACTIONS(1452), + [anon_sym_POUND] = ACTIONS(1454), [anon_sym_DOT] = ACTIONS(4159), - [aux_sym_num_lit_token1] = ACTIONS(1602), - [anon_sym_COLON] = ACTIONS(1604), - [anon_sym_COLON_COLON] = ACTIONS(1606), - [anon_sym_DQUOTE] = ACTIONS(1608), + [aux_sym_num_lit_token1] = ACTIONS(1458), + [anon_sym_COLON] = ACTIONS(1460), + [anon_sym_COLON_COLON] = ACTIONS(1462), + [anon_sym_DQUOTE] = ACTIONS(1464), [sym_nil_lit] = ACTIONS(4159), - [aux_sym_sym_lit_token1] = ACTIONS(1610), + [aux_sym_sym_lit_token1] = ACTIONS(1466), [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(1612), - [anon_sym_POUND0A] = ACTIONS(1614), - [anon_sym_POUND0a] = ACTIONS(1614), - [anon_sym_POUND_QMARK] = ACTIONS(1616), - [anon_sym_POUND_QMARK_AT] = ACTIONS(1618), - [anon_sym_POUND_SQUOTE] = ACTIONS(1620), - [anon_sym_SQUOTE] = ACTIONS(1622), - [anon_sym_BQUOTE] = ACTIONS(1624), - [anon_sym_COMMA_AT] = ACTIONS(1626), - [anon_sym_COMMA] = ACTIONS(1628), + [anon_sym_LPAREN] = ACTIONS(1468), + [anon_sym_POUND0A] = ACTIONS(1470), + [anon_sym_POUND0a] = ACTIONS(1470), + [anon_sym_POUND_QMARK] = ACTIONS(1472), + [anon_sym_POUND_QMARK_AT] = ACTIONS(1474), + [anon_sym_POUND_SQUOTE] = ACTIONS(1476), + [anon_sym_SQUOTE] = ACTIONS(1478), + [anon_sym_BQUOTE] = ACTIONS(1480), + [anon_sym_COMMA_AT] = ACTIONS(1482), + [anon_sym_COMMA] = ACTIONS(1484), [sym_block_comment] = ACTIONS(47), [sym_fancy_literal] = ACTIONS(4159), - [anon_sym_cl] = ACTIONS(1630), - [anon_sym_in] = ACTIONS(1632), - [anon_sym_across] = ACTIONS(1632), - [anon_sym_being] = ACTIONS(1632), - [anon_sym_using] = ACTIONS(1632), - [aux_sym_for_clause_word_token1] = ACTIONS(1634), - [anon_sym_below] = ACTIONS(1632), - [anon_sym_above] = ACTIONS(1632), - [anon_sym_from] = ACTIONS(1632), - [anon_sym_to] = ACTIONS(1632), - [anon_sym_upto] = ACTIONS(1632), - [anon_sym_upfrom] = ACTIONS(1632), - [anon_sym_downto] = ACTIONS(1632), - [anon_sym_downfrom] = ACTIONS(1632), - [anon_sym_on] = ACTIONS(1632), - [anon_sym_by] = ACTIONS(1632), - [anon_sym_then] = ACTIONS(1632), - [anon_sym_EQ] = ACTIONS(1632), - [anon_sym_POUNDP] = ACTIONS(1636), - [anon_sym_POUNDp] = ACTIONS(1636), + [anon_sym_cl] = ACTIONS(1486), + [anon_sym_in] = ACTIONS(1488), + [anon_sym_across] = ACTIONS(1488), + [anon_sym_being] = ACTIONS(1488), + [anon_sym_using] = ACTIONS(1488), + [aux_sym_for_clause_word_token1] = ACTIONS(1490), + [anon_sym_below] = ACTIONS(1488), + [anon_sym_above] = ACTIONS(1488), + [anon_sym_from] = ACTIONS(1488), + [anon_sym_to] = ACTIONS(1488), + [anon_sym_upto] = ACTIONS(1488), + [anon_sym_upfrom] = ACTIONS(1488), + [anon_sym_downto] = ACTIONS(1488), + [anon_sym_downfrom] = ACTIONS(1488), + [anon_sym_on] = ACTIONS(1488), + [anon_sym_by] = ACTIONS(1488), + [anon_sym_then] = ACTIONS(1488), + [anon_sym_EQ] = ACTIONS(1488), + [anon_sym_POUNDP] = ACTIONS(1492), + [anon_sym_POUNDp] = ACTIONS(1492), [sym_self_referential_reader_macro] = ACTIONS(4161), - [anon_sym_POUND_PLUS] = ACTIONS(1640), - [anon_sym_POUND_DASH] = ACTIONS(1640), - [anon_sym_POUNDC] = ACTIONS(1642), - [anon_sym_POUNDc] = ACTIONS(1642), + [anon_sym_POUND_PLUS] = ACTIONS(1496), + [anon_sym_POUND_DASH] = ACTIONS(1496), + [anon_sym_POUNDC] = ACTIONS(1498), + [anon_sym_POUNDc] = ACTIONS(1498), }, [273] = { - [sym__gap] = STATE(1147), - [sym_dis_expr] = STATE(1147), - [sym__form] = STATE(2724), - [sym_num_lit] = STATE(2724), - [sym_kwd_lit] = STATE(2724), - [sym_str_lit] = STATE(2724), - [sym_char_lit] = STATE(2724), - [sym_sym_lit] = STATE(2762), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2724), - [sym__bare_list_lit] = STATE(1892), - [sym_vec_lit] = STATE(2724), - [sym_set_lit] = STATE(2724), - [sym__bare_set_lit] = STATE(1893), - [sym_read_cond_lit] = STATE(2724), - [sym_splicing_read_cond_lit] = STATE(2724), - [sym_var_quoting_lit] = STATE(2724), - [sym_quoting_lit] = STATE(2724), - [sym_syn_quoting_lit] = STATE(2724), - [sym_unquote_splicing_lit] = STATE(2724), - [sym_unquoting_lit] = STATE(2724), - [sym_defun] = STATE(1892), - [sym_for_clause_word] = STATE(432), - [sym_loop_macro] = STATE(1892), - [sym_path_lit] = STATE(2724), - [sym_package_lit] = STATE(2724), - [sym_include_reader_macro] = STATE(2724), - [sym_complex_num_lit] = STATE(2724), - [aux_sym_dis_expr_repeat1] = STATE(1147), - [aux_sym_list_lit_repeat1] = STATE(2840), + [sym__gap] = STATE(1134), + [sym_dis_expr] = STATE(1134), + [sym__form] = STATE(2682), + [sym_num_lit] = STATE(2682), + [sym_kwd_lit] = STATE(2682), + [sym_str_lit] = STATE(2682), + [sym_char_lit] = STATE(2682), + [sym_sym_lit] = STATE(2766), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2682), + [sym__bare_list_lit] = STATE(1975), + [sym_vec_lit] = STATE(2682), + [sym_set_lit] = STATE(2682), + [sym__bare_set_lit] = STATE(1976), + [sym_read_cond_lit] = STATE(2682), + [sym_splicing_read_cond_lit] = STATE(2682), + [sym_var_quoting_lit] = STATE(2682), + [sym_quoting_lit] = STATE(2682), + [sym_syn_quoting_lit] = STATE(2682), + [sym_unquote_splicing_lit] = STATE(2682), + [sym_unquoting_lit] = STATE(2682), + [sym_defun] = STATE(1975), + [sym_for_clause_word] = STATE(834), + [sym_loop_macro] = STATE(1975), + [sym_path_lit] = STATE(2682), + [sym_package_lit] = STATE(2682), + [sym_include_reader_macro] = STATE(2682), + [sym_complex_num_lit] = STATE(2682), + [aux_sym_dis_expr_repeat1] = STATE(1134), + [aux_sym_list_lit_repeat1] = STATE(2830), [sym__ws] = ACTIONS(4149), [sym_comment] = ACTIONS(4149), - [anon_sym_POUND_] = ACTIONS(1596), - [anon_sym_POUND] = ACTIONS(1598), + [anon_sym_POUND_] = ACTIONS(1452), + [anon_sym_POUND] = ACTIONS(1454), [anon_sym_DOT] = ACTIONS(4163), - [aux_sym_num_lit_token1] = ACTIONS(1602), - [anon_sym_COLON] = ACTIONS(1604), - [anon_sym_COLON_COLON] = ACTIONS(1606), - [anon_sym_DQUOTE] = ACTIONS(1608), + [aux_sym_num_lit_token1] = ACTIONS(1458), + [anon_sym_COLON] = ACTIONS(1460), + [anon_sym_COLON_COLON] = ACTIONS(1462), + [anon_sym_DQUOTE] = ACTIONS(1464), [sym_nil_lit] = ACTIONS(4163), - [aux_sym_sym_lit_token1] = ACTIONS(1610), + [aux_sym_sym_lit_token1] = ACTIONS(1466), [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(1612), - [anon_sym_POUND0A] = ACTIONS(1614), - [anon_sym_POUND0a] = ACTIONS(1614), - [anon_sym_POUND_QMARK] = ACTIONS(1616), - [anon_sym_POUND_QMARK_AT] = ACTIONS(1618), - [anon_sym_POUND_SQUOTE] = ACTIONS(1620), - [anon_sym_SQUOTE] = ACTIONS(1622), - [anon_sym_BQUOTE] = ACTIONS(1624), - [anon_sym_COMMA_AT] = ACTIONS(1626), - [anon_sym_COMMA] = ACTIONS(1628), + [anon_sym_LPAREN] = ACTIONS(1468), + [anon_sym_POUND0A] = ACTIONS(1470), + [anon_sym_POUND0a] = ACTIONS(1470), + [anon_sym_POUND_QMARK] = ACTIONS(1472), + [anon_sym_POUND_QMARK_AT] = ACTIONS(1474), + [anon_sym_POUND_SQUOTE] = ACTIONS(1476), + [anon_sym_SQUOTE] = ACTIONS(1478), + [anon_sym_BQUOTE] = ACTIONS(1480), + [anon_sym_COMMA_AT] = ACTIONS(1482), + [anon_sym_COMMA] = ACTIONS(1484), [sym_block_comment] = ACTIONS(47), [sym_fancy_literal] = ACTIONS(4163), - [anon_sym_cl] = ACTIONS(1630), - [anon_sym_in] = ACTIONS(1632), - [anon_sym_across] = ACTIONS(1632), - [anon_sym_being] = ACTIONS(1632), - [anon_sym_using] = ACTIONS(1632), - [aux_sym_for_clause_word_token1] = ACTIONS(1634), - [anon_sym_below] = ACTIONS(1632), - [anon_sym_above] = ACTIONS(1632), - [anon_sym_from] = ACTIONS(1632), - [anon_sym_to] = ACTIONS(1632), - [anon_sym_upto] = ACTIONS(1632), - [anon_sym_upfrom] = ACTIONS(1632), - [anon_sym_downto] = ACTIONS(1632), - [anon_sym_downfrom] = ACTIONS(1632), - [anon_sym_on] = ACTIONS(1632), - [anon_sym_by] = ACTIONS(1632), - [anon_sym_then] = ACTIONS(1632), - [anon_sym_EQ] = ACTIONS(1632), - [anon_sym_POUNDP] = ACTIONS(1636), - [anon_sym_POUNDp] = ACTIONS(1636), + [anon_sym_cl] = ACTIONS(1486), + [anon_sym_in] = ACTIONS(1488), + [anon_sym_across] = ACTIONS(1488), + [anon_sym_being] = ACTIONS(1488), + [anon_sym_using] = ACTIONS(1488), + [aux_sym_for_clause_word_token1] = ACTIONS(1490), + [anon_sym_below] = ACTIONS(1488), + [anon_sym_above] = ACTIONS(1488), + [anon_sym_from] = ACTIONS(1488), + [anon_sym_to] = ACTIONS(1488), + [anon_sym_upto] = ACTIONS(1488), + [anon_sym_upfrom] = ACTIONS(1488), + [anon_sym_downto] = ACTIONS(1488), + [anon_sym_downfrom] = ACTIONS(1488), + [anon_sym_on] = ACTIONS(1488), + [anon_sym_by] = ACTIONS(1488), + [anon_sym_then] = ACTIONS(1488), + [anon_sym_EQ] = ACTIONS(1488), + [anon_sym_POUNDP] = ACTIONS(1492), + [anon_sym_POUNDp] = ACTIONS(1492), [sym_self_referential_reader_macro] = ACTIONS(4165), - [anon_sym_POUND_PLUS] = ACTIONS(1640), - [anon_sym_POUND_DASH] = ACTIONS(1640), - [anon_sym_POUNDC] = ACTIONS(1642), - [anon_sym_POUNDc] = ACTIONS(1642), + [anon_sym_POUND_PLUS] = ACTIONS(1496), + [anon_sym_POUND_DASH] = ACTIONS(1496), + [anon_sym_POUNDC] = ACTIONS(1498), + [anon_sym_POUNDc] = ACTIONS(1498), }, [274] = { - [sym__gap] = STATE(1147), - [sym_dis_expr] = STATE(1147), - [sym__form] = STATE(2683), - [sym_num_lit] = STATE(2683), - [sym_kwd_lit] = STATE(2683), - [sym_str_lit] = STATE(2683), - [sym_char_lit] = STATE(2683), - [sym_sym_lit] = STATE(2762), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2683), - [sym__bare_list_lit] = STATE(1892), - [sym_vec_lit] = STATE(2683), - [sym_set_lit] = STATE(2683), - [sym__bare_set_lit] = STATE(1893), - [sym_read_cond_lit] = STATE(2683), - [sym_splicing_read_cond_lit] = STATE(2683), - [sym_var_quoting_lit] = STATE(2683), - [sym_quoting_lit] = STATE(2683), - [sym_syn_quoting_lit] = STATE(2683), - [sym_unquote_splicing_lit] = STATE(2683), - [sym_unquoting_lit] = STATE(2683), - [sym_defun] = STATE(1892), - [sym_for_clause_word] = STATE(432), - [sym_loop_macro] = STATE(1892), - [sym_path_lit] = STATE(2683), - [sym_package_lit] = STATE(2683), - [sym_include_reader_macro] = STATE(2683), - [sym_complex_num_lit] = STATE(2683), - [aux_sym_dis_expr_repeat1] = STATE(1147), - [aux_sym_list_lit_repeat1] = STATE(2840), + [sym__gap] = STATE(1134), + [sym_dis_expr] = STATE(1134), + [sym__form] = STATE(2721), + [sym_num_lit] = STATE(2721), + [sym_kwd_lit] = STATE(2721), + [sym_str_lit] = STATE(2721), + [sym_char_lit] = STATE(2721), + [sym_sym_lit] = STATE(2766), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2721), + [sym__bare_list_lit] = STATE(1975), + [sym_vec_lit] = STATE(2721), + [sym_set_lit] = STATE(2721), + [sym__bare_set_lit] = STATE(1976), + [sym_read_cond_lit] = STATE(2721), + [sym_splicing_read_cond_lit] = STATE(2721), + [sym_var_quoting_lit] = STATE(2721), + [sym_quoting_lit] = STATE(2721), + [sym_syn_quoting_lit] = STATE(2721), + [sym_unquote_splicing_lit] = STATE(2721), + [sym_unquoting_lit] = STATE(2721), + [sym_defun] = STATE(1975), + [sym_for_clause_word] = STATE(834), + [sym_loop_macro] = STATE(1975), + [sym_path_lit] = STATE(2721), + [sym_package_lit] = STATE(2721), + [sym_include_reader_macro] = STATE(2721), + [sym_complex_num_lit] = STATE(2721), + [aux_sym_dis_expr_repeat1] = STATE(1134), + [aux_sym_list_lit_repeat1] = STATE(2830), [sym__ws] = ACTIONS(4149), [sym_comment] = ACTIONS(4149), - [anon_sym_POUND_] = ACTIONS(1596), - [anon_sym_POUND] = ACTIONS(1598), + [anon_sym_POUND_] = ACTIONS(1452), + [anon_sym_POUND] = ACTIONS(1454), [anon_sym_DOT] = ACTIONS(4167), - [aux_sym_num_lit_token1] = ACTIONS(1602), - [anon_sym_COLON] = ACTIONS(1604), - [anon_sym_COLON_COLON] = ACTIONS(1606), - [anon_sym_DQUOTE] = ACTIONS(1608), + [aux_sym_num_lit_token1] = ACTIONS(1458), + [anon_sym_COLON] = ACTIONS(1460), + [anon_sym_COLON_COLON] = ACTIONS(1462), + [anon_sym_DQUOTE] = ACTIONS(1464), [sym_nil_lit] = ACTIONS(4167), - [aux_sym_sym_lit_token1] = ACTIONS(1610), + [aux_sym_sym_lit_token1] = ACTIONS(1466), [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(1612), - [anon_sym_POUND0A] = ACTIONS(1614), - [anon_sym_POUND0a] = ACTIONS(1614), - [anon_sym_POUND_QMARK] = ACTIONS(1616), - [anon_sym_POUND_QMARK_AT] = ACTIONS(1618), - [anon_sym_POUND_SQUOTE] = ACTIONS(1620), - [anon_sym_SQUOTE] = ACTIONS(1622), - [anon_sym_BQUOTE] = ACTIONS(1624), - [anon_sym_COMMA_AT] = ACTIONS(1626), - [anon_sym_COMMA] = ACTIONS(1628), + [anon_sym_LPAREN] = ACTIONS(1468), + [anon_sym_POUND0A] = ACTIONS(1470), + [anon_sym_POUND0a] = ACTIONS(1470), + [anon_sym_POUND_QMARK] = ACTIONS(1472), + [anon_sym_POUND_QMARK_AT] = ACTIONS(1474), + [anon_sym_POUND_SQUOTE] = ACTIONS(1476), + [anon_sym_SQUOTE] = ACTIONS(1478), + [anon_sym_BQUOTE] = ACTIONS(1480), + [anon_sym_COMMA_AT] = ACTIONS(1482), + [anon_sym_COMMA] = ACTIONS(1484), [sym_block_comment] = ACTIONS(47), [sym_fancy_literal] = ACTIONS(4167), - [anon_sym_cl] = ACTIONS(1630), - [anon_sym_in] = ACTIONS(1632), - [anon_sym_across] = ACTIONS(1632), - [anon_sym_being] = ACTIONS(1632), - [anon_sym_using] = ACTIONS(1632), - [aux_sym_for_clause_word_token1] = ACTIONS(1634), - [anon_sym_below] = ACTIONS(1632), - [anon_sym_above] = ACTIONS(1632), - [anon_sym_from] = ACTIONS(1632), - [anon_sym_to] = ACTIONS(1632), - [anon_sym_upto] = ACTIONS(1632), - [anon_sym_upfrom] = ACTIONS(1632), - [anon_sym_downto] = ACTIONS(1632), - [anon_sym_downfrom] = ACTIONS(1632), - [anon_sym_on] = ACTIONS(1632), - [anon_sym_by] = ACTIONS(1632), - [anon_sym_then] = ACTIONS(1632), - [anon_sym_EQ] = ACTIONS(1632), - [anon_sym_POUNDP] = ACTIONS(1636), - [anon_sym_POUNDp] = ACTIONS(1636), + [anon_sym_cl] = ACTIONS(1486), + [anon_sym_in] = ACTIONS(1488), + [anon_sym_across] = ACTIONS(1488), + [anon_sym_being] = ACTIONS(1488), + [anon_sym_using] = ACTIONS(1488), + [aux_sym_for_clause_word_token1] = ACTIONS(1490), + [anon_sym_below] = ACTIONS(1488), + [anon_sym_above] = ACTIONS(1488), + [anon_sym_from] = ACTIONS(1488), + [anon_sym_to] = ACTIONS(1488), + [anon_sym_upto] = ACTIONS(1488), + [anon_sym_upfrom] = ACTIONS(1488), + [anon_sym_downto] = ACTIONS(1488), + [anon_sym_downfrom] = ACTIONS(1488), + [anon_sym_on] = ACTIONS(1488), + [anon_sym_by] = ACTIONS(1488), + [anon_sym_then] = ACTIONS(1488), + [anon_sym_EQ] = ACTIONS(1488), + [anon_sym_POUNDP] = ACTIONS(1492), + [anon_sym_POUNDp] = ACTIONS(1492), [sym_self_referential_reader_macro] = ACTIONS(4169), - [anon_sym_POUND_PLUS] = ACTIONS(1640), - [anon_sym_POUND_DASH] = ACTIONS(1640), - [anon_sym_POUNDC] = ACTIONS(1642), - [anon_sym_POUNDc] = ACTIONS(1642), + [anon_sym_POUND_PLUS] = ACTIONS(1496), + [anon_sym_POUND_DASH] = ACTIONS(1496), + [anon_sym_POUNDC] = ACTIONS(1498), + [anon_sym_POUNDc] = ACTIONS(1498), }, [275] = { - [sym__gap] = STATE(1147), - [sym_dis_expr] = STATE(1147), - [sym__form] = STATE(2689), - [sym_num_lit] = STATE(2689), - [sym_kwd_lit] = STATE(2689), - [sym_str_lit] = STATE(2689), - [sym_char_lit] = STATE(2689), - [sym_sym_lit] = STATE(2762), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2689), - [sym__bare_list_lit] = STATE(1892), - [sym_vec_lit] = STATE(2689), - [sym_set_lit] = STATE(2689), - [sym__bare_set_lit] = STATE(1893), - [sym_read_cond_lit] = STATE(2689), - [sym_splicing_read_cond_lit] = STATE(2689), - [sym_var_quoting_lit] = STATE(2689), - [sym_quoting_lit] = STATE(2689), - [sym_syn_quoting_lit] = STATE(2689), - [sym_unquote_splicing_lit] = STATE(2689), - [sym_unquoting_lit] = STATE(2689), - [sym_defun] = STATE(1892), - [sym_for_clause_word] = STATE(432), - [sym_loop_macro] = STATE(1892), - [sym_path_lit] = STATE(2689), - [sym_package_lit] = STATE(2689), - [sym_include_reader_macro] = STATE(2689), - [sym_complex_num_lit] = STATE(2689), - [aux_sym_dis_expr_repeat1] = STATE(1147), - [aux_sym_list_lit_repeat1] = STATE(2840), + [sym__gap] = STATE(1134), + [sym_dis_expr] = STATE(1134), + [sym__form] = STATE(2701), + [sym_num_lit] = STATE(2701), + [sym_kwd_lit] = STATE(2701), + [sym_str_lit] = STATE(2701), + [sym_char_lit] = STATE(2701), + [sym_sym_lit] = STATE(2766), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2701), + [sym__bare_list_lit] = STATE(1975), + [sym_vec_lit] = STATE(2701), + [sym_set_lit] = STATE(2701), + [sym__bare_set_lit] = STATE(1976), + [sym_read_cond_lit] = STATE(2701), + [sym_splicing_read_cond_lit] = STATE(2701), + [sym_var_quoting_lit] = STATE(2701), + [sym_quoting_lit] = STATE(2701), + [sym_syn_quoting_lit] = STATE(2701), + [sym_unquote_splicing_lit] = STATE(2701), + [sym_unquoting_lit] = STATE(2701), + [sym_defun] = STATE(1975), + [sym_for_clause_word] = STATE(834), + [sym_loop_macro] = STATE(1975), + [sym_path_lit] = STATE(2701), + [sym_package_lit] = STATE(2701), + [sym_include_reader_macro] = STATE(2701), + [sym_complex_num_lit] = STATE(2701), + [aux_sym_dis_expr_repeat1] = STATE(1134), + [aux_sym_list_lit_repeat1] = STATE(2830), [sym__ws] = ACTIONS(4149), [sym_comment] = ACTIONS(4149), - [anon_sym_POUND_] = ACTIONS(1596), - [anon_sym_POUND] = ACTIONS(1598), + [anon_sym_POUND_] = ACTIONS(1452), + [anon_sym_POUND] = ACTIONS(1454), [anon_sym_DOT] = ACTIONS(4171), - [aux_sym_num_lit_token1] = ACTIONS(1602), - [anon_sym_COLON] = ACTIONS(1604), - [anon_sym_COLON_COLON] = ACTIONS(1606), - [anon_sym_DQUOTE] = ACTIONS(1608), + [aux_sym_num_lit_token1] = ACTIONS(1458), + [anon_sym_COLON] = ACTIONS(1460), + [anon_sym_COLON_COLON] = ACTIONS(1462), + [anon_sym_DQUOTE] = ACTIONS(1464), [sym_nil_lit] = ACTIONS(4171), - [aux_sym_sym_lit_token1] = ACTIONS(1610), + [aux_sym_sym_lit_token1] = ACTIONS(1466), [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(1612), - [anon_sym_POUND0A] = ACTIONS(1614), - [anon_sym_POUND0a] = ACTIONS(1614), - [anon_sym_POUND_QMARK] = ACTIONS(1616), - [anon_sym_POUND_QMARK_AT] = ACTIONS(1618), - [anon_sym_POUND_SQUOTE] = ACTIONS(1620), - [anon_sym_SQUOTE] = ACTIONS(1622), - [anon_sym_BQUOTE] = ACTIONS(1624), - [anon_sym_COMMA_AT] = ACTIONS(1626), - [anon_sym_COMMA] = ACTIONS(1628), + [anon_sym_LPAREN] = ACTIONS(1468), + [anon_sym_POUND0A] = ACTIONS(1470), + [anon_sym_POUND0a] = ACTIONS(1470), + [anon_sym_POUND_QMARK] = ACTIONS(1472), + [anon_sym_POUND_QMARK_AT] = ACTIONS(1474), + [anon_sym_POUND_SQUOTE] = ACTIONS(1476), + [anon_sym_SQUOTE] = ACTIONS(1478), + [anon_sym_BQUOTE] = ACTIONS(1480), + [anon_sym_COMMA_AT] = ACTIONS(1482), + [anon_sym_COMMA] = ACTIONS(1484), [sym_block_comment] = ACTIONS(47), [sym_fancy_literal] = ACTIONS(4171), - [anon_sym_cl] = ACTIONS(1630), - [anon_sym_in] = ACTIONS(1632), - [anon_sym_across] = ACTIONS(1632), - [anon_sym_being] = ACTIONS(1632), - [anon_sym_using] = ACTIONS(1632), - [aux_sym_for_clause_word_token1] = ACTIONS(1634), - [anon_sym_below] = ACTIONS(1632), - [anon_sym_above] = ACTIONS(1632), - [anon_sym_from] = ACTIONS(1632), - [anon_sym_to] = ACTIONS(1632), - [anon_sym_upto] = ACTIONS(1632), - [anon_sym_upfrom] = ACTIONS(1632), - [anon_sym_downto] = ACTIONS(1632), - [anon_sym_downfrom] = ACTIONS(1632), - [anon_sym_on] = ACTIONS(1632), - [anon_sym_by] = ACTIONS(1632), - [anon_sym_then] = ACTIONS(1632), - [anon_sym_EQ] = ACTIONS(1632), - [anon_sym_POUNDP] = ACTIONS(1636), - [anon_sym_POUNDp] = ACTIONS(1636), + [anon_sym_cl] = ACTIONS(1486), + [anon_sym_in] = ACTIONS(1488), + [anon_sym_across] = ACTIONS(1488), + [anon_sym_being] = ACTIONS(1488), + [anon_sym_using] = ACTIONS(1488), + [aux_sym_for_clause_word_token1] = ACTIONS(1490), + [anon_sym_below] = ACTIONS(1488), + [anon_sym_above] = ACTIONS(1488), + [anon_sym_from] = ACTIONS(1488), + [anon_sym_to] = ACTIONS(1488), + [anon_sym_upto] = ACTIONS(1488), + [anon_sym_upfrom] = ACTIONS(1488), + [anon_sym_downto] = ACTIONS(1488), + [anon_sym_downfrom] = ACTIONS(1488), + [anon_sym_on] = ACTIONS(1488), + [anon_sym_by] = ACTIONS(1488), + [anon_sym_then] = ACTIONS(1488), + [anon_sym_EQ] = ACTIONS(1488), + [anon_sym_POUNDP] = ACTIONS(1492), + [anon_sym_POUNDp] = ACTIONS(1492), [sym_self_referential_reader_macro] = ACTIONS(4173), - [anon_sym_POUND_PLUS] = ACTIONS(1640), - [anon_sym_POUND_DASH] = ACTIONS(1640), - [anon_sym_POUNDC] = ACTIONS(1642), - [anon_sym_POUNDc] = ACTIONS(1642), + [anon_sym_POUND_PLUS] = ACTIONS(1496), + [anon_sym_POUND_DASH] = ACTIONS(1496), + [anon_sym_POUNDC] = ACTIONS(1498), + [anon_sym_POUNDc] = ACTIONS(1498), }, [276] = { - [sym__gap] = STATE(1147), - [sym_dis_expr] = STATE(1147), - [sym__form] = STATE(2742), - [sym_num_lit] = STATE(2742), - [sym_kwd_lit] = STATE(2742), - [sym_str_lit] = STATE(2742), - [sym_char_lit] = STATE(2742), - [sym_sym_lit] = STATE(2762), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2742), - [sym__bare_list_lit] = STATE(1892), - [sym_vec_lit] = STATE(2742), - [sym_set_lit] = STATE(2742), - [sym__bare_set_lit] = STATE(1893), - [sym_read_cond_lit] = STATE(2742), - [sym_splicing_read_cond_lit] = STATE(2742), - [sym_var_quoting_lit] = STATE(2742), - [sym_quoting_lit] = STATE(2742), - [sym_syn_quoting_lit] = STATE(2742), - [sym_unquote_splicing_lit] = STATE(2742), - [sym_unquoting_lit] = STATE(2742), - [sym_defun] = STATE(1892), - [sym_for_clause_word] = STATE(432), - [sym_loop_macro] = STATE(1892), - [sym_path_lit] = STATE(2742), - [sym_package_lit] = STATE(2742), - [sym_include_reader_macro] = STATE(2742), - [sym_complex_num_lit] = STATE(2742), - [aux_sym_dis_expr_repeat1] = STATE(1147), - [aux_sym_list_lit_repeat1] = STATE(2840), + [sym__gap] = STATE(1134), + [sym_dis_expr] = STATE(1134), + [sym__form] = STATE(2714), + [sym_num_lit] = STATE(2714), + [sym_kwd_lit] = STATE(2714), + [sym_str_lit] = STATE(2714), + [sym_char_lit] = STATE(2714), + [sym_sym_lit] = STATE(2766), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2714), + [sym__bare_list_lit] = STATE(1975), + [sym_vec_lit] = STATE(2714), + [sym_set_lit] = STATE(2714), + [sym__bare_set_lit] = STATE(1976), + [sym_read_cond_lit] = STATE(2714), + [sym_splicing_read_cond_lit] = STATE(2714), + [sym_var_quoting_lit] = STATE(2714), + [sym_quoting_lit] = STATE(2714), + [sym_syn_quoting_lit] = STATE(2714), + [sym_unquote_splicing_lit] = STATE(2714), + [sym_unquoting_lit] = STATE(2714), + [sym_defun] = STATE(1975), + [sym_for_clause_word] = STATE(834), + [sym_loop_macro] = STATE(1975), + [sym_path_lit] = STATE(2714), + [sym_package_lit] = STATE(2714), + [sym_include_reader_macro] = STATE(2714), + [sym_complex_num_lit] = STATE(2714), + [aux_sym_dis_expr_repeat1] = STATE(1134), + [aux_sym_list_lit_repeat1] = STATE(2830), [sym__ws] = ACTIONS(4149), [sym_comment] = ACTIONS(4149), - [anon_sym_POUND_] = ACTIONS(1596), - [anon_sym_POUND] = ACTIONS(1598), + [anon_sym_POUND_] = ACTIONS(1452), + [anon_sym_POUND] = ACTIONS(1454), [anon_sym_DOT] = ACTIONS(4175), - [aux_sym_num_lit_token1] = ACTIONS(1602), - [anon_sym_COLON] = ACTIONS(1604), - [anon_sym_COLON_COLON] = ACTIONS(1606), - [anon_sym_DQUOTE] = ACTIONS(1608), + [aux_sym_num_lit_token1] = ACTIONS(1458), + [anon_sym_COLON] = ACTIONS(1460), + [anon_sym_COLON_COLON] = ACTIONS(1462), + [anon_sym_DQUOTE] = ACTIONS(1464), [sym_nil_lit] = ACTIONS(4175), - [aux_sym_sym_lit_token1] = ACTIONS(1610), + [aux_sym_sym_lit_token1] = ACTIONS(1466), [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(1612), - [anon_sym_POUND0A] = ACTIONS(1614), - [anon_sym_POUND0a] = ACTIONS(1614), - [anon_sym_POUND_QMARK] = ACTIONS(1616), - [anon_sym_POUND_QMARK_AT] = ACTIONS(1618), - [anon_sym_POUND_SQUOTE] = ACTIONS(1620), - [anon_sym_SQUOTE] = ACTIONS(1622), - [anon_sym_BQUOTE] = ACTIONS(1624), - [anon_sym_COMMA_AT] = ACTIONS(1626), - [anon_sym_COMMA] = ACTIONS(1628), + [anon_sym_LPAREN] = ACTIONS(1468), + [anon_sym_POUND0A] = ACTIONS(1470), + [anon_sym_POUND0a] = ACTIONS(1470), + [anon_sym_POUND_QMARK] = ACTIONS(1472), + [anon_sym_POUND_QMARK_AT] = ACTIONS(1474), + [anon_sym_POUND_SQUOTE] = ACTIONS(1476), + [anon_sym_SQUOTE] = ACTIONS(1478), + [anon_sym_BQUOTE] = ACTIONS(1480), + [anon_sym_COMMA_AT] = ACTIONS(1482), + [anon_sym_COMMA] = ACTIONS(1484), [sym_block_comment] = ACTIONS(47), [sym_fancy_literal] = ACTIONS(4175), - [anon_sym_cl] = ACTIONS(1630), - [anon_sym_in] = ACTIONS(1632), - [anon_sym_across] = ACTIONS(1632), - [anon_sym_being] = ACTIONS(1632), - [anon_sym_using] = ACTIONS(1632), - [aux_sym_for_clause_word_token1] = ACTIONS(1634), - [anon_sym_below] = ACTIONS(1632), - [anon_sym_above] = ACTIONS(1632), - [anon_sym_from] = ACTIONS(1632), - [anon_sym_to] = ACTIONS(1632), - [anon_sym_upto] = ACTIONS(1632), - [anon_sym_upfrom] = ACTIONS(1632), - [anon_sym_downto] = ACTIONS(1632), - [anon_sym_downfrom] = ACTIONS(1632), - [anon_sym_on] = ACTIONS(1632), - [anon_sym_by] = ACTIONS(1632), - [anon_sym_then] = ACTIONS(1632), - [anon_sym_EQ] = ACTIONS(1632), - [anon_sym_POUNDP] = ACTIONS(1636), - [anon_sym_POUNDp] = ACTIONS(1636), + [anon_sym_cl] = ACTIONS(1486), + [anon_sym_in] = ACTIONS(1488), + [anon_sym_across] = ACTIONS(1488), + [anon_sym_being] = ACTIONS(1488), + [anon_sym_using] = ACTIONS(1488), + [aux_sym_for_clause_word_token1] = ACTIONS(1490), + [anon_sym_below] = ACTIONS(1488), + [anon_sym_above] = ACTIONS(1488), + [anon_sym_from] = ACTIONS(1488), + [anon_sym_to] = ACTIONS(1488), + [anon_sym_upto] = ACTIONS(1488), + [anon_sym_upfrom] = ACTIONS(1488), + [anon_sym_downto] = ACTIONS(1488), + [anon_sym_downfrom] = ACTIONS(1488), + [anon_sym_on] = ACTIONS(1488), + [anon_sym_by] = ACTIONS(1488), + [anon_sym_then] = ACTIONS(1488), + [anon_sym_EQ] = ACTIONS(1488), + [anon_sym_POUNDP] = ACTIONS(1492), + [anon_sym_POUNDp] = ACTIONS(1492), [sym_self_referential_reader_macro] = ACTIONS(4177), - [anon_sym_POUND_PLUS] = ACTIONS(1640), - [anon_sym_POUND_DASH] = ACTIONS(1640), - [anon_sym_POUNDC] = ACTIONS(1642), - [anon_sym_POUNDc] = ACTIONS(1642), + [anon_sym_POUND_PLUS] = ACTIONS(1496), + [anon_sym_POUND_DASH] = ACTIONS(1496), + [anon_sym_POUNDC] = ACTIONS(1498), + [anon_sym_POUNDc] = ACTIONS(1498), }, [277] = { - [sym__gap] = STATE(1147), - [sym_dis_expr] = STATE(1147), - [sym__form] = STATE(2680), - [sym_num_lit] = STATE(2680), - [sym_kwd_lit] = STATE(2680), - [sym_str_lit] = STATE(2680), - [sym_char_lit] = STATE(2680), - [sym_sym_lit] = STATE(2762), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2680), - [sym__bare_list_lit] = STATE(1892), - [sym_vec_lit] = STATE(2680), - [sym_set_lit] = STATE(2680), - [sym__bare_set_lit] = STATE(1893), - [sym_read_cond_lit] = STATE(2680), - [sym_splicing_read_cond_lit] = STATE(2680), - [sym_var_quoting_lit] = STATE(2680), - [sym_quoting_lit] = STATE(2680), - [sym_syn_quoting_lit] = STATE(2680), - [sym_unquote_splicing_lit] = STATE(2680), - [sym_unquoting_lit] = STATE(2680), - [sym_defun] = STATE(1892), - [sym_for_clause_word] = STATE(432), - [sym_loop_macro] = STATE(1892), - [sym_path_lit] = STATE(2680), - [sym_package_lit] = STATE(2680), - [sym_include_reader_macro] = STATE(2680), - [sym_complex_num_lit] = STATE(2680), - [aux_sym_dis_expr_repeat1] = STATE(1147), - [aux_sym_list_lit_repeat1] = STATE(2840), + [sym__gap] = STATE(1134), + [sym_dis_expr] = STATE(1134), + [sym__form] = STATE(2722), + [sym_num_lit] = STATE(2722), + [sym_kwd_lit] = STATE(2722), + [sym_str_lit] = STATE(2722), + [sym_char_lit] = STATE(2722), + [sym_sym_lit] = STATE(2766), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2722), + [sym__bare_list_lit] = STATE(1975), + [sym_vec_lit] = STATE(2722), + [sym_set_lit] = STATE(2722), + [sym__bare_set_lit] = STATE(1976), + [sym_read_cond_lit] = STATE(2722), + [sym_splicing_read_cond_lit] = STATE(2722), + [sym_var_quoting_lit] = STATE(2722), + [sym_quoting_lit] = STATE(2722), + [sym_syn_quoting_lit] = STATE(2722), + [sym_unquote_splicing_lit] = STATE(2722), + [sym_unquoting_lit] = STATE(2722), + [sym_defun] = STATE(1975), + [sym_for_clause_word] = STATE(834), + [sym_loop_macro] = STATE(1975), + [sym_path_lit] = STATE(2722), + [sym_package_lit] = STATE(2722), + [sym_include_reader_macro] = STATE(2722), + [sym_complex_num_lit] = STATE(2722), + [aux_sym_dis_expr_repeat1] = STATE(1134), + [aux_sym_list_lit_repeat1] = STATE(2830), [sym__ws] = ACTIONS(4149), [sym_comment] = ACTIONS(4149), - [anon_sym_POUND_] = ACTIONS(1596), - [anon_sym_POUND] = ACTIONS(1598), + [anon_sym_POUND_] = ACTIONS(1452), + [anon_sym_POUND] = ACTIONS(1454), [anon_sym_DOT] = ACTIONS(4179), - [aux_sym_num_lit_token1] = ACTIONS(1602), - [anon_sym_COLON] = ACTIONS(1604), - [anon_sym_COLON_COLON] = ACTIONS(1606), - [anon_sym_DQUOTE] = ACTIONS(1608), + [aux_sym_num_lit_token1] = ACTIONS(1458), + [anon_sym_COLON] = ACTIONS(1460), + [anon_sym_COLON_COLON] = ACTIONS(1462), + [anon_sym_DQUOTE] = ACTIONS(1464), [sym_nil_lit] = ACTIONS(4179), - [aux_sym_sym_lit_token1] = ACTIONS(1610), + [aux_sym_sym_lit_token1] = ACTIONS(1466), [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(1612), - [anon_sym_POUND0A] = ACTIONS(1614), - [anon_sym_POUND0a] = ACTIONS(1614), - [anon_sym_POUND_QMARK] = ACTIONS(1616), - [anon_sym_POUND_QMARK_AT] = ACTIONS(1618), - [anon_sym_POUND_SQUOTE] = ACTIONS(1620), - [anon_sym_SQUOTE] = ACTIONS(1622), - [anon_sym_BQUOTE] = ACTIONS(1624), - [anon_sym_COMMA_AT] = ACTIONS(1626), - [anon_sym_COMMA] = ACTIONS(1628), + [anon_sym_LPAREN] = ACTIONS(1468), + [anon_sym_POUND0A] = ACTIONS(1470), + [anon_sym_POUND0a] = ACTIONS(1470), + [anon_sym_POUND_QMARK] = ACTIONS(1472), + [anon_sym_POUND_QMARK_AT] = ACTIONS(1474), + [anon_sym_POUND_SQUOTE] = ACTIONS(1476), + [anon_sym_SQUOTE] = ACTIONS(1478), + [anon_sym_BQUOTE] = ACTIONS(1480), + [anon_sym_COMMA_AT] = ACTIONS(1482), + [anon_sym_COMMA] = ACTIONS(1484), [sym_block_comment] = ACTIONS(47), [sym_fancy_literal] = ACTIONS(4179), - [anon_sym_cl] = ACTIONS(1630), - [anon_sym_in] = ACTIONS(1632), - [anon_sym_across] = ACTIONS(1632), - [anon_sym_being] = ACTIONS(1632), - [anon_sym_using] = ACTIONS(1632), - [aux_sym_for_clause_word_token1] = ACTIONS(1634), - [anon_sym_below] = ACTIONS(1632), - [anon_sym_above] = ACTIONS(1632), - [anon_sym_from] = ACTIONS(1632), - [anon_sym_to] = ACTIONS(1632), - [anon_sym_upto] = ACTIONS(1632), - [anon_sym_upfrom] = ACTIONS(1632), - [anon_sym_downto] = ACTIONS(1632), - [anon_sym_downfrom] = ACTIONS(1632), - [anon_sym_on] = ACTIONS(1632), - [anon_sym_by] = ACTIONS(1632), - [anon_sym_then] = ACTIONS(1632), - [anon_sym_EQ] = ACTIONS(1632), - [anon_sym_POUNDP] = ACTIONS(1636), - [anon_sym_POUNDp] = ACTIONS(1636), + [anon_sym_cl] = ACTIONS(1486), + [anon_sym_in] = ACTIONS(1488), + [anon_sym_across] = ACTIONS(1488), + [anon_sym_being] = ACTIONS(1488), + [anon_sym_using] = ACTIONS(1488), + [aux_sym_for_clause_word_token1] = ACTIONS(1490), + [anon_sym_below] = ACTIONS(1488), + [anon_sym_above] = ACTIONS(1488), + [anon_sym_from] = ACTIONS(1488), + [anon_sym_to] = ACTIONS(1488), + [anon_sym_upto] = ACTIONS(1488), + [anon_sym_upfrom] = ACTIONS(1488), + [anon_sym_downto] = ACTIONS(1488), + [anon_sym_downfrom] = ACTIONS(1488), + [anon_sym_on] = ACTIONS(1488), + [anon_sym_by] = ACTIONS(1488), + [anon_sym_then] = ACTIONS(1488), + [anon_sym_EQ] = ACTIONS(1488), + [anon_sym_POUNDP] = ACTIONS(1492), + [anon_sym_POUNDp] = ACTIONS(1492), [sym_self_referential_reader_macro] = ACTIONS(4181), - [anon_sym_POUND_PLUS] = ACTIONS(1640), - [anon_sym_POUND_DASH] = ACTIONS(1640), - [anon_sym_POUNDC] = ACTIONS(1642), - [anon_sym_POUNDc] = ACTIONS(1642), + [anon_sym_POUND_PLUS] = ACTIONS(1496), + [anon_sym_POUND_DASH] = ACTIONS(1496), + [anon_sym_POUNDC] = ACTIONS(1498), + [anon_sym_POUNDc] = ACTIONS(1498), }, [278] = { - [sym__gap] = STATE(1147), - [sym_dis_expr] = STATE(1147), - [sym__form] = STATE(2682), - [sym_num_lit] = STATE(2682), - [sym_kwd_lit] = STATE(2682), - [sym_str_lit] = STATE(2682), - [sym_char_lit] = STATE(2682), - [sym_sym_lit] = STATE(2762), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(2682), - [sym__bare_list_lit] = STATE(1892), - [sym_vec_lit] = STATE(2682), - [sym_set_lit] = STATE(2682), - [sym__bare_set_lit] = STATE(1893), - [sym_read_cond_lit] = STATE(2682), - [sym_splicing_read_cond_lit] = STATE(2682), - [sym_var_quoting_lit] = STATE(2682), - [sym_quoting_lit] = STATE(2682), - [sym_syn_quoting_lit] = STATE(2682), - [sym_unquote_splicing_lit] = STATE(2682), - [sym_unquoting_lit] = STATE(2682), - [sym_defun] = STATE(1892), - [sym_for_clause_word] = STATE(432), - [sym_loop_macro] = STATE(1892), - [sym_path_lit] = STATE(2682), - [sym_package_lit] = STATE(2682), - [sym_include_reader_macro] = STATE(2682), - [sym_complex_num_lit] = STATE(2682), - [aux_sym_dis_expr_repeat1] = STATE(1147), - [aux_sym_list_lit_repeat1] = STATE(2840), + [sym__gap] = STATE(1134), + [sym_dis_expr] = STATE(1134), + [sym__form] = STATE(2739), + [sym_num_lit] = STATE(2739), + [sym_kwd_lit] = STATE(2739), + [sym_str_lit] = STATE(2739), + [sym_char_lit] = STATE(2739), + [sym_sym_lit] = STATE(2766), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2739), + [sym__bare_list_lit] = STATE(1975), + [sym_vec_lit] = STATE(2739), + [sym_set_lit] = STATE(2739), + [sym__bare_set_lit] = STATE(1976), + [sym_read_cond_lit] = STATE(2739), + [sym_splicing_read_cond_lit] = STATE(2739), + [sym_var_quoting_lit] = STATE(2739), + [sym_quoting_lit] = STATE(2739), + [sym_syn_quoting_lit] = STATE(2739), + [sym_unquote_splicing_lit] = STATE(2739), + [sym_unquoting_lit] = STATE(2739), + [sym_defun] = STATE(1975), + [sym_for_clause_word] = STATE(834), + [sym_loop_macro] = STATE(1975), + [sym_path_lit] = STATE(2739), + [sym_package_lit] = STATE(2739), + [sym_include_reader_macro] = STATE(2739), + [sym_complex_num_lit] = STATE(2739), + [aux_sym_dis_expr_repeat1] = STATE(1134), + [aux_sym_list_lit_repeat1] = STATE(2830), [sym__ws] = ACTIONS(4149), [sym_comment] = ACTIONS(4149), - [anon_sym_POUND_] = ACTIONS(1596), - [anon_sym_POUND] = ACTIONS(1598), + [anon_sym_POUND_] = ACTIONS(1452), + [anon_sym_POUND] = ACTIONS(1454), [anon_sym_DOT] = ACTIONS(4183), - [aux_sym_num_lit_token1] = ACTIONS(1602), - [anon_sym_COLON] = ACTIONS(1604), - [anon_sym_COLON_COLON] = ACTIONS(1606), - [anon_sym_DQUOTE] = ACTIONS(1608), + [aux_sym_num_lit_token1] = ACTIONS(1458), + [anon_sym_COLON] = ACTIONS(1460), + [anon_sym_COLON_COLON] = ACTIONS(1462), + [anon_sym_DQUOTE] = ACTIONS(1464), [sym_nil_lit] = ACTIONS(4183), - [aux_sym_sym_lit_token1] = ACTIONS(1610), + [aux_sym_sym_lit_token1] = ACTIONS(1466), [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(1612), - [anon_sym_POUND0A] = ACTIONS(1614), - [anon_sym_POUND0a] = ACTIONS(1614), - [anon_sym_POUND_QMARK] = ACTIONS(1616), - [anon_sym_POUND_QMARK_AT] = ACTIONS(1618), - [anon_sym_POUND_SQUOTE] = ACTIONS(1620), - [anon_sym_SQUOTE] = ACTIONS(1622), - [anon_sym_BQUOTE] = ACTIONS(1624), - [anon_sym_COMMA_AT] = ACTIONS(1626), - [anon_sym_COMMA] = ACTIONS(1628), + [anon_sym_LPAREN] = ACTIONS(1468), + [anon_sym_POUND0A] = ACTIONS(1470), + [anon_sym_POUND0a] = ACTIONS(1470), + [anon_sym_POUND_QMARK] = ACTIONS(1472), + [anon_sym_POUND_QMARK_AT] = ACTIONS(1474), + [anon_sym_POUND_SQUOTE] = ACTIONS(1476), + [anon_sym_SQUOTE] = ACTIONS(1478), + [anon_sym_BQUOTE] = ACTIONS(1480), + [anon_sym_COMMA_AT] = ACTIONS(1482), + [anon_sym_COMMA] = ACTIONS(1484), [sym_block_comment] = ACTIONS(47), [sym_fancy_literal] = ACTIONS(4183), - [anon_sym_cl] = ACTIONS(1630), - [anon_sym_in] = ACTIONS(1632), - [anon_sym_across] = ACTIONS(1632), - [anon_sym_being] = ACTIONS(1632), - [anon_sym_using] = ACTIONS(1632), - [aux_sym_for_clause_word_token1] = ACTIONS(1634), - [anon_sym_below] = ACTIONS(1632), - [anon_sym_above] = ACTIONS(1632), - [anon_sym_from] = ACTIONS(1632), - [anon_sym_to] = ACTIONS(1632), - [anon_sym_upto] = ACTIONS(1632), - [anon_sym_upfrom] = ACTIONS(1632), - [anon_sym_downto] = ACTIONS(1632), - [anon_sym_downfrom] = ACTIONS(1632), - [anon_sym_on] = ACTIONS(1632), - [anon_sym_by] = ACTIONS(1632), - [anon_sym_then] = ACTIONS(1632), - [anon_sym_EQ] = ACTIONS(1632), - [anon_sym_POUNDP] = ACTIONS(1636), - [anon_sym_POUNDp] = ACTIONS(1636), + [anon_sym_cl] = ACTIONS(1486), + [anon_sym_in] = ACTIONS(1488), + [anon_sym_across] = ACTIONS(1488), + [anon_sym_being] = ACTIONS(1488), + [anon_sym_using] = ACTIONS(1488), + [aux_sym_for_clause_word_token1] = ACTIONS(1490), + [anon_sym_below] = ACTIONS(1488), + [anon_sym_above] = ACTIONS(1488), + [anon_sym_from] = ACTIONS(1488), + [anon_sym_to] = ACTIONS(1488), + [anon_sym_upto] = ACTIONS(1488), + [anon_sym_upfrom] = ACTIONS(1488), + [anon_sym_downto] = ACTIONS(1488), + [anon_sym_downfrom] = ACTIONS(1488), + [anon_sym_on] = ACTIONS(1488), + [anon_sym_by] = ACTIONS(1488), + [anon_sym_then] = ACTIONS(1488), + [anon_sym_EQ] = ACTIONS(1488), + [anon_sym_POUNDP] = ACTIONS(1492), + [anon_sym_POUNDp] = ACTIONS(1492), [sym_self_referential_reader_macro] = ACTIONS(4185), - [anon_sym_POUND_PLUS] = ACTIONS(1640), - [anon_sym_POUND_DASH] = ACTIONS(1640), - [anon_sym_POUNDC] = ACTIONS(1642), - [anon_sym_POUNDc] = ACTIONS(1642), + [anon_sym_POUND_PLUS] = ACTIONS(1496), + [anon_sym_POUND_DASH] = ACTIONS(1496), + [anon_sym_POUNDC] = ACTIONS(1498), + [anon_sym_POUNDc] = ACTIONS(1498), }, [279] = { - [sym__gap] = STATE(1617), - [sym_dis_expr] = STATE(1617), + [sym__gap] = STATE(1615), + [sym_dis_expr] = STATE(1615), [sym__form] = STATE(1978), [sym_num_lit] = STATE(1978), [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -38649,16 +38221,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), - [sym_defun_keyword] = STATE(662), - [sym_defun_header] = STATE(318), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), + [sym_defun_keyword] = STATE(866), + [sym_defun_header] = STATE(371), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), - [aux_sym__bare_list_lit_repeat1] = STATE(319), + [aux_sym_list_lit_repeat1] = STATE(2817), + [aux_sym__bare_list_lit_repeat1] = STATE(383), [sym__ws] = ACTIONS(4187), [sym_comment] = ACTIONS(4187), [anon_sym_POUND_] = ACTIONS(4189), @@ -38701,22 +38273,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [280] = { - [sym__gap] = STATE(1622), - [sym_dis_expr] = STATE(1622), + [sym__gap] = STATE(1616), + [sym_dis_expr] = STATE(1616), [sym__form] = STATE(1978), [sym_num_lit] = STATE(1978), [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -38724,16 +38296,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), - [sym_defun_keyword] = STATE(662), - [sym_defun_header] = STATE(394), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), + [sym_defun_keyword] = STATE(866), + [sym_defun_header] = STATE(301), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), - [aux_sym__bare_list_lit_repeat1] = STATE(395), + [aux_sym_list_lit_repeat1] = STATE(2817), + [aux_sym__bare_list_lit_repeat1] = STATE(302), [sym__ws] = ACTIONS(4205), [sym_comment] = ACTIONS(4205), [anon_sym_POUND_] = ACTIONS(4189), @@ -38776,22 +38348,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [281] = { - [sym__gap] = STATE(1615), - [sym_dis_expr] = STATE(1615), + [sym__gap] = STATE(1617), + [sym_dis_expr] = STATE(1617), [sym__form] = STATE(1978), [sym_num_lit] = STATE(1978), [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -38799,16 +38371,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), - [sym_defun_keyword] = STATE(662), - [sym_defun_header] = STATE(388), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), + [sym_defun_keyword] = STATE(866), + [sym_defun_header] = STATE(313), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), - [aux_sym__bare_list_lit_repeat1] = STATE(385), + [aux_sym_list_lit_repeat1] = STATE(2817), + [aux_sym__bare_list_lit_repeat1] = STATE(314), [sym__ws] = ACTIONS(4213), [sym_comment] = ACTIONS(4213), [anon_sym_POUND_] = ACTIONS(4189), @@ -38851,22 +38423,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [282] = { - [sym__gap] = STATE(1613), - [sym_dis_expr] = STATE(1613), + [sym__gap] = STATE(1618), + [sym_dis_expr] = STATE(1618), [sym__form] = STATE(1978), [sym_num_lit] = STATE(1978), [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -38874,16 +38446,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), - [sym_defun_keyword] = STATE(662), - [sym_defun_header] = STATE(392), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), + [sym_defun_keyword] = STATE(866), + [sym_defun_header] = STATE(325), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), - [aux_sym__bare_list_lit_repeat1] = STATE(391), + [aux_sym_list_lit_repeat1] = STATE(2817), + [aux_sym__bare_list_lit_repeat1] = STATE(326), [sym__ws] = ACTIONS(4221), [sym_comment] = ACTIONS(4221), [anon_sym_POUND_] = ACTIONS(4189), @@ -38926,22 +38498,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [283] = { - [sym__gap] = STATE(1621), - [sym_dis_expr] = STATE(1621), + [sym__gap] = STATE(1619), + [sym_dis_expr] = STATE(1619), [sym__form] = STATE(1978), [sym_num_lit] = STATE(1978), [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -38949,16 +38521,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), - [sym_defun_keyword] = STATE(662), - [sym_defun_header] = STATE(377), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), + [sym_defun_keyword] = STATE(866), + [sym_defun_header] = STATE(337), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), - [aux_sym__bare_list_lit_repeat1] = STATE(378), + [aux_sym_list_lit_repeat1] = STATE(2817), + [aux_sym__bare_list_lit_repeat1] = STATE(338), [sym__ws] = ACTIONS(4229), [sym_comment] = ACTIONS(4229), [anon_sym_POUND_] = ACTIONS(4189), @@ -39001,22 +38573,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [284] = { - [sym__gap] = STATE(1620), - [sym_dis_expr] = STATE(1620), + [sym__gap] = STATE(1614), + [sym_dis_expr] = STATE(1614), [sym__form] = STATE(1978), [sym_num_lit] = STATE(1978), [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -39024,16 +38596,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), - [sym_defun_keyword] = STATE(662), - [sym_defun_header] = STATE(361), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), + [sym_defun_keyword] = STATE(866), + [sym_defun_header] = STATE(349), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), - [aux_sym__bare_list_lit_repeat1] = STATE(362), + [aux_sym_list_lit_repeat1] = STATE(2817), + [aux_sym__bare_list_lit_repeat1] = STATE(404), [sym__ws] = ACTIONS(4237), [sym_comment] = ACTIONS(4237), [anon_sym_POUND_] = ACTIONS(4189), @@ -39076,22 +38648,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [285] = { - [sym__gap] = STATE(1619), - [sym_dis_expr] = STATE(1619), + [sym__gap] = STATE(1620), + [sym_dis_expr] = STATE(1620), [sym__form] = STATE(1978), [sym_num_lit] = STATE(1978), [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -39099,16 +38671,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), - [sym_defun_keyword] = STATE(662), - [sym_defun_header] = STATE(291), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), + [sym_defun_keyword] = STATE(866), + [sym_defun_header] = STATE(361), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), - [aux_sym__bare_list_lit_repeat1] = STATE(348), + [aux_sym_list_lit_repeat1] = STATE(2817), + [aux_sym__bare_list_lit_repeat1] = STATE(362), [sym__ws] = ACTIONS(4245), [sym_comment] = ACTIONS(4245), [anon_sym_POUND_] = ACTIONS(4189), @@ -39151,22 +38723,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [286] = { - [sym__gap] = STATE(1614), - [sym_dis_expr] = STATE(1614), + [sym__gap] = STATE(1621), + [sym_dis_expr] = STATE(1621), [sym__form] = STATE(1978), [sym_num_lit] = STATE(1978), [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -39174,16 +38746,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), - [sym_defun_keyword] = STATE(662), - [sym_defun_header] = STATE(294), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), + [sym_defun_keyword] = STATE(866), + [sym_defun_header] = STATE(290), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), - [aux_sym__bare_list_lit_repeat1] = STATE(293), + [aux_sym_list_lit_repeat1] = STATE(2817), + [aux_sym__bare_list_lit_repeat1] = STATE(374), [sym__ws] = ACTIONS(4253), [sym_comment] = ACTIONS(4253), [anon_sym_POUND_] = ACTIONS(4189), @@ -39226,22 +38798,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [287] = { - [sym__gap] = STATE(1616), - [sym_dis_expr] = STATE(1616), + [sym__gap] = STATE(1622), + [sym_dis_expr] = STATE(1622), [sym__form] = STATE(1978), [sym_num_lit] = STATE(1978), [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -39249,16 +38821,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), - [sym_defun_keyword] = STATE(662), - [sym_defun_header] = STATE(303), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), + [sym_defun_keyword] = STATE(866), + [sym_defun_header] = STATE(385), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), - [aux_sym__bare_list_lit_repeat1] = STATE(305), + [aux_sym_list_lit_repeat1] = STATE(2817), + [aux_sym__bare_list_lit_repeat1] = STATE(386), [sym__ws] = ACTIONS(4261), [sym_comment] = ACTIONS(4261), [anon_sym_POUND_] = ACTIONS(4189), @@ -39301,22 +38873,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [288] = { - [sym__gap] = STATE(1618), - [sym_dis_expr] = STATE(1618), + [sym__gap] = STATE(1613), + [sym_dis_expr] = STATE(1613), [sym__form] = STATE(1978), [sym_num_lit] = STATE(1978), [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -39324,16 +38896,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), - [sym_defun_keyword] = STATE(662), - [sym_defun_header] = STATE(330), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), + [sym_defun_keyword] = STATE(866), + [sym_defun_header] = STATE(396), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), - [aux_sym__bare_list_lit_repeat1] = STATE(306), + [aux_sym_list_lit_repeat1] = STATE(2817), + [aux_sym__bare_list_lit_repeat1] = STATE(397), [sym__ws] = ACTIONS(4269), [sym_comment] = ACTIONS(4269), [anon_sym_POUND_] = ACTIONS(4189), @@ -39383,15 +38955,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -39399,13 +38971,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym_list_lit_repeat1] = STATE(2817), [aux_sym__bare_list_lit_repeat1] = STATE(289), [sym__ws] = ACTIONS(4277), [sym_comment] = ACTIONS(4277), @@ -39444,22 +39016,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(4351), }, [290] = { - [sym__gap] = STATE(384), - [sym_dis_expr] = STATE(384), + [sym__gap] = STATE(377), + [sym_dis_expr] = STATE(377), [sym__form] = STATE(1978), [sym_num_lit] = STATE(1978), [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -39467,14 +39039,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), - [aux_sym__bare_list_lit_repeat1] = STATE(384), + [aux_sym_list_lit_repeat1] = STATE(2817), + [aux_sym__bare_list_lit_repeat1] = STATE(378), [sym__ws] = ACTIONS(4354), [sym_comment] = ACTIONS(4354), [anon_sym_POUND_] = ACTIONS(9), @@ -39511,22 +39083,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [291] = { - [sym__gap] = STATE(352), - [sym_dis_expr] = STATE(352), + [sym__gap] = STATE(292), + [sym_dis_expr] = STATE(292), [sym__form] = STATE(1978), [sym_num_lit] = STATE(1978), [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -39534,14 +39106,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), - [aux_sym__bare_list_lit_repeat1] = STATE(354), + [aux_sym_list_lit_repeat1] = STATE(2817), + [aux_sym__bare_list_lit_repeat1] = STATE(292), [sym__ws] = ACTIONS(4358), [sym_comment] = ACTIONS(4358), [anon_sym_POUND_] = ACTIONS(9), @@ -39585,15 +39157,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -39601,13 +39173,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym_list_lit_repeat1] = STATE(2817), [aux_sym__bare_list_lit_repeat1] = STATE(289), [sym__ws] = ACTIONS(4362), [sym_comment] = ACTIONS(4362), @@ -39652,15 +39224,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -39668,13 +39240,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym_list_lit_repeat1] = STATE(2817), [aux_sym__bare_list_lit_repeat1] = STATE(289), [sym__ws] = ACTIONS(4362), [sym_comment] = ACTIONS(4362), @@ -39712,22 +39284,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [294] = { - [sym__gap] = STATE(372), - [sym_dis_expr] = STATE(372), + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), [sym__form] = STATE(1978), [sym_num_lit] = STATE(1978), [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -39735,16 +39307,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), - [aux_sym__bare_list_lit_repeat1] = STATE(373), - [sym__ws] = ACTIONS(4368), - [sym_comment] = ACTIONS(4368), + [aux_sym_list_lit_repeat1] = STATE(2817), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4362), + [sym_comment] = ACTIONS(4362), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(4191), @@ -39757,7 +39329,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(4370), + [anon_sym_RPAREN] = ACTIONS(4368), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -39779,22 +39351,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [295] = { - [sym__gap] = STATE(344), - [sym_dis_expr] = STATE(344), + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), [sym__form] = STATE(1978), [sym_num_lit] = STATE(1978), [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -39802,16 +39374,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), - [aux_sym__bare_list_lit_repeat1] = STATE(344), - [sym__ws] = ACTIONS(4372), - [sym_comment] = ACTIONS(4372), + [aux_sym_list_lit_repeat1] = STATE(2817), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4362), + [sym_comment] = ACTIONS(4362), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(4191), @@ -39824,7 +39396,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(4374), + [anon_sym_RBRACE] = ACTIONS(4370), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -39846,22 +39418,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [296] = { - [sym__gap] = STATE(289), - [sym_dis_expr] = STATE(289), + [sym__gap] = STATE(395), + [sym_dis_expr] = STATE(395), + [sym__form] = STATE(2013), + [sym_num_lit] = STATE(2013), + [sym_kwd_lit] = STATE(2013), + [sym_str_lit] = STATE(2013), + [sym_char_lit] = STATE(2013), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2013), + [sym__bare_list_lit] = STATE(1790), + [sym_vec_lit] = STATE(2013), + [sym_set_lit] = STATE(2013), + [sym__bare_set_lit] = STATE(1801), + [sym_read_cond_lit] = STATE(2013), + [sym_splicing_read_cond_lit] = STATE(2013), + [sym_var_quoting_lit] = STATE(2013), + [sym_quoting_lit] = STATE(2013), + [sym_syn_quoting_lit] = STATE(2013), + [sym_unquote_splicing_lit] = STATE(2013), + [sym_unquoting_lit] = STATE(2013), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), + [sym_path_lit] = STATE(2013), + [sym_package_lit] = STATE(2013), + [sym_include_reader_macro] = STATE(2013), + [sym_complex_num_lit] = STATE(2013), + [aux_sym_source_repeat1] = STATE(395), + [aux_sym_list_lit_repeat1] = STATE(2817), + [ts_builtin_sym_end] = ACTIONS(4372), + [sym__ws] = ACTIONS(4374), + [sym_comment] = ACTIONS(4374), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(13), + [aux_sym_num_lit_token1] = ACTIONS(15), + [anon_sym_COLON] = ACTIONS(17), + [anon_sym_COLON_COLON] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [sym_nil_lit] = ACTIONS(13), + [aux_sym_sym_lit_token1] = ACTIONS(23), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_POUND0A] = ACTIONS(31), + [anon_sym_POUND0a] = ACTIONS(31), + [anon_sym_POUND_QMARK] = ACTIONS(33), + [anon_sym_POUND_QMARK_AT] = ACTIONS(35), + [anon_sym_POUND_SQUOTE] = ACTIONS(37), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_BQUOTE] = ACTIONS(41), + [anon_sym_COMMA_AT] = ACTIONS(43), + [anon_sym_COMMA] = ACTIONS(45), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(13), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(53), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [297] = { + [sym__gap] = STATE(896), + [sym_dis_expr] = STATE(896), + [sym__form] = STATE(995), + [sym_num_lit] = STATE(995), + [sym_kwd_lit] = STATE(995), + [sym_str_lit] = STATE(995), + [sym_char_lit] = STATE(995), + [sym_sym_lit] = STATE(1136), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(995), + [sym__bare_list_lit] = STATE(1137), + [sym_vec_lit] = STATE(995), + [sym_set_lit] = STATE(995), + [sym__bare_set_lit] = STATE(1138), + [sym_read_cond_lit] = STATE(995), + [sym_splicing_read_cond_lit] = STATE(995), + [sym_var_quoting_lit] = STATE(995), + [sym_quoting_lit] = STATE(995), + [sym_syn_quoting_lit] = STATE(995), + [sym_unquote_splicing_lit] = STATE(995), + [sym_unquoting_lit] = STATE(995), + [sym_defun] = STATE(1137), + [sym_loop_macro] = STATE(1137), + [sym_path_lit] = STATE(995), + [sym_package_lit] = STATE(995), + [sym_include_reader_macro] = STATE(995), + [sym_complex_num_lit] = STATE(995), + [aux_sym_dis_expr_repeat1] = STATE(896), + [aux_sym_list_lit_repeat1] = STATE(2804), + [aux_sym_do_clause_repeat1] = STATE(4), + [sym__ws] = ACTIONS(4376), + [sym_comment] = ACTIONS(4376), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(124), + [anon_sym_DOT] = ACTIONS(126), + [aux_sym_num_lit_token1] = ACTIONS(128), + [anon_sym_COLON] = ACTIONS(4378), + [anon_sym_COLON_COLON] = ACTIONS(132), + [anon_sym_DQUOTE] = ACTIONS(134), + [sym_nil_lit] = ACTIONS(126), + [aux_sym_sym_lit_token1] = ACTIONS(136), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(4380), + [anon_sym_POUND0A] = ACTIONS(138), + [anon_sym_POUND0a] = ACTIONS(138), + [anon_sym_POUND_QMARK] = ACTIONS(140), + [anon_sym_POUND_QMARK_AT] = ACTIONS(142), + [anon_sym_POUND_SQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_BQUOTE] = ACTIONS(148), + [anon_sym_COMMA_AT] = ACTIONS(150), + [anon_sym_COMMA] = ACTIONS(152), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(126), + [anon_sym_cl] = ACTIONS(4382), + [anon_sym_POUNDP] = ACTIONS(154), + [anon_sym_POUNDp] = ACTIONS(154), + [sym_self_referential_reader_macro] = ACTIONS(156), + [anon_sym_POUND_PLUS] = ACTIONS(158), + [anon_sym_POUND_DASH] = ACTIONS(158), + [anon_sym_POUNDC] = ACTIONS(160), + [anon_sym_POUNDc] = ACTIONS(160), + }, + [298] = { + [sym__gap] = STATE(291), + [sym_dis_expr] = STATE(291), [sym__form] = STATE(1978), [sym_num_lit] = STATE(1978), [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -39869,16 +39575,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), - [aux_sym__bare_list_lit_repeat1] = STATE(289), - [sym__ws] = ACTIONS(4362), - [sym_comment] = ACTIONS(4362), + [aux_sym_list_lit_repeat1] = STATE(2817), + [aux_sym__bare_list_lit_repeat1] = STATE(293), + [sym__ws] = ACTIONS(4384), + [sym_comment] = ACTIONS(4384), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(4191), @@ -39891,7 +39597,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(4376), + [anon_sym_RPAREN] = ACTIONS(4386), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -39912,23 +39618,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [297] = { - [sym__gap] = STATE(349), - [sym_dis_expr] = STATE(349), + [299] = { + [sym__gap] = STATE(294), + [sym_dis_expr] = STATE(294), [sym__form] = STATE(1978), [sym_num_lit] = STATE(1978), [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -39936,16 +39642,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), - [aux_sym__bare_list_lit_repeat1] = STATE(349), - [sym__ws] = ACTIONS(4378), - [sym_comment] = ACTIONS(4378), + [aux_sym_list_lit_repeat1] = STATE(2817), + [aux_sym__bare_list_lit_repeat1] = STATE(294), + [sym__ws] = ACTIONS(4388), + [sym_comment] = ACTIONS(4388), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(4191), @@ -39958,7 +39664,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(4380), + [anon_sym_RPAREN] = ACTIONS(4386), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -39979,23 +39685,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [298] = { - [sym__gap] = STATE(301), - [sym_dis_expr] = STATE(301), + [300] = { + [sym__gap] = STATE(303), + [sym_dis_expr] = STATE(303), [sym__form] = STATE(1978), [sym_num_lit] = STATE(1978), [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -40003,16 +39709,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), - [aux_sym__bare_list_lit_repeat1] = STATE(301), - [sym__ws] = ACTIONS(4382), - [sym_comment] = ACTIONS(4382), + [aux_sym_list_lit_repeat1] = STATE(2817), + [aux_sym__bare_list_lit_repeat1] = STATE(303), + [sym__ws] = ACTIONS(4390), + [sym_comment] = ACTIONS(4390), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(4191), @@ -40025,7 +39731,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(4384), + [anon_sym_RBRACE] = ACTIONS(4392), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -40046,23 +39752,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [299] = { - [sym__gap] = STATE(289), - [sym_dis_expr] = STATE(289), + [301] = { + [sym__gap] = STATE(305), + [sym_dis_expr] = STATE(305), [sym__form] = STATE(1978), [sym_num_lit] = STATE(1978), [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -40070,16 +39776,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), - [aux_sym__bare_list_lit_repeat1] = STATE(289), - [sym__ws] = ACTIONS(4362), - [sym_comment] = ACTIONS(4362), + [aux_sym_list_lit_repeat1] = STATE(2817), + [aux_sym__bare_list_lit_repeat1] = STATE(306), + [sym__ws] = ACTIONS(4394), + [sym_comment] = ACTIONS(4394), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(4191), @@ -40092,7 +39798,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(4386), + [anon_sym_RPAREN] = ACTIONS(4396), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -40113,7 +39819,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [300] = { + [302] = { [sym__gap] = STATE(289), [sym_dis_expr] = STATE(289), [sym__form] = STATE(1978), @@ -40121,15 +39827,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -40137,13 +39843,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym_list_lit_repeat1] = STATE(2817), [aux_sym__bare_list_lit_repeat1] = STATE(289), [sym__ws] = ACTIONS(4362), [sym_comment] = ACTIONS(4362), @@ -40159,7 +39865,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(4388), + [anon_sym_RPAREN] = ACTIONS(4398), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -40180,7 +39886,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [301] = { + [303] = { [sym__gap] = STATE(289), [sym_dis_expr] = STATE(289), [sym__form] = STATE(1978), @@ -40188,15 +39894,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -40204,13 +39910,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym_list_lit_repeat1] = STATE(2817), [aux_sym__bare_list_lit_repeat1] = STATE(289), [sym__ws] = ACTIONS(4362), [sym_comment] = ACTIONS(4362), @@ -40226,7 +39932,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(4390), + [anon_sym_RBRACE] = ACTIONS(4400), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -40247,23 +39953,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [302] = { - [sym__gap] = STATE(308), - [sym_dis_expr] = STATE(308), + [304] = { + [sym__gap] = STATE(307), + [sym_dis_expr] = STATE(307), [sym__form] = STATE(1978), [sym_num_lit] = STATE(1978), [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -40271,16 +39977,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym_list_lit_repeat1] = STATE(2817), [aux_sym__bare_list_lit_repeat1] = STATE(308), - [sym__ws] = ACTIONS(4392), - [sym_comment] = ACTIONS(4392), + [sym__ws] = ACTIONS(4402), + [sym_comment] = ACTIONS(4402), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(4191), @@ -40293,7 +39999,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(4394), + [anon_sym_RPAREN] = ACTIONS(4404), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -40314,23 +40020,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [303] = { - [sym__gap] = STATE(310), - [sym_dis_expr] = STATE(310), + [305] = { + [sym__gap] = STATE(309), + [sym_dis_expr] = STATE(309), [sym__form] = STATE(1978), [sym_num_lit] = STATE(1978), [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -40338,16 +40044,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), - [aux_sym__bare_list_lit_repeat1] = STATE(311), - [sym__ws] = ACTIONS(4396), - [sym_comment] = ACTIONS(4396), + [aux_sym_list_lit_repeat1] = STATE(2817), + [aux_sym__bare_list_lit_repeat1] = STATE(309), + [sym__ws] = ACTIONS(4406), + [sym_comment] = ACTIONS(4406), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(4191), @@ -40360,7 +40066,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(4398), + [anon_sym_RPAREN] = ACTIONS(4404), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -40381,23 +40087,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [304] = { - [sym__gap] = STATE(363), - [sym_dis_expr] = STATE(363), + [306] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), [sym__form] = STATE(1978), [sym_num_lit] = STATE(1978), [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -40405,16 +40111,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), - [aux_sym__bare_list_lit_repeat1] = STATE(363), - [sym__ws] = ACTIONS(4400), - [sym_comment] = ACTIONS(4400), + [aux_sym_list_lit_repeat1] = STATE(2817), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4362), + [sym_comment] = ACTIONS(4362), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(4191), @@ -40427,7 +40133,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(4402), + [anon_sym_RPAREN] = ACTIONS(4408), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -40448,23 +40154,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [305] = { - [sym__gap] = STATE(289), - [sym_dis_expr] = STATE(289), + [307] = { + [sym__gap] = STATE(310), + [sym_dis_expr] = STATE(310), [sym__form] = STATE(1978), [sym_num_lit] = STATE(1978), [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -40472,16 +40178,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), - [aux_sym__bare_list_lit_repeat1] = STATE(289), - [sym__ws] = ACTIONS(4362), - [sym_comment] = ACTIONS(4362), + [aux_sym_list_lit_repeat1] = STATE(2817), + [aux_sym__bare_list_lit_repeat1] = STATE(310), + [sym__ws] = ACTIONS(4410), + [sym_comment] = ACTIONS(4410), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(4191), @@ -40494,7 +40200,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(4404), + [anon_sym_RPAREN] = ACTIONS(4412), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -40515,7 +40221,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [306] = { + [308] = { [sym__gap] = STATE(289), [sym_dis_expr] = STATE(289), [sym__form] = STATE(1978), @@ -40523,15 +40229,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -40539,13 +40245,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym_list_lit_repeat1] = STATE(2817), [aux_sym__bare_list_lit_repeat1] = STATE(289), [sym__ws] = ACTIONS(4362), [sym_comment] = ACTIONS(4362), @@ -40561,7 +40267,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(4406), + [anon_sym_RPAREN] = ACTIONS(4414), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -40582,74 +40288,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [307] = { - [sym__gap] = STATE(908), - [sym_dis_expr] = STATE(908), - [sym__form] = STATE(994), - [sym_num_lit] = STATE(994), - [sym_kwd_lit] = STATE(994), - [sym_str_lit] = STATE(994), - [sym_char_lit] = STATE(994), - [sym_sym_lit] = STATE(1186), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(994), - [sym__bare_list_lit] = STATE(1187), - [sym_vec_lit] = STATE(994), - [sym_set_lit] = STATE(994), - [sym__bare_set_lit] = STATE(1191), - [sym_read_cond_lit] = STATE(994), - [sym_splicing_read_cond_lit] = STATE(994), - [sym_var_quoting_lit] = STATE(994), - [sym_quoting_lit] = STATE(994), - [sym_syn_quoting_lit] = STATE(994), - [sym_unquote_splicing_lit] = STATE(994), - [sym_unquoting_lit] = STATE(994), - [sym_defun] = STATE(1187), - [sym_loop_macro] = STATE(1187), - [sym_path_lit] = STATE(994), - [sym_package_lit] = STATE(994), - [sym_include_reader_macro] = STATE(994), - [sym_complex_num_lit] = STATE(994), - [aux_sym_dis_expr_repeat1] = STATE(908), - [aux_sym_list_lit_repeat1] = STATE(2827), - [aux_sym_do_clause_repeat1] = STATE(32), - [sym__ws] = ACTIONS(4408), - [sym_comment] = ACTIONS(4408), - [anon_sym_POUND_] = ACTIONS(9), - [anon_sym_POUND] = ACTIONS(636), - [anon_sym_DOT] = ACTIONS(638), - [aux_sym_num_lit_token1] = ACTIONS(640), - [anon_sym_COLON] = ACTIONS(4410), - [anon_sym_COLON_COLON] = ACTIONS(644), - [anon_sym_DQUOTE] = ACTIONS(646), - [sym_nil_lit] = ACTIONS(638), - [aux_sym_sym_lit_token1] = ACTIONS(648), - [anon_sym_CARET] = ACTIONS(25), - [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(4412), - [anon_sym_POUND0A] = ACTIONS(650), - [anon_sym_POUND0a] = ACTIONS(650), - [anon_sym_POUND_QMARK] = ACTIONS(652), - [anon_sym_POUND_QMARK_AT] = ACTIONS(654), - [anon_sym_POUND_SQUOTE] = ACTIONS(656), - [anon_sym_SQUOTE] = ACTIONS(658), - [anon_sym_BQUOTE] = ACTIONS(660), - [anon_sym_COMMA_AT] = ACTIONS(662), - [anon_sym_COMMA] = ACTIONS(664), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(638), - [anon_sym_cl] = ACTIONS(4414), - [anon_sym_POUNDP] = ACTIONS(666), - [anon_sym_POUNDp] = ACTIONS(666), - [sym_self_referential_reader_macro] = ACTIONS(668), - [anon_sym_POUND_PLUS] = ACTIONS(670), - [anon_sym_POUND_DASH] = ACTIONS(670), - [anon_sym_POUNDC] = ACTIONS(672), - [anon_sym_POUNDc] = ACTIONS(672), - }, - [308] = { + [309] = { [sym__gap] = STATE(289), [sym_dis_expr] = STATE(289), [sym__form] = STATE(1978), @@ -40657,15 +40296,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -40673,13 +40312,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym_list_lit_repeat1] = STATE(2817), [aux_sym__bare_list_lit_repeat1] = STATE(289), [sym__ws] = ACTIONS(4362), [sym_comment] = ACTIONS(4362), @@ -40695,7 +40334,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(4416), + [anon_sym_RPAREN] = ACTIONS(4416), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -40716,23 +40355,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [309] = { - [sym__gap] = STATE(312), - [sym_dis_expr] = STATE(312), + [310] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), [sym__form] = STATE(1978), [sym_num_lit] = STATE(1978), [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -40740,16 +40379,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), - [aux_sym__bare_list_lit_repeat1] = STATE(313), - [sym__ws] = ACTIONS(4418), - [sym_comment] = ACTIONS(4418), + [aux_sym_list_lit_repeat1] = STATE(2817), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4362), + [sym_comment] = ACTIONS(4362), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(4191), @@ -40762,7 +40401,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(4420), + [anon_sym_RPAREN] = ACTIONS(4418), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -40783,23 +40422,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [310] = { - [sym__gap] = STATE(314), - [sym_dis_expr] = STATE(314), + [311] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), [sym__form] = STATE(1978), [sym_num_lit] = STATE(1978), [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -40807,16 +40446,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), - [aux_sym__bare_list_lit_repeat1] = STATE(314), - [sym__ws] = ACTIONS(4422), - [sym_comment] = ACTIONS(4422), + [aux_sym_list_lit_repeat1] = STATE(2817), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4362), + [sym_comment] = ACTIONS(4362), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(4191), @@ -40850,23 +40489,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [311] = { - [sym__gap] = STATE(289), - [sym_dis_expr] = STATE(289), + [312] = { + [sym__gap] = STATE(315), + [sym_dis_expr] = STATE(315), [sym__form] = STATE(1978), [sym_num_lit] = STATE(1978), [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -40874,16 +40513,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), - [aux_sym__bare_list_lit_repeat1] = STATE(289), - [sym__ws] = ACTIONS(4362), - [sym_comment] = ACTIONS(4362), + [aux_sym_list_lit_repeat1] = STATE(2817), + [aux_sym__bare_list_lit_repeat1] = STATE(315), + [sym__ws] = ACTIONS(4422), + [sym_comment] = ACTIONS(4422), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(4191), @@ -40896,7 +40535,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(4424), + [anon_sym_RBRACE] = ACTIONS(4424), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -40917,23 +40556,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [312] = { - [sym__gap] = STATE(316), - [sym_dis_expr] = STATE(316), + [313] = { + [sym__gap] = STATE(317), + [sym_dis_expr] = STATE(317), [sym__form] = STATE(1978), [sym_num_lit] = STATE(1978), [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -40941,14 +40580,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), - [aux_sym__bare_list_lit_repeat1] = STATE(316), + [aux_sym_list_lit_repeat1] = STATE(2817), + [aux_sym__bare_list_lit_repeat1] = STATE(318), [sym__ws] = ACTIONS(4426), [sym_comment] = ACTIONS(4426), [anon_sym_POUND_] = ACTIONS(9), @@ -40984,7 +40623,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [313] = { + [314] = { [sym__gap] = STATE(289), [sym_dis_expr] = STATE(289), [sym__form] = STATE(1978), @@ -40992,15 +40631,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -41008,13 +40647,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym_list_lit_repeat1] = STATE(2817), [aux_sym__bare_list_lit_repeat1] = STATE(289), [sym__ws] = ACTIONS(4362), [sym_comment] = ACTIONS(4362), @@ -41051,7 +40690,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [314] = { + [315] = { [sym__gap] = STATE(289), [sym_dis_expr] = STATE(289), [sym__form] = STATE(1978), @@ -41059,15 +40698,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -41075,13 +40714,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym_list_lit_repeat1] = STATE(2817), [aux_sym__bare_list_lit_repeat1] = STATE(289), [sym__ws] = ACTIONS(4362), [sym_comment] = ACTIONS(4362), @@ -41097,7 +40736,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(4432), + [anon_sym_RBRACE] = ACTIONS(4432), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -41118,90 +40757,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [315] = { - [sym__gap] = STATE(908), - [sym_dis_expr] = STATE(908), - [sym__form] = STATE(994), - [sym_num_lit] = STATE(994), - [sym_kwd_lit] = STATE(994), - [sym_str_lit] = STATE(994), - [sym_char_lit] = STATE(994), - [sym_sym_lit] = STATE(1186), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(994), - [sym__bare_list_lit] = STATE(1187), - [sym_vec_lit] = STATE(994), - [sym_set_lit] = STATE(994), - [sym__bare_set_lit] = STATE(1191), - [sym_read_cond_lit] = STATE(994), - [sym_splicing_read_cond_lit] = STATE(994), - [sym_var_quoting_lit] = STATE(994), - [sym_quoting_lit] = STATE(994), - [sym_syn_quoting_lit] = STATE(994), - [sym_unquote_splicing_lit] = STATE(994), - [sym_unquoting_lit] = STATE(994), - [sym_defun] = STATE(1187), - [sym_loop_macro] = STATE(1187), - [sym_path_lit] = STATE(994), - [sym_package_lit] = STATE(994), - [sym_include_reader_macro] = STATE(994), - [sym_complex_num_lit] = STATE(994), - [aux_sym_dis_expr_repeat1] = STATE(908), - [aux_sym_list_lit_repeat1] = STATE(2827), - [aux_sym_do_clause_repeat1] = STATE(20), - [sym__ws] = ACTIONS(4408), - [sym_comment] = ACTIONS(4408), + [316] = { + [sym__gap] = STATE(319), + [sym_dis_expr] = STATE(319), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1790), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1801), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2817), + [aux_sym__bare_list_lit_repeat1] = STATE(320), + [sym__ws] = ACTIONS(4434), + [sym_comment] = ACTIONS(4434), [anon_sym_POUND_] = ACTIONS(9), - [anon_sym_POUND] = ACTIONS(636), - [anon_sym_DOT] = ACTIONS(638), - [aux_sym_num_lit_token1] = ACTIONS(640), - [anon_sym_COLON] = ACTIONS(4410), - [anon_sym_COLON_COLON] = ACTIONS(644), - [anon_sym_DQUOTE] = ACTIONS(646), - [sym_nil_lit] = ACTIONS(638), - [aux_sym_sym_lit_token1] = ACTIONS(648), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(4191), + [aux_sym_num_lit_token1] = ACTIONS(15), + [anon_sym_COLON] = ACTIONS(17), + [anon_sym_COLON_COLON] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [sym_nil_lit] = ACTIONS(4191), + [aux_sym_sym_lit_token1] = ACTIONS(23), [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(4412), - [anon_sym_POUND0A] = ACTIONS(650), - [anon_sym_POUND0a] = ACTIONS(650), - [anon_sym_POUND_QMARK] = ACTIONS(652), - [anon_sym_POUND_QMARK_AT] = ACTIONS(654), - [anon_sym_POUND_SQUOTE] = ACTIONS(656), - [anon_sym_SQUOTE] = ACTIONS(658), - [anon_sym_BQUOTE] = ACTIONS(660), - [anon_sym_COMMA_AT] = ACTIONS(662), - [anon_sym_COMMA] = ACTIONS(664), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_RPAREN] = ACTIONS(4436), + [anon_sym_POUND0A] = ACTIONS(31), + [anon_sym_POUND0a] = ACTIONS(31), + [anon_sym_POUND_QMARK] = ACTIONS(33), + [anon_sym_POUND_QMARK_AT] = ACTIONS(35), + [anon_sym_POUND_SQUOTE] = ACTIONS(37), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_BQUOTE] = ACTIONS(41), + [anon_sym_COMMA_AT] = ACTIONS(43), + [anon_sym_COMMA] = ACTIONS(45), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(638), - [anon_sym_cl] = ACTIONS(4414), - [anon_sym_POUNDP] = ACTIONS(666), - [anon_sym_POUNDp] = ACTIONS(666), - [sym_self_referential_reader_macro] = ACTIONS(668), - [anon_sym_POUND_PLUS] = ACTIONS(670), - [anon_sym_POUND_DASH] = ACTIONS(670), - [anon_sym_POUNDC] = ACTIONS(672), - [anon_sym_POUNDc] = ACTIONS(672), + [sym_fancy_literal] = ACTIONS(4191), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(4203), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), }, - [316] = { - [sym__gap] = STATE(289), - [sym_dis_expr] = STATE(289), + [317] = { + [sym__gap] = STATE(321), + [sym_dis_expr] = STATE(321), [sym__form] = STATE(1978), [sym_num_lit] = STATE(1978), [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -41209,16 +40848,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), - [aux_sym__bare_list_lit_repeat1] = STATE(289), - [sym__ws] = ACTIONS(4362), - [sym_comment] = ACTIONS(4362), + [aux_sym_list_lit_repeat1] = STATE(2817), + [aux_sym__bare_list_lit_repeat1] = STATE(321), + [sym__ws] = ACTIONS(4438), + [sym_comment] = ACTIONS(4438), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(4191), @@ -41231,7 +40870,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(4434), + [anon_sym_RPAREN] = ACTIONS(4436), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -41252,23 +40891,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [317] = { - [sym__gap] = STATE(320), - [sym_dis_expr] = STATE(320), + [318] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), [sym__form] = STATE(1978), [sym_num_lit] = STATE(1978), [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -41276,16 +40915,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), - [aux_sym__bare_list_lit_repeat1] = STATE(320), - [sym__ws] = ACTIONS(4436), - [sym_comment] = ACTIONS(4436), + [aux_sym_list_lit_repeat1] = STATE(2817), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4362), + [sym_comment] = ACTIONS(4362), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(4191), @@ -41298,7 +40937,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(4438), + [anon_sym_RPAREN] = ACTIONS(4440), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -41319,23 +40958,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [318] = { - [sym__gap] = STATE(323), - [sym_dis_expr] = STATE(323), + [319] = { + [sym__gap] = STATE(322), + [sym_dis_expr] = STATE(322), [sym__form] = STATE(1978), [sym_num_lit] = STATE(1978), [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -41343,16 +40982,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), - [aux_sym__bare_list_lit_repeat1] = STATE(324), - [sym__ws] = ACTIONS(4440), - [sym_comment] = ACTIONS(4440), + [aux_sym_list_lit_repeat1] = STATE(2817), + [aux_sym__bare_list_lit_repeat1] = STATE(322), + [sym__ws] = ACTIONS(4442), + [sym_comment] = ACTIONS(4442), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(4191), @@ -41365,7 +41004,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(4442), + [anon_sym_RPAREN] = ACTIONS(4444), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -41386,7 +41025,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [319] = { + [320] = { [sym__gap] = STATE(289), [sym_dis_expr] = STATE(289), [sym__form] = STATE(1978), @@ -41394,15 +41033,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -41410,13 +41049,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym_list_lit_repeat1] = STATE(2817), [aux_sym__bare_list_lit_repeat1] = STATE(289), [sym__ws] = ACTIONS(4362), [sym_comment] = ACTIONS(4362), @@ -41432,7 +41071,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(4444), + [anon_sym_RPAREN] = ACTIONS(4446), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -41453,7 +41092,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [320] = { + [321] = { [sym__gap] = STATE(289), [sym_dis_expr] = STATE(289), [sym__form] = STATE(1978), @@ -41461,15 +41100,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -41477,13 +41116,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym_list_lit_repeat1] = STATE(2817), [aux_sym__bare_list_lit_repeat1] = STATE(289), [sym__ws] = ACTIONS(4362), [sym_comment] = ACTIONS(4362), @@ -41499,7 +41138,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(4446), + [anon_sym_RPAREN] = ACTIONS(4448), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -41520,90 +41159,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [321] = { - [sym__gap] = STATE(375), - [sym_dis_expr] = STATE(375), - [sym__form] = STATE(1991), - [sym_num_lit] = STATE(1991), - [sym_kwd_lit] = STATE(1991), - [sym_str_lit] = STATE(1991), - [sym_char_lit] = STATE(1991), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(1991), - [sym__bare_list_lit] = STATE(1877), - [sym_vec_lit] = STATE(1991), - [sym_set_lit] = STATE(1991), - [sym__bare_set_lit] = STATE(1875), - [sym_read_cond_lit] = STATE(1991), - [sym_splicing_read_cond_lit] = STATE(1991), - [sym_var_quoting_lit] = STATE(1991), - [sym_quoting_lit] = STATE(1991), - [sym_syn_quoting_lit] = STATE(1991), - [sym_unquote_splicing_lit] = STATE(1991), - [sym_unquoting_lit] = STATE(1991), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), - [sym_path_lit] = STATE(1991), - [sym_package_lit] = STATE(1991), - [sym_include_reader_macro] = STATE(1991), - [sym_complex_num_lit] = STATE(1991), - [aux_sym_source_repeat1] = STATE(375), - [aux_sym_list_lit_repeat1] = STATE(2808), - [ts_builtin_sym_end] = ACTIONS(4448), - [sym__ws] = ACTIONS(4450), - [sym_comment] = ACTIONS(4450), - [anon_sym_POUND_] = ACTIONS(9), - [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(13), - [aux_sym_num_lit_token1] = ACTIONS(15), - [anon_sym_COLON] = ACTIONS(17), - [anon_sym_COLON_COLON] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(13), - [aux_sym_sym_lit_token1] = ACTIONS(23), - [anon_sym_CARET] = ACTIONS(25), - [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_POUND0A] = ACTIONS(31), - [anon_sym_POUND0a] = ACTIONS(31), - [anon_sym_POUND_QMARK] = ACTIONS(33), - [anon_sym_POUND_QMARK_AT] = ACTIONS(35), - [anon_sym_POUND_SQUOTE] = ACTIONS(37), - [anon_sym_SQUOTE] = ACTIONS(39), - [anon_sym_BQUOTE] = ACTIONS(41), - [anon_sym_COMMA_AT] = ACTIONS(43), - [anon_sym_COMMA] = ACTIONS(45), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(13), - [anon_sym_cl] = ACTIONS(49), - [anon_sym_POUNDP] = ACTIONS(51), - [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(53), - [anon_sym_POUND_PLUS] = ACTIONS(55), - [anon_sym_POUND_DASH] = ACTIONS(55), - [anon_sym_POUNDC] = ACTIONS(57), - [anon_sym_POUNDc] = ACTIONS(57), - }, [322] = { - [sym__gap] = STATE(325), - [sym_dis_expr] = STATE(325), + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), [sym__form] = STATE(1978), [sym_num_lit] = STATE(1978), [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -41611,16 +41183,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), - [aux_sym__bare_list_lit_repeat1] = STATE(326), - [sym__ws] = ACTIONS(4452), - [sym_comment] = ACTIONS(4452), + [aux_sym_list_lit_repeat1] = STATE(2817), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4362), + [sym_comment] = ACTIONS(4362), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(4191), @@ -41633,7 +41205,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(4454), + [anon_sym_RPAREN] = ACTIONS(4450), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -41655,89 +41227,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [323] = { - [sym__gap] = STATE(327), - [sym_dis_expr] = STATE(327), - [sym__form] = STATE(1978), - [sym_num_lit] = STATE(1978), - [sym_kwd_lit] = STATE(1978), - [sym_str_lit] = STATE(1978), - [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), - [sym_vec_lit] = STATE(1978), - [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), - [sym_read_cond_lit] = STATE(1978), - [sym_splicing_read_cond_lit] = STATE(1978), - [sym_var_quoting_lit] = STATE(1978), - [sym_quoting_lit] = STATE(1978), - [sym_syn_quoting_lit] = STATE(1978), - [sym_unquote_splicing_lit] = STATE(1978), - [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), - [sym_path_lit] = STATE(1978), - [sym_package_lit] = STATE(1978), - [sym_include_reader_macro] = STATE(1978), - [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), - [aux_sym__bare_list_lit_repeat1] = STATE(327), - [sym__ws] = ACTIONS(4456), - [sym_comment] = ACTIONS(4456), + [sym__gap] = STATE(896), + [sym_dis_expr] = STATE(896), + [sym__form] = STATE(995), + [sym_num_lit] = STATE(995), + [sym_kwd_lit] = STATE(995), + [sym_str_lit] = STATE(995), + [sym_char_lit] = STATE(995), + [sym_sym_lit] = STATE(1136), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(995), + [sym__bare_list_lit] = STATE(1137), + [sym_vec_lit] = STATE(995), + [sym_set_lit] = STATE(995), + [sym__bare_set_lit] = STATE(1138), + [sym_read_cond_lit] = STATE(995), + [sym_splicing_read_cond_lit] = STATE(995), + [sym_var_quoting_lit] = STATE(995), + [sym_quoting_lit] = STATE(995), + [sym_syn_quoting_lit] = STATE(995), + [sym_unquote_splicing_lit] = STATE(995), + [sym_unquoting_lit] = STATE(995), + [sym_defun] = STATE(1137), + [sym_loop_macro] = STATE(1137), + [sym_path_lit] = STATE(995), + [sym_package_lit] = STATE(995), + [sym_include_reader_macro] = STATE(995), + [sym_complex_num_lit] = STATE(995), + [aux_sym_dis_expr_repeat1] = STATE(896), + [aux_sym_list_lit_repeat1] = STATE(2804), + [aux_sym_do_clause_repeat1] = STATE(13), + [sym__ws] = ACTIONS(4376), + [sym_comment] = ACTIONS(4376), [anon_sym_POUND_] = ACTIONS(9), - [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4191), - [aux_sym_num_lit_token1] = ACTIONS(15), - [anon_sym_COLON] = ACTIONS(17), - [anon_sym_COLON_COLON] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(4191), - [aux_sym_sym_lit_token1] = ACTIONS(23), + [anon_sym_POUND] = ACTIONS(124), + [anon_sym_DOT] = ACTIONS(126), + [aux_sym_num_lit_token1] = ACTIONS(128), + [anon_sym_COLON] = ACTIONS(4378), + [anon_sym_COLON_COLON] = ACTIONS(132), + [anon_sym_DQUOTE] = ACTIONS(134), + [sym_nil_lit] = ACTIONS(126), + [aux_sym_sym_lit_token1] = ACTIONS(136), [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(4454), - [anon_sym_POUND0A] = ACTIONS(31), - [anon_sym_POUND0a] = ACTIONS(31), - [anon_sym_POUND_QMARK] = ACTIONS(33), - [anon_sym_POUND_QMARK_AT] = ACTIONS(35), - [anon_sym_POUND_SQUOTE] = ACTIONS(37), - [anon_sym_SQUOTE] = ACTIONS(39), - [anon_sym_BQUOTE] = ACTIONS(41), - [anon_sym_COMMA_AT] = ACTIONS(43), - [anon_sym_COMMA] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(4380), + [anon_sym_POUND0A] = ACTIONS(138), + [anon_sym_POUND0a] = ACTIONS(138), + [anon_sym_POUND_QMARK] = ACTIONS(140), + [anon_sym_POUND_QMARK_AT] = ACTIONS(142), + [anon_sym_POUND_SQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_BQUOTE] = ACTIONS(148), + [anon_sym_COMMA_AT] = ACTIONS(150), + [anon_sym_COMMA] = ACTIONS(152), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(4191), - [anon_sym_cl] = ACTIONS(49), - [anon_sym_POUNDP] = ACTIONS(51), - [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(4203), - [anon_sym_POUND_PLUS] = ACTIONS(55), - [anon_sym_POUND_DASH] = ACTIONS(55), - [anon_sym_POUNDC] = ACTIONS(57), - [anon_sym_POUNDc] = ACTIONS(57), + [sym_fancy_literal] = ACTIONS(126), + [anon_sym_cl] = ACTIONS(4382), + [anon_sym_POUNDP] = ACTIONS(154), + [anon_sym_POUNDp] = ACTIONS(154), + [sym_self_referential_reader_macro] = ACTIONS(156), + [anon_sym_POUND_PLUS] = ACTIONS(158), + [anon_sym_POUND_DASH] = ACTIONS(158), + [anon_sym_POUNDC] = ACTIONS(160), + [anon_sym_POUNDc] = ACTIONS(160), }, [324] = { - [sym__gap] = STATE(289), - [sym_dis_expr] = STATE(289), + [sym__gap] = STATE(327), + [sym_dis_expr] = STATE(327), [sym__form] = STATE(1978), [sym_num_lit] = STATE(1978), [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -41745,16 +41317,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), - [aux_sym__bare_list_lit_repeat1] = STATE(289), - [sym__ws] = ACTIONS(4362), - [sym_comment] = ACTIONS(4362), + [aux_sym_list_lit_repeat1] = STATE(2817), + [aux_sym__bare_list_lit_repeat1] = STATE(327), + [sym__ws] = ACTIONS(4452), + [sym_comment] = ACTIONS(4452), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(4191), @@ -41767,7 +41339,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(4458), + [anon_sym_RBRACE] = ACTIONS(4454), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -41789,22 +41361,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [325] = { - [sym__gap] = STATE(328), - [sym_dis_expr] = STATE(328), + [sym__gap] = STATE(329), + [sym_dis_expr] = STATE(329), [sym__form] = STATE(1978), [sym_num_lit] = STATE(1978), [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -41812,16 +41384,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), - [aux_sym__bare_list_lit_repeat1] = STATE(328), - [sym__ws] = ACTIONS(4460), - [sym_comment] = ACTIONS(4460), + [aux_sym_list_lit_repeat1] = STATE(2817), + [aux_sym__bare_list_lit_repeat1] = STATE(330), + [sym__ws] = ACTIONS(4456), + [sym_comment] = ACTIONS(4456), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(4191), @@ -41834,7 +41406,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(4462), + [anon_sym_RPAREN] = ACTIONS(4458), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -41863,15 +41435,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -41879,13 +41451,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym_list_lit_repeat1] = STATE(2817), [aux_sym__bare_list_lit_repeat1] = STATE(289), [sym__ws] = ACTIONS(4362), [sym_comment] = ACTIONS(4362), @@ -41901,7 +41473,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(4464), + [anon_sym_RPAREN] = ACTIONS(4460), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -41930,15 +41502,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -41946,13 +41518,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym_list_lit_repeat1] = STATE(2817), [aux_sym__bare_list_lit_repeat1] = STATE(289), [sym__ws] = ACTIONS(4362), [sym_comment] = ACTIONS(4362), @@ -41968,7 +41540,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(4466), + [anon_sym_RBRACE] = ACTIONS(4462), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -41990,22 +41562,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [328] = { - [sym__gap] = STATE(289), - [sym_dis_expr] = STATE(289), + [sym__gap] = STATE(331), + [sym_dis_expr] = STATE(331), [sym__form] = STATE(1978), [sym_num_lit] = STATE(1978), [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -42013,16 +41585,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), - [aux_sym__bare_list_lit_repeat1] = STATE(289), - [sym__ws] = ACTIONS(4362), - [sym_comment] = ACTIONS(4362), + [aux_sym_list_lit_repeat1] = STATE(2817), + [aux_sym__bare_list_lit_repeat1] = STATE(332), + [sym__ws] = ACTIONS(4464), + [sym_comment] = ACTIONS(4464), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(4191), @@ -42035,7 +41607,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(4468), + [anon_sym_RPAREN] = ACTIONS(4466), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -42057,22 +41629,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [329] = { - [sym__gap] = STATE(331), - [sym_dis_expr] = STATE(331), + [sym__gap] = STATE(333), + [sym_dis_expr] = STATE(333), [sym__form] = STATE(1978), [sym_num_lit] = STATE(1978), [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -42080,16 +41652,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), - [aux_sym__bare_list_lit_repeat1] = STATE(331), - [sym__ws] = ACTIONS(4470), - [sym_comment] = ACTIONS(4470), + [aux_sym_list_lit_repeat1] = STATE(2817), + [aux_sym__bare_list_lit_repeat1] = STATE(333), + [sym__ws] = ACTIONS(4468), + [sym_comment] = ACTIONS(4468), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(4191), @@ -42102,7 +41674,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(4472), + [anon_sym_RPAREN] = ACTIONS(4466), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -42124,22 +41696,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [330] = { - [sym__gap] = STATE(333), - [sym_dis_expr] = STATE(333), + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), [sym__form] = STATE(1978), [sym_num_lit] = STATE(1978), [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -42147,16 +41719,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), - [aux_sym__bare_list_lit_repeat1] = STATE(334), - [sym__ws] = ACTIONS(4474), - [sym_comment] = ACTIONS(4474), + [aux_sym_list_lit_repeat1] = STATE(2817), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4362), + [sym_comment] = ACTIONS(4362), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(4191), @@ -42169,7 +41741,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(4476), + [anon_sym_RPAREN] = ACTIONS(4470), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -42191,22 +41763,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [331] = { - [sym__gap] = STATE(289), - [sym_dis_expr] = STATE(289), + [sym__gap] = STATE(334), + [sym_dis_expr] = STATE(334), [sym__form] = STATE(1978), [sym_num_lit] = STATE(1978), [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -42214,16 +41786,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), - [aux_sym__bare_list_lit_repeat1] = STATE(289), - [sym__ws] = ACTIONS(4362), - [sym_comment] = ACTIONS(4362), + [aux_sym_list_lit_repeat1] = STATE(2817), + [aux_sym__bare_list_lit_repeat1] = STATE(334), + [sym__ws] = ACTIONS(4472), + [sym_comment] = ACTIONS(4472), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(4191), @@ -42236,7 +41808,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(4478), + [anon_sym_RPAREN] = ACTIONS(4474), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -42258,22 +41830,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [332] = { - [sym__gap] = STATE(339), - [sym_dis_expr] = STATE(339), + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), [sym__form] = STATE(1978), [sym_num_lit] = STATE(1978), [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -42281,16 +41853,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), - [aux_sym__bare_list_lit_repeat1] = STATE(335), - [sym__ws] = ACTIONS(4480), - [sym_comment] = ACTIONS(4480), + [aux_sym_list_lit_repeat1] = STATE(2817), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4362), + [sym_comment] = ACTIONS(4362), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(4191), @@ -42303,7 +41875,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(4482), + [anon_sym_RPAREN] = ACTIONS(4476), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -42325,22 +41897,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [333] = { - [sym__gap] = STATE(342), - [sym_dis_expr] = STATE(342), + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), [sym__form] = STATE(1978), [sym_num_lit] = STATE(1978), [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -42348,16 +41920,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), - [aux_sym__bare_list_lit_repeat1] = STATE(342), - [sym__ws] = ACTIONS(4484), - [sym_comment] = ACTIONS(4484), + [aux_sym_list_lit_repeat1] = STATE(2817), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4362), + [sym_comment] = ACTIONS(4362), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(4191), @@ -42370,7 +41942,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(4482), + [anon_sym_RPAREN] = ACTIONS(4478), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -42399,15 +41971,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -42415,13 +41987,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym_list_lit_repeat1] = STATE(2817), [aux_sym__bare_list_lit_repeat1] = STATE(289), [sym__ws] = ACTIONS(4362), [sym_comment] = ACTIONS(4362), @@ -42437,7 +42009,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(4486), + [anon_sym_RPAREN] = ACTIONS(4480), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -42459,22 +42031,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [335] = { - [sym__gap] = STATE(289), - [sym_dis_expr] = STATE(289), + [sym__gap] = STATE(350), + [sym_dis_expr] = STATE(350), [sym__form] = STATE(1978), [sym_num_lit] = STATE(1978), [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -42482,16 +42054,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), - [aux_sym__bare_list_lit_repeat1] = STATE(289), - [sym__ws] = ACTIONS(4362), - [sym_comment] = ACTIONS(4362), + [aux_sym_list_lit_repeat1] = STATE(2817), + [aux_sym__bare_list_lit_repeat1] = STATE(350), + [sym__ws] = ACTIONS(4482), + [sym_comment] = ACTIONS(4482), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(4191), @@ -42504,7 +42076,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(4488), + [anon_sym_RBRACE] = ACTIONS(4484), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -42526,22 +42098,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [336] = { - [sym__gap] = STATE(289), - [sym_dis_expr] = STATE(289), + [sym__gap] = STATE(339), + [sym_dis_expr] = STATE(339), [sym__form] = STATE(1978), [sym_num_lit] = STATE(1978), [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -42549,16 +42121,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), - [aux_sym__bare_list_lit_repeat1] = STATE(289), - [sym__ws] = ACTIONS(4362), - [sym_comment] = ACTIONS(4362), + [aux_sym_list_lit_repeat1] = STATE(2817), + [aux_sym__bare_list_lit_repeat1] = STATE(339), + [sym__ws] = ACTIONS(4486), + [sym_comment] = ACTIONS(4486), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(4191), @@ -42571,7 +42143,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(4490), + [anon_sym_RBRACE] = ACTIONS(4488), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -42593,22 +42165,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [337] = { - [sym__gap] = STATE(300), - [sym_dis_expr] = STATE(300), + [sym__gap] = STATE(341), + [sym_dis_expr] = STATE(341), [sym__form] = STATE(1978), [sym_num_lit] = STATE(1978), [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -42616,16 +42188,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), - [aux_sym__bare_list_lit_repeat1] = STATE(300), - [sym__ws] = ACTIONS(4492), - [sym_comment] = ACTIONS(4492), + [aux_sym_list_lit_repeat1] = STATE(2817), + [aux_sym__bare_list_lit_repeat1] = STATE(342), + [sym__ws] = ACTIONS(4490), + [sym_comment] = ACTIONS(4490), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(4191), @@ -42638,7 +42210,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(4494), + [anon_sym_RPAREN] = ACTIONS(4492), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -42667,15 +42239,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -42683,13 +42255,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym_list_lit_repeat1] = STATE(2817), [aux_sym__bare_list_lit_repeat1] = STATE(289), [sym__ws] = ACTIONS(4362), [sym_comment] = ACTIONS(4362), @@ -42705,7 +42277,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(4496), + [anon_sym_RPAREN] = ACTIONS(4494), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -42727,22 +42299,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [339] = { - [sym__gap] = STATE(343), - [sym_dis_expr] = STATE(343), + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), [sym__form] = STATE(1978), [sym_num_lit] = STATE(1978), [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -42750,16 +42322,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), - [aux_sym__bare_list_lit_repeat1] = STATE(343), - [sym__ws] = ACTIONS(4498), - [sym_comment] = ACTIONS(4498), + [aux_sym_list_lit_repeat1] = STATE(2817), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4362), + [sym_comment] = ACTIONS(4362), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(4191), @@ -42772,7 +42344,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(4500), + [anon_sym_RBRACE] = ACTIONS(4496), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -42794,22 +42366,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [340] = { - [sym__gap] = STATE(298), - [sym_dis_expr] = STATE(298), + [sym__gap] = STATE(343), + [sym_dis_expr] = STATE(343), [sym__form] = STATE(1978), [sym_num_lit] = STATE(1978), [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -42817,16 +42389,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), - [aux_sym__bare_list_lit_repeat1] = STATE(299), - [sym__ws] = ACTIONS(4502), - [sym_comment] = ACTIONS(4502), + [aux_sym_list_lit_repeat1] = STATE(2817), + [aux_sym__bare_list_lit_repeat1] = STATE(344), + [sym__ws] = ACTIONS(4498), + [sym_comment] = ACTIONS(4498), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(4191), @@ -42839,7 +42411,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(4494), + [anon_sym_RPAREN] = ACTIONS(4500), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -42861,22 +42433,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [341] = { - [sym__gap] = STATE(297), - [sym_dis_expr] = STATE(297), + [sym__gap] = STATE(345), + [sym_dis_expr] = STATE(345), [sym__form] = STATE(1978), [sym_num_lit] = STATE(1978), [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -42884,16 +42456,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), - [aux_sym__bare_list_lit_repeat1] = STATE(296), - [sym__ws] = ACTIONS(4504), - [sym_comment] = ACTIONS(4504), + [aux_sym_list_lit_repeat1] = STATE(2817), + [aux_sym__bare_list_lit_repeat1] = STATE(345), + [sym__ws] = ACTIONS(4502), + [sym_comment] = ACTIONS(4502), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(4191), @@ -42906,7 +42478,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(4356), + [anon_sym_RPAREN] = ACTIONS(4500), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -42935,15 +42507,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -42951,13 +42523,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym_list_lit_repeat1] = STATE(2817), [aux_sym__bare_list_lit_repeat1] = STATE(289), [sym__ws] = ACTIONS(4362), [sym_comment] = ACTIONS(4362), @@ -42973,7 +42545,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(4506), + [anon_sym_RPAREN] = ACTIONS(4504), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -42995,22 +42567,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [343] = { - [sym__gap] = STATE(289), - [sym_dis_expr] = STATE(289), + [sym__gap] = STATE(346), + [sym_dis_expr] = STATE(346), [sym__form] = STATE(1978), [sym_num_lit] = STATE(1978), [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -43018,16 +42590,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), - [aux_sym__bare_list_lit_repeat1] = STATE(289), - [sym__ws] = ACTIONS(4362), - [sym_comment] = ACTIONS(4362), + [aux_sym_list_lit_repeat1] = STATE(2817), + [aux_sym__bare_list_lit_repeat1] = STATE(346), + [sym__ws] = ACTIONS(4506), + [sym_comment] = ACTIONS(4506), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(4191), @@ -43069,15 +42641,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -43085,13 +42657,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym_list_lit_repeat1] = STATE(2817), [aux_sym__bare_list_lit_repeat1] = STATE(289), [sym__ws] = ACTIONS(4362), [sym_comment] = ACTIONS(4362), @@ -43107,7 +42679,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(4510), + [anon_sym_RPAREN] = ACTIONS(4510), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -43129,22 +42701,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [345] = { - [sym__gap] = STATE(350), - [sym_dis_expr] = STATE(350), + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), [sym__form] = STATE(1978), [sym_num_lit] = STATE(1978), [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -43152,16 +42724,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), - [aux_sym__bare_list_lit_repeat1] = STATE(350), - [sym__ws] = ACTIONS(4512), - [sym_comment] = ACTIONS(4512), + [aux_sym_list_lit_repeat1] = STATE(2817), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4362), + [sym_comment] = ACTIONS(4362), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(4191), @@ -43174,7 +42746,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(4514), + [anon_sym_RPAREN] = ACTIONS(4512), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -43196,73 +42768,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [346] = { - [sym__gap] = STATE(908), - [sym_dis_expr] = STATE(908), - [sym__form] = STATE(994), - [sym_num_lit] = STATE(994), - [sym_kwd_lit] = STATE(994), - [sym_str_lit] = STATE(994), - [sym_char_lit] = STATE(994), - [sym_sym_lit] = STATE(1186), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(994), - [sym__bare_list_lit] = STATE(1187), - [sym_vec_lit] = STATE(994), - [sym_set_lit] = STATE(994), - [sym__bare_set_lit] = STATE(1191), - [sym_read_cond_lit] = STATE(994), - [sym_splicing_read_cond_lit] = STATE(994), - [sym_var_quoting_lit] = STATE(994), - [sym_quoting_lit] = STATE(994), - [sym_syn_quoting_lit] = STATE(994), - [sym_unquote_splicing_lit] = STATE(994), - [sym_unquoting_lit] = STATE(994), - [sym_defun] = STATE(1187), - [sym_loop_macro] = STATE(1187), - [sym_path_lit] = STATE(994), - [sym_package_lit] = STATE(994), - [sym_include_reader_macro] = STATE(994), - [sym_complex_num_lit] = STATE(994), - [aux_sym_dis_expr_repeat1] = STATE(908), - [aux_sym_list_lit_repeat1] = STATE(2827), - [aux_sym_do_clause_repeat1] = STATE(37), - [sym__ws] = ACTIONS(4408), - [sym_comment] = ACTIONS(4408), - [anon_sym_POUND_] = ACTIONS(9), - [anon_sym_POUND] = ACTIONS(636), - [anon_sym_DOT] = ACTIONS(638), - [aux_sym_num_lit_token1] = ACTIONS(640), - [anon_sym_COLON] = ACTIONS(4410), - [anon_sym_COLON_COLON] = ACTIONS(644), - [anon_sym_DQUOTE] = ACTIONS(646), - [sym_nil_lit] = ACTIONS(638), - [aux_sym_sym_lit_token1] = ACTIONS(648), - [anon_sym_CARET] = ACTIONS(25), - [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(4412), - [anon_sym_POUND0A] = ACTIONS(650), - [anon_sym_POUND0a] = ACTIONS(650), - [anon_sym_POUND_QMARK] = ACTIONS(652), - [anon_sym_POUND_QMARK_AT] = ACTIONS(654), - [anon_sym_POUND_SQUOTE] = ACTIONS(656), - [anon_sym_SQUOTE] = ACTIONS(658), - [anon_sym_BQUOTE] = ACTIONS(660), - [anon_sym_COMMA_AT] = ACTIONS(662), - [anon_sym_COMMA] = ACTIONS(664), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(638), - [anon_sym_cl] = ACTIONS(4414), - [anon_sym_POUNDP] = ACTIONS(666), - [anon_sym_POUNDp] = ACTIONS(666), - [sym_self_referential_reader_macro] = ACTIONS(668), - [anon_sym_POUND_PLUS] = ACTIONS(670), - [anon_sym_POUND_DASH] = ACTIONS(670), - [anon_sym_POUNDC] = ACTIONS(672), - [anon_sym_POUNDc] = ACTIONS(672), - }, - [347] = { [sym__gap] = STATE(289), [sym_dis_expr] = STATE(289), [sym__form] = STATE(1978), @@ -43270,15 +42775,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -43286,13 +42791,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym_list_lit_repeat1] = STATE(2817), [aux_sym__bare_list_lit_repeat1] = STATE(289), [sym__ws] = ACTIONS(4362), [sym_comment] = ACTIONS(4362), @@ -43308,7 +42813,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(4516), + [anon_sym_RPAREN] = ACTIONS(4514), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -43329,23 +42834,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [348] = { - [sym__gap] = STATE(289), - [sym_dis_expr] = STATE(289), + [347] = { + [sym__gap] = STATE(295), + [sym_dis_expr] = STATE(295), [sym__form] = STATE(1978), [sym_num_lit] = STATE(1978), [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -43353,16 +42858,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), - [aux_sym__bare_list_lit_repeat1] = STATE(289), - [sym__ws] = ACTIONS(4362), - [sym_comment] = ACTIONS(4362), + [aux_sym_list_lit_repeat1] = STATE(2817), + [aux_sym__bare_list_lit_repeat1] = STATE(295), + [sym__ws] = ACTIONS(4516), + [sym_comment] = ACTIONS(4516), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(4191), @@ -43375,7 +42880,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(4518), + [anon_sym_RBRACE] = ACTIONS(4518), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -43396,23 +42901,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [349] = { - [sym__gap] = STATE(289), - [sym_dis_expr] = STATE(289), + [348] = { + [sym__gap] = STATE(351), + [sym_dis_expr] = STATE(351), [sym__form] = STATE(1978), [sym_num_lit] = STATE(1978), [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -43420,16 +42925,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), - [aux_sym__bare_list_lit_repeat1] = STATE(289), - [sym__ws] = ACTIONS(4362), - [sym_comment] = ACTIONS(4362), + [aux_sym_list_lit_repeat1] = STATE(2817), + [aux_sym__bare_list_lit_repeat1] = STATE(351), + [sym__ws] = ACTIONS(4520), + [sym_comment] = ACTIONS(4520), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(4191), @@ -43442,7 +42947,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(4520), + [anon_sym_RBRACE] = ACTIONS(4522), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -43463,23 +42968,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [350] = { - [sym__gap] = STATE(289), - [sym_dis_expr] = STATE(289), + [349] = { + [sym__gap] = STATE(353), + [sym_dis_expr] = STATE(353), [sym__form] = STATE(1978), [sym_num_lit] = STATE(1978), [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -43487,16 +42992,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), - [aux_sym__bare_list_lit_repeat1] = STATE(289), - [sym__ws] = ACTIONS(4362), - [sym_comment] = ACTIONS(4362), + [aux_sym_list_lit_repeat1] = STATE(2817), + [aux_sym__bare_list_lit_repeat1] = STATE(354), + [sym__ws] = ACTIONS(4524), + [sym_comment] = ACTIONS(4524), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(4191), @@ -43509,7 +43014,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(4522), + [anon_sym_RPAREN] = ACTIONS(4526), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -43530,23 +43035,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [351] = { - [sym__gap] = STATE(355), - [sym_dis_expr] = STATE(355), + [350] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), [sym__form] = STATE(1978), [sym_num_lit] = STATE(1978), [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -43554,16 +43059,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), - [aux_sym__bare_list_lit_repeat1] = STATE(356), - [sym__ws] = ACTIONS(4524), - [sym_comment] = ACTIONS(4524), + [aux_sym_list_lit_repeat1] = STATE(2817), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4362), + [sym_comment] = ACTIONS(4362), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(4191), @@ -43576,7 +43081,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(4526), + [anon_sym_RBRACE] = ACTIONS(4528), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -43597,23 +43102,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [352] = { - [sym__gap] = STATE(357), - [sym_dis_expr] = STATE(357), + [351] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), [sym__form] = STATE(1978), [sym_num_lit] = STATE(1978), [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -43621,16 +43126,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), - [aux_sym__bare_list_lit_repeat1] = STATE(357), - [sym__ws] = ACTIONS(4528), - [sym_comment] = ACTIONS(4528), + [aux_sym_list_lit_repeat1] = STATE(2817), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4362), + [sym_comment] = ACTIONS(4362), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(4191), @@ -43643,7 +43148,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(4526), + [anon_sym_RBRACE] = ACTIONS(4530), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -43664,23 +43169,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [353] = { - [sym__gap] = STATE(289), - [sym_dis_expr] = STATE(289), + [352] = { + [sym__gap] = STATE(355), + [sym_dis_expr] = STATE(355), [sym__form] = STATE(1978), [sym_num_lit] = STATE(1978), [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -43688,16 +43193,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), - [aux_sym__bare_list_lit_repeat1] = STATE(289), - [sym__ws] = ACTIONS(4362), - [sym_comment] = ACTIONS(4362), + [aux_sym_list_lit_repeat1] = STATE(2817), + [aux_sym__bare_list_lit_repeat1] = STATE(356), + [sym__ws] = ACTIONS(4532), + [sym_comment] = ACTIONS(4532), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(4191), @@ -43710,7 +43215,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(4530), + [anon_sym_RPAREN] = ACTIONS(4534), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -43731,23 +43236,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [354] = { - [sym__gap] = STATE(289), - [sym_dis_expr] = STATE(289), + [353] = { + [sym__gap] = STATE(357), + [sym_dis_expr] = STATE(357), [sym__form] = STATE(1978), [sym_num_lit] = STATE(1978), [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -43755,16 +43260,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), - [aux_sym__bare_list_lit_repeat1] = STATE(289), - [sym__ws] = ACTIONS(4362), - [sym_comment] = ACTIONS(4362), + [aux_sym_list_lit_repeat1] = STATE(2817), + [aux_sym__bare_list_lit_repeat1] = STATE(357), + [sym__ws] = ACTIONS(4536), + [sym_comment] = ACTIONS(4536), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(4191), @@ -43777,7 +43282,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(4532), + [anon_sym_RPAREN] = ACTIONS(4534), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -43798,23 +43303,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [355] = { - [sym__gap] = STATE(358), - [sym_dis_expr] = STATE(358), + [354] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), [sym__form] = STATE(1978), [sym_num_lit] = STATE(1978), [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -43822,16 +43327,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), - [aux_sym__bare_list_lit_repeat1] = STATE(358), - [sym__ws] = ACTIONS(4534), - [sym_comment] = ACTIONS(4534), + [aux_sym_list_lit_repeat1] = STATE(2817), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4362), + [sym_comment] = ACTIONS(4362), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(4191), @@ -43844,7 +43349,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(4536), + [anon_sym_RPAREN] = ACTIONS(4538), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -43865,23 +43370,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [356] = { - [sym__gap] = STATE(289), - [sym_dis_expr] = STATE(289), + [355] = { + [sym__gap] = STATE(358), + [sym_dis_expr] = STATE(358), [sym__form] = STATE(1978), [sym_num_lit] = STATE(1978), [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -43889,16 +43394,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), - [aux_sym__bare_list_lit_repeat1] = STATE(289), - [sym__ws] = ACTIONS(4362), - [sym_comment] = ACTIONS(4362), + [aux_sym_list_lit_repeat1] = STATE(2817), + [aux_sym__bare_list_lit_repeat1] = STATE(358), + [sym__ws] = ACTIONS(4540), + [sym_comment] = ACTIONS(4540), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(4191), @@ -43911,7 +43416,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(4538), + [anon_sym_RPAREN] = ACTIONS(4542), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -43932,7 +43437,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [357] = { + [356] = { [sym__gap] = STATE(289), [sym_dis_expr] = STATE(289), [sym__form] = STATE(1978), @@ -43940,15 +43445,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -43956,13 +43461,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym_list_lit_repeat1] = STATE(2817), [aux_sym__bare_list_lit_repeat1] = STATE(289), [sym__ws] = ACTIONS(4362), [sym_comment] = ACTIONS(4362), @@ -43978,7 +43483,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(4540), + [anon_sym_RPAREN] = ACTIONS(4544), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -43999,7 +43504,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [358] = { + [357] = { [sym__gap] = STATE(289), [sym_dis_expr] = STATE(289), [sym__form] = STATE(1978), @@ -44007,15 +43512,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -44023,13 +43528,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym_list_lit_repeat1] = STATE(2817), [aux_sym__bare_list_lit_repeat1] = STATE(289), [sym__ws] = ACTIONS(4362), [sym_comment] = ACTIONS(4362), @@ -44045,7 +43550,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(4542), + [anon_sym_RPAREN] = ACTIONS(4546), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -44066,23 +43571,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [359] = { - [sym__gap] = STATE(393), - [sym_dis_expr] = STATE(393), + [358] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), [sym__form] = STATE(1978), [sym_num_lit] = STATE(1978), [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -44090,16 +43595,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), - [aux_sym__bare_list_lit_repeat1] = STATE(399), - [sym__ws] = ACTIONS(4544), - [sym_comment] = ACTIONS(4544), + [aux_sym_list_lit_repeat1] = STATE(2817), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4362), + [sym_comment] = ACTIONS(4362), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(4191), @@ -44112,7 +43617,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(4546), + [anon_sym_RPAREN] = ACTIONS(4548), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -44133,23 +43638,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, + [359] = { + [sym__gap] = STATE(896), + [sym_dis_expr] = STATE(896), + [sym__form] = STATE(995), + [sym_num_lit] = STATE(995), + [sym_kwd_lit] = STATE(995), + [sym_str_lit] = STATE(995), + [sym_char_lit] = STATE(995), + [sym_sym_lit] = STATE(1136), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(995), + [sym__bare_list_lit] = STATE(1137), + [sym_vec_lit] = STATE(995), + [sym_set_lit] = STATE(995), + [sym__bare_set_lit] = STATE(1138), + [sym_read_cond_lit] = STATE(995), + [sym_splicing_read_cond_lit] = STATE(995), + [sym_var_quoting_lit] = STATE(995), + [sym_quoting_lit] = STATE(995), + [sym_syn_quoting_lit] = STATE(995), + [sym_unquote_splicing_lit] = STATE(995), + [sym_unquoting_lit] = STATE(995), + [sym_defun] = STATE(1137), + [sym_loop_macro] = STATE(1137), + [sym_path_lit] = STATE(995), + [sym_package_lit] = STATE(995), + [sym_include_reader_macro] = STATE(995), + [sym_complex_num_lit] = STATE(995), + [aux_sym_dis_expr_repeat1] = STATE(896), + [aux_sym_list_lit_repeat1] = STATE(2804), + [aux_sym_do_clause_repeat1] = STATE(3), + [sym__ws] = ACTIONS(4376), + [sym_comment] = ACTIONS(4376), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(124), + [anon_sym_DOT] = ACTIONS(126), + [aux_sym_num_lit_token1] = ACTIONS(128), + [anon_sym_COLON] = ACTIONS(4378), + [anon_sym_COLON_COLON] = ACTIONS(132), + [anon_sym_DQUOTE] = ACTIONS(134), + [sym_nil_lit] = ACTIONS(126), + [aux_sym_sym_lit_token1] = ACTIONS(136), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(4380), + [anon_sym_POUND0A] = ACTIONS(138), + [anon_sym_POUND0a] = ACTIONS(138), + [anon_sym_POUND_QMARK] = ACTIONS(140), + [anon_sym_POUND_QMARK_AT] = ACTIONS(142), + [anon_sym_POUND_SQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_BQUOTE] = ACTIONS(148), + [anon_sym_COMMA_AT] = ACTIONS(150), + [anon_sym_COMMA] = ACTIONS(152), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(126), + [anon_sym_cl] = ACTIONS(4382), + [anon_sym_POUNDP] = ACTIONS(154), + [anon_sym_POUNDp] = ACTIONS(154), + [sym_self_referential_reader_macro] = ACTIONS(156), + [anon_sym_POUND_PLUS] = ACTIONS(158), + [anon_sym_POUND_DASH] = ACTIONS(158), + [anon_sym_POUNDC] = ACTIONS(160), + [anon_sym_POUNDc] = ACTIONS(160), + }, [360] = { - [sym__gap] = STATE(364), - [sym_dis_expr] = STATE(364), + [sym__gap] = STATE(363), + [sym_dis_expr] = STATE(363), [sym__form] = STATE(1978), [sym_num_lit] = STATE(1978), [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -44157,16 +43729,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), - [aux_sym__bare_list_lit_repeat1] = STATE(364), - [sym__ws] = ACTIONS(4548), - [sym_comment] = ACTIONS(4548), + [aux_sym_list_lit_repeat1] = STATE(2817), + [aux_sym__bare_list_lit_repeat1] = STATE(363), + [sym__ws] = ACTIONS(4550), + [sym_comment] = ACTIONS(4550), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(4191), @@ -44179,7 +43751,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(4550), + [anon_sym_RBRACE] = ACTIONS(4552), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -44201,22 +43773,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [361] = { - [sym__gap] = STATE(366), - [sym_dis_expr] = STATE(366), + [sym__gap] = STATE(365), + [sym_dis_expr] = STATE(365), [sym__form] = STATE(1978), [sym_num_lit] = STATE(1978), [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -44224,16 +43796,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), - [aux_sym__bare_list_lit_repeat1] = STATE(367), - [sym__ws] = ACTIONS(4552), - [sym_comment] = ACTIONS(4552), + [aux_sym_list_lit_repeat1] = STATE(2817), + [aux_sym__bare_list_lit_repeat1] = STATE(366), + [sym__ws] = ACTIONS(4554), + [sym_comment] = ACTIONS(4554), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(4191), @@ -44246,7 +43818,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(4554), + [anon_sym_RPAREN] = ACTIONS(4556), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -44275,15 +43847,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -44291,13 +43863,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym_list_lit_repeat1] = STATE(2817), [aux_sym__bare_list_lit_repeat1] = STATE(289), [sym__ws] = ACTIONS(4362), [sym_comment] = ACTIONS(4362), @@ -44313,7 +43885,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(4556), + [anon_sym_RPAREN] = ACTIONS(4558), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -44342,15 +43914,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -44358,13 +43930,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym_list_lit_repeat1] = STATE(2817), [aux_sym__bare_list_lit_repeat1] = STATE(289), [sym__ws] = ACTIONS(4362), [sym_comment] = ACTIONS(4362), @@ -44380,7 +43952,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(4558), + [anon_sym_RBRACE] = ACTIONS(4560), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -44402,22 +43974,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [364] = { - [sym__gap] = STATE(289), - [sym_dis_expr] = STATE(289), + [sym__gap] = STATE(367), + [sym_dis_expr] = STATE(367), [sym__form] = STATE(1978), [sym_num_lit] = STATE(1978), [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -44425,16 +43997,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), - [aux_sym__bare_list_lit_repeat1] = STATE(289), - [sym__ws] = ACTIONS(4362), - [sym_comment] = ACTIONS(4362), + [aux_sym_list_lit_repeat1] = STATE(2817), + [aux_sym__bare_list_lit_repeat1] = STATE(368), + [sym__ws] = ACTIONS(4562), + [sym_comment] = ACTIONS(4562), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(4191), @@ -44447,7 +44019,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(4560), + [anon_sym_RPAREN] = ACTIONS(4564), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -44469,22 +44041,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [365] = { - [sym__gap] = STATE(368), - [sym_dis_expr] = STATE(368), + [sym__gap] = STATE(369), + [sym_dis_expr] = STATE(369), [sym__form] = STATE(1978), [sym_num_lit] = STATE(1978), [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -44492,16 +44064,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym_list_lit_repeat1] = STATE(2817), [aux_sym__bare_list_lit_repeat1] = STATE(369), - [sym__ws] = ACTIONS(4562), - [sym_comment] = ACTIONS(4562), + [sym__ws] = ACTIONS(4566), + [sym_comment] = ACTIONS(4566), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(4191), @@ -44536,22 +44108,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [366] = { - [sym__gap] = STATE(370), - [sym_dis_expr] = STATE(370), + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), [sym__form] = STATE(1978), [sym_num_lit] = STATE(1978), [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -44559,16 +44131,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), - [aux_sym__bare_list_lit_repeat1] = STATE(370), - [sym__ws] = ACTIONS(4566), - [sym_comment] = ACTIONS(4566), + [aux_sym_list_lit_repeat1] = STATE(2817), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4362), + [sym_comment] = ACTIONS(4362), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(4191), @@ -44581,7 +44153,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(4564), + [anon_sym_RPAREN] = ACTIONS(4568), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -44603,22 +44175,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [367] = { - [sym__gap] = STATE(289), - [sym_dis_expr] = STATE(289), + [sym__gap] = STATE(370), + [sym_dis_expr] = STATE(370), [sym__form] = STATE(1978), [sym_num_lit] = STATE(1978), [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -44626,16 +44198,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), - [aux_sym__bare_list_lit_repeat1] = STATE(289), - [sym__ws] = ACTIONS(4362), - [sym_comment] = ACTIONS(4362), + [aux_sym_list_lit_repeat1] = STATE(2817), + [aux_sym__bare_list_lit_repeat1] = STATE(370), + [sym__ws] = ACTIONS(4570), + [sym_comment] = ACTIONS(4570), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(4191), @@ -44648,7 +44220,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(4568), + [anon_sym_RPAREN] = ACTIONS(4572), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -44670,22 +44242,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [368] = { - [sym__gap] = STATE(371), - [sym_dis_expr] = STATE(371), + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), [sym__form] = STATE(1978), [sym_num_lit] = STATE(1978), [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -44693,16 +44265,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), - [aux_sym__bare_list_lit_repeat1] = STATE(371), - [sym__ws] = ACTIONS(4570), - [sym_comment] = ACTIONS(4570), + [aux_sym_list_lit_repeat1] = STATE(2817), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4362), + [sym_comment] = ACTIONS(4362), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(4191), @@ -44715,7 +44287,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(4572), + [anon_sym_RPAREN] = ACTIONS(4574), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -44744,15 +44316,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -44760,13 +44332,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym_list_lit_repeat1] = STATE(2817), [aux_sym__bare_list_lit_repeat1] = STATE(289), [sym__ws] = ACTIONS(4362), [sym_comment] = ACTIONS(4362), @@ -44782,7 +44354,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(4574), + [anon_sym_RPAREN] = ACTIONS(4576), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -44811,15 +44383,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -44827,13 +44399,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym_list_lit_repeat1] = STATE(2817), [aux_sym__bare_list_lit_repeat1] = STATE(289), [sym__ws] = ACTIONS(4362), [sym_comment] = ACTIONS(4362), @@ -44849,7 +44421,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(4576), + [anon_sym_RPAREN] = ACTIONS(4578), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -44871,22 +44443,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [371] = { - [sym__gap] = STATE(289), - [sym_dis_expr] = STATE(289), + [sym__gap] = STATE(299), + [sym_dis_expr] = STATE(299), [sym__form] = STATE(1978), [sym_num_lit] = STATE(1978), [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -44894,16 +44466,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), - [aux_sym__bare_list_lit_repeat1] = STATE(289), - [sym__ws] = ACTIONS(4362), - [sym_comment] = ACTIONS(4362), + [aux_sym_list_lit_repeat1] = STATE(2817), + [aux_sym__bare_list_lit_repeat1] = STATE(311), + [sym__ws] = ACTIONS(4580), + [sym_comment] = ACTIONS(4580), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(4191), @@ -44916,7 +44488,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(4578), + [anon_sym_RPAREN] = ACTIONS(4582), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -44938,22 +44510,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [372] = { - [sym__gap] = STATE(338), - [sym_dis_expr] = STATE(338), + [sym__gap] = STATE(375), + [sym_dis_expr] = STATE(375), [sym__form] = STATE(1978), [sym_num_lit] = STATE(1978), [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -44961,16 +44533,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), - [aux_sym__bare_list_lit_repeat1] = STATE(338), - [sym__ws] = ACTIONS(4580), - [sym_comment] = ACTIONS(4580), + [aux_sym_list_lit_repeat1] = STATE(2817), + [aux_sym__bare_list_lit_repeat1] = STATE(375), + [sym__ws] = ACTIONS(4584), + [sym_comment] = ACTIONS(4584), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(4191), @@ -44983,7 +44555,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(4546), + [anon_sym_RBRACE] = ACTIONS(4586), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -45012,15 +44584,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -45028,13 +44600,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym_list_lit_repeat1] = STATE(2817), [aux_sym__bare_list_lit_repeat1] = STATE(289), [sym__ws] = ACTIONS(4362), [sym_comment] = ACTIONS(4362), @@ -45050,7 +44622,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(4582), + [anon_sym_RPAREN] = ACTIONS(4588), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -45079,15 +44651,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -45095,13 +44667,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym_list_lit_repeat1] = STATE(2817), [aux_sym__bare_list_lit_repeat1] = STATE(289), [sym__ws] = ACTIONS(4362), [sym_comment] = ACTIONS(4362), @@ -45117,7 +44689,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(4584), + [anon_sym_RPAREN] = ACTIONS(4590), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -45139,89 +44711,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [375] = { - [sym__gap] = STATE(375), - [sym_dis_expr] = STATE(375), - [sym__form] = STATE(1991), - [sym_num_lit] = STATE(1991), - [sym_kwd_lit] = STATE(1991), - [sym_str_lit] = STATE(1991), - [sym_char_lit] = STATE(1991), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(1991), - [sym__bare_list_lit] = STATE(1877), - [sym_vec_lit] = STATE(1991), - [sym_set_lit] = STATE(1991), - [sym__bare_set_lit] = STATE(1875), - [sym_read_cond_lit] = STATE(1991), - [sym_splicing_read_cond_lit] = STATE(1991), - [sym_var_quoting_lit] = STATE(1991), - [sym_quoting_lit] = STATE(1991), - [sym_syn_quoting_lit] = STATE(1991), - [sym_unquote_splicing_lit] = STATE(1991), - [sym_unquoting_lit] = STATE(1991), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), - [sym_path_lit] = STATE(1991), - [sym_package_lit] = STATE(1991), - [sym_include_reader_macro] = STATE(1991), - [sym_complex_num_lit] = STATE(1991), - [aux_sym_source_repeat1] = STATE(375), - [aux_sym_list_lit_repeat1] = STATE(2808), - [ts_builtin_sym_end] = ACTIONS(4586), - [sym__ws] = ACTIONS(4588), - [sym_comment] = ACTIONS(4588), - [anon_sym_POUND_] = ACTIONS(4591), - [anon_sym_POUND] = ACTIONS(4594), - [anon_sym_DOT] = ACTIONS(4597), - [aux_sym_num_lit_token1] = ACTIONS(4600), - [anon_sym_COLON] = ACTIONS(4603), - [anon_sym_COLON_COLON] = ACTIONS(4606), - [anon_sym_DQUOTE] = ACTIONS(4609), - [sym_nil_lit] = ACTIONS(4597), - [aux_sym_sym_lit_token1] = ACTIONS(4612), - [anon_sym_CARET] = ACTIONS(4615), - [anon_sym_POUND_CARET] = ACTIONS(4618), - [anon_sym_LPAREN] = ACTIONS(4621), - [anon_sym_POUND0A] = ACTIONS(4624), - [anon_sym_POUND0a] = ACTIONS(4624), - [anon_sym_POUND_QMARK] = ACTIONS(4627), - [anon_sym_POUND_QMARK_AT] = ACTIONS(4630), - [anon_sym_POUND_SQUOTE] = ACTIONS(4633), - [anon_sym_SQUOTE] = ACTIONS(4636), - [anon_sym_BQUOTE] = ACTIONS(4639), - [anon_sym_COMMA_AT] = ACTIONS(4642), - [anon_sym_COMMA] = ACTIONS(4645), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(4597), - [anon_sym_cl] = ACTIONS(4648), - [anon_sym_POUNDP] = ACTIONS(4651), - [anon_sym_POUNDp] = ACTIONS(4651), - [sym_self_referential_reader_macro] = ACTIONS(4654), - [anon_sym_POUND_PLUS] = ACTIONS(4657), - [anon_sym_POUND_DASH] = ACTIONS(4657), - [anon_sym_POUNDC] = ACTIONS(4660), - [anon_sym_POUNDc] = ACTIONS(4660), - }, - [376] = { - [sym__gap] = STATE(379), - [sym_dis_expr] = STATE(379), + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), [sym__form] = STATE(1978), [sym_num_lit] = STATE(1978), [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -45229,16 +44734,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), - [aux_sym__bare_list_lit_repeat1] = STATE(379), - [sym__ws] = ACTIONS(4663), - [sym_comment] = ACTIONS(4663), + [aux_sym_list_lit_repeat1] = STATE(2817), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4362), + [sym_comment] = ACTIONS(4362), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(4191), @@ -45251,7 +44756,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(4665), + [anon_sym_RBRACE] = ACTIONS(4592), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -45272,23 +44777,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [377] = { - [sym__gap] = STATE(381), - [sym_dis_expr] = STATE(381), + [376] = { + [sym__gap] = STATE(379), + [sym_dis_expr] = STATE(379), [sym__form] = STATE(1978), [sym_num_lit] = STATE(1978), [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -45296,16 +44801,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), - [aux_sym__bare_list_lit_repeat1] = STATE(382), - [sym__ws] = ACTIONS(4667), - [sym_comment] = ACTIONS(4667), + [aux_sym_list_lit_repeat1] = STATE(2817), + [aux_sym__bare_list_lit_repeat1] = STATE(380), + [sym__ws] = ACTIONS(4594), + [sym_comment] = ACTIONS(4594), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(4191), @@ -45318,7 +44823,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(4669), + [anon_sym_RPAREN] = ACTIONS(4596), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -45339,23 +44844,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [378] = { - [sym__gap] = STATE(289), - [sym_dis_expr] = STATE(289), + [377] = { + [sym__gap] = STATE(381), + [sym_dis_expr] = STATE(381), [sym__form] = STATE(1978), [sym_num_lit] = STATE(1978), [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -45363,16 +44868,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), - [aux_sym__bare_list_lit_repeat1] = STATE(289), - [sym__ws] = ACTIONS(4362), - [sym_comment] = ACTIONS(4362), + [aux_sym_list_lit_repeat1] = STATE(2817), + [aux_sym__bare_list_lit_repeat1] = STATE(381), + [sym__ws] = ACTIONS(4598), + [sym_comment] = ACTIONS(4598), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(4191), @@ -45385,7 +44890,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(4671), + [anon_sym_RPAREN] = ACTIONS(4596), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -45406,7 +44911,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [379] = { + [378] = { [sym__gap] = STATE(289), [sym_dis_expr] = STATE(289), [sym__form] = STATE(1978), @@ -45414,15 +44919,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -45430,13 +44935,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym_list_lit_repeat1] = STATE(2817), [aux_sym__bare_list_lit_repeat1] = STATE(289), [sym__ws] = ACTIONS(4362), [sym_comment] = ACTIONS(4362), @@ -45452,7 +44957,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(4673), + [anon_sym_RPAREN] = ACTIONS(4600), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -45473,90 +44978,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [380] = { - [sym__gap] = STATE(383), - [sym_dis_expr] = STATE(383), - [sym__form] = STATE(1978), - [sym_num_lit] = STATE(1978), - [sym_kwd_lit] = STATE(1978), - [sym_str_lit] = STATE(1978), - [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), - [sym_vec_lit] = STATE(1978), - [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), - [sym_read_cond_lit] = STATE(1978), - [sym_splicing_read_cond_lit] = STATE(1978), - [sym_var_quoting_lit] = STATE(1978), - [sym_quoting_lit] = STATE(1978), - [sym_syn_quoting_lit] = STATE(1978), - [sym_unquote_splicing_lit] = STATE(1978), - [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), - [sym_path_lit] = STATE(1978), - [sym_package_lit] = STATE(1978), - [sym_include_reader_macro] = STATE(1978), - [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), - [aux_sym__bare_list_lit_repeat1] = STATE(386), - [sym__ws] = ACTIONS(4675), - [sym_comment] = ACTIONS(4675), - [anon_sym_POUND_] = ACTIONS(9), - [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4191), - [aux_sym_num_lit_token1] = ACTIONS(15), - [anon_sym_COLON] = ACTIONS(17), - [anon_sym_COLON_COLON] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(4191), - [aux_sym_sym_lit_token1] = ACTIONS(23), - [anon_sym_CARET] = ACTIONS(25), - [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(4677), - [anon_sym_POUND0A] = ACTIONS(31), - [anon_sym_POUND0a] = ACTIONS(31), - [anon_sym_POUND_QMARK] = ACTIONS(33), - [anon_sym_POUND_QMARK_AT] = ACTIONS(35), - [anon_sym_POUND_SQUOTE] = ACTIONS(37), - [anon_sym_SQUOTE] = ACTIONS(39), - [anon_sym_BQUOTE] = ACTIONS(41), - [anon_sym_COMMA_AT] = ACTIONS(43), - [anon_sym_COMMA] = ACTIONS(45), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(4191), - [anon_sym_cl] = ACTIONS(49), - [anon_sym_POUNDP] = ACTIONS(51), - [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(4203), - [anon_sym_POUND_PLUS] = ACTIONS(55), - [anon_sym_POUND_DASH] = ACTIONS(55), - [anon_sym_POUNDC] = ACTIONS(57), - [anon_sym_POUNDc] = ACTIONS(57), - }, - [381] = { - [sym__gap] = STATE(387), - [sym_dis_expr] = STATE(387), + [379] = { + [sym__gap] = STATE(382), + [sym_dis_expr] = STATE(382), [sym__form] = STATE(1978), [sym_num_lit] = STATE(1978), [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -45564,16 +45002,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), - [aux_sym__bare_list_lit_repeat1] = STATE(387), - [sym__ws] = ACTIONS(4679), - [sym_comment] = ACTIONS(4679), + [aux_sym_list_lit_repeat1] = STATE(2817), + [aux_sym__bare_list_lit_repeat1] = STATE(382), + [sym__ws] = ACTIONS(4602), + [sym_comment] = ACTIONS(4602), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(4191), @@ -45586,7 +45024,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(4677), + [anon_sym_RPAREN] = ACTIONS(4604), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -45607,7 +45045,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [382] = { + [380] = { [sym__gap] = STATE(289), [sym_dis_expr] = STATE(289), [sym__form] = STATE(1978), @@ -45615,15 +45053,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -45631,13 +45069,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym_list_lit_repeat1] = STATE(2817), [aux_sym__bare_list_lit_repeat1] = STATE(289), [sym__ws] = ACTIONS(4362), [sym_comment] = ACTIONS(4362), @@ -45653,7 +45091,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(4681), + [anon_sym_RPAREN] = ACTIONS(4606), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -45674,74 +45112,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [383] = { - [sym__gap] = STATE(389), - [sym_dis_expr] = STATE(389), - [sym__form] = STATE(1978), - [sym_num_lit] = STATE(1978), - [sym_kwd_lit] = STATE(1978), - [sym_str_lit] = STATE(1978), - [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), - [sym_vec_lit] = STATE(1978), - [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), - [sym_read_cond_lit] = STATE(1978), - [sym_splicing_read_cond_lit] = STATE(1978), - [sym_var_quoting_lit] = STATE(1978), - [sym_quoting_lit] = STATE(1978), - [sym_syn_quoting_lit] = STATE(1978), - [sym_unquote_splicing_lit] = STATE(1978), - [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), - [sym_path_lit] = STATE(1978), - [sym_package_lit] = STATE(1978), - [sym_include_reader_macro] = STATE(1978), - [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), - [aux_sym__bare_list_lit_repeat1] = STATE(389), - [sym__ws] = ACTIONS(4683), - [sym_comment] = ACTIONS(4683), - [anon_sym_POUND_] = ACTIONS(9), - [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4191), - [aux_sym_num_lit_token1] = ACTIONS(15), - [anon_sym_COLON] = ACTIONS(17), - [anon_sym_COLON_COLON] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(4191), - [aux_sym_sym_lit_token1] = ACTIONS(23), - [anon_sym_CARET] = ACTIONS(25), - [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(4685), - [anon_sym_POUND0A] = ACTIONS(31), - [anon_sym_POUND0a] = ACTIONS(31), - [anon_sym_POUND_QMARK] = ACTIONS(33), - [anon_sym_POUND_QMARK_AT] = ACTIONS(35), - [anon_sym_POUND_SQUOTE] = ACTIONS(37), - [anon_sym_SQUOTE] = ACTIONS(39), - [anon_sym_BQUOTE] = ACTIONS(41), - [anon_sym_COMMA_AT] = ACTIONS(43), - [anon_sym_COMMA] = ACTIONS(45), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(4191), - [anon_sym_cl] = ACTIONS(49), - [anon_sym_POUNDP] = ACTIONS(51), - [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(4203), - [anon_sym_POUND_PLUS] = ACTIONS(55), - [anon_sym_POUND_DASH] = ACTIONS(55), - [anon_sym_POUNDC] = ACTIONS(57), - [anon_sym_POUNDc] = ACTIONS(57), - }, - [384] = { + [381] = { [sym__gap] = STATE(289), [sym_dis_expr] = STATE(289), [sym__form] = STATE(1978), @@ -45749,15 +45120,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -45765,13 +45136,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym_list_lit_repeat1] = STATE(2817), [aux_sym__bare_list_lit_repeat1] = STATE(289), [sym__ws] = ACTIONS(4362), [sym_comment] = ACTIONS(4362), @@ -45787,7 +45158,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(4687), + [anon_sym_RPAREN] = ACTIONS(4608), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -45808,7 +45179,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [385] = { + [382] = { [sym__gap] = STATE(289), [sym_dis_expr] = STATE(289), [sym__form] = STATE(1978), @@ -45816,15 +45187,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -45832,13 +45203,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym_list_lit_repeat1] = STATE(2817), [aux_sym__bare_list_lit_repeat1] = STATE(289), [sym__ws] = ACTIONS(4362), [sym_comment] = ACTIONS(4362), @@ -45854,7 +45225,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(4689), + [anon_sym_RPAREN] = ACTIONS(4610), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -45875,7 +45246,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [386] = { + [383] = { [sym__gap] = STATE(289), [sym_dis_expr] = STATE(289), [sym__form] = STATE(1978), @@ -45883,15 +45254,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -45899,13 +45270,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym_list_lit_repeat1] = STATE(2817), [aux_sym__bare_list_lit_repeat1] = STATE(289), [sym__ws] = ACTIONS(4362), [sym_comment] = ACTIONS(4362), @@ -45921,7 +45292,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(4691), + [anon_sym_RPAREN] = ACTIONS(4612), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -45942,23 +45313,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [387] = { - [sym__gap] = STATE(289), - [sym_dis_expr] = STATE(289), + [384] = { + [sym__gap] = STATE(387), + [sym_dis_expr] = STATE(387), [sym__form] = STATE(1978), [sym_num_lit] = STATE(1978), [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -45966,16 +45337,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), - [aux_sym__bare_list_lit_repeat1] = STATE(289), - [sym__ws] = ACTIONS(4362), - [sym_comment] = ACTIONS(4362), + [aux_sym_list_lit_repeat1] = STATE(2817), + [aux_sym__bare_list_lit_repeat1] = STATE(387), + [sym__ws] = ACTIONS(4614), + [sym_comment] = ACTIONS(4614), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(4191), @@ -45988,7 +45359,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(4693), + [anon_sym_RBRACE] = ACTIONS(4616), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -46009,23 +45380,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [388] = { - [sym__gap] = STATE(337), - [sym_dis_expr] = STATE(337), + [385] = { + [sym__gap] = STATE(389), + [sym_dis_expr] = STATE(389), [sym__form] = STATE(1978), [sym_num_lit] = STATE(1978), [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -46033,16 +45404,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), - [aux_sym__bare_list_lit_repeat1] = STATE(292), - [sym__ws] = ACTIONS(4695), - [sym_comment] = ACTIONS(4695), + [aux_sym_list_lit_repeat1] = STATE(2817), + [aux_sym__bare_list_lit_repeat1] = STATE(390), + [sym__ws] = ACTIONS(4618), + [sym_comment] = ACTIONS(4618), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(4191), @@ -46055,7 +45426,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(4697), + [anon_sym_RPAREN] = ACTIONS(4620), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -46076,7 +45447,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [389] = { + [386] = { [sym__gap] = STATE(289), [sym_dis_expr] = STATE(289), [sym__form] = STATE(1978), @@ -46084,15 +45455,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -46100,13 +45471,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym_list_lit_repeat1] = STATE(2817), [aux_sym__bare_list_lit_repeat1] = STATE(289), [sym__ws] = ACTIONS(4362), [sym_comment] = ACTIONS(4362), @@ -46122,74 +45493,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(4699), - [anon_sym_POUND0A] = ACTIONS(31), - [anon_sym_POUND0a] = ACTIONS(31), - [anon_sym_POUND_QMARK] = ACTIONS(33), - [anon_sym_POUND_QMARK_AT] = ACTIONS(35), - [anon_sym_POUND_SQUOTE] = ACTIONS(37), - [anon_sym_SQUOTE] = ACTIONS(39), - [anon_sym_BQUOTE] = ACTIONS(41), - [anon_sym_COMMA_AT] = ACTIONS(43), - [anon_sym_COMMA] = ACTIONS(45), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(4191), - [anon_sym_cl] = ACTIONS(49), - [anon_sym_POUNDP] = ACTIONS(51), - [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(4203), - [anon_sym_POUND_PLUS] = ACTIONS(55), - [anon_sym_POUND_DASH] = ACTIONS(55), - [anon_sym_POUNDC] = ACTIONS(57), - [anon_sym_POUNDc] = ACTIONS(57), - }, - [390] = { - [sym__gap] = STATE(374), - [sym_dis_expr] = STATE(374), - [sym__form] = STATE(1978), - [sym_num_lit] = STATE(1978), - [sym_kwd_lit] = STATE(1978), - [sym_str_lit] = STATE(1978), - [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), - [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), - [sym_vec_lit] = STATE(1978), - [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), - [sym_read_cond_lit] = STATE(1978), - [sym_splicing_read_cond_lit] = STATE(1978), - [sym_var_quoting_lit] = STATE(1978), - [sym_quoting_lit] = STATE(1978), - [sym_syn_quoting_lit] = STATE(1978), - [sym_unquote_splicing_lit] = STATE(1978), - [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), - [sym_path_lit] = STATE(1978), - [sym_package_lit] = STATE(1978), - [sym_include_reader_macro] = STATE(1978), - [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), - [aux_sym__bare_list_lit_repeat1] = STATE(374), - [sym__ws] = ACTIONS(4701), - [sym_comment] = ACTIONS(4701), - [anon_sym_POUND_] = ACTIONS(9), - [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4191), - [aux_sym_num_lit_token1] = ACTIONS(15), - [anon_sym_COLON] = ACTIONS(17), - [anon_sym_COLON_COLON] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(4191), - [aux_sym_sym_lit_token1] = ACTIONS(23), - [anon_sym_CARET] = ACTIONS(25), - [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(4703), + [anon_sym_RPAREN] = ACTIONS(4622), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -46210,7 +45514,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [391] = { + [387] = { [sym__gap] = STATE(289), [sym_dis_expr] = STATE(289), [sym__form] = STATE(1978), @@ -46218,15 +45522,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -46234,13 +45538,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym_list_lit_repeat1] = STATE(2817), [aux_sym__bare_list_lit_repeat1] = STATE(289), [sym__ws] = ACTIONS(4362), [sym_comment] = ACTIONS(4362), @@ -46256,7 +45560,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(4705), + [anon_sym_RBRACE] = ACTIONS(4624), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -46277,23 +45581,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [392] = { - [sym__gap] = STATE(290), - [sym_dis_expr] = STATE(290), + [388] = { + [sym__gap] = STATE(391), + [sym_dis_expr] = STATE(391), [sym__form] = STATE(1978), [sym_num_lit] = STATE(1978), [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -46301,16 +45605,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), - [aux_sym__bare_list_lit_repeat1] = STATE(347), - [sym__ws] = ACTIONS(4707), - [sym_comment] = ACTIONS(4707), + [aux_sym_list_lit_repeat1] = STATE(2817), + [aux_sym__bare_list_lit_repeat1] = STATE(392), + [sym__ws] = ACTIONS(4626), + [sym_comment] = ACTIONS(4626), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(4191), @@ -46323,7 +45627,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(4709), + [anon_sym_RPAREN] = ACTIONS(4628), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -46344,23 +45648,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [393] = { - [sym__gap] = STATE(336), - [sym_dis_expr] = STATE(336), + [389] = { + [sym__gap] = STATE(393), + [sym_dis_expr] = STATE(393), [sym__form] = STATE(1978), [sym_num_lit] = STATE(1978), [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -46368,16 +45672,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), - [aux_sym__bare_list_lit_repeat1] = STATE(336), - [sym__ws] = ACTIONS(4711), - [sym_comment] = ACTIONS(4711), + [aux_sym_list_lit_repeat1] = STATE(2817), + [aux_sym__bare_list_lit_repeat1] = STATE(393), + [sym__ws] = ACTIONS(4630), + [sym_comment] = ACTIONS(4630), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(4191), @@ -46390,7 +45694,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(4713), + [anon_sym_RPAREN] = ACTIONS(4628), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -46411,23 +45715,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [394] = { - [sym__gap] = STATE(397), - [sym_dis_expr] = STATE(397), + [390] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), [sym__form] = STATE(1978), [sym_num_lit] = STATE(1978), [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -46435,16 +45739,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), - [aux_sym__bare_list_lit_repeat1] = STATE(398), - [sym__ws] = ACTIONS(4715), - [sym_comment] = ACTIONS(4715), + [aux_sym_list_lit_repeat1] = STATE(2817), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4362), + [sym_comment] = ACTIONS(4362), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(4191), @@ -46457,7 +45761,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(4717), + [anon_sym_RPAREN] = ACTIONS(4632), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -46478,23 +45782,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [395] = { - [sym__gap] = STATE(289), - [sym_dis_expr] = STATE(289), + [391] = { + [sym__gap] = STATE(394), + [sym_dis_expr] = STATE(394), [sym__form] = STATE(1978), [sym_num_lit] = STATE(1978), [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -46502,16 +45806,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), - [aux_sym__bare_list_lit_repeat1] = STATE(289), - [sym__ws] = ACTIONS(4362), - [sym_comment] = ACTIONS(4362), + [aux_sym_list_lit_repeat1] = STATE(2817), + [aux_sym__bare_list_lit_repeat1] = STATE(394), + [sym__ws] = ACTIONS(4634), + [sym_comment] = ACTIONS(4634), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(4191), @@ -46524,7 +45828,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(4719), + [anon_sym_RPAREN] = ACTIONS(4636), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -46545,23 +45849,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [396] = { - [sym__gap] = STATE(401), - [sym_dis_expr] = STATE(401), + [392] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), [sym__form] = STATE(1978), [sym_num_lit] = STATE(1978), [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -46569,16 +45873,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), - [aux_sym__bare_list_lit_repeat1] = STATE(402), - [sym__ws] = ACTIONS(4721), - [sym_comment] = ACTIONS(4721), + [aux_sym_list_lit_repeat1] = STATE(2817), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4362), + [sym_comment] = ACTIONS(4362), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(4191), @@ -46591,7 +45895,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(4723), + [anon_sym_RPAREN] = ACTIONS(4638), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -46612,23 +45916,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [397] = { - [sym__gap] = STATE(403), - [sym_dis_expr] = STATE(403), + [393] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), [sym__form] = STATE(1978), [sym_num_lit] = STATE(1978), [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -46636,16 +45940,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), - [aux_sym__bare_list_lit_repeat1] = STATE(403), - [sym__ws] = ACTIONS(4725), - [sym_comment] = ACTIONS(4725), + [aux_sym_list_lit_repeat1] = STATE(2817), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4362), + [sym_comment] = ACTIONS(4362), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(4191), @@ -46658,7 +45962,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(4723), + [anon_sym_RPAREN] = ACTIONS(4640), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -46679,7 +45983,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [398] = { + [394] = { [sym__gap] = STATE(289), [sym_dis_expr] = STATE(289), [sym__form] = STATE(1978), @@ -46687,15 +45991,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -46703,13 +46007,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym_list_lit_repeat1] = STATE(2817), [aux_sym__bare_list_lit_repeat1] = STATE(289), [sym__ws] = ACTIONS(4362), [sym_comment] = ACTIONS(4362), @@ -46725,7 +46029,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(4727), + [anon_sym_RPAREN] = ACTIONS(4642), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -46746,7 +46050,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [399] = { + [395] = { + [sym__gap] = STATE(395), + [sym_dis_expr] = STATE(395), + [sym__form] = STATE(2013), + [sym_num_lit] = STATE(2013), + [sym_kwd_lit] = STATE(2013), + [sym_str_lit] = STATE(2013), + [sym_char_lit] = STATE(2013), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(2013), + [sym__bare_list_lit] = STATE(1790), + [sym_vec_lit] = STATE(2013), + [sym_set_lit] = STATE(2013), + [sym__bare_set_lit] = STATE(1801), + [sym_read_cond_lit] = STATE(2013), + [sym_splicing_read_cond_lit] = STATE(2013), + [sym_var_quoting_lit] = STATE(2013), + [sym_quoting_lit] = STATE(2013), + [sym_syn_quoting_lit] = STATE(2013), + [sym_unquote_splicing_lit] = STATE(2013), + [sym_unquoting_lit] = STATE(2013), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), + [sym_path_lit] = STATE(2013), + [sym_package_lit] = STATE(2013), + [sym_include_reader_macro] = STATE(2013), + [sym_complex_num_lit] = STATE(2013), + [aux_sym_source_repeat1] = STATE(395), + [aux_sym_list_lit_repeat1] = STATE(2817), + [ts_builtin_sym_end] = ACTIONS(4644), + [sym__ws] = ACTIONS(4646), + [sym_comment] = ACTIONS(4646), + [anon_sym_POUND_] = ACTIONS(4649), + [anon_sym_POUND] = ACTIONS(4652), + [anon_sym_DOT] = ACTIONS(4655), + [aux_sym_num_lit_token1] = ACTIONS(4658), + [anon_sym_COLON] = ACTIONS(4661), + [anon_sym_COLON_COLON] = ACTIONS(4664), + [anon_sym_DQUOTE] = ACTIONS(4667), + [sym_nil_lit] = ACTIONS(4655), + [aux_sym_sym_lit_token1] = ACTIONS(4670), + [anon_sym_CARET] = ACTIONS(4673), + [anon_sym_POUND_CARET] = ACTIONS(4676), + [anon_sym_LPAREN] = ACTIONS(4679), + [anon_sym_POUND0A] = ACTIONS(4682), + [anon_sym_POUND0a] = ACTIONS(4682), + [anon_sym_POUND_QMARK] = ACTIONS(4685), + [anon_sym_POUND_QMARK_AT] = ACTIONS(4688), + [anon_sym_POUND_SQUOTE] = ACTIONS(4691), + [anon_sym_SQUOTE] = ACTIONS(4694), + [anon_sym_BQUOTE] = ACTIONS(4697), + [anon_sym_COMMA_AT] = ACTIONS(4700), + [anon_sym_COMMA] = ACTIONS(4703), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(4655), + [anon_sym_cl] = ACTIONS(4706), + [anon_sym_POUNDP] = ACTIONS(4709), + [anon_sym_POUNDp] = ACTIONS(4709), + [sym_self_referential_reader_macro] = ACTIONS(4712), + [anon_sym_POUND_PLUS] = ACTIONS(4715), + [anon_sym_POUND_DASH] = ACTIONS(4715), + [anon_sym_POUNDC] = ACTIONS(4718), + [anon_sym_POUNDc] = ACTIONS(4718), + }, + [396] = { + [sym__gap] = STATE(399), + [sym_dis_expr] = STATE(399), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1790), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1801), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2817), + [aux_sym__bare_list_lit_repeat1] = STATE(400), + [sym__ws] = ACTIONS(4721), + [sym_comment] = ACTIONS(4721), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(4191), + [aux_sym_num_lit_token1] = ACTIONS(15), + [anon_sym_COLON] = ACTIONS(17), + [anon_sym_COLON_COLON] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [sym_nil_lit] = ACTIONS(4191), + [aux_sym_sym_lit_token1] = ACTIONS(23), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_RPAREN] = ACTIONS(4723), + [anon_sym_POUND0A] = ACTIONS(31), + [anon_sym_POUND0a] = ACTIONS(31), + [anon_sym_POUND_QMARK] = ACTIONS(33), + [anon_sym_POUND_QMARK_AT] = ACTIONS(35), + [anon_sym_POUND_SQUOTE] = ACTIONS(37), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_BQUOTE] = ACTIONS(41), + [anon_sym_COMMA_AT] = ACTIONS(43), + [anon_sym_COMMA] = ACTIONS(45), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(4191), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(4203), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [397] = { [sym__gap] = STATE(289), [sym_dis_expr] = STATE(289), [sym__form] = STATE(1978), @@ -46754,15 +46192,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -46770,13 +46208,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym_list_lit_repeat1] = STATE(2817), [aux_sym__bare_list_lit_repeat1] = STATE(289), [sym__ws] = ACTIONS(4362), [sym_comment] = ACTIONS(4362), @@ -46792,6 +46230,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_RPAREN] = ACTIONS(4725), + [anon_sym_POUND0A] = ACTIONS(31), + [anon_sym_POUND0a] = ACTIONS(31), + [anon_sym_POUND_QMARK] = ACTIONS(33), + [anon_sym_POUND_QMARK_AT] = ACTIONS(35), + [anon_sym_POUND_SQUOTE] = ACTIONS(37), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_BQUOTE] = ACTIONS(41), + [anon_sym_COMMA_AT] = ACTIONS(43), + [anon_sym_COMMA] = ACTIONS(45), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(4191), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(4203), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [398] = { + [sym__gap] = STATE(401), + [sym_dis_expr] = STATE(401), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1790), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1801), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2817), + [aux_sym__bare_list_lit_repeat1] = STATE(402), + [sym__ws] = ACTIONS(4727), + [sym_comment] = ACTIONS(4727), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(4191), + [aux_sym_num_lit_token1] = ACTIONS(15), + [anon_sym_COLON] = ACTIONS(17), + [anon_sym_COLON_COLON] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [sym_nil_lit] = ACTIONS(4191), + [aux_sym_sym_lit_token1] = ACTIONS(23), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), [anon_sym_RPAREN] = ACTIONS(4729), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), @@ -46813,23 +46318,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [400] = { - [sym__gap] = STATE(353), - [sym_dis_expr] = STATE(353), + [399] = { + [sym__gap] = STATE(403), + [sym_dis_expr] = STATE(403), [sym__form] = STATE(1978), [sym_num_lit] = STATE(1978), [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -46837,14 +46342,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), - [aux_sym__bare_list_lit_repeat1] = STATE(353), + [aux_sym_list_lit_repeat1] = STATE(2817), + [aux_sym__bare_list_lit_repeat1] = STATE(403), [sym__ws] = ACTIONS(4731), [sym_comment] = ACTIONS(4731), [anon_sym_POUND_] = ACTIONS(9), @@ -46859,7 +46364,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(4733), + [anon_sym_RPAREN] = ACTIONS(4729), + [anon_sym_POUND0A] = ACTIONS(31), + [anon_sym_POUND0a] = ACTIONS(31), + [anon_sym_POUND_QMARK] = ACTIONS(33), + [anon_sym_POUND_QMARK_AT] = ACTIONS(35), + [anon_sym_POUND_SQUOTE] = ACTIONS(37), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_BQUOTE] = ACTIONS(41), + [anon_sym_COMMA_AT] = ACTIONS(43), + [anon_sym_COMMA] = ACTIONS(45), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(4191), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(4203), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [400] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1790), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1801), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2817), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4362), + [sym_comment] = ACTIONS(4362), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(4191), + [aux_sym_num_lit_token1] = ACTIONS(15), + [anon_sym_COLON] = ACTIONS(17), + [anon_sym_COLON_COLON] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [sym_nil_lit] = ACTIONS(4191), + [aux_sym_sym_lit_token1] = ACTIONS(23), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_RPAREN] = ACTIONS(4733), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -46881,22 +46453,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [401] = { - [sym__gap] = STATE(404), - [sym_dis_expr] = STATE(404), + [sym__gap] = STATE(373), + [sym_dis_expr] = STATE(373), [sym__form] = STATE(1978), [sym_num_lit] = STATE(1978), [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -46904,14 +46476,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), - [aux_sym__bare_list_lit_repeat1] = STATE(404), + [aux_sym_list_lit_repeat1] = STATE(2817), + [aux_sym__bare_list_lit_repeat1] = STATE(373), [sym__ws] = ACTIONS(4735), [sym_comment] = ACTIONS(4735), [anon_sym_POUND_] = ACTIONS(9), @@ -46955,15 +46527,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -46971,13 +46543,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym_list_lit_repeat1] = STATE(2817), [aux_sym__bare_list_lit_repeat1] = STATE(289), [sym__ws] = ACTIONS(4362), [sym_comment] = ACTIONS(4362), @@ -47022,15 +46594,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -47038,13 +46610,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym_list_lit_repeat1] = STATE(2817), [aux_sym__bare_list_lit_repeat1] = STATE(289), [sym__ws] = ACTIONS(4362), [sym_comment] = ACTIONS(4362), @@ -47089,15 +46661,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_kwd_lit] = STATE(1978), [sym_str_lit] = STATE(1978), [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1878), - [sym__metadata_lit] = STATE(2901), - [sym_meta_lit] = STATE(2858), - [sym_old_meta_lit] = STATE(2859), + [sym_sym_lit] = STATE(1771), + [sym__metadata_lit] = STATE(2903), + [sym_meta_lit] = STATE(2871), + [sym_old_meta_lit] = STATE(2860), [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1877), + [sym__bare_list_lit] = STATE(1790), [sym_vec_lit] = STATE(1978), [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1875), + [sym__bare_set_lit] = STATE(1801), [sym_read_cond_lit] = STATE(1978), [sym_splicing_read_cond_lit] = STATE(1978), [sym_var_quoting_lit] = STATE(1978), @@ -47105,13 +46677,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(1978), [sym_unquote_splicing_lit] = STATE(1978), [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1877), - [sym_loop_macro] = STATE(1877), + [sym_defun] = STATE(1790), + [sym_loop_macro] = STATE(1790), [sym_path_lit] = STATE(1978), [sym_package_lit] = STATE(1978), [sym_include_reader_macro] = STATE(1978), [sym_complex_num_lit] = STATE(1978), - [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym_list_lit_repeat1] = STATE(2817), [aux_sym__bare_list_lit_repeat1] = STATE(289), [sym__ws] = ACTIONS(4362), [sym_comment] = ACTIONS(4362), @@ -47160,78 +46732,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4747), 1, + ACTIONS(65), 1, anon_sym_POUND, - ACTIONS(4751), 1, + ACTIONS(69), 1, aux_sym_num_lit_token1, - ACTIONS(4753), 1, - anon_sym_COLON, - ACTIONS(4755), 1, + ACTIONS(74), 1, anon_sym_COLON_COLON, - ACTIONS(4757), 1, + ACTIONS(76), 1, anon_sym_DQUOTE, - ACTIONS(4759), 1, + ACTIONS(78), 1, aux_sym_sym_lit_token1, - ACTIONS(4761), 1, - anon_sym_LPAREN, - ACTIONS(4765), 1, + ACTIONS(93), 1, anon_sym_POUND_QMARK, - ACTIONS(4767), 1, + ACTIONS(95), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4769), 1, + ACTIONS(97), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4771), 1, + ACTIONS(99), 1, anon_sym_SQUOTE, - ACTIONS(4773), 1, + ACTIONS(101), 1, anon_sym_BQUOTE, - ACTIONS(4775), 1, + ACTIONS(103), 1, anon_sym_COMMA_AT, - ACTIONS(4777), 1, + ACTIONS(105), 1, anon_sym_COMMA, - ACTIONS(4779), 1, + ACTIONS(4749), 1, + anon_sym_COLON, + ACTIONS(4751), 1, + anon_sym_LPAREN, + ACTIONS(4753), 1, anon_sym_cl, - ACTIONS(4783), 1, + ACTIONS(4755), 1, sym_self_referential_reader_macro, - STATE(1489), 1, + STATE(1101), 1, sym_sym_lit, - STATE(1557), 1, + STATE(1117), 1, sym__bare_set_lit, - STATE(2841), 1, + STATE(2812), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(4745), 2, - sym__ws, - sym_comment, - ACTIONS(4763), 2, + ACTIONS(91), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4781), 2, + ACTIONS(114), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4785), 2, + ACTIONS(118), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4787), 2, + ACTIONS(120), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4749), 3, + ACTIONS(4745), 2, + sym__ws, + sym_comment, + ACTIONS(4747), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(430), 3, + STATE(821), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1612), 3, + STATE(1109), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1499), 19, + STATE(12), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -47254,84 +46826,84 @@ static const uint16_t ts_small_parse_table[] = { [135] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(2728), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(2732), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(2737), 1, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(2739), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(2741), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(2756), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(2758), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2760), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2762), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(2764), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(2766), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(2768), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(4793), 1, - anon_sym_COLON, - ACTIONS(4795), 1, - anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(4799), 1, + ACTIONS(4761), 1, sym_self_referential_reader_macro, - STATE(1482), 1, - sym__bare_set_lit, - STATE(1484), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2813), 1, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(2754), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2775), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2779), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2781), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4789), 2, + ACTIONS(4757), 2, sym__ws, sym_comment, - ACTIONS(4791), 3, + ACTIONS(4759), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(808), 3, + STATE(843), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1483), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1464), 19, + STATE(1881), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -47360,78 +46932,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(77), 1, + ACTIONS(174), 1, + anon_sym_POUND, + ACTIONS(178), 1, + aux_sym_num_lit_token1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4803), 1, - anon_sym_POUND, - ACTIONS(4807), 1, - aux_sym_num_lit_token1, - ACTIONS(4809), 1, - anon_sym_COLON, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(211), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4817), 1, + ACTIONS(213), 1, anon_sym_SQUOTE, - ACTIONS(4819), 1, + ACTIONS(215), 1, anon_sym_BQUOTE, - ACTIONS(4821), 1, + ACTIONS(217), 1, anon_sym_COMMA_AT, - ACTIONS(4823), 1, + ACTIONS(219), 1, anon_sym_COMMA, - ACTIONS(4825), 1, + ACTIONS(4767), 1, + anon_sym_COLON, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, anon_sym_cl, - ACTIONS(4827), 1, + ACTIONS(4773), 1, sym_self_referential_reader_macro, - STATE(2497), 1, + STATE(2112), 1, sym_sym_lit, - STATE(2625), 1, + STATE(2589), 1, sym__bare_set_lit, - STATE(2828), 1, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(123), 2, + ACTIONS(205), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(129), 2, + ACTIONS(234), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(4813), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(4829), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(4805), 3, + ACTIONS(4765), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(2584), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2589), 19, + STATE(2686), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -47460,78 +47032,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(77), 1, + ACTIONS(174), 1, + anon_sym_POUND, + ACTIONS(178), 1, + aux_sym_num_lit_token1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4803), 1, - anon_sym_POUND, - ACTIONS(4807), 1, - aux_sym_num_lit_token1, - ACTIONS(4809), 1, - anon_sym_COLON, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(211), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4817), 1, + ACTIONS(213), 1, anon_sym_SQUOTE, - ACTIONS(4819), 1, + ACTIONS(215), 1, anon_sym_BQUOTE, - ACTIONS(4821), 1, + ACTIONS(217), 1, anon_sym_COMMA_AT, - ACTIONS(4823), 1, + ACTIONS(219), 1, anon_sym_COMMA, - ACTIONS(4825), 1, + ACTIONS(4767), 1, + anon_sym_COLON, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, anon_sym_cl, - ACTIONS(4833), 1, + ACTIONS(4777), 1, sym_self_referential_reader_macro, - STATE(2497), 1, + STATE(2112), 1, sym_sym_lit, - STATE(2625), 1, + STATE(2589), 1, sym__bare_set_lit, - STATE(2828), 1, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(123), 2, + ACTIONS(205), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(129), 2, + ACTIONS(234), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(4813), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(4829), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(4831), 3, + ACTIONS(4775), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(2584), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2590), 19, + STATE(2697), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -47560,78 +47132,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(77), 1, + ACTIONS(174), 1, + anon_sym_POUND, + ACTIONS(178), 1, + aux_sym_num_lit_token1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4803), 1, - anon_sym_POUND, - ACTIONS(4807), 1, - aux_sym_num_lit_token1, - ACTIONS(4809), 1, - anon_sym_COLON, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(211), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4817), 1, + ACTIONS(213), 1, anon_sym_SQUOTE, - ACTIONS(4819), 1, + ACTIONS(215), 1, anon_sym_BQUOTE, - ACTIONS(4821), 1, + ACTIONS(217), 1, anon_sym_COMMA_AT, - ACTIONS(4823), 1, + ACTIONS(219), 1, anon_sym_COMMA, - ACTIONS(4825), 1, + ACTIONS(4767), 1, + anon_sym_COLON, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, anon_sym_cl, - ACTIONS(4839), 1, + ACTIONS(4781), 1, sym_self_referential_reader_macro, - STATE(2497), 1, + STATE(2112), 1, sym_sym_lit, - STATE(2625), 1, + STATE(2589), 1, sym__bare_set_lit, - STATE(2828), 1, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(123), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(129), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4813), 2, + ACTIONS(205), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4829), 2, + ACTIONS(230), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(234), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4835), 2, + ACTIONS(236), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(4837), 3, + ACTIONS(4779), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(455), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(2584), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2571), 19, + STATE(2711), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -47660,78 +47232,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2728), 1, + ACTIONS(174), 1, anon_sym_POUND, - ACTIONS(2732), 1, + ACTIONS(178), 1, aux_sym_num_lit_token1, - ACTIONS(2737), 1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(2739), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(2741), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(2756), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(2758), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2760), 1, + ACTIONS(211), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2762), 1, + ACTIONS(213), 1, anon_sym_SQUOTE, - ACTIONS(2764), 1, + ACTIONS(215), 1, anon_sym_BQUOTE, - ACTIONS(2766), 1, + ACTIONS(217), 1, anon_sym_COMMA_AT, - ACTIONS(2768), 1, + ACTIONS(219), 1, anon_sym_COMMA, - ACTIONS(4793), 1, + ACTIONS(4767), 1, anon_sym_COLON, - ACTIONS(4795), 1, + ACTIONS(4769), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4771), 1, anon_sym_cl, - ACTIONS(4843), 1, + ACTIONS(4785), 1, sym_self_referential_reader_macro, - STATE(1482), 1, - sym__bare_set_lit, - STATE(1484), 1, + STATE(2112), 1, sym_sym_lit, - STATE(2813), 1, + STATE(2589), 1, + sym__bare_set_lit, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(2754), 2, + ACTIONS(205), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2775), 2, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2779), 2, + ACTIONS(234), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2781), 2, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(4841), 3, + ACTIONS(4783), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1483), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(94), 19, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2690), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -47760,78 +47332,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(77), 1, + ACTIONS(1688), 1, + anon_sym_POUND, + ACTIONS(1692), 1, + aux_sym_num_lit_token1, + ACTIONS(1697), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(1699), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(1701), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(1716), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(1718), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4803), 1, - anon_sym_POUND, - ACTIONS(4807), 1, - aux_sym_num_lit_token1, - ACTIONS(4809), 1, - anon_sym_COLON, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(1720), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4817), 1, + ACTIONS(1722), 1, anon_sym_SQUOTE, - ACTIONS(4819), 1, + ACTIONS(1724), 1, anon_sym_BQUOTE, - ACTIONS(4821), 1, + ACTIONS(1726), 1, anon_sym_COMMA_AT, - ACTIONS(4823), 1, + ACTIONS(1728), 1, anon_sym_COMMA, - ACTIONS(4825), 1, + ACTIONS(4791), 1, + anon_sym_COLON, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4795), 1, anon_sym_cl, - ACTIONS(4847), 1, + ACTIONS(4797), 1, sym_self_referential_reader_macro, - STATE(2497), 1, + STATE(1288), 1, sym_sym_lit, - STATE(2625), 1, + STATE(1290), 1, sym__bare_set_lit, - STATE(2828), 1, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(123), 2, + ACTIONS(1714), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(1735), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(129), 2, + ACTIONS(1739), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1741), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4787), 2, sym__ws, sym_comment, - ACTIONS(4813), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(4829), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(4845), 3, + ACTIONS(4789), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, + STATE(819), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(1289), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2577), 19, + STATE(78), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -47854,84 +47426,84 @@ static const uint16_t ts_small_parse_table[] = { [945] = 35, ACTIONS(9), 1, anon_sym_POUND_, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, + anon_sym_COLON_COLON, + ACTIONS(21), 1, + anon_sym_DQUOTE, + ACTIONS(23), 1, + aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(77), 1, - anon_sym_COLON_COLON, - ACTIONS(79), 1, - anon_sym_DQUOTE, - ACTIONS(81), 1, - aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4803), 1, - anon_sym_POUND, - ACTIONS(4807), 1, - aux_sym_num_lit_token1, - ACTIONS(4809), 1, - anon_sym_COLON, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4817), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(4819), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(4821), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(4823), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(4825), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(4851), 1, + ACTIONS(4803), 1, sym_self_referential_reader_macro, - STATE(2497), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2625), 1, + STATE(1801), 1, sym__bare_set_lit, - STATE(2828), 1, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(123), 2, + ACTIONS(31), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(129), 2, + ACTIONS(55), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4799), 2, sym__ws, sym_comment, - ACTIONS(4813), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(4829), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(4849), 3, + ACTIONS(4801), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, + STATE(844), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2599), 19, + STATE(1882), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -47954,84 +47526,84 @@ static const uint16_t ts_small_parse_table[] = { [1080] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(137), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(141), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(146), 1, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(148), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(150), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(165), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(167), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(169), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(171), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(173), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(175), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(177), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(4855), 1, - anon_sym_COLON, - ACTIONS(4857), 1, - anon_sym_LPAREN, - ACTIONS(4859), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(4861), 1, + ACTIONS(4809), 1, sym_self_referential_reader_macro, - STATE(1069), 1, - sym__bare_set_lit, - STATE(1073), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2804), 1, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(163), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(186), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(190), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(192), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4805), 2, sym__ws, sym_comment, - ACTIONS(4853), 3, + ACTIONS(4807), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1070), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(848), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(3), 19, + STATE(1790), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(845), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -48090,19 +47662,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(4865), 1, + ACTIONS(4815), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2808), 1, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -48116,22 +47688,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4811), 2, sym__ws, sym_comment, - ACTIONS(4863), 3, + ACTIONS(4813), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1877), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(853), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(761), 19, + STATE(1790), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(849), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -48160,78 +47732,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(77), 1, + ACTIONS(174), 1, + anon_sym_POUND, + ACTIONS(178), 1, + aux_sym_num_lit_token1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4803), 1, - anon_sym_POUND, - ACTIONS(4807), 1, - aux_sym_num_lit_token1, - ACTIONS(4809), 1, - anon_sym_COLON, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(211), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4817), 1, + ACTIONS(213), 1, anon_sym_SQUOTE, - ACTIONS(4819), 1, + ACTIONS(215), 1, anon_sym_BQUOTE, - ACTIONS(4821), 1, + ACTIONS(217), 1, anon_sym_COMMA_AT, - ACTIONS(4823), 1, + ACTIONS(219), 1, anon_sym_COMMA, - ACTIONS(4825), 1, + ACTIONS(4767), 1, + anon_sym_COLON, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, anon_sym_cl, - ACTIONS(4871), 1, + ACTIONS(4821), 1, sym_self_referential_reader_macro, - STATE(2497), 1, + STATE(2112), 1, sym_sym_lit, - STATE(2625), 1, + STATE(2589), 1, sym__bare_set_lit, - STATE(2828), 1, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(123), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(129), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4813), 2, + ACTIONS(205), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4829), 2, + ACTIONS(230), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(234), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4867), 2, + ACTIONS(236), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4817), 2, sym__ws, sym_comment, - ACTIONS(4869), 3, + ACTIONS(4819), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(411), 3, + STATE(826), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(2584), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2601), 19, + STATE(2705), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -48260,78 +47832,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(67), 1, + ACTIONS(174), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(178), 1, aux_sym_num_lit_token1, - ACTIONS(77), 1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(104), 1, + ACTIONS(211), 1, anon_sym_POUND_SQUOTE, - ACTIONS(106), 1, + ACTIONS(213), 1, anon_sym_SQUOTE, - ACTIONS(108), 1, + ACTIONS(215), 1, anon_sym_BQUOTE, - ACTIONS(110), 1, + ACTIONS(217), 1, anon_sym_COMMA_AT, - ACTIONS(112), 1, + ACTIONS(219), 1, anon_sym_COMMA, - ACTIONS(4809), 1, + ACTIONS(4767), 1, anon_sym_COLON, - ACTIONS(4811), 1, + ACTIONS(4769), 1, anon_sym_LPAREN, - ACTIONS(4825), 1, + ACTIONS(4771), 1, anon_sym_cl, - ACTIONS(4875), 1, + ACTIONS(4827), 1, sym_self_referential_reader_macro, - STATE(2497), 1, + STATE(2112), 1, sym_sym_lit, - STATE(2625), 1, + STATE(2589), 1, sym__bare_set_lit, - STATE(2834), 1, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(98), 2, + ACTIONS(205), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(123), 2, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(127), 2, + ACTIONS(234), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(129), 2, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4823), 2, sym__ws, sym_comment, - ACTIONS(4873), 3, + ACTIONS(4825), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, + STATE(827), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(2584), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2701), 19, + STATE(2708), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -48360,78 +47932,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(77), 1, + ACTIONS(174), 1, + anon_sym_POUND, + ACTIONS(178), 1, + aux_sym_num_lit_token1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4803), 1, - anon_sym_POUND, - ACTIONS(4807), 1, - aux_sym_num_lit_token1, - ACTIONS(4809), 1, - anon_sym_COLON, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(211), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4817), 1, + ACTIONS(213), 1, anon_sym_SQUOTE, - ACTIONS(4819), 1, + ACTIONS(215), 1, anon_sym_BQUOTE, - ACTIONS(4821), 1, + ACTIONS(217), 1, anon_sym_COMMA_AT, - ACTIONS(4823), 1, + ACTIONS(219), 1, anon_sym_COMMA, - ACTIONS(4825), 1, + ACTIONS(4767), 1, + anon_sym_COLON, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, anon_sym_cl, - ACTIONS(4879), 1, + ACTIONS(4833), 1, sym_self_referential_reader_macro, - STATE(2497), 1, + STATE(2112), 1, sym_sym_lit, - STATE(2625), 1, + STATE(2589), 1, sym__bare_set_lit, - STATE(2828), 1, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(123), 2, + ACTIONS(205), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(129), 2, + ACTIONS(234), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(4813), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(4829), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(4877), 3, + ACTIONS(4831), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, + STATE(828), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(2584), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2602), 19, + STATE(2709), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -48460,78 +48032,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(67), 1, + ACTIONS(174), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(178), 1, aux_sym_num_lit_token1, - ACTIONS(77), 1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(104), 1, + ACTIONS(211), 1, anon_sym_POUND_SQUOTE, - ACTIONS(106), 1, + ACTIONS(213), 1, anon_sym_SQUOTE, - ACTIONS(108), 1, + ACTIONS(215), 1, anon_sym_BQUOTE, - ACTIONS(110), 1, + ACTIONS(217), 1, anon_sym_COMMA_AT, - ACTIONS(112), 1, + ACTIONS(219), 1, anon_sym_COMMA, - ACTIONS(4809), 1, + ACTIONS(4767), 1, anon_sym_COLON, - ACTIONS(4811), 1, + ACTIONS(4769), 1, anon_sym_LPAREN, - ACTIONS(4825), 1, + ACTIONS(4771), 1, anon_sym_cl, - ACTIONS(4883), 1, + ACTIONS(4839), 1, sym_self_referential_reader_macro, - STATE(2497), 1, + STATE(2112), 1, sym_sym_lit, - STATE(2625), 1, + STATE(2589), 1, sym__bare_set_lit, - STATE(2834), 1, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(98), 2, + ACTIONS(205), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(123), 2, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(127), 2, + ACTIONS(234), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(129), 2, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4835), 2, sym__ws, sym_comment, - ACTIONS(4881), 3, + ACTIONS(4837), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, + STATE(831), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(2584), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2703), 19, + STATE(2713), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -48560,78 +48132,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(77), 1, + ACTIONS(4843), 1, + anon_sym_POUND, + ACTIONS(4847), 1, + aux_sym_num_lit_token1, + ACTIONS(4849), 1, + anon_sym_COLON, + ACTIONS(4851), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(4853), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(4855), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4861), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(4863), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4803), 1, - anon_sym_POUND, - ACTIONS(4807), 1, - aux_sym_num_lit_token1, - ACTIONS(4809), 1, - anon_sym_COLON, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4865), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4817), 1, + ACTIONS(4867), 1, anon_sym_SQUOTE, - ACTIONS(4819), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(4821), 1, + ACTIONS(4871), 1, anon_sym_COMMA_AT, - ACTIONS(4823), 1, + ACTIONS(4873), 1, anon_sym_COMMA, - ACTIONS(4825), 1, + ACTIONS(4875), 1, anon_sym_cl, - ACTIONS(4889), 1, + ACTIONS(4879), 1, sym_self_referential_reader_macro, - STATE(2497), 1, + STATE(1491), 1, sym_sym_lit, - STATE(2625), 1, + STATE(1507), 1, sym__bare_set_lit, - STATE(2828), 1, + STATE(2832), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(123), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(129), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4813), 2, + ACTIONS(4841), 2, + sym__ws, + sym_comment, + ACTIONS(4859), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4829), 2, + ACTIONS(4877), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(4881), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4885), 2, - sym__ws, - sym_comment, - ACTIONS(4887), 3, + ACTIONS(4883), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4845), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(844), 3, + STATE(832), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(1504), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2523), 19, + STATE(1566), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -48654,84 +48226,84 @@ static const uint16_t ts_small_parse_table[] = { [2025] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(67), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(77), 1, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(104), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(106), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(108), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(110), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(112), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(4809), 1, - anon_sym_COLON, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4825), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(4893), 1, + ACTIONS(4889), 1, sym_self_referential_reader_macro, - STATE(2497), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2625), 1, + STATE(1801), 1, sym__bare_set_lit, - STATE(2834), 1, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(98), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(123), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(127), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(129), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4885), 2, sym__ws, sym_comment, - ACTIONS(4891), 3, + ACTIONS(4887), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, + STATE(940), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2688), 19, + STATE(915), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -48760,78 +48332,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(77), 1, + ACTIONS(1688), 1, + anon_sym_POUND, + ACTIONS(1692), 1, + aux_sym_num_lit_token1, + ACTIONS(1697), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(1699), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(1701), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(1716), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(1718), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4803), 1, - anon_sym_POUND, - ACTIONS(4807), 1, - aux_sym_num_lit_token1, - ACTIONS(4809), 1, - anon_sym_COLON, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(1720), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4817), 1, + ACTIONS(1722), 1, anon_sym_SQUOTE, - ACTIONS(4819), 1, + ACTIONS(1724), 1, anon_sym_BQUOTE, - ACTIONS(4821), 1, + ACTIONS(1726), 1, anon_sym_COMMA_AT, - ACTIONS(4823), 1, + ACTIONS(1728), 1, anon_sym_COMMA, - ACTIONS(4825), 1, + ACTIONS(4791), 1, + anon_sym_COLON, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4795), 1, anon_sym_cl, - ACTIONS(4899), 1, + ACTIONS(4895), 1, sym_self_referential_reader_macro, - STATE(2497), 1, + STATE(1288), 1, sym_sym_lit, - STATE(2625), 1, + STATE(1290), 1, sym__bare_set_lit, - STATE(2828), 1, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(123), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(129), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4813), 2, + ACTIONS(1714), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4829), 2, + ACTIONS(1735), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(1739), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4895), 2, + ACTIONS(1741), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4891), 2, sym__ws, sym_comment, - ACTIONS(4897), 3, + ACTIONS(4893), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(407), 3, + STATE(887), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(1289), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2623), 19, + STATE(67), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -48854,84 +48426,84 @@ static const uint16_t ts_small_parse_table[] = { [2295] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(67), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(77), 1, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(104), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(106), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(108), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(110), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(112), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(4809), 1, - anon_sym_COLON, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4825), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(4903), 1, + ACTIONS(4899), 1, sym_self_referential_reader_macro, - STATE(2497), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2625), 1, + STATE(1801), 1, sym__bare_set_lit, - STATE(2834), 1, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(98), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(123), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(127), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(129), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(4901), 3, + ACTIONS(4897), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2719), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1821), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -48960,78 +48532,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(77), 1, + ACTIONS(65), 1, + anon_sym_POUND, + ACTIONS(69), 1, + aux_sym_num_lit_token1, + ACTIONS(74), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(76), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(78), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(93), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(95), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4803), 1, - anon_sym_POUND, - ACTIONS(4807), 1, - aux_sym_num_lit_token1, - ACTIONS(4809), 1, - anon_sym_COLON, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(97), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4817), 1, + ACTIONS(99), 1, anon_sym_SQUOTE, - ACTIONS(4819), 1, + ACTIONS(101), 1, anon_sym_BQUOTE, - ACTIONS(4821), 1, + ACTIONS(103), 1, anon_sym_COMMA_AT, - ACTIONS(4823), 1, + ACTIONS(105), 1, anon_sym_COMMA, - ACTIONS(4825), 1, + ACTIONS(4749), 1, + anon_sym_COLON, + ACTIONS(4751), 1, + anon_sym_LPAREN, + ACTIONS(4753), 1, anon_sym_cl, - ACTIONS(4909), 1, + ACTIONS(4905), 1, sym_self_referential_reader_macro, - STATE(2497), 1, + STATE(1101), 1, sym_sym_lit, - STATE(2625), 1, + STATE(1117), 1, sym__bare_set_lit, - STATE(2828), 1, + STATE(2812), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(123), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(129), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4813), 2, + ACTIONS(91), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4829), 2, + ACTIONS(114), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(118), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4905), 2, + ACTIONS(120), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4901), 2, sym__ws, sym_comment, - ACTIONS(4907), 3, + ACTIONS(4903), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(408), 3, + STATE(891), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(1109), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2626), 19, + STATE(18), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -49054,84 +48626,84 @@ static const uint16_t ts_small_parse_table[] = { [2565] = 35, ACTIONS(9), 1, anon_sym_POUND_, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, + anon_sym_COLON_COLON, + ACTIONS(21), 1, + anon_sym_DQUOTE, + ACTIONS(23), 1, + aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(77), 1, - anon_sym_COLON_COLON, - ACTIONS(79), 1, - anon_sym_DQUOTE, - ACTIONS(81), 1, - aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4803), 1, - anon_sym_POUND, - ACTIONS(4807), 1, - aux_sym_num_lit_token1, - ACTIONS(4809), 1, - anon_sym_COLON, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4817), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(4819), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(4821), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(4823), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(4825), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(4915), 1, + ACTIONS(4911), 1, sym_self_referential_reader_macro, - STATE(2497), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2625), 1, + STATE(1801), 1, sym__bare_set_lit, - STATE(2828), 1, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(123), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(129), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4813), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4829), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4911), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4907), 2, sym__ws, sym_comment, - ACTIONS(4913), 3, + ACTIONS(4909), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(417), 3, + STATE(888), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2633), 19, + STATE(1889), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -49160,78 +48732,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(77), 1, + ACTIONS(174), 1, + anon_sym_POUND, + ACTIONS(178), 1, + aux_sym_num_lit_token1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4803), 1, - anon_sym_POUND, - ACTIONS(4807), 1, - aux_sym_num_lit_token1, - ACTIONS(4809), 1, - anon_sym_COLON, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(211), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4817), 1, + ACTIONS(213), 1, anon_sym_SQUOTE, - ACTIONS(4819), 1, + ACTIONS(215), 1, anon_sym_BQUOTE, - ACTIONS(4821), 1, + ACTIONS(217), 1, anon_sym_COMMA_AT, - ACTIONS(4823), 1, + ACTIONS(219), 1, anon_sym_COMMA, - ACTIONS(4825), 1, + ACTIONS(4767), 1, + anon_sym_COLON, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, anon_sym_cl, - ACTIONS(4919), 1, + ACTIONS(4917), 1, sym_self_referential_reader_macro, - STATE(2497), 1, + STATE(2112), 1, sym_sym_lit, - STATE(2625), 1, + STATE(2589), 1, sym__bare_set_lit, - STATE(2828), 1, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(123), 2, + ACTIONS(205), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(129), 2, + ACTIONS(234), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4913), 2, sym__ws, sym_comment, - ACTIONS(4813), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(4829), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(4917), 3, + ACTIONS(4915), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, + STATE(898), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(2584), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2516), 19, + STATE(2745), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -49260,78 +48832,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(77), 1, + ACTIONS(174), 1, + anon_sym_POUND, + ACTIONS(178), 1, + aux_sym_num_lit_token1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4803), 1, - anon_sym_POUND, - ACTIONS(4807), 1, - aux_sym_num_lit_token1, - ACTIONS(4809), 1, - anon_sym_COLON, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(211), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4817), 1, + ACTIONS(213), 1, anon_sym_SQUOTE, - ACTIONS(4819), 1, + ACTIONS(215), 1, anon_sym_BQUOTE, - ACTIONS(4821), 1, + ACTIONS(217), 1, anon_sym_COMMA_AT, - ACTIONS(4823), 1, + ACTIONS(219), 1, anon_sym_COMMA, - ACTIONS(4825), 1, + ACTIONS(4767), 1, + anon_sym_COLON, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, anon_sym_cl, ACTIONS(4923), 1, sym_self_referential_reader_macro, - STATE(2497), 1, + STATE(2112), 1, sym_sym_lit, - STATE(2625), 1, + STATE(2589), 1, sym__bare_set_lit, - STATE(2828), 1, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(123), 2, + ACTIONS(205), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(129), 2, + ACTIONS(234), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4919), 2, sym__ws, sym_comment, - ACTIONS(4813), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(4829), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, ACTIONS(4921), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, + STATE(857), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(2584), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2515), 19, + STATE(2733), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -49360,78 +48932,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(77), 1, + ACTIONS(174), 1, + anon_sym_POUND, + ACTIONS(178), 1, + aux_sym_num_lit_token1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4803), 1, - anon_sym_POUND, - ACTIONS(4807), 1, - aux_sym_num_lit_token1, - ACTIONS(4809), 1, - anon_sym_COLON, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(211), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4817), 1, + ACTIONS(213), 1, anon_sym_SQUOTE, - ACTIONS(4819), 1, + ACTIONS(215), 1, anon_sym_BQUOTE, - ACTIONS(4821), 1, + ACTIONS(217), 1, anon_sym_COMMA_AT, - ACTIONS(4823), 1, + ACTIONS(219), 1, anon_sym_COMMA, - ACTIONS(4825), 1, + ACTIONS(4767), 1, + anon_sym_COLON, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, anon_sym_cl, - ACTIONS(4927), 1, + ACTIONS(4929), 1, sym_self_referential_reader_macro, - STATE(2497), 1, + STATE(2112), 1, sym_sym_lit, - STATE(2625), 1, + STATE(2589), 1, sym__bare_set_lit, - STATE(2828), 1, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(123), 2, + ACTIONS(205), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(129), 2, + ACTIONS(234), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4925), 2, sym__ws, sym_comment, - ACTIONS(4813), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(4829), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(4925), 3, + ACTIONS(4927), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, + STATE(904), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(2584), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2638), 19, + STATE(2677), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -49490,19 +49062,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(4931), 1, + ACTIONS(4933), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2808), 1, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -49516,22 +49088,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(4929), 3, + ACTIONS(4931), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1877), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(740), 19, + STATE(1875), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -49554,84 +49126,84 @@ static const uint16_t ts_small_parse_table[] = { [3240] = 35, ACTIONS(9), 1, anon_sym_POUND_, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, + anon_sym_COLON_COLON, + ACTIONS(21), 1, + anon_sym_DQUOTE, + ACTIONS(23), 1, + aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(77), 1, - anon_sym_COLON_COLON, - ACTIONS(79), 1, - anon_sym_DQUOTE, - ACTIONS(81), 1, - aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4803), 1, - anon_sym_POUND, - ACTIONS(4807), 1, - aux_sym_num_lit_token1, - ACTIONS(4809), 1, - anon_sym_COLON, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4817), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(4819), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(4821), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(4823), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(4825), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(4935), 1, + ACTIONS(4937), 1, sym_self_referential_reader_macro, - STATE(2497), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2625), 1, + STATE(1801), 1, sym__bare_set_lit, - STATE(2828), 1, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(123), 2, + ACTIONS(31), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(129), 2, + ACTIONS(55), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(4813), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(4829), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(4933), 3, + ACTIONS(4935), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2640), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1876), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -49660,78 +49232,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4747), 1, + ACTIONS(174), 1, anon_sym_POUND, - ACTIONS(4751), 1, + ACTIONS(178), 1, aux_sym_num_lit_token1, - ACTIONS(4753), 1, - anon_sym_COLON, - ACTIONS(4755), 1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(4757), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(4759), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(4761), 1, - anon_sym_LPAREN, - ACTIONS(4765), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(4767), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4769), 1, + ACTIONS(211), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4771), 1, + ACTIONS(213), 1, anon_sym_SQUOTE, - ACTIONS(4773), 1, + ACTIONS(215), 1, anon_sym_BQUOTE, - ACTIONS(4775), 1, + ACTIONS(217), 1, anon_sym_COMMA_AT, - ACTIONS(4777), 1, + ACTIONS(219), 1, anon_sym_COMMA, - ACTIONS(4779), 1, + ACTIONS(4767), 1, + anon_sym_COLON, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, anon_sym_cl, - ACTIONS(4939), 1, + ACTIONS(4943), 1, sym_self_referential_reader_macro, - STATE(1489), 1, + STATE(2112), 1, sym_sym_lit, - STATE(1557), 1, + STATE(2589), 1, sym__bare_set_lit, - STATE(2841), 1, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(4763), 2, + ACTIONS(205), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4781), 2, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4785), 2, + ACTIONS(234), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4787), 2, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4939), 2, sym__ws, sym_comment, - ACTIONS(4937), 3, + ACTIONS(4941), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1612), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(905), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1517), 19, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2680), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -49760,78 +49332,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(77), 1, + ACTIONS(174), 1, + anon_sym_POUND, + ACTIONS(178), 1, + aux_sym_num_lit_token1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4803), 1, - anon_sym_POUND, - ACTIONS(4807), 1, - aux_sym_num_lit_token1, - ACTIONS(4809), 1, - anon_sym_COLON, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(211), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4817), 1, + ACTIONS(213), 1, anon_sym_SQUOTE, - ACTIONS(4819), 1, + ACTIONS(215), 1, anon_sym_BQUOTE, - ACTIONS(4821), 1, + ACTIONS(217), 1, anon_sym_COMMA_AT, - ACTIONS(4823), 1, + ACTIONS(219), 1, anon_sym_COMMA, - ACTIONS(4825), 1, + ACTIONS(4767), 1, + anon_sym_COLON, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, anon_sym_cl, - ACTIONS(4943), 1, + ACTIONS(4949), 1, sym_self_referential_reader_macro, - STATE(2497), 1, + STATE(2112), 1, sym_sym_lit, - STATE(2625), 1, + STATE(2589), 1, sym__bare_set_lit, - STATE(2828), 1, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(123), 2, + ACTIONS(205), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(129), 2, + ACTIONS(234), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4945), 2, sym__ws, sym_comment, - ACTIONS(4813), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(4829), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(4941), 3, + ACTIONS(4947), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, + STATE(909), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(2584), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2641), 19, + STATE(2700), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -49860,78 +49432,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4747), 1, + ACTIONS(174), 1, anon_sym_POUND, - ACTIONS(4751), 1, + ACTIONS(178), 1, aux_sym_num_lit_token1, - ACTIONS(4753), 1, - anon_sym_COLON, - ACTIONS(4755), 1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(4757), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(4759), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(4761), 1, - anon_sym_LPAREN, - ACTIONS(4765), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(4767), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4769), 1, + ACTIONS(211), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4771), 1, + ACTIONS(213), 1, anon_sym_SQUOTE, - ACTIONS(4773), 1, + ACTIONS(215), 1, anon_sym_BQUOTE, - ACTIONS(4775), 1, + ACTIONS(217), 1, anon_sym_COMMA_AT, - ACTIONS(4777), 1, + ACTIONS(219), 1, anon_sym_COMMA, - ACTIONS(4779), 1, + ACTIONS(4767), 1, + anon_sym_COLON, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, anon_sym_cl, - ACTIONS(4949), 1, + ACTIONS(4955), 1, sym_self_referential_reader_macro, - STATE(1489), 1, + STATE(2112), 1, sym_sym_lit, - STATE(1557), 1, + STATE(2589), 1, sym__bare_set_lit, - STATE(2841), 1, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(4763), 2, + ACTIONS(205), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4781), 2, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4785), 2, + ACTIONS(234), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4787), 2, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4945), 2, + ACTIONS(4951), 2, sym__ws, sym_comment, - ACTIONS(4947), 3, + ACTIONS(4953), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(564), 3, + STATE(910), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1612), 3, + STATE(2584), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1515), 19, + STATE(2036), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -49954,84 +49526,84 @@ static const uint16_t ts_small_parse_table[] = { [3780] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(174), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(178), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(211), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(213), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(215), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(217), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(219), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4767), 1, + anon_sym_COLON, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, anon_sym_cl, - ACTIONS(4955), 1, + ACTIONS(4959), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(2112), 1, sym_sym_lit, - STATE(2808), 1, + STATE(2589), 1, + sym__bare_set_lit, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(205), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(234), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4951), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(4953), 3, + ACTIONS(4957), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(414), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1877), 3, + STATE(2584), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(727), 19, + STATE(2736), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -50060,78 +49632,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(636), 1, + ACTIONS(174), 1, anon_sym_POUND, - ACTIONS(640), 1, + ACTIONS(178), 1, aux_sym_num_lit_token1, - ACTIONS(644), 1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(646), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(648), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(652), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(654), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(656), 1, + ACTIONS(211), 1, anon_sym_POUND_SQUOTE, - ACTIONS(658), 1, + ACTIONS(213), 1, anon_sym_SQUOTE, - ACTIONS(660), 1, + ACTIONS(215), 1, anon_sym_BQUOTE, - ACTIONS(662), 1, + ACTIONS(217), 1, anon_sym_COMMA_AT, - ACTIONS(664), 1, + ACTIONS(219), 1, anon_sym_COMMA, - ACTIONS(4410), 1, + ACTIONS(4767), 1, anon_sym_COLON, - ACTIONS(4412), 1, + ACTIONS(4769), 1, anon_sym_LPAREN, - ACTIONS(4414), 1, + ACTIONS(4771), 1, anon_sym_cl, - ACTIONS(4959), 1, + ACTIONS(4963), 1, sym_self_referential_reader_macro, - STATE(1186), 1, + STATE(2112), 1, sym_sym_lit, - STATE(1191), 1, + STATE(2589), 1, sym__bare_set_lit, - STATE(2827), 1, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(650), 2, + ACTIONS(205), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(666), 2, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(670), 2, + ACTIONS(234), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(672), 2, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(4957), 3, + ACTIONS(4961), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1187), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1141), 19, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2737), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -50160,78 +49732,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(77), 1, + ACTIONS(174), 1, + anon_sym_POUND, + ACTIONS(178), 1, + aux_sym_num_lit_token1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4803), 1, - anon_sym_POUND, - ACTIONS(4807), 1, - aux_sym_num_lit_token1, - ACTIONS(4809), 1, - anon_sym_COLON, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(211), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4817), 1, + ACTIONS(213), 1, anon_sym_SQUOTE, - ACTIONS(4819), 1, + ACTIONS(215), 1, anon_sym_BQUOTE, - ACTIONS(4821), 1, + ACTIONS(217), 1, anon_sym_COMMA_AT, - ACTIONS(4823), 1, + ACTIONS(219), 1, anon_sym_COMMA, - ACTIONS(4825), 1, + ACTIONS(4767), 1, + anon_sym_COLON, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, anon_sym_cl, - ACTIONS(4965), 1, + ACTIONS(4969), 1, sym_self_referential_reader_macro, - STATE(2497), 1, + STATE(2112), 1, sym_sym_lit, - STATE(2625), 1, + STATE(2589), 1, sym__bare_set_lit, - STATE(2828), 1, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(123), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(129), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4813), 2, + ACTIONS(205), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4829), 2, + ACTIONS(230), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(234), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4961), 2, + ACTIONS(236), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4965), 2, sym__ws, sym_comment, - ACTIONS(4963), 3, + ACTIONS(4967), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(412), 3, + STATE(877), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(2584), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2584), 19, + STATE(2738), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -50254,84 +49826,84 @@ static const uint16_t ts_small_parse_table[] = { [4185] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(174), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(178), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(211), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(213), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(215), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(217), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(219), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4767), 1, + anon_sym_COLON, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, anon_sym_cl, - ACTIONS(4971), 1, + ACTIONS(4973), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(2112), 1, sym_sym_lit, - STATE(2808), 1, + STATE(2589), 1, + sym__bare_set_lit, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(205), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(234), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4967), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(4969), 3, + ACTIONS(4971), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(428), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1877), 3, + STATE(2584), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(726), 19, + STATE(2740), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -50354,84 +49926,84 @@ static const uint16_t ts_small_parse_table[] = { [4320] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(174), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(178), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(211), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(213), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(215), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(217), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(219), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4767), 1, + anon_sym_COLON, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, anon_sym_cl, - ACTIONS(4975), 1, + ACTIONS(4979), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(2112), 1, sym_sym_lit, - STATE(2808), 1, + STATE(2589), 1, + sym__bare_set_lit, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(205), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(234), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4975), 2, sym__ws, sym_comment, - ACTIONS(4973), 3, + ACTIONS(4977), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1877), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(881), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(702), 19, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2741), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -50460,78 +50032,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(77), 1, + ACTIONS(174), 1, + anon_sym_POUND, + ACTIONS(178), 1, + aux_sym_num_lit_token1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4803), 1, - anon_sym_POUND, - ACTIONS(4807), 1, - aux_sym_num_lit_token1, - ACTIONS(4809), 1, - anon_sym_COLON, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(211), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4817), 1, + ACTIONS(213), 1, anon_sym_SQUOTE, - ACTIONS(4819), 1, + ACTIONS(215), 1, anon_sym_BQUOTE, - ACTIONS(4821), 1, + ACTIONS(217), 1, anon_sym_COMMA_AT, - ACTIONS(4823), 1, + ACTIONS(219), 1, anon_sym_COMMA, - ACTIONS(4825), 1, + ACTIONS(4767), 1, + anon_sym_COLON, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, anon_sym_cl, - ACTIONS(4981), 1, + ACTIONS(4985), 1, sym_self_referential_reader_macro, - STATE(2497), 1, + STATE(2112), 1, sym_sym_lit, - STATE(2625), 1, + STATE(2589), 1, sym__bare_set_lit, - STATE(2828), 1, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(123), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(129), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4813), 2, + ACTIONS(205), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4829), 2, + ACTIONS(230), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(234), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4977), 2, + ACTIONS(236), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4981), 2, sym__ws, sym_comment, - ACTIONS(4979), 3, + ACTIONS(4983), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(425), 3, + STATE(882), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(2584), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2505), 19, + STATE(2744), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -50554,84 +50126,84 @@ static const uint16_t ts_small_parse_table[] = { [4590] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(174), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(178), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(211), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(213), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(215), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(217), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(219), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4767), 1, + anon_sym_COLON, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, anon_sym_cl, - ACTIONS(4987), 1, + ACTIONS(4989), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(2112), 1, sym_sym_lit, - STATE(2808), 1, + STATE(2589), 1, + sym__bare_set_lit, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(205), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(234), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4983), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(4985), 3, + ACTIONS(4987), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(437), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1877), 3, + STATE(2584), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(690), 19, + STATE(2676), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -50651,87 +50223,90 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [4725] = 35, + [4725] = 36, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, + ACTIONS(43), 1, + anon_sym_COMMA_AT, + ACTIONS(45), 1, + anon_sym_COMMA, ACTIONS(47), 1, sym_block_comment, - ACTIONS(77), 1, + ACTIONS(4991), 1, + anon_sym_POUND, + ACTIONS(4995), 1, + aux_sym_num_lit_token1, + ACTIONS(4997), 1, + anon_sym_COLON, + ACTIONS(4999), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(5001), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(5003), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(5005), 1, + anon_sym_LPAREN, + ACTIONS(5009), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(5011), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4803), 1, - anon_sym_POUND, - ACTIONS(4807), 1, - aux_sym_num_lit_token1, - ACTIONS(4809), 1, - anon_sym_COLON, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(5013), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4817), 1, + ACTIONS(5015), 1, anon_sym_SQUOTE, - ACTIONS(4819), 1, + ACTIONS(5017), 1, anon_sym_BQUOTE, - ACTIONS(4821), 1, - anon_sym_COMMA_AT, - ACTIONS(4823), 1, - anon_sym_COMMA, - ACTIONS(4825), 1, + ACTIONS(5019), 1, anon_sym_cl, - ACTIONS(4993), 1, + ACTIONS(5023), 1, sym_self_referential_reader_macro, - STATE(2497), 1, - sym_sym_lit, - STATE(2625), 1, - sym__bare_set_lit, - STATE(2828), 1, + STATE(2840), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(123), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(129), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4813), 2, + STATE(2986), 1, + sym__bare_set_lit, + STATE(3094), 1, + sym_sym_lit, + ACTIONS(4763), 2, + sym__ws, + sym_comment, + ACTIONS(5007), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4829), 2, + ACTIONS(5021), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(5025), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4989), 2, - sym__ws, - sym_comment, - ACTIONS(4991), 3, + ACTIONS(5027), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + STATE(2021), 2, + sym_unquote_splicing_lit, + sym_unquoting_lit, + ACTIONS(4993), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(426), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(2985), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2504), 19, + STATE(2758), 17, sym__form, sym_num_lit, sym_kwd_lit, @@ -50745,93 +50320,91 @@ static const uint16_t ts_small_parse_table[] = { sym_var_quoting_lit, sym_quoting_lit, sym_syn_quoting_lit, - sym_unquote_splicing_lit, - sym_unquoting_lit, sym_path_lit, sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [4860] = 35, + [4862] = 35, ACTIONS(9), 1, anon_sym_POUND_, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, + anon_sym_COLON_COLON, + ACTIONS(21), 1, + anon_sym_DQUOTE, + ACTIONS(23), 1, + aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(77), 1, - anon_sym_COLON_COLON, - ACTIONS(79), 1, - anon_sym_DQUOTE, - ACTIONS(81), 1, - aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4803), 1, - anon_sym_POUND, - ACTIONS(4807), 1, - aux_sym_num_lit_token1, - ACTIONS(4809), 1, - anon_sym_COLON, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4817), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(4819), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(4821), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(4823), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(4825), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(4999), 1, + ACTIONS(5033), 1, sym_self_referential_reader_macro, - STATE(2497), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2625), 1, + STATE(1801), 1, sym__bare_set_lit, - STATE(2828), 1, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(123), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(129), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4813), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4829), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4995), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5029), 2, sym__ws, sym_comment, - ACTIONS(4997), 3, + ACTIONS(5031), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(427), 3, + STATE(889), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2585), 19, + STATE(1768), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -50851,7 +50424,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [4995] = 35, + [4997] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -50860,78 +50433,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(77), 1, + ACTIONS(4995), 1, + aux_sym_num_lit_token1, + ACTIONS(5037), 1, + anon_sym_POUND, + ACTIONS(5041), 1, + anon_sym_COLON, + ACTIONS(5043), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(5045), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(5047), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(5049), 1, + anon_sym_LPAREN, + ACTIONS(5051), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(5053), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4803), 1, - anon_sym_POUND, - ACTIONS(4807), 1, - aux_sym_num_lit_token1, - ACTIONS(4809), 1, - anon_sym_COLON, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(5055), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4817), 1, + ACTIONS(5057), 1, anon_sym_SQUOTE, - ACTIONS(4819), 1, + ACTIONS(5059), 1, anon_sym_BQUOTE, - ACTIONS(4821), 1, + ACTIONS(5061), 1, anon_sym_COMMA_AT, - ACTIONS(4823), 1, + ACTIONS(5063), 1, anon_sym_COMMA, - ACTIONS(4825), 1, + ACTIONS(5065), 1, anon_sym_cl, - ACTIONS(5005), 1, + ACTIONS(5067), 1, sym_self_referential_reader_macro, - STATE(2497), 1, - sym_sym_lit, - STATE(2625), 1, - sym__bare_set_lit, - STATE(2828), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(123), 2, + STATE(2986), 1, + sym__bare_set_lit, + STATE(3040), 1, + sym_sym_lit, + ACTIONS(5007), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5021), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(129), 2, + ACTIONS(5027), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4813), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(4829), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(5001), 2, + ACTIONS(5035), 2, sym__ws, sym_comment, - ACTIONS(5003), 3, + ACTIONS(5069), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5039), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(447), 3, + STATE(448), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(2985), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2574), 19, + STATE(2976), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -50951,7 +50524,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [5130] = 35, + [5132] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -50960,78 +50533,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(77), 1, + ACTIONS(4995), 1, + aux_sym_num_lit_token1, + ACTIONS(5037), 1, + anon_sym_POUND, + ACTIONS(5041), 1, + anon_sym_COLON, + ACTIONS(5043), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(5045), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(5047), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(5049), 1, + anon_sym_LPAREN, + ACTIONS(5051), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(5053), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4803), 1, - anon_sym_POUND, - ACTIONS(4807), 1, - aux_sym_num_lit_token1, - ACTIONS(4809), 1, - anon_sym_COLON, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(5055), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4817), 1, + ACTIONS(5057), 1, anon_sym_SQUOTE, - ACTIONS(4819), 1, + ACTIONS(5059), 1, anon_sym_BQUOTE, - ACTIONS(4821), 1, + ACTIONS(5061), 1, anon_sym_COMMA_AT, - ACTIONS(4823), 1, + ACTIONS(5063), 1, anon_sym_COMMA, - ACTIONS(4825), 1, + ACTIONS(5065), 1, anon_sym_cl, - ACTIONS(5011), 1, + ACTIONS(5075), 1, sym_self_referential_reader_macro, - STATE(2497), 1, - sym_sym_lit, - STATE(2625), 1, - sym__bare_set_lit, - STATE(2828), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(123), 2, + STATE(2986), 1, + sym__bare_set_lit, + STATE(3040), 1, + sym_sym_lit, + ACTIONS(5007), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5021), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(129), 2, + ACTIONS(5027), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4813), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(4829), 2, + ACTIONS(5069), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5007), 2, + ACTIONS(5071), 2, sym__ws, sym_comment, - ACTIONS(5009), 3, + ACTIONS(5073), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(429), 3, + STATE(449), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(2985), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2575), 19, + STATE(2907), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -51051,7 +50624,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [5265] = 35, + [5267] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -51060,78 +50633,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(77), 1, + ACTIONS(4995), 1, + aux_sym_num_lit_token1, + ACTIONS(5037), 1, + anon_sym_POUND, + ACTIONS(5041), 1, + anon_sym_COLON, + ACTIONS(5043), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(5045), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(5047), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(5049), 1, + anon_sym_LPAREN, + ACTIONS(5051), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(5053), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4803), 1, - anon_sym_POUND, - ACTIONS(4807), 1, - aux_sym_num_lit_token1, - ACTIONS(4809), 1, - anon_sym_COLON, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(5055), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4817), 1, + ACTIONS(5057), 1, anon_sym_SQUOTE, - ACTIONS(4819), 1, + ACTIONS(5059), 1, anon_sym_BQUOTE, - ACTIONS(4821), 1, + ACTIONS(5061), 1, anon_sym_COMMA_AT, - ACTIONS(4823), 1, + ACTIONS(5063), 1, anon_sym_COMMA, - ACTIONS(4825), 1, + ACTIONS(5065), 1, anon_sym_cl, - ACTIONS(5017), 1, + ACTIONS(5081), 1, sym_self_referential_reader_macro, - STATE(2497), 1, - sym_sym_lit, - STATE(2625), 1, - sym__bare_set_lit, - STATE(2828), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(123), 2, + STATE(2986), 1, + sym__bare_set_lit, + STATE(3040), 1, + sym_sym_lit, + ACTIONS(5007), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5021), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(129), 2, + ACTIONS(5027), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4813), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(4829), 2, + ACTIONS(5069), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5013), 2, + ACTIONS(5077), 2, sym__ws, sym_comment, - ACTIONS(5015), 3, + ACTIONS(5079), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(431), 3, + STATE(450), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(2985), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2572), 19, + STATE(2964), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -51151,7 +50724,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [5400] = 35, + [5402] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -51160,78 +50733,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(77), 1, + ACTIONS(4995), 1, + aux_sym_num_lit_token1, + ACTIONS(5037), 1, + anon_sym_POUND, + ACTIONS(5041), 1, + anon_sym_COLON, + ACTIONS(5043), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(5045), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(5047), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(5049), 1, + anon_sym_LPAREN, + ACTIONS(5051), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(5053), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4803), 1, - anon_sym_POUND, - ACTIONS(4807), 1, - aux_sym_num_lit_token1, - ACTIONS(4809), 1, - anon_sym_COLON, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(5055), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4817), 1, + ACTIONS(5057), 1, anon_sym_SQUOTE, - ACTIONS(4819), 1, + ACTIONS(5059), 1, anon_sym_BQUOTE, - ACTIONS(4821), 1, + ACTIONS(5061), 1, anon_sym_COMMA_AT, - ACTIONS(4823), 1, + ACTIONS(5063), 1, anon_sym_COMMA, - ACTIONS(4825), 1, + ACTIONS(5065), 1, anon_sym_cl, - ACTIONS(5021), 1, + ACTIONS(5087), 1, sym_self_referential_reader_macro, - STATE(2497), 1, - sym_sym_lit, - STATE(2625), 1, - sym__bare_set_lit, - STATE(2828), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(123), 2, + STATE(2986), 1, + sym__bare_set_lit, + STATE(3040), 1, + sym_sym_lit, + ACTIONS(5007), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5021), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(129), 2, + ACTIONS(5027), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, - sym__ws, - sym_comment, - ACTIONS(4813), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(4829), 2, + ACTIONS(5069), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5019), 3, + ACTIONS(5083), 2, + sym__ws, + sym_comment, + ACTIONS(5085), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, + STATE(451), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(2985), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2552), 19, + STATE(2820), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -51251,7 +50824,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [5535] = 35, + [5537] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -51260,78 +50833,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(5023), 1, - anon_sym_POUND, - ACTIONS(5027), 1, + ACTIONS(4995), 1, aux_sym_num_lit_token1, - ACTIONS(5029), 1, + ACTIONS(5037), 1, + anon_sym_POUND, + ACTIONS(5041), 1, anon_sym_COLON, - ACTIONS(5031), 1, + ACTIONS(5043), 1, anon_sym_COLON_COLON, - ACTIONS(5033), 1, + ACTIONS(5045), 1, anon_sym_DQUOTE, - ACTIONS(5035), 1, + ACTIONS(5047), 1, aux_sym_sym_lit_token1, - ACTIONS(5039), 1, + ACTIONS(5049), 1, + anon_sym_LPAREN, + ACTIONS(5051), 1, anon_sym_POUND_QMARK, - ACTIONS(5041), 1, + ACTIONS(5053), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5043), 1, + ACTIONS(5055), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5045), 1, + ACTIONS(5057), 1, anon_sym_SQUOTE, - ACTIONS(5047), 1, + ACTIONS(5059), 1, anon_sym_BQUOTE, - ACTIONS(5049), 1, + ACTIONS(5061), 1, anon_sym_COMMA_AT, - ACTIONS(5051), 1, + ACTIONS(5063), 1, anon_sym_COMMA, - ACTIONS(5053), 1, + ACTIONS(5065), 1, anon_sym_cl, - ACTIONS(5057), 1, + ACTIONS(5093), 1, sym_self_referential_reader_macro, - STATE(2823), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, + STATE(2986), 1, sym__bare_set_lit, - STATE(3078), 1, + STATE(3040), 1, sym_sym_lit, - ACTIONS(4801), 2, - sym__ws, - sym_comment, - ACTIONS(5037), 2, + ACTIONS(5007), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5055), 2, + ACTIONS(5021), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(5059), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(5061), 2, + ACTIONS(5027), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5025), 3, + ACTIONS(5069), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5089), 2, + sym__ws, + sym_comment, + ACTIONS(5091), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, + STATE(452), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2991), 3, + STATE(2985), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2997), 19, + STATE(2831), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -51351,7 +50924,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [5670] = 35, + [5672] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -51360,78 +50933,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(77), 1, + ACTIONS(4995), 1, + aux_sym_num_lit_token1, + ACTIONS(5037), 1, + anon_sym_POUND, + ACTIONS(5041), 1, + anon_sym_COLON, + ACTIONS(5043), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(5045), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(5047), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(5049), 1, + anon_sym_LPAREN, + ACTIONS(5051), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(5053), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4803), 1, - anon_sym_POUND, - ACTIONS(4807), 1, - aux_sym_num_lit_token1, - ACTIONS(4809), 1, - anon_sym_COLON, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(5055), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4817), 1, + ACTIONS(5057), 1, anon_sym_SQUOTE, - ACTIONS(4819), 1, + ACTIONS(5059), 1, anon_sym_BQUOTE, - ACTIONS(4821), 1, + ACTIONS(5061), 1, anon_sym_COMMA_AT, - ACTIONS(4823), 1, + ACTIONS(5063), 1, anon_sym_COMMA, - ACTIONS(4825), 1, - anon_sym_cl, ACTIONS(5065), 1, + anon_sym_cl, + ACTIONS(5097), 1, sym_self_referential_reader_macro, - STATE(2497), 1, - sym_sym_lit, - STATE(2625), 1, - sym__bare_set_lit, - STATE(2828), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(123), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(129), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4801), 2, + STATE(2986), 1, + sym__bare_set_lit, + STATE(3040), 1, + sym_sym_lit, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(4813), 2, + ACTIONS(5007), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4829), 2, + ACTIONS(5021), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(5027), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5069), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5063), 3, + ACTIONS(5095), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(2985), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2564), 19, + STATE(2815), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -51451,7 +51024,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [5805] = 35, + [5807] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -51460,78 +51033,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(5023), 1, - anon_sym_POUND, - ACTIONS(5027), 1, + ACTIONS(4995), 1, aux_sym_num_lit_token1, - ACTIONS(5029), 1, + ACTIONS(5037), 1, + anon_sym_POUND, + ACTIONS(5041), 1, anon_sym_COLON, - ACTIONS(5031), 1, + ACTIONS(5043), 1, anon_sym_COLON_COLON, - ACTIONS(5033), 1, + ACTIONS(5045), 1, anon_sym_DQUOTE, - ACTIONS(5035), 1, + ACTIONS(5047), 1, aux_sym_sym_lit_token1, - ACTIONS(5039), 1, + ACTIONS(5049), 1, + anon_sym_LPAREN, + ACTIONS(5051), 1, anon_sym_POUND_QMARK, - ACTIONS(5041), 1, + ACTIONS(5053), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5043), 1, + ACTIONS(5055), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5045), 1, + ACTIONS(5057), 1, anon_sym_SQUOTE, - ACTIONS(5047), 1, + ACTIONS(5059), 1, anon_sym_BQUOTE, - ACTIONS(5049), 1, + ACTIONS(5061), 1, anon_sym_COMMA_AT, - ACTIONS(5051), 1, + ACTIONS(5063), 1, anon_sym_COMMA, - ACTIONS(5053), 1, + ACTIONS(5065), 1, anon_sym_cl, - ACTIONS(5069), 1, + ACTIONS(5101), 1, sym_self_referential_reader_macro, - STATE(2823), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, + STATE(2986), 1, sym__bare_set_lit, - STATE(3078), 1, + STATE(3040), 1, sym_sym_lit, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(5037), 2, + ACTIONS(5007), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5055), 2, + ACTIONS(5021), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(5059), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(5061), 2, + ACTIONS(5027), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5067), 3, + ACTIONS(5069), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5099), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2991), 3, + STATE(2985), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2998), 19, + STATE(2922), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -51551,87 +51124,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [5940] = 35, + [5942] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, - anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4995), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(5037), 1, + anon_sym_POUND, + ACTIONS(5041), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(5043), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(5045), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(5047), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(5049), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(5051), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(5053), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(5055), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(5057), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(5059), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(5061), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(5063), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(5065), 1, anon_sym_cl, - ACTIONS(5073), 1, + ACTIONS(5105), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, - sym_sym_lit, - STATE(2808), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(31), 2, + STATE(2986), 1, + sym__bare_set_lit, + STATE(3040), 1, + sym_sym_lit, + ACTIONS(4763), 2, + sym__ws, + sym_comment, + ACTIONS(5007), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(5021), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(5027), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, - sym__ws, - sym_comment, - ACTIONS(5071), 3, + ACTIONS(5069), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5103), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1877), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(594), 19, + STATE(2985), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2940), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -51651,87 +51224,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [6075] = 35, + [6077] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, - anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4995), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(5037), 1, + anon_sym_POUND, + ACTIONS(5041), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(5043), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(5045), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(5047), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(5049), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(5051), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(5053), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(5055), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(5057), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(5059), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(5061), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(5063), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(5065), 1, anon_sym_cl, - ACTIONS(5077), 1, + ACTIONS(5109), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, - sym_sym_lit, - STATE(2808), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(31), 2, + STATE(2986), 1, + sym__bare_set_lit, + STATE(3040), 1, + sym_sym_lit, + ACTIONS(4763), 2, + sym__ws, + sym_comment, + ACTIONS(5007), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(5021), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(5027), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, - sym__ws, - sym_comment, - ACTIONS(5075), 3, + ACTIONS(5069), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5107), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1877), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(590), 19, + STATE(2985), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2963), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -51751,7 +51324,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [6210] = 35, + [6212] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -51760,78 +51333,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(77), 1, + ACTIONS(4995), 1, + aux_sym_num_lit_token1, + ACTIONS(5037), 1, + anon_sym_POUND, + ACTIONS(5041), 1, + anon_sym_COLON, + ACTIONS(5043), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(5045), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(5047), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(5049), 1, + anon_sym_LPAREN, + ACTIONS(5051), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(5053), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4803), 1, - anon_sym_POUND, - ACTIONS(4807), 1, - aux_sym_num_lit_token1, - ACTIONS(4809), 1, - anon_sym_COLON, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(5055), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4817), 1, + ACTIONS(5057), 1, anon_sym_SQUOTE, - ACTIONS(4819), 1, + ACTIONS(5059), 1, anon_sym_BQUOTE, - ACTIONS(4821), 1, + ACTIONS(5061), 1, anon_sym_COMMA_AT, - ACTIONS(4823), 1, + ACTIONS(5063), 1, anon_sym_COMMA, - ACTIONS(4825), 1, + ACTIONS(5065), 1, anon_sym_cl, - ACTIONS(5083), 1, + ACTIONS(5113), 1, sym_self_referential_reader_macro, - STATE(2497), 1, - sym_sym_lit, - STATE(2625), 1, - sym__bare_set_lit, - STATE(2828), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(123), 2, + STATE(2986), 1, + sym__bare_set_lit, + STATE(3040), 1, + sym_sym_lit, + ACTIONS(4763), 2, + sym__ws, + sym_comment, + ACTIONS(5007), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5021), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(129), 2, + ACTIONS(5027), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4813), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(4829), 2, + ACTIONS(5069), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5079), 2, - sym__ws, - sym_comment, - ACTIONS(5081), 3, + ACTIONS(5111), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(445), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(2985), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2587), 19, + STATE(2828), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -51851,7 +51424,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [6345] = 35, + [6347] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -51860,78 +51433,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(5023), 1, - anon_sym_POUND, - ACTIONS(5027), 1, + ACTIONS(4995), 1, aux_sym_num_lit_token1, - ACTIONS(5029), 1, + ACTIONS(5037), 1, + anon_sym_POUND, + ACTIONS(5041), 1, anon_sym_COLON, - ACTIONS(5031), 1, + ACTIONS(5043), 1, anon_sym_COLON_COLON, - ACTIONS(5033), 1, + ACTIONS(5045), 1, anon_sym_DQUOTE, - ACTIONS(5035), 1, + ACTIONS(5047), 1, aux_sym_sym_lit_token1, - ACTIONS(5039), 1, + ACTIONS(5049), 1, + anon_sym_LPAREN, + ACTIONS(5051), 1, anon_sym_POUND_QMARK, - ACTIONS(5041), 1, + ACTIONS(5053), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5043), 1, + ACTIONS(5055), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5045), 1, + ACTIONS(5057), 1, anon_sym_SQUOTE, - ACTIONS(5047), 1, + ACTIONS(5059), 1, anon_sym_BQUOTE, - ACTIONS(5049), 1, + ACTIONS(5061), 1, anon_sym_COMMA_AT, - ACTIONS(5051), 1, + ACTIONS(5063), 1, anon_sym_COMMA, - ACTIONS(5053), 1, + ACTIONS(5065), 1, anon_sym_cl, - ACTIONS(5089), 1, + ACTIONS(5117), 1, sym_self_referential_reader_macro, - STATE(2823), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, + STATE(2986), 1, sym__bare_set_lit, - STATE(3078), 1, + STATE(3040), 1, sym_sym_lit, - ACTIONS(5037), 2, + ACTIONS(4763), 2, + sym__ws, + sym_comment, + ACTIONS(5007), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5055), 2, + ACTIONS(5021), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(5059), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(5061), 2, + ACTIONS(5027), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5085), 2, - sym__ws, - sym_comment, - ACTIONS(5087), 3, + ACTIONS(5069), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5115), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(446), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2991), 3, + STATE(2985), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2919), 19, + STATE(2829), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -51951,87 +51524,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [6480] = 35, + [6482] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, - anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4995), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(5037), 1, + anon_sym_POUND, + ACTIONS(5041), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(5043), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(5045), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(5047), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(5049), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(5051), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(5053), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(5055), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(5057), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(5059), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(5061), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(5063), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(5065), 1, anon_sym_cl, - ACTIONS(5095), 1, + ACTIONS(5123), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, - sym_sym_lit, - STATE(2808), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(31), 2, + STATE(2986), 1, + sym__bare_set_lit, + STATE(3040), 1, + sym_sym_lit, + ACTIONS(5007), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(5021), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(5027), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5091), 2, + ACTIONS(5069), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5119), 2, sym__ws, sym_comment, - ACTIONS(5093), 3, + ACTIONS(5121), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(683), 3, + STATE(457), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1877), 3, + STATE(2985), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1870), 19, + STATE(2966), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -52051,7 +51624,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [6615] = 35, + [6617] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -52060,78 +51633,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(1598), 1, - anon_sym_POUND, - ACTIONS(1602), 1, + ACTIONS(4995), 1, aux_sym_num_lit_token1, - ACTIONS(1606), 1, + ACTIONS(5037), 1, + anon_sym_POUND, + ACTIONS(5041), 1, + anon_sym_COLON, + ACTIONS(5043), 1, anon_sym_COLON_COLON, - ACTIONS(1608), 1, + ACTIONS(5045), 1, anon_sym_DQUOTE, - ACTIONS(1610), 1, + ACTIONS(5047), 1, aux_sym_sym_lit_token1, - ACTIONS(1612), 1, + ACTIONS(5049), 1, anon_sym_LPAREN, - ACTIONS(1616), 1, + ACTIONS(5051), 1, anon_sym_POUND_QMARK, - ACTIONS(1618), 1, + ACTIONS(5053), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1620), 1, + ACTIONS(5055), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1622), 1, + ACTIONS(5057), 1, anon_sym_SQUOTE, - ACTIONS(1624), 1, + ACTIONS(5059), 1, anon_sym_BQUOTE, - ACTIONS(1626), 1, + ACTIONS(5061), 1, anon_sym_COMMA_AT, - ACTIONS(1628), 1, + ACTIONS(5063), 1, anon_sym_COMMA, - ACTIONS(5101), 1, - anon_sym_COLON, - ACTIONS(5103), 1, + ACTIONS(5065), 1, anon_sym_cl, - ACTIONS(5105), 1, + ACTIONS(5129), 1, sym_self_referential_reader_macro, - STATE(1893), 1, - sym__bare_set_lit, - STATE(2762), 1, - sym_sym_lit, - STATE(2840), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(1614), 2, + STATE(2986), 1, + sym__bare_set_lit, + STATE(3040), 1, + sym_sym_lit, + ACTIONS(5007), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(1636), 2, + ACTIONS(5021), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(1640), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(1642), 2, + ACTIONS(5027), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5097), 2, + ACTIONS(5069), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5125), 2, sym__ws, sym_comment, - ACTIONS(5099), 3, + ACTIONS(5127), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(535), 3, + STATE(459), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1892), 3, + STATE(2985), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1900), 19, + STATE(2970), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -52151,7 +51724,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [6750] = 35, + [6752] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -52160,78 +51733,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(77), 1, + ACTIONS(4995), 1, + aux_sym_num_lit_token1, + ACTIONS(5037), 1, + anon_sym_POUND, + ACTIONS(5041), 1, + anon_sym_COLON, + ACTIONS(5043), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(5045), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(5047), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(5049), 1, + anon_sym_LPAREN, + ACTIONS(5051), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(5053), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4803), 1, - anon_sym_POUND, - ACTIONS(4807), 1, - aux_sym_num_lit_token1, - ACTIONS(4809), 1, - anon_sym_COLON, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(5055), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4817), 1, + ACTIONS(5057), 1, anon_sym_SQUOTE, - ACTIONS(4819), 1, + ACTIONS(5059), 1, anon_sym_BQUOTE, - ACTIONS(4821), 1, + ACTIONS(5061), 1, anon_sym_COMMA_AT, - ACTIONS(4823), 1, + ACTIONS(5063), 1, anon_sym_COMMA, - ACTIONS(4825), 1, + ACTIONS(5065), 1, anon_sym_cl, - ACTIONS(5109), 1, + ACTIONS(5135), 1, sym_self_referential_reader_macro, - STATE(2497), 1, - sym_sym_lit, - STATE(2625), 1, - sym__bare_set_lit, - STATE(2828), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(123), 2, + STATE(2986), 1, + sym__bare_set_lit, + STATE(3040), 1, + sym_sym_lit, + ACTIONS(5007), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5021), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(129), 2, + ACTIONS(5027), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, - sym__ws, - sym_comment, - ACTIONS(4813), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(4829), 2, + ACTIONS(5069), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5107), 3, + ACTIONS(5131), 2, + sym__ws, + sym_comment, + ACTIONS(5133), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, + STATE(460), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(2985), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2563), 19, + STATE(2971), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -52251,7 +51824,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [6885] = 35, + [6887] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -52260,78 +51833,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(1598), 1, - anon_sym_POUND, - ACTIONS(1602), 1, + ACTIONS(4995), 1, aux_sym_num_lit_token1, - ACTIONS(1606), 1, + ACTIONS(5037), 1, + anon_sym_POUND, + ACTIONS(5041), 1, + anon_sym_COLON, + ACTIONS(5043), 1, anon_sym_COLON_COLON, - ACTIONS(1608), 1, + ACTIONS(5045), 1, anon_sym_DQUOTE, - ACTIONS(1610), 1, + ACTIONS(5047), 1, aux_sym_sym_lit_token1, - ACTIONS(1612), 1, + ACTIONS(5049), 1, anon_sym_LPAREN, - ACTIONS(1616), 1, + ACTIONS(5051), 1, anon_sym_POUND_QMARK, - ACTIONS(1618), 1, + ACTIONS(5053), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1620), 1, + ACTIONS(5055), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1622), 1, + ACTIONS(5057), 1, anon_sym_SQUOTE, - ACTIONS(1624), 1, + ACTIONS(5059), 1, anon_sym_BQUOTE, - ACTIONS(1626), 1, + ACTIONS(5061), 1, anon_sym_COMMA_AT, - ACTIONS(1628), 1, + ACTIONS(5063), 1, anon_sym_COMMA, - ACTIONS(5101), 1, - anon_sym_COLON, - ACTIONS(5103), 1, + ACTIONS(5065), 1, anon_sym_cl, - ACTIONS(5115), 1, + ACTIONS(5141), 1, sym_self_referential_reader_macro, - STATE(1893), 1, - sym__bare_set_lit, - STATE(2762), 1, - sym_sym_lit, - STATE(2840), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(1614), 2, + STATE(2986), 1, + sym__bare_set_lit, + STATE(3040), 1, + sym_sym_lit, + ACTIONS(5007), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(1636), 2, + ACTIONS(5021), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(1640), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(1642), 2, + ACTIONS(5027), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5111), 2, + ACTIONS(5069), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5137), 2, sym__ws, sym_comment, - ACTIONS(5113), 3, + ACTIONS(5139), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(539), 3, + STATE(461), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1892), 3, + STATE(2985), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1901), 19, + STATE(2837), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -52351,87 +51924,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [7020] = 35, + [7022] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, - anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4995), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(5037), 1, + anon_sym_POUND, + ACTIONS(5041), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(5043), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(5045), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(5047), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(5049), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(5051), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(5053), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(5055), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(5057), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(5059), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(5061), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(5063), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(5065), 1, anon_sym_cl, - ACTIONS(5121), 1, + ACTIONS(5145), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, - sym_sym_lit, - STATE(2808), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(31), 2, + STATE(2986), 1, + sym__bare_set_lit, + STATE(3040), 1, + sym_sym_lit, + ACTIONS(4763), 2, + sym__ws, + sym_comment, + ACTIONS(5007), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(5021), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(5027), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5117), 2, - sym__ws, - sym_comment, - ACTIONS(5119), 3, + ACTIONS(5069), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5143), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(688), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1877), 3, + STATE(2985), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1869), 19, + STATE(2987), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -52451,7 +52024,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [7155] = 35, + [7157] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -52460,78 +52033,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(67), 1, - anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(4995), 1, aux_sym_num_lit_token1, - ACTIONS(77), 1, + ACTIONS(5037), 1, + anon_sym_POUND, + ACTIONS(5041), 1, + anon_sym_COLON, + ACTIONS(5043), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(5045), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(5047), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(5049), 1, + anon_sym_LPAREN, + ACTIONS(5051), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(5053), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(104), 1, + ACTIONS(5055), 1, anon_sym_POUND_SQUOTE, - ACTIONS(106), 1, + ACTIONS(5057), 1, anon_sym_SQUOTE, - ACTIONS(108), 1, + ACTIONS(5059), 1, anon_sym_BQUOTE, - ACTIONS(110), 1, + ACTIONS(5061), 1, anon_sym_COMMA_AT, - ACTIONS(112), 1, + ACTIONS(5063), 1, anon_sym_COMMA, - ACTIONS(4809), 1, - anon_sym_COLON, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4825), 1, + ACTIONS(5065), 1, anon_sym_cl, - ACTIONS(5127), 1, + ACTIONS(5151), 1, sym_self_referential_reader_macro, - STATE(2497), 1, - sym_sym_lit, - STATE(2625), 1, - sym__bare_set_lit, STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(98), 2, + STATE(2986), 1, + sym__bare_set_lit, + STATE(3040), 1, + sym_sym_lit, + ACTIONS(5007), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(123), 2, + ACTIONS(5021), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(127), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(129), 2, + ACTIONS(5027), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5123), 2, + ACTIONS(5069), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5147), 2, sym__ws, sym_comment, - ACTIONS(5125), 3, + ACTIONS(5149), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(605), 3, + STATE(464), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(2985), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2739), 19, + STATE(2989), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -52551,7 +52124,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [7290] = 35, + [7292] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -52560,78 +52133,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(5023), 1, - anon_sym_POUND, - ACTIONS(5027), 1, + ACTIONS(4995), 1, aux_sym_num_lit_token1, - ACTIONS(5029), 1, + ACTIONS(5037), 1, + anon_sym_POUND, + ACTIONS(5041), 1, anon_sym_COLON, - ACTIONS(5031), 1, + ACTIONS(5043), 1, anon_sym_COLON_COLON, - ACTIONS(5033), 1, + ACTIONS(5045), 1, anon_sym_DQUOTE, - ACTIONS(5035), 1, + ACTIONS(5047), 1, aux_sym_sym_lit_token1, - ACTIONS(5039), 1, + ACTIONS(5049), 1, + anon_sym_LPAREN, + ACTIONS(5051), 1, anon_sym_POUND_QMARK, - ACTIONS(5041), 1, + ACTIONS(5053), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5043), 1, + ACTIONS(5055), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5045), 1, + ACTIONS(5057), 1, anon_sym_SQUOTE, - ACTIONS(5047), 1, + ACTIONS(5059), 1, anon_sym_BQUOTE, - ACTIONS(5049), 1, + ACTIONS(5061), 1, anon_sym_COMMA_AT, - ACTIONS(5051), 1, + ACTIONS(5063), 1, anon_sym_COMMA, - ACTIONS(5053), 1, + ACTIONS(5065), 1, anon_sym_cl, - ACTIONS(5131), 1, + ACTIONS(5155), 1, sym_self_referential_reader_macro, - STATE(2823), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, + STATE(2986), 1, sym__bare_set_lit, - STATE(3078), 1, + STATE(3040), 1, sym_sym_lit, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(5037), 2, + ACTIONS(5007), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5055), 2, + ACTIONS(5021), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(5059), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(5061), 2, + ACTIONS(5027), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5129), 3, + ACTIONS(5069), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5153), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2991), 3, + STATE(2985), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2908), 19, + STATE(2992), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -52651,7 +52224,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [7425] = 35, + [7427] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -52660,78 +52233,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(5023), 1, - anon_sym_POUND, - ACTIONS(5027), 1, + ACTIONS(4995), 1, aux_sym_num_lit_token1, - ACTIONS(5029), 1, + ACTIONS(5037), 1, + anon_sym_POUND, + ACTIONS(5041), 1, anon_sym_COLON, - ACTIONS(5031), 1, + ACTIONS(5043), 1, anon_sym_COLON_COLON, - ACTIONS(5033), 1, + ACTIONS(5045), 1, anon_sym_DQUOTE, - ACTIONS(5035), 1, + ACTIONS(5047), 1, aux_sym_sym_lit_token1, - ACTIONS(5039), 1, + ACTIONS(5049), 1, + anon_sym_LPAREN, + ACTIONS(5051), 1, anon_sym_POUND_QMARK, - ACTIONS(5041), 1, + ACTIONS(5053), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5043), 1, + ACTIONS(5055), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5045), 1, + ACTIONS(5057), 1, anon_sym_SQUOTE, - ACTIONS(5047), 1, + ACTIONS(5059), 1, anon_sym_BQUOTE, - ACTIONS(5049), 1, + ACTIONS(5061), 1, anon_sym_COMMA_AT, - ACTIONS(5051), 1, + ACTIONS(5063), 1, anon_sym_COMMA, - ACTIONS(5053), 1, + ACTIONS(5065), 1, anon_sym_cl, - ACTIONS(5137), 1, + ACTIONS(5159), 1, sym_self_referential_reader_macro, - STATE(2823), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, + STATE(2986), 1, sym__bare_set_lit, - STATE(3078), 1, + STATE(3040), 1, sym_sym_lit, - ACTIONS(5037), 2, + ACTIONS(4763), 2, + sym__ws, + sym_comment, + ACTIONS(5007), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5055), 2, + ACTIONS(5021), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(5059), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(5061), 2, + ACTIONS(5027), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5133), 2, - sym__ws, - sym_comment, - ACTIONS(5135), 3, - anon_sym_DOT, + ACTIONS(5069), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5157), 3, + anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(448), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2991), 3, + STATE(2985), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2910), 19, + STATE(2993), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -52751,7 +52324,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [7560] = 35, + [7562] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -52760,78 +52333,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(67), 1, - anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(4995), 1, aux_sym_num_lit_token1, - ACTIONS(77), 1, + ACTIONS(5037), 1, + anon_sym_POUND, + ACTIONS(5041), 1, + anon_sym_COLON, + ACTIONS(5043), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(5045), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(5047), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(5049), 1, + anon_sym_LPAREN, + ACTIONS(5051), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(5053), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(104), 1, + ACTIONS(5055), 1, anon_sym_POUND_SQUOTE, - ACTIONS(106), 1, + ACTIONS(5057), 1, anon_sym_SQUOTE, - ACTIONS(108), 1, + ACTIONS(5059), 1, anon_sym_BQUOTE, - ACTIONS(110), 1, + ACTIONS(5061), 1, anon_sym_COMMA_AT, - ACTIONS(112), 1, + ACTIONS(5063), 1, anon_sym_COMMA, - ACTIONS(4809), 1, - anon_sym_COLON, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4825), 1, + ACTIONS(5065), 1, anon_sym_cl, - ACTIONS(5141), 1, + ACTIONS(5163), 1, sym_self_referential_reader_macro, - STATE(2497), 1, - sym_sym_lit, - STATE(2625), 1, - sym__bare_set_lit, STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(98), 2, + STATE(2986), 1, + sym__bare_set_lit, + STATE(3040), 1, + sym_sym_lit, + ACTIONS(4763), 2, + sym__ws, + sym_comment, + ACTIONS(5007), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(123), 2, + ACTIONS(5021), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(127), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(129), 2, + ACTIONS(5027), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, - sym__ws, - sym_comment, - ACTIONS(5139), 3, + ACTIONS(5069), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5161), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(2985), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2677), 19, + STATE(2845), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -52851,7 +52424,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [7695] = 35, + [7697] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -52860,78 +52433,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(5023), 1, - anon_sym_POUND, - ACTIONS(5027), 1, + ACTIONS(4995), 1, aux_sym_num_lit_token1, - ACTIONS(5029), 1, + ACTIONS(5037), 1, + anon_sym_POUND, + ACTIONS(5041), 1, anon_sym_COLON, - ACTIONS(5031), 1, + ACTIONS(5043), 1, anon_sym_COLON_COLON, - ACTIONS(5033), 1, + ACTIONS(5045), 1, anon_sym_DQUOTE, - ACTIONS(5035), 1, + ACTIONS(5047), 1, aux_sym_sym_lit_token1, - ACTIONS(5039), 1, + ACTIONS(5049), 1, + anon_sym_LPAREN, + ACTIONS(5051), 1, anon_sym_POUND_QMARK, - ACTIONS(5041), 1, + ACTIONS(5053), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5043), 1, + ACTIONS(5055), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5045), 1, + ACTIONS(5057), 1, anon_sym_SQUOTE, - ACTIONS(5047), 1, + ACTIONS(5059), 1, anon_sym_BQUOTE, - ACTIONS(5049), 1, + ACTIONS(5061), 1, anon_sym_COMMA_AT, - ACTIONS(5051), 1, + ACTIONS(5063), 1, anon_sym_COMMA, - ACTIONS(5053), 1, + ACTIONS(5065), 1, anon_sym_cl, - ACTIONS(5145), 1, + ACTIONS(5169), 1, sym_self_referential_reader_macro, - STATE(2823), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, + STATE(2986), 1, sym__bare_set_lit, - STATE(3078), 1, + STATE(3040), 1, sym_sym_lit, - ACTIONS(4801), 2, - sym__ws, - sym_comment, - ACTIONS(5037), 2, + ACTIONS(5007), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5055), 2, + ACTIONS(5021), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(5059), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(5061), 2, + ACTIONS(5027), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5143), 3, + ACTIONS(5069), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5165), 2, + sym__ws, + sym_comment, + ACTIONS(5167), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, + STATE(975), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2991), 3, + STATE(2985), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2920), 19, + STATE(2996), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -52951,7 +52524,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [7830] = 35, + [7832] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -52960,78 +52533,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(5023), 1, - anon_sym_POUND, - ACTIONS(5027), 1, + ACTIONS(4995), 1, aux_sym_num_lit_token1, - ACTIONS(5029), 1, + ACTIONS(5037), 1, + anon_sym_POUND, + ACTIONS(5041), 1, anon_sym_COLON, - ACTIONS(5031), 1, + ACTIONS(5043), 1, anon_sym_COLON_COLON, - ACTIONS(5033), 1, + ACTIONS(5045), 1, anon_sym_DQUOTE, - ACTIONS(5035), 1, + ACTIONS(5047), 1, aux_sym_sym_lit_token1, - ACTIONS(5039), 1, + ACTIONS(5049), 1, + anon_sym_LPAREN, + ACTIONS(5051), 1, anon_sym_POUND_QMARK, - ACTIONS(5041), 1, + ACTIONS(5053), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5043), 1, + ACTIONS(5055), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5045), 1, + ACTIONS(5057), 1, anon_sym_SQUOTE, - ACTIONS(5047), 1, + ACTIONS(5059), 1, anon_sym_BQUOTE, - ACTIONS(5049), 1, + ACTIONS(5061), 1, anon_sym_COMMA_AT, - ACTIONS(5051), 1, + ACTIONS(5063), 1, anon_sym_COMMA, - ACTIONS(5053), 1, + ACTIONS(5065), 1, anon_sym_cl, - ACTIONS(5149), 1, + ACTIONS(5175), 1, sym_self_referential_reader_macro, - STATE(2823), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, + STATE(2986), 1, sym__bare_set_lit, - STATE(3078), 1, + STATE(3040), 1, sym_sym_lit, - ACTIONS(4801), 2, - sym__ws, - sym_comment, - ACTIONS(5037), 2, + ACTIONS(5007), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5055), 2, + ACTIONS(5021), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(5059), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(5061), 2, + ACTIONS(5027), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5147), 3, + ACTIONS(5069), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5171), 2, + sym__ws, + sym_comment, + ACTIONS(5173), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, + STATE(467), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2991), 3, + STATE(2985), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2925), 19, + STATE(2952), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -53051,7 +52624,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [7965] = 35, + [7967] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -53060,78 +52633,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(67), 1, - anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(4995), 1, aux_sym_num_lit_token1, - ACTIONS(77), 1, + ACTIONS(5037), 1, + anon_sym_POUND, + ACTIONS(5041), 1, + anon_sym_COLON, + ACTIONS(5043), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(5045), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(5047), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(5049), 1, + anon_sym_LPAREN, + ACTIONS(5051), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(5053), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(104), 1, + ACTIONS(5055), 1, anon_sym_POUND_SQUOTE, - ACTIONS(106), 1, + ACTIONS(5057), 1, anon_sym_SQUOTE, - ACTIONS(108), 1, + ACTIONS(5059), 1, anon_sym_BQUOTE, - ACTIONS(110), 1, + ACTIONS(5061), 1, anon_sym_COMMA_AT, - ACTIONS(112), 1, + ACTIONS(5063), 1, anon_sym_COMMA, - ACTIONS(4809), 1, - anon_sym_COLON, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4825), 1, + ACTIONS(5065), 1, anon_sym_cl, - ACTIONS(5155), 1, + ACTIONS(5179), 1, sym_self_referential_reader_macro, - STATE(2497), 1, - sym_sym_lit, - STATE(2625), 1, - sym__bare_set_lit, STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(98), 2, + STATE(2986), 1, + sym__bare_set_lit, + STATE(3040), 1, + sym_sym_lit, + ACTIONS(4763), 2, + sym__ws, + sym_comment, + ACTIONS(5007), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(123), 2, + ACTIONS(5021), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(127), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(129), 2, + ACTIONS(5027), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5151), 2, - sym__ws, - sym_comment, - ACTIONS(5153), 3, + ACTIONS(5069), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5177), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(611), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(2985), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2690), 19, + STATE(2908), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -53151,87 +52724,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [8100] = 35, + [8102] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(5023), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(5027), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(5029), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(5031), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(5033), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(5035), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(5039), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(5041), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5043), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5045), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(5047), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(5049), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(5051), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(5053), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(5161), 1, + ACTIONS(5185), 1, sym_self_referential_reader_macro, - STATE(2823), 1, + STATE(1771), 1, + sym_sym_lit, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, - sym__bare_set_lit, - STATE(3078), 1, - sym_sym_lit, - ACTIONS(5037), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5055), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(5059), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5061), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5157), 2, + ACTIONS(5181), 2, sym__ws, sym_comment, - ACTIONS(5159), 3, + ACTIONS(5183), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(459), 3, + STATE(422), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2991), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2971), 19, + STATE(1803), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -53251,7 +52824,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [8235] = 35, + [8237] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -53260,78 +52833,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(5023), 1, - anon_sym_POUND, - ACTIONS(5027), 1, + ACTIONS(4995), 1, aux_sym_num_lit_token1, - ACTIONS(5029), 1, + ACTIONS(5037), 1, + anon_sym_POUND, + ACTIONS(5041), 1, anon_sym_COLON, - ACTIONS(5031), 1, + ACTIONS(5043), 1, anon_sym_COLON_COLON, - ACTIONS(5033), 1, + ACTIONS(5045), 1, anon_sym_DQUOTE, - ACTIONS(5035), 1, + ACTIONS(5047), 1, aux_sym_sym_lit_token1, - ACTIONS(5039), 1, + ACTIONS(5049), 1, + anon_sym_LPAREN, + ACTIONS(5051), 1, anon_sym_POUND_QMARK, - ACTIONS(5041), 1, + ACTIONS(5053), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5043), 1, + ACTIONS(5055), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5045), 1, + ACTIONS(5057), 1, anon_sym_SQUOTE, - ACTIONS(5047), 1, + ACTIONS(5059), 1, anon_sym_BQUOTE, - ACTIONS(5049), 1, + ACTIONS(5061), 1, anon_sym_COMMA_AT, - ACTIONS(5051), 1, + ACTIONS(5063), 1, anon_sym_COMMA, - ACTIONS(5053), 1, + ACTIONS(5065), 1, anon_sym_cl, - ACTIONS(5167), 1, + ACTIONS(5191), 1, sym_self_referential_reader_macro, - STATE(2823), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, + STATE(2986), 1, sym__bare_set_lit, - STATE(3078), 1, + STATE(3040), 1, sym_sym_lit, - ACTIONS(5037), 2, + ACTIONS(5007), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5055), 2, + ACTIONS(5021), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(5059), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(5061), 2, + ACTIONS(5027), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5163), 2, + ACTIONS(5069), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5187), 2, sym__ws, sym_comment, - ACTIONS(5165), 3, + ACTIONS(5189), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(462), 3, + STATE(469), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2991), 3, + STATE(2985), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2980), 19, + STATE(2911), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -53351,7 +52924,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [8370] = 35, + [8372] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -53360,78 +52933,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(67), 1, - anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(4995), 1, aux_sym_num_lit_token1, - ACTIONS(77), 1, + ACTIONS(5037), 1, + anon_sym_POUND, + ACTIONS(5041), 1, + anon_sym_COLON, + ACTIONS(5043), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(5045), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(5047), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(5049), 1, + anon_sym_LPAREN, + ACTIONS(5051), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(5053), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(104), 1, + ACTIONS(5055), 1, anon_sym_POUND_SQUOTE, - ACTIONS(106), 1, + ACTIONS(5057), 1, anon_sym_SQUOTE, - ACTIONS(108), 1, + ACTIONS(5059), 1, anon_sym_BQUOTE, - ACTIONS(110), 1, + ACTIONS(5061), 1, anon_sym_COMMA_AT, - ACTIONS(112), 1, + ACTIONS(5063), 1, anon_sym_COMMA, - ACTIONS(4809), 1, - anon_sym_COLON, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4825), 1, + ACTIONS(5065), 1, anon_sym_cl, - ACTIONS(5173), 1, + ACTIONS(5195), 1, sym_self_referential_reader_macro, - STATE(2497), 1, - sym_sym_lit, - STATE(2625), 1, - sym__bare_set_lit, STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(98), 2, + STATE(2986), 1, + sym__bare_set_lit, + STATE(3040), 1, + sym_sym_lit, + ACTIONS(4763), 2, + sym__ws, + sym_comment, + ACTIONS(5007), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(123), 2, + ACTIONS(5021), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(127), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(129), 2, + ACTIONS(5027), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5169), 2, - sym__ws, - sym_comment, - ACTIONS(5171), 3, + ACTIONS(5069), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5193), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(615), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(2985), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2727), 19, + STATE(2913), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -53451,7 +53024,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [8505] = 35, + [8507] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -53460,78 +53033,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5029), 1, + ACTIONS(4995), 1, + aux_sym_num_lit_token1, + ACTIONS(5037), 1, + anon_sym_POUND, + ACTIONS(5041), 1, anon_sym_COLON, - ACTIONS(5031), 1, + ACTIONS(5043), 1, anon_sym_COLON_COLON, - ACTIONS(5033), 1, + ACTIONS(5045), 1, anon_sym_DQUOTE, - ACTIONS(5035), 1, + ACTIONS(5047), 1, aux_sym_sym_lit_token1, - ACTIONS(5053), 1, - anon_sym_cl, - ACTIONS(5175), 1, - anon_sym_POUND, - ACTIONS(5179), 1, - aux_sym_num_lit_token1, - ACTIONS(5181), 1, + ACTIONS(5049), 1, anon_sym_LPAREN, - ACTIONS(5185), 1, + ACTIONS(5051), 1, anon_sym_POUND_QMARK, - ACTIONS(5187), 1, + ACTIONS(5053), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5189), 1, + ACTIONS(5055), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5191), 1, + ACTIONS(5057), 1, anon_sym_SQUOTE, - ACTIONS(5193), 1, + ACTIONS(5059), 1, anon_sym_BQUOTE, - ACTIONS(5195), 1, + ACTIONS(5061), 1, anon_sym_COMMA_AT, - ACTIONS(5197), 1, + ACTIONS(5063), 1, anon_sym_COMMA, - ACTIONS(5199), 1, + ACTIONS(5065), 1, + anon_sym_cl, + ACTIONS(5201), 1, sym_self_referential_reader_macro, - STATE(2839), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, + STATE(2986), 1, sym__bare_set_lit, - STATE(3078), 1, + STATE(3040), 1, sym_sym_lit, - ACTIONS(4801), 2, - sym__ws, - sym_comment, - ACTIONS(5055), 2, + ACTIONS(5007), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5021), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(5061), 2, + ACTIONS(5027), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5183), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(5201), 2, + ACTIONS(5069), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5177), 3, + ACTIONS(5197), 2, + sym__ws, + sym_comment, + ACTIONS(5199), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, + STATE(470), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2991), 3, + STATE(2985), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(3070), 19, + STATE(2914), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -53551,7 +53124,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [8640] = 35, + [8642] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -53560,78 +53133,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(5023), 1, - anon_sym_POUND, - ACTIONS(5027), 1, + ACTIONS(4995), 1, aux_sym_num_lit_token1, - ACTIONS(5029), 1, + ACTIONS(5037), 1, + anon_sym_POUND, + ACTIONS(5041), 1, anon_sym_COLON, - ACTIONS(5031), 1, + ACTIONS(5043), 1, anon_sym_COLON_COLON, - ACTIONS(5033), 1, + ACTIONS(5045), 1, anon_sym_DQUOTE, - ACTIONS(5035), 1, + ACTIONS(5047), 1, aux_sym_sym_lit_token1, - ACTIONS(5039), 1, + ACTIONS(5049), 1, + anon_sym_LPAREN, + ACTIONS(5051), 1, anon_sym_POUND_QMARK, - ACTIONS(5041), 1, + ACTIONS(5053), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5043), 1, + ACTIONS(5055), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5045), 1, + ACTIONS(5057), 1, anon_sym_SQUOTE, - ACTIONS(5047), 1, + ACTIONS(5059), 1, anon_sym_BQUOTE, - ACTIONS(5049), 1, + ACTIONS(5061), 1, anon_sym_COMMA_AT, - ACTIONS(5051), 1, + ACTIONS(5063), 1, anon_sym_COMMA, - ACTIONS(5053), 1, + ACTIONS(5065), 1, anon_sym_cl, ACTIONS(5205), 1, sym_self_referential_reader_macro, - STATE(2823), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, + STATE(2986), 1, sym__bare_set_lit, - STATE(3078), 1, + STATE(3040), 1, sym_sym_lit, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(5037), 2, + ACTIONS(5007), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5055), 2, + ACTIONS(5021), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(5059), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(5061), 2, + ACTIONS(5027), 2, anon_sym_POUNDC, anon_sym_POUNDc, + ACTIONS(5069), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, ACTIONS(5203), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2991), 3, + STATE(2985), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2961), 19, + STATE(2918), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -53651,7 +53224,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [8775] = 35, + [8777] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -53660,78 +53233,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(5023), 1, - anon_sym_POUND, - ACTIONS(5027), 1, + ACTIONS(4995), 1, aux_sym_num_lit_token1, - ACTIONS(5029), 1, + ACTIONS(5037), 1, + anon_sym_POUND, + ACTIONS(5041), 1, anon_sym_COLON, - ACTIONS(5031), 1, + ACTIONS(5043), 1, anon_sym_COLON_COLON, - ACTIONS(5033), 1, + ACTIONS(5045), 1, anon_sym_DQUOTE, - ACTIONS(5035), 1, + ACTIONS(5047), 1, aux_sym_sym_lit_token1, - ACTIONS(5039), 1, + ACTIONS(5049), 1, + anon_sym_LPAREN, + ACTIONS(5051), 1, anon_sym_POUND_QMARK, - ACTIONS(5041), 1, + ACTIONS(5053), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5043), 1, + ACTIONS(5055), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5045), 1, + ACTIONS(5057), 1, anon_sym_SQUOTE, - ACTIONS(5047), 1, + ACTIONS(5059), 1, anon_sym_BQUOTE, - ACTIONS(5049), 1, + ACTIONS(5061), 1, anon_sym_COMMA_AT, - ACTIONS(5051), 1, + ACTIONS(5063), 1, anon_sym_COMMA, - ACTIONS(5053), 1, + ACTIONS(5065), 1, anon_sym_cl, ACTIONS(5209), 1, sym_self_referential_reader_macro, - STATE(2823), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, + STATE(2986), 1, sym__bare_set_lit, - STATE(3078), 1, + STATE(3040), 1, sym_sym_lit, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(5037), 2, + ACTIONS(5007), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5055), 2, + ACTIONS(5021), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(5059), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(5061), 2, + ACTIONS(5027), 2, anon_sym_POUNDC, anon_sym_POUNDc, + ACTIONS(5069), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, ACTIONS(5207), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2991), 3, + STATE(2985), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2960), 19, + STATE(2919), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -53751,7 +53324,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [8910] = 35, + [8912] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -53760,78 +53333,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(5023), 1, + ACTIONS(5213), 1, anon_sym_POUND, - ACTIONS(5027), 1, + ACTIONS(5217), 1, aux_sym_num_lit_token1, - ACTIONS(5029), 1, + ACTIONS(5219), 1, anon_sym_COLON, - ACTIONS(5031), 1, + ACTIONS(5221), 1, anon_sym_COLON_COLON, - ACTIONS(5033), 1, + ACTIONS(5223), 1, anon_sym_DQUOTE, - ACTIONS(5035), 1, + ACTIONS(5225), 1, aux_sym_sym_lit_token1, - ACTIONS(5039), 1, + ACTIONS(5227), 1, + anon_sym_LPAREN, + ACTIONS(5231), 1, anon_sym_POUND_QMARK, - ACTIONS(5041), 1, + ACTIONS(5233), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5043), 1, + ACTIONS(5235), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5045), 1, + ACTIONS(5237), 1, anon_sym_SQUOTE, - ACTIONS(5047), 1, + ACTIONS(5239), 1, anon_sym_BQUOTE, - ACTIONS(5049), 1, + ACTIONS(5241), 1, anon_sym_COMMA_AT, - ACTIONS(5051), 1, + ACTIONS(5243), 1, anon_sym_COMMA, - ACTIONS(5053), 1, + ACTIONS(5245), 1, anon_sym_cl, - ACTIONS(5215), 1, + ACTIONS(5249), 1, sym_self_referential_reader_macro, - STATE(2823), 1, + STATE(1687), 1, + sym__bare_set_lit, + STATE(1734), 1, + sym_sym_lit, + STATE(2799), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, - sym__bare_set_lit, - STATE(3078), 1, - sym_sym_lit, - ACTIONS(5037), 2, + ACTIONS(5211), 2, + sym__ws, + sym_comment, + ACTIONS(5229), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5055), 2, + ACTIONS(5247), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(5059), 2, + ACTIONS(5251), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5061), 2, + ACTIONS(5253), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5211), 2, - sym__ws, - sym_comment, - ACTIONS(5213), 3, + ACTIONS(5215), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(463), 3, + STATE(477), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2991), 3, + STATE(1680), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2905), 19, + STATE(1688), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -53851,7 +53424,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [9045] = 35, + [9047] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -53860,78 +53433,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(5023), 1, + ACTIONS(5213), 1, anon_sym_POUND, - ACTIONS(5027), 1, + ACTIONS(5217), 1, aux_sym_num_lit_token1, - ACTIONS(5029), 1, + ACTIONS(5219), 1, anon_sym_COLON, - ACTIONS(5031), 1, + ACTIONS(5221), 1, anon_sym_COLON_COLON, - ACTIONS(5033), 1, + ACTIONS(5223), 1, anon_sym_DQUOTE, - ACTIONS(5035), 1, + ACTIONS(5225), 1, aux_sym_sym_lit_token1, - ACTIONS(5039), 1, + ACTIONS(5227), 1, + anon_sym_LPAREN, + ACTIONS(5231), 1, anon_sym_POUND_QMARK, - ACTIONS(5041), 1, + ACTIONS(5233), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5043), 1, + ACTIONS(5235), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5045), 1, + ACTIONS(5237), 1, anon_sym_SQUOTE, - ACTIONS(5047), 1, + ACTIONS(5239), 1, anon_sym_BQUOTE, - ACTIONS(5049), 1, + ACTIONS(5241), 1, anon_sym_COMMA_AT, - ACTIONS(5051), 1, + ACTIONS(5243), 1, anon_sym_COMMA, - ACTIONS(5053), 1, + ACTIONS(5245), 1, anon_sym_cl, - ACTIONS(5219), 1, + ACTIONS(5259), 1, sym_self_referential_reader_macro, - STATE(2823), 1, + STATE(1687), 1, + sym__bare_set_lit, + STATE(1734), 1, + sym_sym_lit, + STATE(2799), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, - sym__bare_set_lit, - STATE(3078), 1, - sym_sym_lit, - ACTIONS(4801), 2, - sym__ws, - sym_comment, - ACTIONS(5037), 2, + ACTIONS(5229), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5055), 2, + ACTIONS(5247), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(5059), 2, + ACTIONS(5251), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5061), 2, + ACTIONS(5253), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5217), 3, + ACTIONS(5255), 2, + sym__ws, + sym_comment, + ACTIONS(5257), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, + STATE(478), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2991), 3, + STATE(1680), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2950), 19, + STATE(1690), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -53951,7 +53524,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [9180] = 35, + [9182] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -53960,78 +53533,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5029), 1, + ACTIONS(5213), 1, + anon_sym_POUND, + ACTIONS(5217), 1, + aux_sym_num_lit_token1, + ACTIONS(5219), 1, anon_sym_COLON, - ACTIONS(5031), 1, + ACTIONS(5221), 1, anon_sym_COLON_COLON, - ACTIONS(5033), 1, + ACTIONS(5223), 1, anon_sym_DQUOTE, - ACTIONS(5035), 1, + ACTIONS(5225), 1, aux_sym_sym_lit_token1, - ACTIONS(5053), 1, - anon_sym_cl, - ACTIONS(5175), 1, - anon_sym_POUND, - ACTIONS(5179), 1, - aux_sym_num_lit_token1, - ACTIONS(5181), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5185), 1, + ACTIONS(5231), 1, anon_sym_POUND_QMARK, - ACTIONS(5187), 1, + ACTIONS(5233), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5189), 1, + ACTIONS(5235), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5191), 1, + ACTIONS(5237), 1, anon_sym_SQUOTE, - ACTIONS(5193), 1, + ACTIONS(5239), 1, anon_sym_BQUOTE, - ACTIONS(5195), 1, + ACTIONS(5241), 1, anon_sym_COMMA_AT, - ACTIONS(5197), 1, + ACTIONS(5243), 1, anon_sym_COMMA, - ACTIONS(5225), 1, + ACTIONS(5245), 1, + anon_sym_cl, + ACTIONS(5265), 1, sym_self_referential_reader_macro, - STATE(2839), 1, + STATE(1687), 1, + sym__bare_set_lit, + STATE(1734), 1, + sym_sym_lit, + STATE(2799), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, - sym__bare_set_lit, - STATE(3078), 1, - sym_sym_lit, - ACTIONS(5055), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(5061), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5183), 2, + ACTIONS(5229), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5201), 2, + ACTIONS(5247), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(5251), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5221), 2, + ACTIONS(5253), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5261), 2, sym__ws, sym_comment, - ACTIONS(5223), 3, + ACTIONS(5263), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(468), 3, + STATE(479), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2991), 3, + STATE(1680), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(3081), 19, + STATE(1703), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -54051,7 +53624,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [9315] = 35, + [9317] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -54060,78 +53633,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(5023), 1, + ACTIONS(5213), 1, anon_sym_POUND, - ACTIONS(5027), 1, + ACTIONS(5217), 1, aux_sym_num_lit_token1, - ACTIONS(5029), 1, + ACTIONS(5219), 1, anon_sym_COLON, - ACTIONS(5031), 1, + ACTIONS(5221), 1, anon_sym_COLON_COLON, - ACTIONS(5033), 1, + ACTIONS(5223), 1, anon_sym_DQUOTE, - ACTIONS(5035), 1, + ACTIONS(5225), 1, aux_sym_sym_lit_token1, - ACTIONS(5039), 1, + ACTIONS(5227), 1, + anon_sym_LPAREN, + ACTIONS(5231), 1, anon_sym_POUND_QMARK, - ACTIONS(5041), 1, + ACTIONS(5233), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5043), 1, + ACTIONS(5235), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5045), 1, + ACTIONS(5237), 1, anon_sym_SQUOTE, - ACTIONS(5047), 1, + ACTIONS(5239), 1, anon_sym_BQUOTE, - ACTIONS(5049), 1, + ACTIONS(5241), 1, anon_sym_COMMA_AT, - ACTIONS(5051), 1, + ACTIONS(5243), 1, anon_sym_COMMA, - ACTIONS(5053), 1, + ACTIONS(5245), 1, anon_sym_cl, - ACTIONS(5231), 1, + ACTIONS(5271), 1, sym_self_referential_reader_macro, - STATE(2823), 1, + STATE(1687), 1, + sym__bare_set_lit, + STATE(1734), 1, + sym_sym_lit, + STATE(2799), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, - sym__bare_set_lit, - STATE(3078), 1, - sym_sym_lit, - ACTIONS(5037), 2, + ACTIONS(5229), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5055), 2, + ACTIONS(5247), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(5059), 2, + ACTIONS(5251), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5061), 2, + ACTIONS(5253), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5227), 2, + ACTIONS(5267), 2, sym__ws, sym_comment, - ACTIONS(5229), 3, + ACTIONS(5269), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(469), 3, + STATE(480), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2991), 3, + STATE(1680), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2944), 19, + STATE(1684), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -54151,7 +53724,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [9450] = 35, + [9452] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -54160,78 +53733,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(5023), 1, + ACTIONS(5213), 1, anon_sym_POUND, - ACTIONS(5027), 1, + ACTIONS(5217), 1, aux_sym_num_lit_token1, - ACTIONS(5029), 1, + ACTIONS(5219), 1, anon_sym_COLON, - ACTIONS(5031), 1, + ACTIONS(5221), 1, anon_sym_COLON_COLON, - ACTIONS(5033), 1, + ACTIONS(5223), 1, anon_sym_DQUOTE, - ACTIONS(5035), 1, + ACTIONS(5225), 1, aux_sym_sym_lit_token1, - ACTIONS(5039), 1, + ACTIONS(5227), 1, + anon_sym_LPAREN, + ACTIONS(5231), 1, anon_sym_POUND_QMARK, - ACTIONS(5041), 1, + ACTIONS(5233), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5043), 1, + ACTIONS(5235), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5045), 1, + ACTIONS(5237), 1, anon_sym_SQUOTE, - ACTIONS(5047), 1, + ACTIONS(5239), 1, anon_sym_BQUOTE, - ACTIONS(5049), 1, + ACTIONS(5241), 1, anon_sym_COMMA_AT, - ACTIONS(5051), 1, + ACTIONS(5243), 1, anon_sym_COMMA, - ACTIONS(5053), 1, + ACTIONS(5245), 1, anon_sym_cl, - ACTIONS(5237), 1, + ACTIONS(5277), 1, sym_self_referential_reader_macro, - STATE(2823), 1, + STATE(1687), 1, + sym__bare_set_lit, + STATE(1734), 1, + sym_sym_lit, + STATE(2799), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, - sym__bare_set_lit, - STATE(3078), 1, - sym_sym_lit, - ACTIONS(5037), 2, + ACTIONS(5229), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5055), 2, + ACTIONS(5247), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(5059), 2, + ACTIONS(5251), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5061), 2, + ACTIONS(5253), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5233), 2, + ACTIONS(5273), 2, sym__ws, sym_comment, - ACTIONS(5235), 3, + ACTIONS(5275), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(470), 3, + STATE(481), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2991), 3, + STATE(1680), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2948), 19, + STATE(1692), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -54251,7 +53824,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [9585] = 35, + [9587] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -54260,78 +53833,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(5023), 1, + ACTIONS(5213), 1, anon_sym_POUND, - ACTIONS(5027), 1, + ACTIONS(5217), 1, aux_sym_num_lit_token1, - ACTIONS(5029), 1, + ACTIONS(5219), 1, anon_sym_COLON, - ACTIONS(5031), 1, + ACTIONS(5221), 1, anon_sym_COLON_COLON, - ACTIONS(5033), 1, + ACTIONS(5223), 1, anon_sym_DQUOTE, - ACTIONS(5035), 1, + ACTIONS(5225), 1, aux_sym_sym_lit_token1, - ACTIONS(5039), 1, + ACTIONS(5227), 1, + anon_sym_LPAREN, + ACTIONS(5231), 1, anon_sym_POUND_QMARK, - ACTIONS(5041), 1, + ACTIONS(5233), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5043), 1, + ACTIONS(5235), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5045), 1, + ACTIONS(5237), 1, anon_sym_SQUOTE, - ACTIONS(5047), 1, + ACTIONS(5239), 1, anon_sym_BQUOTE, - ACTIONS(5049), 1, + ACTIONS(5241), 1, anon_sym_COMMA_AT, - ACTIONS(5051), 1, + ACTIONS(5243), 1, anon_sym_COMMA, - ACTIONS(5053), 1, + ACTIONS(5245), 1, anon_sym_cl, - ACTIONS(5243), 1, + ACTIONS(5281), 1, sym_self_referential_reader_macro, - STATE(2823), 1, + STATE(1687), 1, + sym__bare_set_lit, + STATE(1734), 1, + sym_sym_lit, + STATE(2799), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, - sym__bare_set_lit, - STATE(3078), 1, - sym_sym_lit, - ACTIONS(5037), 2, + ACTIONS(4763), 2, + sym__ws, + sym_comment, + ACTIONS(5229), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5055), 2, + ACTIONS(5247), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(5059), 2, + ACTIONS(5251), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5061), 2, + ACTIONS(5253), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5239), 2, - sym__ws, - sym_comment, - ACTIONS(5241), 3, + ACTIONS(5279), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(472), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2991), 3, + STATE(1680), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2963), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1723), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -54351,7 +53924,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [9720] = 35, + [9722] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -54360,78 +53933,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5029), 1, + ACTIONS(5213), 1, + anon_sym_POUND, + ACTIONS(5217), 1, + aux_sym_num_lit_token1, + ACTIONS(5219), 1, anon_sym_COLON, - ACTIONS(5031), 1, + ACTIONS(5221), 1, anon_sym_COLON_COLON, - ACTIONS(5033), 1, + ACTIONS(5223), 1, anon_sym_DQUOTE, - ACTIONS(5035), 1, + ACTIONS(5225), 1, aux_sym_sym_lit_token1, - ACTIONS(5053), 1, - anon_sym_cl, - ACTIONS(5175), 1, - anon_sym_POUND, - ACTIONS(5179), 1, - aux_sym_num_lit_token1, - ACTIONS(5181), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5185), 1, + ACTIONS(5231), 1, anon_sym_POUND_QMARK, - ACTIONS(5187), 1, + ACTIONS(5233), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5189), 1, + ACTIONS(5235), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5191), 1, + ACTIONS(5237), 1, anon_sym_SQUOTE, - ACTIONS(5193), 1, + ACTIONS(5239), 1, anon_sym_BQUOTE, - ACTIONS(5195), 1, + ACTIONS(5241), 1, anon_sym_COMMA_AT, - ACTIONS(5197), 1, + ACTIONS(5243), 1, anon_sym_COMMA, - ACTIONS(5247), 1, + ACTIONS(5245), 1, + anon_sym_cl, + ACTIONS(5285), 1, sym_self_referential_reader_macro, - STATE(2839), 1, + STATE(1687), 1, + sym__bare_set_lit, + STATE(1734), 1, + sym_sym_lit, + STATE(2799), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, - sym__bare_set_lit, - STATE(3078), 1, - sym_sym_lit, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(5055), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(5061), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5183), 2, + ACTIONS(5229), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5201), 2, + ACTIONS(5247), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(5251), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5245), 3, + ACTIONS(5253), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5283), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2991), 3, + STATE(1680), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(3100), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1646), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -54451,7 +54024,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [9855] = 35, + [9857] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -54460,78 +54033,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5029), 1, + ACTIONS(5213), 1, + anon_sym_POUND, + ACTIONS(5217), 1, + aux_sym_num_lit_token1, + ACTIONS(5219), 1, anon_sym_COLON, - ACTIONS(5031), 1, + ACTIONS(5221), 1, anon_sym_COLON_COLON, - ACTIONS(5033), 1, + ACTIONS(5223), 1, anon_sym_DQUOTE, - ACTIONS(5035), 1, + ACTIONS(5225), 1, aux_sym_sym_lit_token1, - ACTIONS(5053), 1, - anon_sym_cl, - ACTIONS(5175), 1, - anon_sym_POUND, - ACTIONS(5179), 1, - aux_sym_num_lit_token1, - ACTIONS(5181), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5185), 1, + ACTIONS(5231), 1, anon_sym_POUND_QMARK, - ACTIONS(5187), 1, + ACTIONS(5233), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5189), 1, + ACTIONS(5235), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5191), 1, + ACTIONS(5237), 1, anon_sym_SQUOTE, - ACTIONS(5193), 1, + ACTIONS(5239), 1, anon_sym_BQUOTE, - ACTIONS(5195), 1, + ACTIONS(5241), 1, anon_sym_COMMA_AT, - ACTIONS(5197), 1, + ACTIONS(5243), 1, anon_sym_COMMA, - ACTIONS(5251), 1, + ACTIONS(5245), 1, + anon_sym_cl, + ACTIONS(5289), 1, sym_self_referential_reader_macro, - STATE(2839), 1, + STATE(1687), 1, + sym__bare_set_lit, + STATE(1734), 1, + sym_sym_lit, + STATE(2799), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, - sym__bare_set_lit, - STATE(3078), 1, - sym_sym_lit, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(5055), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(5061), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5183), 2, + ACTIONS(5229), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5201), 2, + ACTIONS(5247), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(5251), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5249), 3, + ACTIONS(5253), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5287), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2991), 3, + STATE(1680), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(3097), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1669), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -54551,7 +54124,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [9990] = 35, + [9992] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -54560,78 +54133,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(5023), 1, + ACTIONS(5213), 1, anon_sym_POUND, - ACTIONS(5027), 1, + ACTIONS(5217), 1, aux_sym_num_lit_token1, - ACTIONS(5029), 1, + ACTIONS(5219), 1, anon_sym_COLON, - ACTIONS(5031), 1, + ACTIONS(5221), 1, anon_sym_COLON_COLON, - ACTIONS(5033), 1, + ACTIONS(5223), 1, anon_sym_DQUOTE, - ACTIONS(5035), 1, + ACTIONS(5225), 1, aux_sym_sym_lit_token1, - ACTIONS(5039), 1, + ACTIONS(5227), 1, + anon_sym_LPAREN, + ACTIONS(5231), 1, anon_sym_POUND_QMARK, - ACTIONS(5041), 1, + ACTIONS(5233), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5043), 1, + ACTIONS(5235), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5045), 1, + ACTIONS(5237), 1, anon_sym_SQUOTE, - ACTIONS(5047), 1, + ACTIONS(5239), 1, anon_sym_BQUOTE, - ACTIONS(5049), 1, + ACTIONS(5241), 1, anon_sym_COMMA_AT, - ACTIONS(5051), 1, + ACTIONS(5243), 1, anon_sym_COMMA, - ACTIONS(5053), 1, + ACTIONS(5245), 1, anon_sym_cl, - ACTIONS(5255), 1, + ACTIONS(5293), 1, sym_self_referential_reader_macro, - STATE(2823), 1, + STATE(1687), 1, + sym__bare_set_lit, + STATE(1734), 1, + sym_sym_lit, + STATE(2799), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, - sym__bare_set_lit, - STATE(3078), 1, - sym_sym_lit, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(5037), 2, + ACTIONS(5229), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5055), 2, + ACTIONS(5247), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(5059), 2, + ACTIONS(5251), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5061), 2, + ACTIONS(5253), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5253), 3, + ACTIONS(5291), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2991), 3, + STATE(1680), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2977), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1670), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -54651,7 +54224,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [10125] = 35, + [10127] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -54660,78 +54233,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(5023), 1, + ACTIONS(5213), 1, anon_sym_POUND, - ACTIONS(5027), 1, + ACTIONS(5217), 1, aux_sym_num_lit_token1, - ACTIONS(5029), 1, + ACTIONS(5219), 1, anon_sym_COLON, - ACTIONS(5031), 1, + ACTIONS(5221), 1, anon_sym_COLON_COLON, - ACTIONS(5033), 1, + ACTIONS(5223), 1, anon_sym_DQUOTE, - ACTIONS(5035), 1, + ACTIONS(5225), 1, aux_sym_sym_lit_token1, - ACTIONS(5039), 1, + ACTIONS(5227), 1, + anon_sym_LPAREN, + ACTIONS(5231), 1, anon_sym_POUND_QMARK, - ACTIONS(5041), 1, + ACTIONS(5233), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5043), 1, + ACTIONS(5235), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5045), 1, + ACTIONS(5237), 1, anon_sym_SQUOTE, - ACTIONS(5047), 1, + ACTIONS(5239), 1, anon_sym_BQUOTE, - ACTIONS(5049), 1, + ACTIONS(5241), 1, anon_sym_COMMA_AT, - ACTIONS(5051), 1, + ACTIONS(5243), 1, anon_sym_COMMA, - ACTIONS(5053), 1, + ACTIONS(5245), 1, anon_sym_cl, - ACTIONS(5259), 1, + ACTIONS(5297), 1, sym_self_referential_reader_macro, - STATE(2823), 1, + STATE(1687), 1, + sym__bare_set_lit, + STATE(1734), 1, + sym_sym_lit, + STATE(2799), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, - sym__bare_set_lit, - STATE(3078), 1, - sym_sym_lit, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(5037), 2, + ACTIONS(5229), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5055), 2, + ACTIONS(5247), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(5059), 2, + ACTIONS(5251), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5061), 2, + ACTIONS(5253), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5257), 3, + ACTIONS(5295), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2991), 3, + STATE(1680), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2979), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1722), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -54751,7 +54324,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [10260] = 35, + [10262] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -54760,78 +54333,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(5023), 1, + ACTIONS(5213), 1, anon_sym_POUND, - ACTIONS(5027), 1, + ACTIONS(5217), 1, aux_sym_num_lit_token1, - ACTIONS(5029), 1, + ACTIONS(5219), 1, anon_sym_COLON, - ACTIONS(5031), 1, + ACTIONS(5221), 1, anon_sym_COLON_COLON, - ACTIONS(5033), 1, + ACTIONS(5223), 1, anon_sym_DQUOTE, - ACTIONS(5035), 1, + ACTIONS(5225), 1, aux_sym_sym_lit_token1, - ACTIONS(5039), 1, + ACTIONS(5227), 1, + anon_sym_LPAREN, + ACTIONS(5231), 1, anon_sym_POUND_QMARK, - ACTIONS(5041), 1, + ACTIONS(5233), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5043), 1, + ACTIONS(5235), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5045), 1, + ACTIONS(5237), 1, anon_sym_SQUOTE, - ACTIONS(5047), 1, + ACTIONS(5239), 1, anon_sym_BQUOTE, - ACTIONS(5049), 1, + ACTIONS(5241), 1, anon_sym_COMMA_AT, - ACTIONS(5051), 1, + ACTIONS(5243), 1, anon_sym_COMMA, - ACTIONS(5053), 1, + ACTIONS(5245), 1, anon_sym_cl, - ACTIONS(5263), 1, + ACTIONS(5301), 1, sym_self_referential_reader_macro, - STATE(2823), 1, + STATE(1687), 1, + sym__bare_set_lit, + STATE(1734), 1, + sym_sym_lit, + STATE(2799), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, - sym__bare_set_lit, - STATE(3078), 1, - sym_sym_lit, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(5037), 2, + ACTIONS(5229), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5055), 2, + ACTIONS(5247), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(5059), 2, + ACTIONS(5251), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5061), 2, + ACTIONS(5253), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5261), 3, + ACTIONS(5299), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2991), 3, + STATE(1680), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2981), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1630), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -54851,7 +54424,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [10395] = 35, + [10397] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -54860,78 +54433,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(137), 1, + ACTIONS(5213), 1, anon_sym_POUND, - ACTIONS(141), 1, + ACTIONS(5217), 1, aux_sym_num_lit_token1, - ACTIONS(146), 1, + ACTIONS(5219), 1, + anon_sym_COLON, + ACTIONS(5221), 1, anon_sym_COLON_COLON, - ACTIONS(148), 1, + ACTIONS(5223), 1, anon_sym_DQUOTE, - ACTIONS(150), 1, + ACTIONS(5225), 1, aux_sym_sym_lit_token1, - ACTIONS(165), 1, + ACTIONS(5227), 1, + anon_sym_LPAREN, + ACTIONS(5231), 1, anon_sym_POUND_QMARK, - ACTIONS(167), 1, + ACTIONS(5233), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(169), 1, + ACTIONS(5235), 1, anon_sym_POUND_SQUOTE, - ACTIONS(171), 1, + ACTIONS(5237), 1, anon_sym_SQUOTE, - ACTIONS(173), 1, + ACTIONS(5239), 1, anon_sym_BQUOTE, - ACTIONS(175), 1, + ACTIONS(5241), 1, anon_sym_COMMA_AT, - ACTIONS(177), 1, + ACTIONS(5243), 1, anon_sym_COMMA, - ACTIONS(4855), 1, - anon_sym_COLON, - ACTIONS(4857), 1, - anon_sym_LPAREN, - ACTIONS(4859), 1, + ACTIONS(5245), 1, anon_sym_cl, - ACTIONS(5267), 1, + ACTIONS(5307), 1, sym_self_referential_reader_macro, - STATE(1069), 1, + STATE(1687), 1, sym__bare_set_lit, - STATE(1073), 1, + STATE(1734), 1, sym_sym_lit, - STATE(2804), 1, + STATE(2799), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(163), 2, + ACTIONS(5229), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(186), 2, + ACTIONS(5247), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(190), 2, + ACTIONS(5251), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(192), 2, + ACTIONS(5253), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(5303), 2, sym__ws, sym_comment, - ACTIONS(5265), 3, + ACTIONS(5305), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1070), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(486), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1019), 19, + STATE(1680), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1648), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -54951,7 +54524,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [10530] = 35, + [10532] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -54960,78 +54533,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5029), 1, + ACTIONS(5213), 1, + anon_sym_POUND, + ACTIONS(5217), 1, + aux_sym_num_lit_token1, + ACTIONS(5219), 1, anon_sym_COLON, - ACTIONS(5031), 1, + ACTIONS(5221), 1, anon_sym_COLON_COLON, - ACTIONS(5033), 1, + ACTIONS(5223), 1, anon_sym_DQUOTE, - ACTIONS(5035), 1, + ACTIONS(5225), 1, aux_sym_sym_lit_token1, - ACTIONS(5053), 1, - anon_sym_cl, - ACTIONS(5175), 1, - anon_sym_POUND, - ACTIONS(5179), 1, - aux_sym_num_lit_token1, - ACTIONS(5181), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5185), 1, + ACTIONS(5231), 1, anon_sym_POUND_QMARK, - ACTIONS(5187), 1, + ACTIONS(5233), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5189), 1, + ACTIONS(5235), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5191), 1, + ACTIONS(5237), 1, anon_sym_SQUOTE, - ACTIONS(5193), 1, + ACTIONS(5239), 1, anon_sym_BQUOTE, - ACTIONS(5195), 1, + ACTIONS(5241), 1, anon_sym_COMMA_AT, - ACTIONS(5197), 1, + ACTIONS(5243), 1, anon_sym_COMMA, - ACTIONS(5273), 1, + ACTIONS(5245), 1, + anon_sym_cl, + ACTIONS(5313), 1, sym_self_referential_reader_macro, - STATE(2839), 1, + STATE(1687), 1, + sym__bare_set_lit, + STATE(1734), 1, + sym_sym_lit, + STATE(2799), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, - sym__bare_set_lit, - STATE(3078), 1, - sym_sym_lit, - ACTIONS(5055), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(5061), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5183), 2, + ACTIONS(5229), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5201), 2, + ACTIONS(5247), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(5251), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5269), 2, + ACTIONS(5253), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5309), 2, sym__ws, sym_comment, - ACTIONS(5271), 3, + ACTIONS(5311), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(477), 3, + STATE(488), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2991), 3, + STATE(1680), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(3062), 19, + STATE(1679), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -55051,7 +54624,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [10665] = 35, + [10667] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -55060,78 +54633,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5029), 1, + ACTIONS(5213), 1, + anon_sym_POUND, + ACTIONS(5217), 1, + aux_sym_num_lit_token1, + ACTIONS(5219), 1, anon_sym_COLON, - ACTIONS(5031), 1, + ACTIONS(5221), 1, anon_sym_COLON_COLON, - ACTIONS(5033), 1, + ACTIONS(5223), 1, anon_sym_DQUOTE, - ACTIONS(5035), 1, + ACTIONS(5225), 1, aux_sym_sym_lit_token1, - ACTIONS(5053), 1, - anon_sym_cl, - ACTIONS(5175), 1, - anon_sym_POUND, - ACTIONS(5179), 1, - aux_sym_num_lit_token1, - ACTIONS(5181), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5185), 1, + ACTIONS(5231), 1, anon_sym_POUND_QMARK, - ACTIONS(5187), 1, + ACTIONS(5233), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5189), 1, + ACTIONS(5235), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5191), 1, + ACTIONS(5237), 1, anon_sym_SQUOTE, - ACTIONS(5193), 1, + ACTIONS(5239), 1, anon_sym_BQUOTE, - ACTIONS(5195), 1, + ACTIONS(5241), 1, anon_sym_COMMA_AT, - ACTIONS(5197), 1, + ACTIONS(5243), 1, anon_sym_COMMA, - ACTIONS(5279), 1, + ACTIONS(5245), 1, + anon_sym_cl, + ACTIONS(5319), 1, sym_self_referential_reader_macro, - STATE(2839), 1, + STATE(1687), 1, + sym__bare_set_lit, + STATE(1734), 1, + sym_sym_lit, + STATE(2799), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, - sym__bare_set_lit, - STATE(3078), 1, - sym_sym_lit, - ACTIONS(5055), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(5061), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5183), 2, + ACTIONS(5229), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5201), 2, + ACTIONS(5247), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(5251), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5275), 2, + ACTIONS(5253), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5315), 2, sym__ws, sym_comment, - ACTIONS(5277), 3, + ACTIONS(5317), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(478), 3, + STATE(489), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2991), 3, + STATE(1680), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(3061), 19, + STATE(1701), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -55151,7 +54724,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [10800] = 35, + [10802] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -55160,78 +54733,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(5023), 1, + ACTIONS(5213), 1, anon_sym_POUND, - ACTIONS(5027), 1, + ACTIONS(5217), 1, aux_sym_num_lit_token1, - ACTIONS(5029), 1, + ACTIONS(5219), 1, anon_sym_COLON, - ACTIONS(5031), 1, + ACTIONS(5221), 1, anon_sym_COLON_COLON, - ACTIONS(5033), 1, + ACTIONS(5223), 1, anon_sym_DQUOTE, - ACTIONS(5035), 1, + ACTIONS(5225), 1, aux_sym_sym_lit_token1, - ACTIONS(5039), 1, + ACTIONS(5227), 1, + anon_sym_LPAREN, + ACTIONS(5231), 1, anon_sym_POUND_QMARK, - ACTIONS(5041), 1, + ACTIONS(5233), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5043), 1, + ACTIONS(5235), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5045), 1, + ACTIONS(5237), 1, anon_sym_SQUOTE, - ACTIONS(5047), 1, + ACTIONS(5239), 1, anon_sym_BQUOTE, - ACTIONS(5049), 1, + ACTIONS(5241), 1, anon_sym_COMMA_AT, - ACTIONS(5051), 1, + ACTIONS(5243), 1, anon_sym_COMMA, - ACTIONS(5053), 1, + ACTIONS(5245), 1, anon_sym_cl, - ACTIONS(5285), 1, + ACTIONS(5325), 1, sym_self_referential_reader_macro, - STATE(2823), 1, + STATE(1687), 1, + sym__bare_set_lit, + STATE(1734), 1, + sym_sym_lit, + STATE(2799), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, - sym__bare_set_lit, - STATE(3078), 1, - sym_sym_lit, - ACTIONS(5037), 2, + ACTIONS(5229), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5055), 2, + ACTIONS(5247), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(5059), 2, + ACTIONS(5251), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5061), 2, + ACTIONS(5253), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5281), 2, + ACTIONS(5321), 2, sym__ws, sym_comment, - ACTIONS(5283), 3, + ACTIONS(5323), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(479), 3, + STATE(490), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2991), 3, + STATE(1680), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2940), 19, + STATE(1725), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -55251,7 +54824,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [10935] = 35, + [10937] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -55260,78 +54833,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(5023), 1, + ACTIONS(5213), 1, anon_sym_POUND, - ACTIONS(5027), 1, + ACTIONS(5217), 1, aux_sym_num_lit_token1, - ACTIONS(5029), 1, + ACTIONS(5219), 1, anon_sym_COLON, - ACTIONS(5031), 1, + ACTIONS(5221), 1, anon_sym_COLON_COLON, - ACTIONS(5033), 1, + ACTIONS(5223), 1, anon_sym_DQUOTE, - ACTIONS(5035), 1, + ACTIONS(5225), 1, aux_sym_sym_lit_token1, - ACTIONS(5039), 1, + ACTIONS(5227), 1, + anon_sym_LPAREN, + ACTIONS(5231), 1, anon_sym_POUND_QMARK, - ACTIONS(5041), 1, + ACTIONS(5233), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5043), 1, + ACTIONS(5235), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5045), 1, + ACTIONS(5237), 1, anon_sym_SQUOTE, - ACTIONS(5047), 1, + ACTIONS(5239), 1, anon_sym_BQUOTE, - ACTIONS(5049), 1, + ACTIONS(5241), 1, anon_sym_COMMA_AT, - ACTIONS(5051), 1, + ACTIONS(5243), 1, anon_sym_COMMA, - ACTIONS(5053), 1, + ACTIONS(5245), 1, anon_sym_cl, - ACTIONS(5291), 1, + ACTIONS(5329), 1, sym_self_referential_reader_macro, - STATE(2823), 1, + STATE(1687), 1, + sym__bare_set_lit, + STATE(1734), 1, + sym_sym_lit, + STATE(2799), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, - sym__bare_set_lit, - STATE(3078), 1, - sym_sym_lit, - ACTIONS(5037), 2, + ACTIONS(4763), 2, + sym__ws, + sym_comment, + ACTIONS(5229), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5055), 2, + ACTIONS(5247), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(5059), 2, + ACTIONS(5251), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5061), 2, + ACTIONS(5253), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5287), 2, - sym__ws, - sym_comment, - ACTIONS(5289), 3, + ACTIONS(5327), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(480), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2991), 3, + STATE(1680), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2936), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1728), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -55351,7 +54924,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [11070] = 35, + [11072] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -55360,78 +54933,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(5023), 1, + ACTIONS(5213), 1, anon_sym_POUND, - ACTIONS(5027), 1, + ACTIONS(5217), 1, aux_sym_num_lit_token1, - ACTIONS(5029), 1, + ACTIONS(5219), 1, anon_sym_COLON, - ACTIONS(5031), 1, + ACTIONS(5221), 1, anon_sym_COLON_COLON, - ACTIONS(5033), 1, + ACTIONS(5223), 1, anon_sym_DQUOTE, - ACTIONS(5035), 1, + ACTIONS(5225), 1, aux_sym_sym_lit_token1, - ACTIONS(5039), 1, + ACTIONS(5227), 1, + anon_sym_LPAREN, + ACTIONS(5231), 1, anon_sym_POUND_QMARK, - ACTIONS(5041), 1, + ACTIONS(5233), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5043), 1, + ACTIONS(5235), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5045), 1, + ACTIONS(5237), 1, anon_sym_SQUOTE, - ACTIONS(5047), 1, + ACTIONS(5239), 1, anon_sym_BQUOTE, - ACTIONS(5049), 1, + ACTIONS(5241), 1, anon_sym_COMMA_AT, - ACTIONS(5051), 1, + ACTIONS(5243), 1, anon_sym_COMMA, - ACTIONS(5053), 1, + ACTIONS(5245), 1, anon_sym_cl, - ACTIONS(5297), 1, + ACTIONS(5335), 1, sym_self_referential_reader_macro, - STATE(2823), 1, + STATE(1687), 1, + sym__bare_set_lit, + STATE(1734), 1, + sym_sym_lit, + STATE(2799), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, - sym__bare_set_lit, - STATE(3078), 1, - sym_sym_lit, - ACTIONS(5037), 2, + ACTIONS(5229), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5055), 2, + ACTIONS(5247), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(5059), 2, + ACTIONS(5251), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5061), 2, + ACTIONS(5253), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5293), 2, + ACTIONS(5331), 2, sym__ws, sym_comment, - ACTIONS(5295), 3, + ACTIONS(5333), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(481), 3, + STATE(493), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2991), 3, + STATE(1680), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2935), 19, + STATE(1730), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -55451,7 +55024,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [11205] = 35, + [11207] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -55460,78 +55033,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(636), 1, + ACTIONS(5213), 1, anon_sym_POUND, - ACTIONS(640), 1, + ACTIONS(5217), 1, aux_sym_num_lit_token1, - ACTIONS(644), 1, + ACTIONS(5219), 1, + anon_sym_COLON, + ACTIONS(5221), 1, anon_sym_COLON_COLON, - ACTIONS(646), 1, + ACTIONS(5223), 1, anon_sym_DQUOTE, - ACTIONS(648), 1, + ACTIONS(5225), 1, aux_sym_sym_lit_token1, - ACTIONS(652), 1, + ACTIONS(5227), 1, + anon_sym_LPAREN, + ACTIONS(5231), 1, anon_sym_POUND_QMARK, - ACTIONS(654), 1, + ACTIONS(5233), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(656), 1, + ACTIONS(5235), 1, anon_sym_POUND_SQUOTE, - ACTIONS(658), 1, + ACTIONS(5237), 1, anon_sym_SQUOTE, - ACTIONS(660), 1, + ACTIONS(5239), 1, anon_sym_BQUOTE, - ACTIONS(662), 1, + ACTIONS(5241), 1, anon_sym_COMMA_AT, - ACTIONS(664), 1, + ACTIONS(5243), 1, anon_sym_COMMA, - ACTIONS(4410), 1, - anon_sym_COLON, - ACTIONS(4412), 1, - anon_sym_LPAREN, - ACTIONS(4414), 1, + ACTIONS(5245), 1, anon_sym_cl, - ACTIONS(5301), 1, + ACTIONS(5339), 1, sym_self_referential_reader_macro, - STATE(1186), 1, - sym_sym_lit, - STATE(1191), 1, + STATE(1687), 1, sym__bare_set_lit, - STATE(2827), 1, + STATE(1734), 1, + sym_sym_lit, + STATE(2799), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(650), 2, + ACTIONS(4763), 2, + sym__ws, + sym_comment, + ACTIONS(5229), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(666), 2, + ACTIONS(5247), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(670), 2, + ACTIONS(5251), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(672), 2, + ACTIONS(5253), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, - sym__ws, - sym_comment, - ACTIONS(5299), 3, + ACTIONS(5337), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1187), 3, + STATE(1680), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1208), 19, + STATE(1627), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -55551,7 +55124,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [11340] = 35, + [11342] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -55560,78 +55133,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(636), 1, + ACTIONS(5213), 1, anon_sym_POUND, - ACTIONS(640), 1, + ACTIONS(5217), 1, aux_sym_num_lit_token1, - ACTIONS(644), 1, + ACTIONS(5219), 1, + anon_sym_COLON, + ACTIONS(5221), 1, anon_sym_COLON_COLON, - ACTIONS(646), 1, + ACTIONS(5223), 1, anon_sym_DQUOTE, - ACTIONS(648), 1, + ACTIONS(5225), 1, aux_sym_sym_lit_token1, - ACTIONS(652), 1, + ACTIONS(5227), 1, + anon_sym_LPAREN, + ACTIONS(5231), 1, anon_sym_POUND_QMARK, - ACTIONS(654), 1, + ACTIONS(5233), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(656), 1, + ACTIONS(5235), 1, anon_sym_POUND_SQUOTE, - ACTIONS(658), 1, + ACTIONS(5237), 1, anon_sym_SQUOTE, - ACTIONS(660), 1, + ACTIONS(5239), 1, anon_sym_BQUOTE, - ACTIONS(662), 1, + ACTIONS(5241), 1, anon_sym_COMMA_AT, - ACTIONS(664), 1, + ACTIONS(5243), 1, anon_sym_COMMA, - ACTIONS(4410), 1, - anon_sym_COLON, - ACTIONS(4412), 1, - anon_sym_LPAREN, - ACTIONS(4414), 1, + ACTIONS(5245), 1, anon_sym_cl, - ACTIONS(5305), 1, + ACTIONS(5343), 1, sym_self_referential_reader_macro, - STATE(1186), 1, - sym_sym_lit, - STATE(1191), 1, + STATE(1687), 1, sym__bare_set_lit, - STATE(2827), 1, + STATE(1734), 1, + sym_sym_lit, + STATE(2799), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(650), 2, + ACTIONS(4763), 2, + sym__ws, + sym_comment, + ACTIONS(5229), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(666), 2, + ACTIONS(5247), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(670), 2, + ACTIONS(5251), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(672), 2, + ACTIONS(5253), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, - sym__ws, - sym_comment, - ACTIONS(5303), 3, + ACTIONS(5341), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1187), 3, + STATE(1680), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1133), 19, + STATE(1628), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -55651,7 +55224,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [11475] = 35, + [11477] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -55660,178 +55233,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(636), 1, + ACTIONS(5213), 1, anon_sym_POUND, - ACTIONS(640), 1, + ACTIONS(5217), 1, aux_sym_num_lit_token1, - ACTIONS(644), 1, + ACTIONS(5219), 1, + anon_sym_COLON, + ACTIONS(5221), 1, anon_sym_COLON_COLON, - ACTIONS(646), 1, + ACTIONS(5223), 1, anon_sym_DQUOTE, - ACTIONS(648), 1, + ACTIONS(5225), 1, aux_sym_sym_lit_token1, - ACTIONS(652), 1, + ACTIONS(5227), 1, + anon_sym_LPAREN, + ACTIONS(5231), 1, anon_sym_POUND_QMARK, - ACTIONS(654), 1, + ACTIONS(5233), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(656), 1, + ACTIONS(5235), 1, anon_sym_POUND_SQUOTE, - ACTIONS(658), 1, + ACTIONS(5237), 1, anon_sym_SQUOTE, - ACTIONS(660), 1, + ACTIONS(5239), 1, anon_sym_BQUOTE, - ACTIONS(662), 1, + ACTIONS(5241), 1, anon_sym_COMMA_AT, - ACTIONS(664), 1, + ACTIONS(5243), 1, anon_sym_COMMA, - ACTIONS(4410), 1, - anon_sym_COLON, - ACTIONS(4412), 1, - anon_sym_LPAREN, - ACTIONS(4414), 1, + ACTIONS(5245), 1, anon_sym_cl, - ACTIONS(5311), 1, + ACTIONS(5347), 1, sym_self_referential_reader_macro, - STATE(1186), 1, - sym_sym_lit, - STATE(1191), 1, + STATE(1687), 1, sym__bare_set_lit, - STATE(2827), 1, + STATE(1734), 1, + sym_sym_lit, + STATE(2799), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(650), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(666), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(670), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(672), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5307), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(5309), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(488), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1187), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1201), 19, - sym__form, - sym_num_lit, - sym_kwd_lit, - sym_str_lit, - sym_char_lit, - sym_list_lit, - sym_vec_lit, - sym_set_lit, - sym_read_cond_lit, - sym_splicing_read_cond_lit, - sym_var_quoting_lit, - sym_quoting_lit, - sym_syn_quoting_lit, - sym_unquote_splicing_lit, - sym_unquoting_lit, - sym_path_lit, - sym_package_lit, - sym_include_reader_macro, - sym_complex_num_lit, - [11610] = 35, - ACTIONS(9), 1, - anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(636), 1, - anon_sym_POUND, - ACTIONS(640), 1, - aux_sym_num_lit_token1, - ACTIONS(644), 1, - anon_sym_COLON_COLON, - ACTIONS(646), 1, - anon_sym_DQUOTE, - ACTIONS(648), 1, - aux_sym_sym_lit_token1, - ACTIONS(652), 1, - anon_sym_POUND_QMARK, - ACTIONS(654), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(656), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(658), 1, - anon_sym_SQUOTE, - ACTIONS(660), 1, - anon_sym_BQUOTE, - ACTIONS(662), 1, - anon_sym_COMMA_AT, - ACTIONS(664), 1, - anon_sym_COMMA, - ACTIONS(4410), 1, - anon_sym_COLON, - ACTIONS(4412), 1, - anon_sym_LPAREN, - ACTIONS(4414), 1, - anon_sym_cl, - ACTIONS(5315), 1, - sym_self_referential_reader_macro, - STATE(1186), 1, - sym_sym_lit, - STATE(1191), 1, - sym__bare_set_lit, - STATE(2827), 1, - aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, - sym_old_meta_lit, - STATE(2901), 1, - sym__metadata_lit, - ACTIONS(650), 2, + ACTIONS(5229), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(666), 2, + ACTIONS(5247), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(670), 2, + ACTIONS(5251), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(672), 2, + ACTIONS(5253), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, - sym__ws, - sym_comment, - ACTIONS(5313), 3, + ACTIONS(5345), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1187), 3, + STATE(1680), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1200), 19, + STATE(1647), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -55851,7 +55324,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [11745] = 35, + [11612] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -55860,78 +55333,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(636), 1, + ACTIONS(5213), 1, anon_sym_POUND, - ACTIONS(640), 1, + ACTIONS(5217), 1, aux_sym_num_lit_token1, - ACTIONS(644), 1, + ACTIONS(5219), 1, + anon_sym_COLON, + ACTIONS(5221), 1, anon_sym_COLON_COLON, - ACTIONS(646), 1, + ACTIONS(5223), 1, anon_sym_DQUOTE, - ACTIONS(648), 1, + ACTIONS(5225), 1, aux_sym_sym_lit_token1, - ACTIONS(652), 1, + ACTIONS(5227), 1, + anon_sym_LPAREN, + ACTIONS(5231), 1, anon_sym_POUND_QMARK, - ACTIONS(654), 1, + ACTIONS(5233), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(656), 1, + ACTIONS(5235), 1, anon_sym_POUND_SQUOTE, - ACTIONS(658), 1, + ACTIONS(5237), 1, anon_sym_SQUOTE, - ACTIONS(660), 1, + ACTIONS(5239), 1, anon_sym_BQUOTE, - ACTIONS(662), 1, + ACTIONS(5241), 1, anon_sym_COMMA_AT, - ACTIONS(664), 1, + ACTIONS(5243), 1, anon_sym_COMMA, - ACTIONS(4410), 1, - anon_sym_COLON, - ACTIONS(4412), 1, - anon_sym_LPAREN, - ACTIONS(4414), 1, + ACTIONS(5245), 1, anon_sym_cl, - ACTIONS(5321), 1, + ACTIONS(5353), 1, sym_self_referential_reader_macro, - STATE(1186), 1, - sym_sym_lit, - STATE(1191), 1, + STATE(1687), 1, sym__bare_set_lit, - STATE(2827), 1, + STATE(1734), 1, + sym_sym_lit, + STATE(2799), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(650), 2, + ACTIONS(5229), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(666), 2, + ACTIONS(5247), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(670), 2, + ACTIONS(5251), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(672), 2, + ACTIONS(5253), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5317), 2, + ACTIONS(5349), 2, sym__ws, sym_comment, - ACTIONS(5319), 3, + ACTIONS(5351), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(489), 3, + STATE(494), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1187), 3, + STATE(1680), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1199), 19, + STATE(1661), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -55951,7 +55424,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [11880] = 35, + [11747] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -55960,78 +55433,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(636), 1, + ACTIONS(5213), 1, anon_sym_POUND, - ACTIONS(640), 1, + ACTIONS(5217), 1, aux_sym_num_lit_token1, - ACTIONS(644), 1, + ACTIONS(5219), 1, + anon_sym_COLON, + ACTIONS(5221), 1, anon_sym_COLON_COLON, - ACTIONS(646), 1, + ACTIONS(5223), 1, anon_sym_DQUOTE, - ACTIONS(648), 1, + ACTIONS(5225), 1, aux_sym_sym_lit_token1, - ACTIONS(652), 1, + ACTIONS(5227), 1, + anon_sym_LPAREN, + ACTIONS(5231), 1, anon_sym_POUND_QMARK, - ACTIONS(654), 1, + ACTIONS(5233), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(656), 1, + ACTIONS(5235), 1, anon_sym_POUND_SQUOTE, - ACTIONS(658), 1, + ACTIONS(5237), 1, anon_sym_SQUOTE, - ACTIONS(660), 1, + ACTIONS(5239), 1, anon_sym_BQUOTE, - ACTIONS(662), 1, + ACTIONS(5241), 1, anon_sym_COMMA_AT, - ACTIONS(664), 1, + ACTIONS(5243), 1, anon_sym_COMMA, - ACTIONS(4410), 1, - anon_sym_COLON, - ACTIONS(4412), 1, - anon_sym_LPAREN, - ACTIONS(4414), 1, + ACTIONS(5245), 1, anon_sym_cl, - ACTIONS(5325), 1, + ACTIONS(5359), 1, sym_self_referential_reader_macro, - STATE(1186), 1, - sym_sym_lit, - STATE(1191), 1, + STATE(1687), 1, sym__bare_set_lit, - STATE(2827), 1, + STATE(1734), 1, + sym_sym_lit, + STATE(2799), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(650), 2, + ACTIONS(5229), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(666), 2, + ACTIONS(5247), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(670), 2, + ACTIONS(5251), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(672), 2, + ACTIONS(5253), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(5355), 2, sym__ws, sym_comment, - ACTIONS(5323), 3, + ACTIONS(5357), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1187), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(496), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1198), 19, + STATE(1680), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1666), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -56051,7 +55524,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [12015] = 35, + [11882] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -56060,78 +55533,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(636), 1, + ACTIONS(5213), 1, anon_sym_POUND, - ACTIONS(640), 1, + ACTIONS(5217), 1, aux_sym_num_lit_token1, - ACTIONS(644), 1, + ACTIONS(5219), 1, + anon_sym_COLON, + ACTIONS(5221), 1, anon_sym_COLON_COLON, - ACTIONS(646), 1, + ACTIONS(5223), 1, anon_sym_DQUOTE, - ACTIONS(648), 1, + ACTIONS(5225), 1, aux_sym_sym_lit_token1, - ACTIONS(652), 1, + ACTIONS(5227), 1, + anon_sym_LPAREN, + ACTIONS(5231), 1, anon_sym_POUND_QMARK, - ACTIONS(654), 1, + ACTIONS(5233), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(656), 1, + ACTIONS(5235), 1, anon_sym_POUND_SQUOTE, - ACTIONS(658), 1, + ACTIONS(5237), 1, anon_sym_SQUOTE, - ACTIONS(660), 1, + ACTIONS(5239), 1, anon_sym_BQUOTE, - ACTIONS(662), 1, + ACTIONS(5241), 1, anon_sym_COMMA_AT, - ACTIONS(664), 1, + ACTIONS(5243), 1, anon_sym_COMMA, - ACTIONS(4410), 1, - anon_sym_COLON, - ACTIONS(4412), 1, - anon_sym_LPAREN, - ACTIONS(4414), 1, + ACTIONS(5245), 1, anon_sym_cl, - ACTIONS(5329), 1, + ACTIONS(5363), 1, sym_self_referential_reader_macro, - STATE(1186), 1, - sym_sym_lit, - STATE(1191), 1, + STATE(1687), 1, sym__bare_set_lit, - STATE(2827), 1, + STATE(1734), 1, + sym_sym_lit, + STATE(2799), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(650), 2, + ACTIONS(4763), 2, + sym__ws, + sym_comment, + ACTIONS(5229), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(666), 2, + ACTIONS(5247), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(670), 2, + ACTIONS(5251), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(672), 2, + ACTIONS(5253), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, - sym__ws, - sym_comment, - ACTIONS(5327), 3, + ACTIONS(5361), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1187), 3, + STATE(1680), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1194), 19, + STATE(1689), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -56151,7 +55624,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [12150] = 35, + [12017] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -56160,78 +55633,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(636), 1, + ACTIONS(5213), 1, anon_sym_POUND, - ACTIONS(640), 1, + ACTIONS(5217), 1, aux_sym_num_lit_token1, - ACTIONS(644), 1, + ACTIONS(5219), 1, + anon_sym_COLON, + ACTIONS(5221), 1, anon_sym_COLON_COLON, - ACTIONS(646), 1, + ACTIONS(5223), 1, anon_sym_DQUOTE, - ACTIONS(648), 1, + ACTIONS(5225), 1, aux_sym_sym_lit_token1, - ACTIONS(652), 1, + ACTIONS(5227), 1, + anon_sym_LPAREN, + ACTIONS(5231), 1, anon_sym_POUND_QMARK, - ACTIONS(654), 1, + ACTIONS(5233), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(656), 1, + ACTIONS(5235), 1, anon_sym_POUND_SQUOTE, - ACTIONS(658), 1, + ACTIONS(5237), 1, anon_sym_SQUOTE, - ACTIONS(660), 1, + ACTIONS(5239), 1, anon_sym_BQUOTE, - ACTIONS(662), 1, + ACTIONS(5241), 1, anon_sym_COMMA_AT, - ACTIONS(664), 1, + ACTIONS(5243), 1, anon_sym_COMMA, - ACTIONS(4410), 1, - anon_sym_COLON, - ACTIONS(4412), 1, - anon_sym_LPAREN, - ACTIONS(4414), 1, + ACTIONS(5245), 1, anon_sym_cl, - ACTIONS(5335), 1, + ACTIONS(5367), 1, sym_self_referential_reader_macro, - STATE(1186), 1, - sym_sym_lit, - STATE(1191), 1, + STATE(1687), 1, sym__bare_set_lit, - STATE(2827), 1, + STATE(1734), 1, + sym_sym_lit, + STATE(2799), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(650), 2, + ACTIONS(4763), 2, + sym__ws, + sym_comment, + ACTIONS(5229), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(666), 2, + ACTIONS(5247), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(670), 2, + ACTIONS(5251), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(672), 2, + ACTIONS(5253), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5331), 2, - sym__ws, - sym_comment, - ACTIONS(5333), 3, + ACTIONS(5365), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(491), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1187), 3, + STATE(1680), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1180), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1677), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -56251,7 +55724,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [12285] = 35, + [12152] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -56260,78 +55733,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(636), 1, + ACTIONS(5213), 1, anon_sym_POUND, - ACTIONS(640), 1, + ACTIONS(5217), 1, aux_sym_num_lit_token1, - ACTIONS(644), 1, + ACTIONS(5219), 1, + anon_sym_COLON, + ACTIONS(5221), 1, anon_sym_COLON_COLON, - ACTIONS(646), 1, + ACTIONS(5223), 1, anon_sym_DQUOTE, - ACTIONS(648), 1, + ACTIONS(5225), 1, aux_sym_sym_lit_token1, - ACTIONS(652), 1, + ACTIONS(5227), 1, + anon_sym_LPAREN, + ACTIONS(5231), 1, anon_sym_POUND_QMARK, - ACTIONS(654), 1, + ACTIONS(5233), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(656), 1, + ACTIONS(5235), 1, anon_sym_POUND_SQUOTE, - ACTIONS(658), 1, + ACTIONS(5237), 1, anon_sym_SQUOTE, - ACTIONS(660), 1, + ACTIONS(5239), 1, anon_sym_BQUOTE, - ACTIONS(662), 1, + ACTIONS(5241), 1, anon_sym_COMMA_AT, - ACTIONS(664), 1, + ACTIONS(5243), 1, anon_sym_COMMA, - ACTIONS(4410), 1, - anon_sym_COLON, - ACTIONS(4412), 1, - anon_sym_LPAREN, - ACTIONS(4414), 1, + ACTIONS(5245), 1, anon_sym_cl, - ACTIONS(5341), 1, + ACTIONS(5373), 1, sym_self_referential_reader_macro, - STATE(1186), 1, - sym_sym_lit, - STATE(1191), 1, + STATE(1687), 1, sym__bare_set_lit, - STATE(2827), 1, + STATE(1734), 1, + sym_sym_lit, + STATE(2799), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(650), 2, + ACTIONS(5229), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(666), 2, + ACTIONS(5247), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(670), 2, + ACTIONS(5251), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(672), 2, + ACTIONS(5253), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5337), 2, + ACTIONS(5369), 2, sym__ws, sym_comment, - ACTIONS(5339), 3, + ACTIONS(5371), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(493), 3, + STATE(498), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1187), 3, + STATE(1680), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1178), 19, + STATE(1685), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -56351,7 +55824,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [12420] = 35, + [12287] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -56360,78 +55833,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(5023), 1, + ACTIONS(5213), 1, anon_sym_POUND, - ACTIONS(5027), 1, + ACTIONS(5217), 1, aux_sym_num_lit_token1, - ACTIONS(5029), 1, + ACTIONS(5219), 1, anon_sym_COLON, - ACTIONS(5031), 1, + ACTIONS(5221), 1, anon_sym_COLON_COLON, - ACTIONS(5033), 1, + ACTIONS(5223), 1, anon_sym_DQUOTE, - ACTIONS(5035), 1, + ACTIONS(5225), 1, aux_sym_sym_lit_token1, - ACTIONS(5039), 1, + ACTIONS(5227), 1, + anon_sym_LPAREN, + ACTIONS(5231), 1, anon_sym_POUND_QMARK, - ACTIONS(5041), 1, + ACTIONS(5233), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5043), 1, + ACTIONS(5235), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5045), 1, + ACTIONS(5237), 1, anon_sym_SQUOTE, - ACTIONS(5047), 1, + ACTIONS(5239), 1, anon_sym_BQUOTE, - ACTIONS(5049), 1, + ACTIONS(5241), 1, anon_sym_COMMA_AT, - ACTIONS(5051), 1, + ACTIONS(5243), 1, anon_sym_COMMA, - ACTIONS(5053), 1, + ACTIONS(5245), 1, anon_sym_cl, - ACTIONS(5345), 1, + ACTIONS(5377), 1, sym_self_referential_reader_macro, - STATE(2823), 1, + STATE(1687), 1, + sym__bare_set_lit, + STATE(1734), 1, + sym_sym_lit, + STATE(2799), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, - sym__bare_set_lit, - STATE(3078), 1, - sym_sym_lit, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(5037), 2, + ACTIONS(5229), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5055), 2, + ACTIONS(5247), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(5059), 2, + ACTIONS(5251), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5061), 2, + ACTIONS(5253), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5343), 3, + ACTIONS(5375), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2991), 3, + STATE(1680), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2537), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1713), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -56451,7 +55924,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [12555] = 35, + [12422] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -56460,78 +55933,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(636), 1, + ACTIONS(5213), 1, anon_sym_POUND, - ACTIONS(640), 1, + ACTIONS(5217), 1, aux_sym_num_lit_token1, - ACTIONS(644), 1, + ACTIONS(5219), 1, + anon_sym_COLON, + ACTIONS(5221), 1, anon_sym_COLON_COLON, - ACTIONS(646), 1, + ACTIONS(5223), 1, anon_sym_DQUOTE, - ACTIONS(648), 1, + ACTIONS(5225), 1, aux_sym_sym_lit_token1, - ACTIONS(652), 1, + ACTIONS(5227), 1, + anon_sym_LPAREN, + ACTIONS(5231), 1, anon_sym_POUND_QMARK, - ACTIONS(654), 1, + ACTIONS(5233), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(656), 1, + ACTIONS(5235), 1, anon_sym_POUND_SQUOTE, - ACTIONS(658), 1, + ACTIONS(5237), 1, anon_sym_SQUOTE, - ACTIONS(660), 1, + ACTIONS(5239), 1, anon_sym_BQUOTE, - ACTIONS(662), 1, + ACTIONS(5241), 1, anon_sym_COMMA_AT, - ACTIONS(664), 1, + ACTIONS(5243), 1, anon_sym_COMMA, - ACTIONS(4410), 1, - anon_sym_COLON, - ACTIONS(4412), 1, - anon_sym_LPAREN, - ACTIONS(4414), 1, + ACTIONS(5245), 1, anon_sym_cl, - ACTIONS(5349), 1, + ACTIONS(5383), 1, sym_self_referential_reader_macro, - STATE(1186), 1, - sym_sym_lit, - STATE(1191), 1, + STATE(1687), 1, sym__bare_set_lit, - STATE(2827), 1, + STATE(1734), 1, + sym_sym_lit, + STATE(2799), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(650), 2, + ACTIONS(5229), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(666), 2, + ACTIONS(5247), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(670), 2, + ACTIONS(5251), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(672), 2, + ACTIONS(5253), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(5379), 2, sym__ws, sym_comment, - ACTIONS(5347), 3, + ACTIONS(5381), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1187), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(499), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1176), 19, + STATE(1680), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1720), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -56551,7 +56024,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [12690] = 35, + [12557] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -56560,78 +56033,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(636), 1, + ACTIONS(5213), 1, anon_sym_POUND, - ACTIONS(640), 1, + ACTIONS(5217), 1, aux_sym_num_lit_token1, - ACTIONS(644), 1, + ACTIONS(5219), 1, + anon_sym_COLON, + ACTIONS(5221), 1, anon_sym_COLON_COLON, - ACTIONS(646), 1, + ACTIONS(5223), 1, anon_sym_DQUOTE, - ACTIONS(648), 1, + ACTIONS(5225), 1, aux_sym_sym_lit_token1, - ACTIONS(652), 1, + ACTIONS(5227), 1, + anon_sym_LPAREN, + ACTIONS(5231), 1, anon_sym_POUND_QMARK, - ACTIONS(654), 1, + ACTIONS(5233), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(656), 1, + ACTIONS(5235), 1, anon_sym_POUND_SQUOTE, - ACTIONS(658), 1, + ACTIONS(5237), 1, anon_sym_SQUOTE, - ACTIONS(660), 1, + ACTIONS(5239), 1, anon_sym_BQUOTE, - ACTIONS(662), 1, + ACTIONS(5241), 1, anon_sym_COMMA_AT, - ACTIONS(664), 1, + ACTIONS(5243), 1, anon_sym_COMMA, - ACTIONS(4410), 1, - anon_sym_COLON, - ACTIONS(4412), 1, - anon_sym_LPAREN, - ACTIONS(4414), 1, + ACTIONS(5245), 1, anon_sym_cl, - ACTIONS(5353), 1, + ACTIONS(5387), 1, sym_self_referential_reader_macro, - STATE(1186), 1, - sym_sym_lit, - STATE(1191), 1, + STATE(1687), 1, sym__bare_set_lit, - STATE(2827), 1, + STATE(1734), 1, + sym_sym_lit, + STATE(2799), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(650), 2, + ACTIONS(4763), 2, + sym__ws, + sym_comment, + ACTIONS(5229), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(666), 2, + ACTIONS(5247), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(670), 2, + ACTIONS(5251), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(672), 2, + ACTIONS(5253), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, - sym__ws, - sym_comment, - ACTIONS(5351), 3, + ACTIONS(5385), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1187), 3, + STATE(1680), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1175), 19, + STATE(1724), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -56651,7 +56124,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [12825] = 35, + [12692] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -56660,78 +56133,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(636), 1, + ACTIONS(5213), 1, anon_sym_POUND, - ACTIONS(640), 1, + ACTIONS(5217), 1, aux_sym_num_lit_token1, - ACTIONS(644), 1, + ACTIONS(5219), 1, + anon_sym_COLON, + ACTIONS(5221), 1, anon_sym_COLON_COLON, - ACTIONS(646), 1, + ACTIONS(5223), 1, anon_sym_DQUOTE, - ACTIONS(648), 1, + ACTIONS(5225), 1, aux_sym_sym_lit_token1, - ACTIONS(652), 1, + ACTIONS(5227), 1, + anon_sym_LPAREN, + ACTIONS(5231), 1, anon_sym_POUND_QMARK, - ACTIONS(654), 1, + ACTIONS(5233), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(656), 1, + ACTIONS(5235), 1, anon_sym_POUND_SQUOTE, - ACTIONS(658), 1, + ACTIONS(5237), 1, anon_sym_SQUOTE, - ACTIONS(660), 1, + ACTIONS(5239), 1, anon_sym_BQUOTE, - ACTIONS(662), 1, + ACTIONS(5241), 1, anon_sym_COMMA_AT, - ACTIONS(664), 1, + ACTIONS(5243), 1, anon_sym_COMMA, - ACTIONS(4410), 1, - anon_sym_COLON, - ACTIONS(4412), 1, - anon_sym_LPAREN, - ACTIONS(4414), 1, + ACTIONS(5245), 1, anon_sym_cl, - ACTIONS(5359), 1, + ACTIONS(5391), 1, sym_self_referential_reader_macro, - STATE(1186), 1, - sym_sym_lit, - STATE(1191), 1, + STATE(1687), 1, sym__bare_set_lit, - STATE(2827), 1, + STATE(1734), 1, + sym_sym_lit, + STATE(2799), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(650), 2, + ACTIONS(4763), 2, + sym__ws, + sym_comment, + ACTIONS(5229), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(666), 2, + ACTIONS(5247), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(670), 2, + ACTIONS(5251), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(672), 2, + ACTIONS(5253), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5355), 2, - sym__ws, - sym_comment, - ACTIONS(5357), 3, + ACTIONS(5389), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(494), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1187), 3, + STATE(1680), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1172), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1731), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -56751,7 +56224,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [12960] = 35, + [12827] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -56760,78 +56233,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(636), 1, + ACTIONS(4991), 1, anon_sym_POUND, - ACTIONS(640), 1, + ACTIONS(4995), 1, aux_sym_num_lit_token1, - ACTIONS(644), 1, + ACTIONS(4997), 1, + anon_sym_COLON, + ACTIONS(4999), 1, anon_sym_COLON_COLON, - ACTIONS(646), 1, + ACTIONS(5001), 1, anon_sym_DQUOTE, - ACTIONS(648), 1, + ACTIONS(5003), 1, aux_sym_sym_lit_token1, - ACTIONS(652), 1, + ACTIONS(5005), 1, + anon_sym_LPAREN, + ACTIONS(5009), 1, anon_sym_POUND_QMARK, - ACTIONS(654), 1, + ACTIONS(5011), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(656), 1, + ACTIONS(5013), 1, anon_sym_POUND_SQUOTE, - ACTIONS(658), 1, + ACTIONS(5015), 1, anon_sym_SQUOTE, - ACTIONS(660), 1, + ACTIONS(5017), 1, anon_sym_BQUOTE, - ACTIONS(662), 1, - anon_sym_COMMA_AT, - ACTIONS(664), 1, - anon_sym_COMMA, - ACTIONS(4410), 1, - anon_sym_COLON, - ACTIONS(4412), 1, - anon_sym_LPAREN, - ACTIONS(4414), 1, + ACTIONS(5019), 1, anon_sym_cl, - ACTIONS(5363), 1, + ACTIONS(5067), 1, sym_self_referential_reader_macro, - STATE(1186), 1, - sym_sym_lit, - STATE(1191), 1, - sym__bare_set_lit, - STATE(2827), 1, + ACTIONS(5395), 1, + anon_sym_COMMA_AT, + ACTIONS(5397), 1, + anon_sym_COMMA, + STATE(2818), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(650), 2, + STATE(2986), 1, + sym__bare_set_lit, + STATE(3094), 1, + sym_sym_lit, + ACTIONS(5007), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(666), 2, + ACTIONS(5021), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(670), 2, + ACTIONS(5025), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(672), 2, + ACTIONS(5027), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(5393), 2, sym__ws, sym_comment, - ACTIONS(5361), 3, + ACTIONS(5039), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1187), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(506), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1171), 19, + STATE(2985), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2976), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -56851,7 +56324,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [13095] = 35, + [12962] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -56860,78 +56333,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4889), 1, - sym_self_referential_reader_macro, - ACTIONS(5023), 1, + ACTIONS(4991), 1, anon_sym_POUND, - ACTIONS(5027), 1, + ACTIONS(4995), 1, aux_sym_num_lit_token1, - ACTIONS(5029), 1, + ACTIONS(4997), 1, anon_sym_COLON, - ACTIONS(5031), 1, + ACTIONS(4999), 1, anon_sym_COLON_COLON, - ACTIONS(5033), 1, + ACTIONS(5001), 1, anon_sym_DQUOTE, - ACTIONS(5035), 1, + ACTIONS(5003), 1, aux_sym_sym_lit_token1, - ACTIONS(5039), 1, + ACTIONS(5005), 1, + anon_sym_LPAREN, + ACTIONS(5009), 1, anon_sym_POUND_QMARK, - ACTIONS(5041), 1, + ACTIONS(5011), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5043), 1, + ACTIONS(5013), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5045), 1, + ACTIONS(5015), 1, anon_sym_SQUOTE, - ACTIONS(5047), 1, + ACTIONS(5017), 1, anon_sym_BQUOTE, - ACTIONS(5049), 1, + ACTIONS(5019), 1, + anon_sym_cl, + ACTIONS(5075), 1, + sym_self_referential_reader_macro, + ACTIONS(5395), 1, anon_sym_COMMA_AT, - ACTIONS(5051), 1, + ACTIONS(5397), 1, anon_sym_COMMA, - ACTIONS(5053), 1, - anon_sym_cl, - STATE(2823), 1, + STATE(2818), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, + STATE(2986), 1, sym__bare_set_lit, - STATE(3078), 1, + STATE(3094), 1, sym_sym_lit, - ACTIONS(5037), 2, + ACTIONS(5007), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5055), 2, + ACTIONS(5021), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(5059), 2, + ACTIONS(5025), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5061), 2, + ACTIONS(5027), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5365), 2, + ACTIONS(5399), 2, sym__ws, sym_comment, - ACTIONS(4887), 3, + ACTIONS(5073), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(497), 3, + STATE(507), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2991), 3, + STATE(2985), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2523), 19, + STATE(2907), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -56951,7 +56424,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [13230] = 35, + [13097] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -56960,78 +56433,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(636), 1, + ACTIONS(4991), 1, anon_sym_POUND, - ACTIONS(640), 1, + ACTIONS(4995), 1, aux_sym_num_lit_token1, - ACTIONS(644), 1, + ACTIONS(4997), 1, + anon_sym_COLON, + ACTIONS(4999), 1, anon_sym_COLON_COLON, - ACTIONS(646), 1, + ACTIONS(5001), 1, anon_sym_DQUOTE, - ACTIONS(648), 1, + ACTIONS(5003), 1, aux_sym_sym_lit_token1, - ACTIONS(652), 1, + ACTIONS(5005), 1, + anon_sym_LPAREN, + ACTIONS(5009), 1, anon_sym_POUND_QMARK, - ACTIONS(654), 1, + ACTIONS(5011), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(656), 1, + ACTIONS(5013), 1, anon_sym_POUND_SQUOTE, - ACTIONS(658), 1, + ACTIONS(5015), 1, anon_sym_SQUOTE, - ACTIONS(660), 1, + ACTIONS(5017), 1, anon_sym_BQUOTE, - ACTIONS(662), 1, - anon_sym_COMMA_AT, - ACTIONS(664), 1, - anon_sym_COMMA, - ACTIONS(4410), 1, - anon_sym_COLON, - ACTIONS(4412), 1, - anon_sym_LPAREN, - ACTIONS(4414), 1, + ACTIONS(5019), 1, anon_sym_cl, - ACTIONS(5371), 1, + ACTIONS(5081), 1, sym_self_referential_reader_macro, - STATE(1186), 1, - sym_sym_lit, - STATE(1191), 1, - sym__bare_set_lit, - STATE(2827), 1, + ACTIONS(5395), 1, + anon_sym_COMMA_AT, + ACTIONS(5397), 1, + anon_sym_COMMA, + STATE(2818), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(650), 2, + STATE(2986), 1, + sym__bare_set_lit, + STATE(3094), 1, + sym_sym_lit, + ACTIONS(5007), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(666), 2, + ACTIONS(5021), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(670), 2, + ACTIONS(5025), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(672), 2, + ACTIONS(5027), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5367), 2, + ACTIONS(5401), 2, sym__ws, sym_comment, - ACTIONS(5369), 3, + ACTIONS(5079), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(498), 3, + STATE(508), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1187), 3, + STATE(2985), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1163), 19, + STATE(2964), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -57051,87 +56524,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [13365] = 35, + [13232] = 35, ACTIONS(9), 1, anon_sym_POUND_, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, + anon_sym_COLON_COLON, + ACTIONS(21), 1, + anon_sym_DQUOTE, + ACTIONS(23), 1, + aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, + anon_sym_POUND_QMARK, + ACTIONS(35), 1, + anon_sym_POUND_QMARK_AT, ACTIONS(47), 1, sym_block_comment, - ACTIONS(636), 1, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(5405), 1, anon_sym_POUND, - ACTIONS(640), 1, + ACTIONS(5409), 1, aux_sym_num_lit_token1, - ACTIONS(644), 1, - anon_sym_COLON_COLON, - ACTIONS(646), 1, - anon_sym_DQUOTE, - ACTIONS(648), 1, - aux_sym_sym_lit_token1, - ACTIONS(652), 1, - anon_sym_POUND_QMARK, - ACTIONS(654), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(656), 1, + ACTIONS(5413), 1, anon_sym_POUND_SQUOTE, - ACTIONS(658), 1, + ACTIONS(5415), 1, anon_sym_SQUOTE, - ACTIONS(660), 1, + ACTIONS(5417), 1, anon_sym_BQUOTE, - ACTIONS(662), 1, + ACTIONS(5419), 1, anon_sym_COMMA_AT, - ACTIONS(664), 1, + ACTIONS(5421), 1, anon_sym_COMMA, - ACTIONS(4410), 1, - anon_sym_COLON, - ACTIONS(4412), 1, - anon_sym_LPAREN, - ACTIONS(4414), 1, - anon_sym_cl, - ACTIONS(5377), 1, + ACTIONS(5423), 1, sym_self_referential_reader_macro, - STATE(1186), 1, + STATE(1771), 1, sym_sym_lit, - STATE(1191), 1, + STATE(1801), 1, sym__bare_set_lit, - STATE(2827), 1, + STATE(2810), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(650), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(666), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(670), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(672), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5373), 2, + ACTIONS(5403), 2, sym__ws, sym_comment, - ACTIONS(5375), 3, + ACTIONS(5411), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5425), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5407), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(499), 3, + STATE(509), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1187), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1162), 19, + STATE(1770), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -57151,87 +56624,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [13500] = 35, + [13367] = 35, ACTIONS(9), 1, anon_sym_POUND_, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, + anon_sym_COLON_COLON, + ACTIONS(21), 1, + anon_sym_DQUOTE, + ACTIONS(23), 1, + aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, + anon_sym_POUND_QMARK, + ACTIONS(35), 1, + anon_sym_POUND_QMARK_AT, ACTIONS(47), 1, sym_block_comment, - ACTIONS(636), 1, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(5405), 1, anon_sym_POUND, - ACTIONS(640), 1, + ACTIONS(5409), 1, aux_sym_num_lit_token1, - ACTIONS(644), 1, - anon_sym_COLON_COLON, - ACTIONS(646), 1, - anon_sym_DQUOTE, - ACTIONS(648), 1, - aux_sym_sym_lit_token1, - ACTIONS(652), 1, - anon_sym_POUND_QMARK, - ACTIONS(654), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(656), 1, + ACTIONS(5413), 1, anon_sym_POUND_SQUOTE, - ACTIONS(658), 1, + ACTIONS(5415), 1, anon_sym_SQUOTE, - ACTIONS(660), 1, + ACTIONS(5417), 1, anon_sym_BQUOTE, - ACTIONS(662), 1, + ACTIONS(5419), 1, anon_sym_COMMA_AT, - ACTIONS(664), 1, + ACTIONS(5421), 1, anon_sym_COMMA, - ACTIONS(4410), 1, - anon_sym_COLON, - ACTIONS(4412), 1, - anon_sym_LPAREN, - ACTIONS(4414), 1, - anon_sym_cl, - ACTIONS(5383), 1, + ACTIONS(5431), 1, sym_self_referential_reader_macro, - STATE(1186), 1, + STATE(1771), 1, sym_sym_lit, - STATE(1191), 1, + STATE(1801), 1, sym__bare_set_lit, - STATE(2827), 1, + STATE(2810), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(650), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(666), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(670), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(672), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5379), 2, + ACTIONS(5411), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5425), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5427), 2, sym__ws, sym_comment, - ACTIONS(5381), 3, + ACTIONS(5429), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(501), 3, + STATE(510), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1187), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1159), 19, + STATE(1785), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -57251,87 +56724,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [13635] = 35, + [13502] = 35, ACTIONS(9), 1, anon_sym_POUND_, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, + anon_sym_COLON_COLON, + ACTIONS(21), 1, + anon_sym_DQUOTE, + ACTIONS(23), 1, + aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, + anon_sym_POUND_QMARK, + ACTIONS(35), 1, + anon_sym_POUND_QMARK_AT, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4919), 1, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(4899), 1, sym_self_referential_reader_macro, - ACTIONS(5023), 1, + ACTIONS(5405), 1, anon_sym_POUND, - ACTIONS(5027), 1, + ACTIONS(5409), 1, aux_sym_num_lit_token1, - ACTIONS(5029), 1, - anon_sym_COLON, - ACTIONS(5031), 1, - anon_sym_COLON_COLON, - ACTIONS(5033), 1, - anon_sym_DQUOTE, - ACTIONS(5035), 1, - aux_sym_sym_lit_token1, - ACTIONS(5039), 1, - anon_sym_POUND_QMARK, - ACTIONS(5041), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(5043), 1, + ACTIONS(5413), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5045), 1, + ACTIONS(5415), 1, anon_sym_SQUOTE, - ACTIONS(5047), 1, + ACTIONS(5417), 1, anon_sym_BQUOTE, - ACTIONS(5049), 1, + ACTIONS(5419), 1, anon_sym_COMMA_AT, - ACTIONS(5051), 1, + ACTIONS(5421), 1, anon_sym_COMMA, - ACTIONS(5053), 1, - anon_sym_cl, - STATE(2823), 1, + STATE(1771), 1, + sym_sym_lit, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2810), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, - sym__bare_set_lit, - STATE(3078), 1, - sym_sym_lit, - ACTIONS(4801), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(5037), 2, + ACTIONS(5411), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5055), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(5059), 2, + ACTIONS(5425), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5061), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4917), 3, + ACTIONS(4897), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2991), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2516), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1821), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -57351,7 +56824,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [13770] = 35, + [13637] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -57360,78 +56833,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4923), 1, - sym_self_referential_reader_macro, - ACTIONS(5023), 1, + ACTIONS(4991), 1, anon_sym_POUND, - ACTIONS(5027), 1, + ACTIONS(4995), 1, aux_sym_num_lit_token1, - ACTIONS(5029), 1, + ACTIONS(4997), 1, anon_sym_COLON, - ACTIONS(5031), 1, + ACTIONS(4999), 1, anon_sym_COLON_COLON, - ACTIONS(5033), 1, + ACTIONS(5001), 1, anon_sym_DQUOTE, - ACTIONS(5035), 1, + ACTIONS(5003), 1, aux_sym_sym_lit_token1, - ACTIONS(5039), 1, + ACTIONS(5005), 1, + anon_sym_LPAREN, + ACTIONS(5009), 1, anon_sym_POUND_QMARK, - ACTIONS(5041), 1, + ACTIONS(5011), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5043), 1, + ACTIONS(5013), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5045), 1, + ACTIONS(5015), 1, anon_sym_SQUOTE, - ACTIONS(5047), 1, + ACTIONS(5017), 1, anon_sym_BQUOTE, - ACTIONS(5049), 1, + ACTIONS(5019), 1, + anon_sym_cl, + ACTIONS(5101), 1, + sym_self_referential_reader_macro, + ACTIONS(5395), 1, anon_sym_COMMA_AT, - ACTIONS(5051), 1, + ACTIONS(5397), 1, anon_sym_COMMA, - ACTIONS(5053), 1, - anon_sym_cl, - STATE(2823), 1, + STATE(2818), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, + STATE(2986), 1, sym__bare_set_lit, - STATE(3078), 1, + STATE(3094), 1, sym_sym_lit, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(5037), 2, + ACTIONS(5007), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5055), 2, + ACTIONS(5021), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(5059), 2, + ACTIONS(5025), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5061), 2, + ACTIONS(5027), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4921), 3, + ACTIONS(5099), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2991), 3, + STATE(2985), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2515), 19, + STATE(2922), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -57451,7 +56924,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [13905] = 35, + [13772] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -57460,78 +56933,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(636), 1, + ACTIONS(4991), 1, anon_sym_POUND, - ACTIONS(640), 1, + ACTIONS(4995), 1, aux_sym_num_lit_token1, - ACTIONS(644), 1, + ACTIONS(4997), 1, + anon_sym_COLON, + ACTIONS(4999), 1, anon_sym_COLON_COLON, - ACTIONS(646), 1, + ACTIONS(5001), 1, anon_sym_DQUOTE, - ACTIONS(648), 1, + ACTIONS(5003), 1, aux_sym_sym_lit_token1, - ACTIONS(652), 1, + ACTIONS(5005), 1, + anon_sym_LPAREN, + ACTIONS(5009), 1, anon_sym_POUND_QMARK, - ACTIONS(654), 1, + ACTIONS(5011), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(656), 1, + ACTIONS(5013), 1, anon_sym_POUND_SQUOTE, - ACTIONS(658), 1, + ACTIONS(5015), 1, anon_sym_SQUOTE, - ACTIONS(660), 1, + ACTIONS(5017), 1, anon_sym_BQUOTE, - ACTIONS(662), 1, - anon_sym_COMMA_AT, - ACTIONS(664), 1, - anon_sym_COMMA, - ACTIONS(4410), 1, - anon_sym_COLON, - ACTIONS(4412), 1, - anon_sym_LPAREN, - ACTIONS(4414), 1, + ACTIONS(5019), 1, anon_sym_cl, - ACTIONS(5387), 1, + ACTIONS(5105), 1, sym_self_referential_reader_macro, - STATE(1186), 1, - sym_sym_lit, - STATE(1191), 1, - sym__bare_set_lit, - STATE(2827), 1, + ACTIONS(5395), 1, + anon_sym_COMMA_AT, + ACTIONS(5397), 1, + anon_sym_COMMA, + STATE(2818), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(650), 2, + STATE(2986), 1, + sym__bare_set_lit, + STATE(3094), 1, + sym_sym_lit, + ACTIONS(4763), 2, + sym__ws, + sym_comment, + ACTIONS(5007), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(666), 2, + ACTIONS(5021), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(670), 2, + ACTIONS(5025), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(672), 2, + ACTIONS(5027), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, - sym__ws, - sym_comment, - ACTIONS(5385), 3, + ACTIONS(5103), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1187), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1155), 19, + STATE(2985), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2940), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -57551,7 +57024,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [14040] = 35, + [13907] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -57560,78 +57033,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(636), 1, + ACTIONS(4991), 1, anon_sym_POUND, - ACTIONS(640), 1, + ACTIONS(4995), 1, aux_sym_num_lit_token1, - ACTIONS(644), 1, + ACTIONS(4997), 1, + anon_sym_COLON, + ACTIONS(4999), 1, anon_sym_COLON_COLON, - ACTIONS(646), 1, + ACTIONS(5001), 1, anon_sym_DQUOTE, - ACTIONS(648), 1, + ACTIONS(5003), 1, aux_sym_sym_lit_token1, - ACTIONS(652), 1, + ACTIONS(5005), 1, + anon_sym_LPAREN, + ACTIONS(5009), 1, anon_sym_POUND_QMARK, - ACTIONS(654), 1, + ACTIONS(5011), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(656), 1, + ACTIONS(5013), 1, anon_sym_POUND_SQUOTE, - ACTIONS(658), 1, + ACTIONS(5015), 1, anon_sym_SQUOTE, - ACTIONS(660), 1, + ACTIONS(5017), 1, anon_sym_BQUOTE, - ACTIONS(662), 1, - anon_sym_COMMA_AT, - ACTIONS(664), 1, - anon_sym_COMMA, - ACTIONS(4410), 1, - anon_sym_COLON, - ACTIONS(4412), 1, - anon_sym_LPAREN, - ACTIONS(4414), 1, + ACTIONS(5019), 1, anon_sym_cl, - ACTIONS(5391), 1, + ACTIONS(5109), 1, sym_self_referential_reader_macro, - STATE(1186), 1, - sym_sym_lit, - STATE(1191), 1, - sym__bare_set_lit, - STATE(2827), 1, + ACTIONS(5395), 1, + anon_sym_COMMA_AT, + ACTIONS(5397), 1, + anon_sym_COMMA, + STATE(2818), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(650), 2, + STATE(2986), 1, + sym__bare_set_lit, + STATE(3094), 1, + sym_sym_lit, + ACTIONS(4763), 2, + sym__ws, + sym_comment, + ACTIONS(5007), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(666), 2, + ACTIONS(5021), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(670), 2, + ACTIONS(5025), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(672), 2, + ACTIONS(5027), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, - sym__ws, - sym_comment, - ACTIONS(5389), 3, + ACTIONS(5107), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1187), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1154), 19, + STATE(2985), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2963), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -57651,87 +57124,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [14175] = 35, + [14042] = 35, ACTIONS(9), 1, anon_sym_POUND_, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, + anon_sym_COLON_COLON, + ACTIONS(21), 1, + anon_sym_DQUOTE, + ACTIONS(23), 1, + aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, + anon_sym_POUND_QMARK, + ACTIONS(35), 1, + anon_sym_POUND_QMARK_AT, ACTIONS(47), 1, sym_block_comment, - ACTIONS(636), 1, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(5405), 1, anon_sym_POUND, - ACTIONS(640), 1, + ACTIONS(5409), 1, aux_sym_num_lit_token1, - ACTIONS(644), 1, - anon_sym_COLON_COLON, - ACTIONS(646), 1, - anon_sym_DQUOTE, - ACTIONS(648), 1, - aux_sym_sym_lit_token1, - ACTIONS(652), 1, - anon_sym_POUND_QMARK, - ACTIONS(654), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(656), 1, + ACTIONS(5413), 1, anon_sym_POUND_SQUOTE, - ACTIONS(658), 1, + ACTIONS(5415), 1, anon_sym_SQUOTE, - ACTIONS(660), 1, + ACTIONS(5417), 1, anon_sym_BQUOTE, - ACTIONS(662), 1, + ACTIONS(5419), 1, anon_sym_COMMA_AT, - ACTIONS(664), 1, + ACTIONS(5421), 1, anon_sym_COMMA, - ACTIONS(4410), 1, - anon_sym_COLON, - ACTIONS(4412), 1, - anon_sym_LPAREN, - ACTIONS(4414), 1, - anon_sym_cl, - ACTIONS(5395), 1, + ACTIONS(5435), 1, sym_self_referential_reader_macro, - STATE(1186), 1, + STATE(1771), 1, sym_sym_lit, - STATE(1191), 1, + STATE(1801), 1, sym__bare_set_lit, - STATE(2827), 1, + STATE(2810), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(650), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(666), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(670), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(672), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(5393), 3, + ACTIONS(5411), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5425), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5433), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1187), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1153), 19, + STATE(1865), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -57751,87 +57224,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [14310] = 35, + [14177] = 35, ACTIONS(9), 1, anon_sym_POUND_, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, + anon_sym_COLON_COLON, + ACTIONS(21), 1, + anon_sym_DQUOTE, + ACTIONS(23), 1, + aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, + anon_sym_POUND_QMARK, + ACTIONS(35), 1, + anon_sym_POUND_QMARK_AT, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2728), 1, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(5405), 1, anon_sym_POUND, - ACTIONS(2732), 1, + ACTIONS(5409), 1, aux_sym_num_lit_token1, - ACTIONS(2737), 1, - anon_sym_COLON_COLON, - ACTIONS(2739), 1, - anon_sym_DQUOTE, - ACTIONS(2741), 1, - aux_sym_sym_lit_token1, - ACTIONS(2756), 1, - anon_sym_POUND_QMARK, - ACTIONS(2758), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(2760), 1, + ACTIONS(5413), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2762), 1, + ACTIONS(5415), 1, anon_sym_SQUOTE, - ACTIONS(2764), 1, + ACTIONS(5417), 1, anon_sym_BQUOTE, - ACTIONS(2766), 1, + ACTIONS(5419), 1, anon_sym_COMMA_AT, - ACTIONS(2768), 1, + ACTIONS(5421), 1, anon_sym_COMMA, - ACTIONS(4793), 1, - anon_sym_COLON, - ACTIONS(4795), 1, - anon_sym_LPAREN, - ACTIONS(4797), 1, - anon_sym_cl, - ACTIONS(5399), 1, + ACTIONS(5439), 1, sym_self_referential_reader_macro, - STATE(1482), 1, - sym__bare_set_lit, - STATE(1484), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2813), 1, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2810), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(2754), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(2775), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2779), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(2781), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(5397), 3, + ACTIONS(5411), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5425), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5437), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1483), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1460), 19, + STATE(1866), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -57851,7 +57324,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [14445] = 35, + [14312] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -57860,78 +57333,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4981), 1, - sym_self_referential_reader_macro, - ACTIONS(5023), 1, + ACTIONS(4991), 1, anon_sym_POUND, - ACTIONS(5027), 1, + ACTIONS(4995), 1, aux_sym_num_lit_token1, - ACTIONS(5029), 1, + ACTIONS(4997), 1, anon_sym_COLON, - ACTIONS(5031), 1, + ACTIONS(4999), 1, anon_sym_COLON_COLON, - ACTIONS(5033), 1, + ACTIONS(5001), 1, anon_sym_DQUOTE, - ACTIONS(5035), 1, + ACTIONS(5003), 1, aux_sym_sym_lit_token1, - ACTIONS(5039), 1, + ACTIONS(5005), 1, + anon_sym_LPAREN, + ACTIONS(5009), 1, anon_sym_POUND_QMARK, - ACTIONS(5041), 1, + ACTIONS(5011), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5043), 1, + ACTIONS(5013), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5045), 1, + ACTIONS(5015), 1, anon_sym_SQUOTE, - ACTIONS(5047), 1, + ACTIONS(5017), 1, anon_sym_BQUOTE, - ACTIONS(5049), 1, + ACTIONS(5019), 1, + anon_sym_cl, + ACTIONS(5123), 1, + sym_self_referential_reader_macro, + ACTIONS(5395), 1, anon_sym_COMMA_AT, - ACTIONS(5051), 1, + ACTIONS(5397), 1, anon_sym_COMMA, - ACTIONS(5053), 1, - anon_sym_cl, - STATE(2823), 1, + STATE(2818), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, + STATE(2986), 1, sym__bare_set_lit, - STATE(3078), 1, + STATE(3094), 1, sym_sym_lit, - ACTIONS(5037), 2, + ACTIONS(5007), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5055), 2, + ACTIONS(5021), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(5059), 2, + ACTIONS(5025), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5061), 2, + ACTIONS(5027), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5401), 2, + ACTIONS(5441), 2, sym__ws, sym_comment, - ACTIONS(4979), 3, + ACTIONS(5121), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(506), 3, + STATE(515), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2991), 3, + STATE(2985), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2505), 19, + STATE(2966), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -57951,7 +57424,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [14580] = 35, + [14447] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -57960,78 +57433,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4993), 1, - sym_self_referential_reader_macro, - ACTIONS(5023), 1, + ACTIONS(4991), 1, anon_sym_POUND, - ACTIONS(5027), 1, + ACTIONS(4995), 1, aux_sym_num_lit_token1, - ACTIONS(5029), 1, + ACTIONS(4997), 1, anon_sym_COLON, - ACTIONS(5031), 1, + ACTIONS(4999), 1, anon_sym_COLON_COLON, - ACTIONS(5033), 1, + ACTIONS(5001), 1, anon_sym_DQUOTE, - ACTIONS(5035), 1, + ACTIONS(5003), 1, aux_sym_sym_lit_token1, - ACTIONS(5039), 1, + ACTIONS(5005), 1, + anon_sym_LPAREN, + ACTIONS(5009), 1, anon_sym_POUND_QMARK, - ACTIONS(5041), 1, + ACTIONS(5011), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5043), 1, + ACTIONS(5013), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5045), 1, + ACTIONS(5015), 1, anon_sym_SQUOTE, - ACTIONS(5047), 1, + ACTIONS(5017), 1, anon_sym_BQUOTE, - ACTIONS(5049), 1, + ACTIONS(5019), 1, + anon_sym_cl, + ACTIONS(5129), 1, + sym_self_referential_reader_macro, + ACTIONS(5395), 1, anon_sym_COMMA_AT, - ACTIONS(5051), 1, + ACTIONS(5397), 1, anon_sym_COMMA, - ACTIONS(5053), 1, - anon_sym_cl, - STATE(2823), 1, + STATE(2818), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, + STATE(2986), 1, sym__bare_set_lit, - STATE(3078), 1, + STATE(3094), 1, sym_sym_lit, - ACTIONS(5037), 2, + ACTIONS(5007), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5055), 2, + ACTIONS(5021), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(5059), 2, + ACTIONS(5025), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5061), 2, + ACTIONS(5027), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5403), 2, + ACTIONS(5443), 2, sym__ws, sym_comment, - ACTIONS(4991), 3, + ACTIONS(5127), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(507), 3, + STATE(517), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2991), 3, + STATE(2985), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2504), 19, + STATE(2970), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -58051,7 +57524,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [14715] = 35, + [14582] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -58060,78 +57533,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(636), 1, + ACTIONS(4991), 1, anon_sym_POUND, - ACTIONS(640), 1, + ACTIONS(4995), 1, aux_sym_num_lit_token1, - ACTIONS(644), 1, + ACTIONS(4997), 1, + anon_sym_COLON, + ACTIONS(4999), 1, anon_sym_COLON_COLON, - ACTIONS(646), 1, + ACTIONS(5001), 1, anon_sym_DQUOTE, - ACTIONS(648), 1, + ACTIONS(5003), 1, aux_sym_sym_lit_token1, - ACTIONS(652), 1, + ACTIONS(5005), 1, + anon_sym_LPAREN, + ACTIONS(5009), 1, anon_sym_POUND_QMARK, - ACTIONS(654), 1, + ACTIONS(5011), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(656), 1, + ACTIONS(5013), 1, anon_sym_POUND_SQUOTE, - ACTIONS(658), 1, + ACTIONS(5015), 1, anon_sym_SQUOTE, - ACTIONS(660), 1, + ACTIONS(5017), 1, anon_sym_BQUOTE, - ACTIONS(662), 1, - anon_sym_COMMA_AT, - ACTIONS(664), 1, - anon_sym_COMMA, - ACTIONS(4410), 1, - anon_sym_COLON, - ACTIONS(4412), 1, - anon_sym_LPAREN, - ACTIONS(4414), 1, + ACTIONS(5019), 1, anon_sym_cl, - ACTIONS(5409), 1, + ACTIONS(5135), 1, sym_self_referential_reader_macro, - STATE(1186), 1, - sym_sym_lit, - STATE(1191), 1, - sym__bare_set_lit, - STATE(2827), 1, + ACTIONS(5395), 1, + anon_sym_COMMA_AT, + ACTIONS(5397), 1, + anon_sym_COMMA, + STATE(2818), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(650), 2, + STATE(2986), 1, + sym__bare_set_lit, + STATE(3094), 1, + sym_sym_lit, + ACTIONS(5007), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(666), 2, + ACTIONS(5021), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(670), 2, + ACTIONS(5025), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(672), 2, + ACTIONS(5027), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5405), 2, + ACTIONS(5445), 2, sym__ws, sym_comment, - ACTIONS(5407), 3, + ACTIONS(5133), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(508), 3, + STATE(518), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1187), 3, + STATE(2985), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1135), 19, + STATE(2971), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -58151,87 +57624,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [14850] = 35, + [14717] = 35, ACTIONS(9), 1, anon_sym_POUND_, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, + anon_sym_COLON_COLON, + ACTIONS(21), 1, + anon_sym_DQUOTE, + ACTIONS(23), 1, + aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, + anon_sym_POUND_QMARK, + ACTIONS(35), 1, + anon_sym_POUND_QMARK_AT, ACTIONS(47), 1, sym_block_comment, - ACTIONS(636), 1, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(4803), 1, + sym_self_referential_reader_macro, + ACTIONS(5405), 1, anon_sym_POUND, - ACTIONS(640), 1, + ACTIONS(5409), 1, aux_sym_num_lit_token1, - ACTIONS(644), 1, - anon_sym_COLON_COLON, - ACTIONS(646), 1, - anon_sym_DQUOTE, - ACTIONS(648), 1, - aux_sym_sym_lit_token1, - ACTIONS(652), 1, - anon_sym_POUND_QMARK, - ACTIONS(654), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(656), 1, + ACTIONS(5413), 1, anon_sym_POUND_SQUOTE, - ACTIONS(658), 1, + ACTIONS(5415), 1, anon_sym_SQUOTE, - ACTIONS(660), 1, + ACTIONS(5417), 1, anon_sym_BQUOTE, - ACTIONS(662), 1, + ACTIONS(5419), 1, anon_sym_COMMA_AT, - ACTIONS(664), 1, + ACTIONS(5421), 1, anon_sym_COMMA, - ACTIONS(4410), 1, - anon_sym_COLON, - ACTIONS(4412), 1, - anon_sym_LPAREN, - ACTIONS(4414), 1, - anon_sym_cl, - ACTIONS(5415), 1, - sym_self_referential_reader_macro, - STATE(1186), 1, + STATE(1771), 1, sym_sym_lit, - STATE(1191), 1, + STATE(1801), 1, sym__bare_set_lit, - STATE(2827), 1, + STATE(2810), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(650), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(666), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(670), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(672), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, ACTIONS(5411), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5425), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5447), 2, sym__ws, sym_comment, - ACTIONS(5413), 3, + ACTIONS(4801), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(509), 3, + STATE(519), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1187), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1134), 19, + STATE(1882), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -58251,7 +57724,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [14985] = 35, + [14852] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -58260,78 +57733,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(636), 1, + ACTIONS(4991), 1, anon_sym_POUND, - ACTIONS(640), 1, + ACTIONS(4995), 1, aux_sym_num_lit_token1, - ACTIONS(644), 1, + ACTIONS(4997), 1, + anon_sym_COLON, + ACTIONS(4999), 1, anon_sym_COLON_COLON, - ACTIONS(646), 1, + ACTIONS(5001), 1, anon_sym_DQUOTE, - ACTIONS(648), 1, + ACTIONS(5003), 1, aux_sym_sym_lit_token1, - ACTIONS(652), 1, + ACTIONS(5005), 1, + anon_sym_LPAREN, + ACTIONS(5009), 1, anon_sym_POUND_QMARK, - ACTIONS(654), 1, + ACTIONS(5011), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(656), 1, + ACTIONS(5013), 1, anon_sym_POUND_SQUOTE, - ACTIONS(658), 1, + ACTIONS(5015), 1, anon_sym_SQUOTE, - ACTIONS(660), 1, + ACTIONS(5017), 1, anon_sym_BQUOTE, - ACTIONS(662), 1, - anon_sym_COMMA_AT, - ACTIONS(664), 1, - anon_sym_COMMA, - ACTIONS(4410), 1, - anon_sym_COLON, - ACTIONS(4412), 1, - anon_sym_LPAREN, - ACTIONS(4414), 1, + ACTIONS(5019), 1, anon_sym_cl, - ACTIONS(5421), 1, + ACTIONS(5145), 1, sym_self_referential_reader_macro, - STATE(1186), 1, - sym_sym_lit, - STATE(1191), 1, - sym__bare_set_lit, - STATE(2827), 1, + ACTIONS(5395), 1, + anon_sym_COMMA_AT, + ACTIONS(5397), 1, + anon_sym_COMMA, + STATE(2818), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(650), 2, + STATE(2986), 1, + sym__bare_set_lit, + STATE(3094), 1, + sym_sym_lit, + ACTIONS(4763), 2, + sym__ws, + sym_comment, + ACTIONS(5007), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(666), 2, + ACTIONS(5021), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(670), 2, + ACTIONS(5025), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(672), 2, + ACTIONS(5027), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5417), 2, - sym__ws, - sym_comment, - ACTIONS(5419), 3, + ACTIONS(5143), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(510), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1187), 3, + STATE(2985), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1207), 19, + STATE(2987), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -58351,87 +57824,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [15120] = 35, + [14987] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4991), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(4995), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(4997), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(4999), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(5001), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(5003), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(5005), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(5009), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(5011), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(5013), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(5015), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(5017), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, - anon_sym_COMMA_AT, - ACTIONS(45), 1, - anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(5019), 1, anon_sym_cl, - ACTIONS(5427), 1, + ACTIONS(5151), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, - sym_sym_lit, - STATE(2808), 1, + ACTIONS(5395), 1, + anon_sym_COMMA_AT, + ACTIONS(5397), 1, + anon_sym_COMMA, + STATE(2818), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(31), 2, + STATE(2986), 1, + sym__bare_set_lit, + STATE(3094), 1, + sym_sym_lit, + ACTIONS(5007), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(5021), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(5025), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(5027), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5423), 2, + ACTIONS(5449), 2, sym__ws, sym_comment, - ACTIONS(5425), 3, + ACTIONS(5149), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(703), 3, + STATE(522), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1877), 3, + STATE(2985), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1868), 19, + STATE(2989), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -58451,87 +57924,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [15255] = 35, + [15122] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4991), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(4995), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(4997), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(4999), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(5001), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(5003), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(5005), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(5009), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(5011), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(5013), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(5015), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(5017), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, - anon_sym_COMMA_AT, - ACTIONS(45), 1, - anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(5019), 1, anon_sym_cl, - ACTIONS(5433), 1, + ACTIONS(5155), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, - sym_sym_lit, - STATE(2808), 1, + ACTIONS(5395), 1, + anon_sym_COMMA_AT, + ACTIONS(5397), 1, + anon_sym_COMMA, + STATE(2818), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(31), 2, + STATE(2986), 1, + sym__bare_set_lit, + STATE(3094), 1, + sym_sym_lit, + ACTIONS(4763), 2, + sym__ws, + sym_comment, + ACTIONS(5007), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(5021), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(5025), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(5027), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5429), 2, - sym__ws, - sym_comment, - ACTIONS(5431), 3, + ACTIONS(5153), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(704), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1877), 3, + STATE(2985), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1867), 19, + STATE(2992), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -58551,7 +58024,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [15390] = 35, + [15257] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -58560,78 +58033,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(137), 1, + ACTIONS(4991), 1, anon_sym_POUND, - ACTIONS(141), 1, + ACTIONS(4995), 1, aux_sym_num_lit_token1, - ACTIONS(146), 1, + ACTIONS(4997), 1, + anon_sym_COLON, + ACTIONS(4999), 1, anon_sym_COLON_COLON, - ACTIONS(148), 1, + ACTIONS(5001), 1, anon_sym_DQUOTE, - ACTIONS(150), 1, + ACTIONS(5003), 1, aux_sym_sym_lit_token1, - ACTIONS(165), 1, + ACTIONS(5005), 1, + anon_sym_LPAREN, + ACTIONS(5009), 1, anon_sym_POUND_QMARK, - ACTIONS(167), 1, + ACTIONS(5011), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(169), 1, + ACTIONS(5013), 1, anon_sym_POUND_SQUOTE, - ACTIONS(171), 1, + ACTIONS(5015), 1, anon_sym_SQUOTE, - ACTIONS(173), 1, + ACTIONS(5017), 1, anon_sym_BQUOTE, - ACTIONS(175), 1, - anon_sym_COMMA_AT, - ACTIONS(177), 1, - anon_sym_COMMA, - ACTIONS(4855), 1, - anon_sym_COLON, - ACTIONS(4857), 1, - anon_sym_LPAREN, - ACTIONS(4859), 1, + ACTIONS(5019), 1, anon_sym_cl, - ACTIONS(5437), 1, + ACTIONS(5159), 1, sym_self_referential_reader_macro, - STATE(1069), 1, - sym__bare_set_lit, - STATE(1073), 1, - sym_sym_lit, - STATE(2804), 1, + ACTIONS(5395), 1, + anon_sym_COMMA_AT, + ACTIONS(5397), 1, + anon_sym_COMMA, + STATE(2818), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(163), 2, + STATE(2986), 1, + sym__bare_set_lit, + STATE(3094), 1, + sym_sym_lit, + ACTIONS(4763), 2, + sym__ws, + sym_comment, + ACTIONS(5007), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(186), 2, + ACTIONS(5021), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(190), 2, + ACTIONS(5025), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(192), 2, + ACTIONS(5027), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, - sym__ws, - sym_comment, - ACTIONS(5435), 3, + ACTIONS(5157), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1070), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1037), 19, + STATE(2985), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2993), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -58651,87 +58124,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [15525] = 35, + [15392] = 35, ACTIONS(9), 1, anon_sym_POUND_, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, + anon_sym_COLON_COLON, + ACTIONS(21), 1, + anon_sym_DQUOTE, + ACTIONS(23), 1, + aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, + anon_sym_POUND_QMARK, + ACTIONS(35), 1, + anon_sym_POUND_QMARK_AT, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4747), 1, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(5405), 1, anon_sym_POUND, - ACTIONS(4751), 1, + ACTIONS(5409), 1, aux_sym_num_lit_token1, - ACTIONS(4753), 1, - anon_sym_COLON, - ACTIONS(4755), 1, - anon_sym_COLON_COLON, - ACTIONS(4757), 1, - anon_sym_DQUOTE, - ACTIONS(4759), 1, - aux_sym_sym_lit_token1, - ACTIONS(4761), 1, - anon_sym_LPAREN, - ACTIONS(4765), 1, - anon_sym_POUND_QMARK, - ACTIONS(4767), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(4769), 1, + ACTIONS(5413), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4771), 1, + ACTIONS(5415), 1, anon_sym_SQUOTE, - ACTIONS(4773), 1, + ACTIONS(5417), 1, anon_sym_BQUOTE, - ACTIONS(4775), 1, + ACTIONS(5419), 1, anon_sym_COMMA_AT, - ACTIONS(4777), 1, + ACTIONS(5421), 1, anon_sym_COMMA, - ACTIONS(4779), 1, - anon_sym_cl, - ACTIONS(5443), 1, + ACTIONS(5453), 1, sym_self_referential_reader_macro, - STATE(1489), 1, + STATE(1771), 1, sym_sym_lit, - STATE(1557), 1, + STATE(1801), 1, sym__bare_set_lit, - STATE(2841), 1, + STATE(2810), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(4763), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(4781), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4785), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(4787), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5439), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(5441), 3, + ACTIONS(5411), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5425), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5451), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(681), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1612), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1512), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1798), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -58751,87 +58224,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [15660] = 35, + [15527] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4991), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(4995), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(4997), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(4999), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(5001), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(5003), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(5005), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(5009), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(5011), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(5013), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(5015), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(5017), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, - anon_sym_COMMA_AT, - ACTIONS(45), 1, - anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(5019), 1, anon_sym_cl, - ACTIONS(5449), 1, + ACTIONS(5169), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, - sym_sym_lit, - STATE(2808), 1, + ACTIONS(5395), 1, + anon_sym_COMMA_AT, + ACTIONS(5397), 1, + anon_sym_COMMA, + STATE(2818), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(31), 2, + STATE(2986), 1, + sym__bare_set_lit, + STATE(3094), 1, + sym_sym_lit, + ACTIONS(5007), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(5021), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(5025), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(5027), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5445), 2, + ACTIONS(5455), 2, sym__ws, sym_comment, - ACTIONS(5447), 3, + ACTIONS(5167), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(707), 3, + STATE(523), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1877), 3, + STATE(2985), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1866), 19, + STATE(2996), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -58851,87 +58324,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [15795] = 35, + [15662] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4991), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(4995), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(4997), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(4999), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(5001), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(5003), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(5005), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(5009), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(5011), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(5013), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(5015), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(5017), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, - anon_sym_COMMA_AT, - ACTIONS(45), 1, - anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(5019), 1, anon_sym_cl, - ACTIONS(5455), 1, + ACTIONS(5175), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, - sym_sym_lit, - STATE(2808), 1, + ACTIONS(5395), 1, + anon_sym_COMMA_AT, + ACTIONS(5397), 1, + anon_sym_COMMA, + STATE(2818), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(31), 2, + STATE(2986), 1, + sym__bare_set_lit, + STATE(3094), 1, + sym_sym_lit, + ACTIONS(5007), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(5021), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(5025), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(5027), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5451), 2, + ACTIONS(5457), 2, sym__ws, sym_comment, - ACTIONS(5453), 3, + ACTIONS(5173), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(449), 3, + STATE(525), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1877), 3, + STATE(2985), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(582), 19, + STATE(2952), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -58951,7 +58424,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [15930] = 35, + [15797] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -58960,78 +58433,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(137), 1, + ACTIONS(4991), 1, anon_sym_POUND, - ACTIONS(141), 1, + ACTIONS(4995), 1, aux_sym_num_lit_token1, - ACTIONS(146), 1, + ACTIONS(4997), 1, + anon_sym_COLON, + ACTIONS(4999), 1, anon_sym_COLON_COLON, - ACTIONS(148), 1, + ACTIONS(5001), 1, anon_sym_DQUOTE, - ACTIONS(150), 1, + ACTIONS(5003), 1, aux_sym_sym_lit_token1, - ACTIONS(165), 1, + ACTIONS(5005), 1, + anon_sym_LPAREN, + ACTIONS(5009), 1, anon_sym_POUND_QMARK, - ACTIONS(167), 1, + ACTIONS(5011), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(169), 1, + ACTIONS(5013), 1, anon_sym_POUND_SQUOTE, - ACTIONS(171), 1, + ACTIONS(5015), 1, anon_sym_SQUOTE, - ACTIONS(173), 1, + ACTIONS(5017), 1, anon_sym_BQUOTE, - ACTIONS(175), 1, - anon_sym_COMMA_AT, - ACTIONS(177), 1, - anon_sym_COMMA, - ACTIONS(4855), 1, - anon_sym_COLON, - ACTIONS(4857), 1, - anon_sym_LPAREN, - ACTIONS(4859), 1, + ACTIONS(5019), 1, anon_sym_cl, - ACTIONS(5459), 1, + ACTIONS(5179), 1, sym_self_referential_reader_macro, - STATE(1069), 1, - sym__bare_set_lit, - STATE(1073), 1, - sym_sym_lit, - STATE(2804), 1, + ACTIONS(5395), 1, + anon_sym_COMMA_AT, + ACTIONS(5397), 1, + anon_sym_COMMA, + STATE(2818), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(163), 2, + STATE(2986), 1, + sym__bare_set_lit, + STATE(3094), 1, + sym_sym_lit, + ACTIONS(4763), 2, + sym__ws, + sym_comment, + ACTIONS(5007), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(186), 2, + ACTIONS(5021), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(190), 2, + ACTIONS(5025), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(192), 2, + ACTIONS(5027), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, - sym__ws, - sym_comment, - ACTIONS(5457), 3, + ACTIONS(5177), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1070), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1035), 19, + STATE(2985), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2908), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -59051,7 +58524,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [16065] = 35, + [15932] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -59060,78 +58533,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(1598), 1, + ACTIONS(4991), 1, anon_sym_POUND, - ACTIONS(1602), 1, + ACTIONS(4995), 1, aux_sym_num_lit_token1, - ACTIONS(1606), 1, + ACTIONS(4997), 1, + anon_sym_COLON, + ACTIONS(4999), 1, anon_sym_COLON_COLON, - ACTIONS(1608), 1, + ACTIONS(5001), 1, anon_sym_DQUOTE, - ACTIONS(1610), 1, + ACTIONS(5003), 1, aux_sym_sym_lit_token1, - ACTIONS(1612), 1, + ACTIONS(5005), 1, anon_sym_LPAREN, - ACTIONS(1616), 1, + ACTIONS(5009), 1, anon_sym_POUND_QMARK, - ACTIONS(1618), 1, + ACTIONS(5011), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1620), 1, + ACTIONS(5013), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1622), 1, + ACTIONS(5015), 1, anon_sym_SQUOTE, - ACTIONS(1624), 1, + ACTIONS(5017), 1, anon_sym_BQUOTE, - ACTIONS(1626), 1, + ACTIONS(5019), 1, + anon_sym_cl, + ACTIONS(5395), 1, anon_sym_COMMA_AT, - ACTIONS(1628), 1, + ACTIONS(5397), 1, anon_sym_COMMA, - ACTIONS(5101), 1, - anon_sym_COLON, - ACTIONS(5103), 1, - anon_sym_cl, - ACTIONS(5465), 1, + ACTIONS(5461), 1, sym_self_referential_reader_macro, - STATE(1893), 1, - sym__bare_set_lit, - STATE(2762), 1, - sym_sym_lit, - STATE(2840), 1, + STATE(2818), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(1614), 2, + STATE(2986), 1, + sym__bare_set_lit, + STATE(3094), 1, + sym_sym_lit, + ACTIONS(4763), 2, + sym__ws, + sym_comment, + ACTIONS(5007), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(1636), 2, + ACTIONS(5021), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(1640), 2, + ACTIONS(5025), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1642), 2, + ACTIONS(5027), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5461), 2, - sym__ws, - sym_comment, - ACTIONS(5463), 3, + ACTIONS(5459), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(540), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1892), 3, + STATE(2985), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1902), 19, + STATE(2910), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -59151,7 +58624,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [16200] = 35, + [16067] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -59160,78 +58633,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(137), 1, + ACTIONS(4991), 1, anon_sym_POUND, - ACTIONS(141), 1, + ACTIONS(4995), 1, aux_sym_num_lit_token1, - ACTIONS(146), 1, + ACTIONS(4997), 1, + anon_sym_COLON, + ACTIONS(4999), 1, anon_sym_COLON_COLON, - ACTIONS(148), 1, + ACTIONS(5001), 1, anon_sym_DQUOTE, - ACTIONS(150), 1, + ACTIONS(5003), 1, aux_sym_sym_lit_token1, - ACTIONS(165), 1, + ACTIONS(5005), 1, + anon_sym_LPAREN, + ACTIONS(5009), 1, anon_sym_POUND_QMARK, - ACTIONS(167), 1, + ACTIONS(5011), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(169), 1, + ACTIONS(5013), 1, anon_sym_POUND_SQUOTE, - ACTIONS(171), 1, + ACTIONS(5015), 1, anon_sym_SQUOTE, - ACTIONS(173), 1, + ACTIONS(5017), 1, anon_sym_BQUOTE, - ACTIONS(175), 1, - anon_sym_COMMA_AT, - ACTIONS(177), 1, - anon_sym_COMMA, - ACTIONS(4855), 1, - anon_sym_COLON, - ACTIONS(4857), 1, - anon_sym_LPAREN, - ACTIONS(4859), 1, + ACTIONS(5019), 1, anon_sym_cl, - ACTIONS(5471), 1, + ACTIONS(5191), 1, sym_self_referential_reader_macro, - STATE(1069), 1, - sym__bare_set_lit, - STATE(1073), 1, - sym_sym_lit, - STATE(2804), 1, + ACTIONS(5395), 1, + anon_sym_COMMA_AT, + ACTIONS(5397), 1, + anon_sym_COMMA, + STATE(2818), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(163), 2, + STATE(2986), 1, + sym__bare_set_lit, + STATE(3094), 1, + sym_sym_lit, + ACTIONS(5007), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(186), 2, + ACTIONS(5021), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(190), 2, + ACTIONS(5025), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(192), 2, + ACTIONS(5027), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5467), 2, + ACTIONS(5463), 2, sym__ws, sym_comment, - ACTIONS(5469), 3, + ACTIONS(5189), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(519), 3, + STATE(527), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1070), 3, + STATE(2985), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1027), 19, + STATE(2911), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -59251,7 +58724,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [16335] = 35, + [16202] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -59260,78 +58733,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(137), 1, + ACTIONS(4991), 1, anon_sym_POUND, - ACTIONS(141), 1, + ACTIONS(4995), 1, aux_sym_num_lit_token1, - ACTIONS(146), 1, + ACTIONS(4997), 1, + anon_sym_COLON, + ACTIONS(4999), 1, anon_sym_COLON_COLON, - ACTIONS(148), 1, + ACTIONS(5001), 1, anon_sym_DQUOTE, - ACTIONS(150), 1, + ACTIONS(5003), 1, aux_sym_sym_lit_token1, - ACTIONS(165), 1, + ACTIONS(5005), 1, + anon_sym_LPAREN, + ACTIONS(5009), 1, anon_sym_POUND_QMARK, - ACTIONS(167), 1, + ACTIONS(5011), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(169), 1, + ACTIONS(5013), 1, anon_sym_POUND_SQUOTE, - ACTIONS(171), 1, + ACTIONS(5015), 1, anon_sym_SQUOTE, - ACTIONS(173), 1, + ACTIONS(5017), 1, anon_sym_BQUOTE, - ACTIONS(175), 1, - anon_sym_COMMA_AT, - ACTIONS(177), 1, - anon_sym_COMMA, - ACTIONS(4855), 1, - anon_sym_COLON, - ACTIONS(4857), 1, - anon_sym_LPAREN, - ACTIONS(4859), 1, + ACTIONS(5019), 1, anon_sym_cl, - ACTIONS(5475), 1, + ACTIONS(5195), 1, sym_self_referential_reader_macro, - STATE(1069), 1, - sym__bare_set_lit, - STATE(1073), 1, - sym_sym_lit, - STATE(2804), 1, + ACTIONS(5395), 1, + anon_sym_COMMA_AT, + ACTIONS(5397), 1, + anon_sym_COMMA, + STATE(2818), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(163), 2, + STATE(2986), 1, + sym__bare_set_lit, + STATE(3094), 1, + sym_sym_lit, + ACTIONS(4763), 2, + sym__ws, + sym_comment, + ACTIONS(5007), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(186), 2, + ACTIONS(5021), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(190), 2, + ACTIONS(5025), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(192), 2, + ACTIONS(5027), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, - sym__ws, - sym_comment, - ACTIONS(5473), 3, + ACTIONS(5193), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1070), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1026), 19, + STATE(2985), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2913), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -59351,7 +58824,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [16470] = 35, + [16337] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -59360,78 +58833,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(1598), 1, + ACTIONS(4991), 1, anon_sym_POUND, - ACTIONS(1602), 1, + ACTIONS(4995), 1, aux_sym_num_lit_token1, - ACTIONS(1606), 1, + ACTIONS(4997), 1, + anon_sym_COLON, + ACTIONS(4999), 1, anon_sym_COLON_COLON, - ACTIONS(1608), 1, + ACTIONS(5001), 1, anon_sym_DQUOTE, - ACTIONS(1610), 1, + ACTIONS(5003), 1, aux_sym_sym_lit_token1, - ACTIONS(1612), 1, + ACTIONS(5005), 1, anon_sym_LPAREN, - ACTIONS(1616), 1, + ACTIONS(5009), 1, anon_sym_POUND_QMARK, - ACTIONS(1618), 1, + ACTIONS(5011), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1620), 1, + ACTIONS(5013), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1622), 1, + ACTIONS(5015), 1, anon_sym_SQUOTE, - ACTIONS(1624), 1, + ACTIONS(5017), 1, anon_sym_BQUOTE, - ACTIONS(1626), 1, - anon_sym_COMMA_AT, - ACTIONS(1628), 1, - anon_sym_COMMA, - ACTIONS(5101), 1, - anon_sym_COLON, - ACTIONS(5103), 1, + ACTIONS(5019), 1, anon_sym_cl, - ACTIONS(5481), 1, + ACTIONS(5201), 1, sym_self_referential_reader_macro, - STATE(1893), 1, - sym__bare_set_lit, - STATE(2762), 1, - sym_sym_lit, - STATE(2840), 1, + ACTIONS(5395), 1, + anon_sym_COMMA_AT, + ACTIONS(5397), 1, + anon_sym_COMMA, + STATE(2818), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(1614), 2, + STATE(2986), 1, + sym__bare_set_lit, + STATE(3094), 1, + sym_sym_lit, + ACTIONS(5007), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(1636), 2, + ACTIONS(5021), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(1640), 2, + ACTIONS(5025), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1642), 2, + ACTIONS(5027), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5477), 2, + ACTIONS(5465), 2, sym__ws, sym_comment, - ACTIONS(5479), 3, + ACTIONS(5199), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(543), 3, + STATE(528), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1892), 3, + STATE(2985), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2788), 19, + STATE(2914), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -59451,7 +58924,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [16605] = 35, + [16472] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -59460,78 +58933,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(137), 1, + ACTIONS(4991), 1, anon_sym_POUND, - ACTIONS(141), 1, + ACTIONS(4995), 1, aux_sym_num_lit_token1, - ACTIONS(146), 1, + ACTIONS(4997), 1, + anon_sym_COLON, + ACTIONS(4999), 1, anon_sym_COLON_COLON, - ACTIONS(148), 1, + ACTIONS(5001), 1, anon_sym_DQUOTE, - ACTIONS(150), 1, + ACTIONS(5003), 1, aux_sym_sym_lit_token1, - ACTIONS(165), 1, + ACTIONS(5005), 1, + anon_sym_LPAREN, + ACTIONS(5009), 1, anon_sym_POUND_QMARK, - ACTIONS(167), 1, + ACTIONS(5011), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(169), 1, + ACTIONS(5013), 1, anon_sym_POUND_SQUOTE, - ACTIONS(171), 1, + ACTIONS(5015), 1, anon_sym_SQUOTE, - ACTIONS(173), 1, + ACTIONS(5017), 1, anon_sym_BQUOTE, - ACTIONS(175), 1, - anon_sym_COMMA_AT, - ACTIONS(177), 1, - anon_sym_COMMA, - ACTIONS(4855), 1, - anon_sym_COLON, - ACTIONS(4857), 1, - anon_sym_LPAREN, - ACTIONS(4859), 1, + ACTIONS(5019), 1, anon_sym_cl, - ACTIONS(5487), 1, + ACTIONS(5205), 1, sym_self_referential_reader_macro, - STATE(1069), 1, - sym__bare_set_lit, - STATE(1073), 1, - sym_sym_lit, - STATE(2804), 1, + ACTIONS(5395), 1, + anon_sym_COMMA_AT, + ACTIONS(5397), 1, + anon_sym_COMMA, + STATE(2818), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(163), 2, + STATE(2986), 1, + sym__bare_set_lit, + STATE(3094), 1, + sym_sym_lit, + ACTIONS(4763), 2, + sym__ws, + sym_comment, + ACTIONS(5007), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(186), 2, + ACTIONS(5021), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(190), 2, + ACTIONS(5025), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(192), 2, + ACTIONS(5027), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5483), 2, - sym__ws, - sym_comment, - ACTIONS(5485), 3, + ACTIONS(5203), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(523), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1070), 3, + STATE(2985), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1025), 19, + STATE(2918), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -59551,7 +59024,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [16740] = 35, + [16607] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -59560,78 +59033,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(137), 1, + ACTIONS(4991), 1, anon_sym_POUND, - ACTIONS(141), 1, + ACTIONS(4995), 1, aux_sym_num_lit_token1, - ACTIONS(146), 1, + ACTIONS(4997), 1, + anon_sym_COLON, + ACTIONS(4999), 1, anon_sym_COLON_COLON, - ACTIONS(148), 1, + ACTIONS(5001), 1, anon_sym_DQUOTE, - ACTIONS(150), 1, + ACTIONS(5003), 1, aux_sym_sym_lit_token1, - ACTIONS(165), 1, + ACTIONS(5005), 1, + anon_sym_LPAREN, + ACTIONS(5009), 1, anon_sym_POUND_QMARK, - ACTIONS(167), 1, + ACTIONS(5011), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(169), 1, + ACTIONS(5013), 1, anon_sym_POUND_SQUOTE, - ACTIONS(171), 1, + ACTIONS(5015), 1, anon_sym_SQUOTE, - ACTIONS(173), 1, + ACTIONS(5017), 1, anon_sym_BQUOTE, - ACTIONS(175), 1, - anon_sym_COMMA_AT, - ACTIONS(177), 1, - anon_sym_COMMA, - ACTIONS(4855), 1, - anon_sym_COLON, - ACTIONS(4857), 1, - anon_sym_LPAREN, - ACTIONS(4859), 1, + ACTIONS(5019), 1, anon_sym_cl, - ACTIONS(5491), 1, + ACTIONS(5209), 1, sym_self_referential_reader_macro, - STATE(1069), 1, - sym__bare_set_lit, - STATE(1073), 1, - sym_sym_lit, - STATE(2804), 1, + ACTIONS(5395), 1, + anon_sym_COMMA_AT, + ACTIONS(5397), 1, + anon_sym_COMMA, + STATE(2818), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(163), 2, + STATE(2986), 1, + sym__bare_set_lit, + STATE(3094), 1, + sym_sym_lit, + ACTIONS(4763), 2, + sym__ws, + sym_comment, + ACTIONS(5007), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(186), 2, + ACTIONS(5021), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(190), 2, + ACTIONS(5025), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(192), 2, + ACTIONS(5027), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, - sym__ws, - sym_comment, - ACTIONS(5489), 3, + ACTIONS(5207), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1070), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1024), 19, + STATE(2985), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2919), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -59651,87 +59124,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [16875] = 35, + [16742] = 35, ACTIONS(9), 1, anon_sym_POUND_, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, + anon_sym_COLON_COLON, + ACTIONS(21), 1, + anon_sym_DQUOTE, + ACTIONS(23), 1, + aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, + anon_sym_POUND_QMARK, + ACTIONS(35), 1, + anon_sym_POUND_QMARK_AT, ACTIONS(47), 1, sym_block_comment, - ACTIONS(1598), 1, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(4911), 1, + sym_self_referential_reader_macro, + ACTIONS(5405), 1, anon_sym_POUND, - ACTIONS(1602), 1, + ACTIONS(5409), 1, aux_sym_num_lit_token1, - ACTIONS(1606), 1, - anon_sym_COLON_COLON, - ACTIONS(1608), 1, - anon_sym_DQUOTE, - ACTIONS(1610), 1, - aux_sym_sym_lit_token1, - ACTIONS(1612), 1, - anon_sym_LPAREN, - ACTIONS(1616), 1, - anon_sym_POUND_QMARK, - ACTIONS(1618), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(1620), 1, + ACTIONS(5413), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1622), 1, + ACTIONS(5415), 1, anon_sym_SQUOTE, - ACTIONS(1624), 1, + ACTIONS(5417), 1, anon_sym_BQUOTE, - ACTIONS(1626), 1, + ACTIONS(5419), 1, anon_sym_COMMA_AT, - ACTIONS(1628), 1, + ACTIONS(5421), 1, anon_sym_COMMA, - ACTIONS(5101), 1, - anon_sym_COLON, - ACTIONS(5103), 1, - anon_sym_cl, - ACTIONS(5497), 1, - sym_self_referential_reader_macro, - STATE(1893), 1, - sym__bare_set_lit, - STATE(2762), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2840), 1, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2810), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(1614), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(1636), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(1640), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(1642), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5493), 2, + ACTIONS(5411), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5425), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5467), 2, sym__ws, sym_comment, - ACTIONS(5495), 3, + ACTIONS(4909), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(545), 3, + STATE(535), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1892), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2787), 19, + STATE(1889), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -59751,87 +59224,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [17010] = 35, + [16877] = 35, ACTIONS(9), 1, anon_sym_POUND_, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, + anon_sym_COLON_COLON, + ACTIONS(21), 1, + anon_sym_DQUOTE, + ACTIONS(23), 1, + aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, + anon_sym_POUND_QMARK, + ACTIONS(35), 1, + anon_sym_POUND_QMARK_AT, ACTIONS(47), 1, sym_block_comment, - ACTIONS(137), 1, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(5033), 1, + sym_self_referential_reader_macro, + ACTIONS(5405), 1, anon_sym_POUND, - ACTIONS(141), 1, + ACTIONS(5409), 1, aux_sym_num_lit_token1, - ACTIONS(146), 1, - anon_sym_COLON_COLON, - ACTIONS(148), 1, - anon_sym_DQUOTE, - ACTIONS(150), 1, - aux_sym_sym_lit_token1, - ACTIONS(165), 1, - anon_sym_POUND_QMARK, - ACTIONS(167), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(169), 1, + ACTIONS(5413), 1, anon_sym_POUND_SQUOTE, - ACTIONS(171), 1, + ACTIONS(5415), 1, anon_sym_SQUOTE, - ACTIONS(173), 1, + ACTIONS(5417), 1, anon_sym_BQUOTE, - ACTIONS(175), 1, + ACTIONS(5419), 1, anon_sym_COMMA_AT, - ACTIONS(177), 1, + ACTIONS(5421), 1, anon_sym_COMMA, - ACTIONS(4855), 1, - anon_sym_COLON, - ACTIONS(4857), 1, - anon_sym_LPAREN, - ACTIONS(4859), 1, - anon_sym_cl, - ACTIONS(5501), 1, - sym_self_referential_reader_macro, - STATE(1069), 1, - sym__bare_set_lit, - STATE(1073), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2804), 1, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2810), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(163), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(186), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(190), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(192), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(5411), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5425), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5469), 2, sym__ws, sym_comment, - ACTIONS(5499), 3, + ACTIONS(5031), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1070), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(536), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1020), 19, + STATE(1790), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1768), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -59851,87 +59324,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [17145] = 35, + [17012] = 35, ACTIONS(9), 1, anon_sym_POUND_, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, + anon_sym_COLON_COLON, + ACTIONS(21), 1, + anon_sym_DQUOTE, + ACTIONS(23), 1, + aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, + anon_sym_POUND_QMARK, + ACTIONS(35), 1, + anon_sym_POUND_QMARK_AT, ACTIONS(47), 1, sym_block_comment, - ACTIONS(1598), 1, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(5405), 1, anon_sym_POUND, - ACTIONS(1602), 1, + ACTIONS(5409), 1, aux_sym_num_lit_token1, - ACTIONS(1606), 1, - anon_sym_COLON_COLON, - ACTIONS(1608), 1, - anon_sym_DQUOTE, - ACTIONS(1610), 1, - aux_sym_sym_lit_token1, - ACTIONS(1612), 1, - anon_sym_LPAREN, - ACTIONS(1616), 1, - anon_sym_POUND_QMARK, - ACTIONS(1618), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(1620), 1, + ACTIONS(5413), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1622), 1, + ACTIONS(5415), 1, anon_sym_SQUOTE, - ACTIONS(1624), 1, + ACTIONS(5417), 1, anon_sym_BQUOTE, - ACTIONS(1626), 1, + ACTIONS(5419), 1, anon_sym_COMMA_AT, - ACTIONS(1628), 1, + ACTIONS(5421), 1, anon_sym_COMMA, - ACTIONS(5101), 1, - anon_sym_COLON, - ACTIONS(5103), 1, - anon_sym_cl, - ACTIONS(5505), 1, + ACTIONS(5475), 1, sym_self_referential_reader_macro, - STATE(1893), 1, - sym__bare_set_lit, - STATE(2762), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2840), 1, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2810), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(1614), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(1636), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(1640), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(1642), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(5411), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5425), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5471), 2, sym__ws, sym_comment, - ACTIONS(5503), 3, + ACTIONS(5473), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1892), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(537), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2782), 19, + STATE(1790), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1769), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -59951,7 +59424,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [17280] = 35, + [17147] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -59960,78 +59433,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(137), 1, - anon_sym_POUND, - ACTIONS(141), 1, - aux_sym_num_lit_token1, - ACTIONS(146), 1, + ACTIONS(5041), 1, + anon_sym_COLON, + ACTIONS(5043), 1, anon_sym_COLON_COLON, - ACTIONS(148), 1, + ACTIONS(5045), 1, anon_sym_DQUOTE, - ACTIONS(150), 1, + ACTIONS(5047), 1, aux_sym_sym_lit_token1, - ACTIONS(165), 1, + ACTIONS(5049), 1, + anon_sym_LPAREN, + ACTIONS(5051), 1, anon_sym_POUND_QMARK, - ACTIONS(167), 1, + ACTIONS(5087), 1, + sym_self_referential_reader_macro, + ACTIONS(5479), 1, + anon_sym_POUND, + ACTIONS(5481), 1, + aux_sym_num_lit_token1, + ACTIONS(5485), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(169), 1, + ACTIONS(5487), 1, anon_sym_POUND_SQUOTE, - ACTIONS(171), 1, + ACTIONS(5489), 1, anon_sym_SQUOTE, - ACTIONS(173), 1, + ACTIONS(5491), 1, anon_sym_BQUOTE, - ACTIONS(175), 1, + ACTIONS(5493), 1, anon_sym_COMMA_AT, - ACTIONS(177), 1, + ACTIONS(5495), 1, anon_sym_COMMA, - ACTIONS(4855), 1, - anon_sym_COLON, - ACTIONS(4857), 1, - anon_sym_LPAREN, - ACTIONS(4859), 1, + ACTIONS(5497), 1, anon_sym_cl, - ACTIONS(5511), 1, - sym_self_referential_reader_macro, - STATE(1069), 1, + STATE(1976), 1, sym__bare_set_lit, - STATE(1073), 1, - sym_sym_lit, - STATE(2804), 1, + STATE(2842), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2875), 1, + sym_sym_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(163), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(186), 2, + ACTIONS(1492), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(190), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(192), 2, + ACTIONS(1498), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5507), 2, + ACTIONS(5477), 2, sym__ws, sym_comment, - ACTIONS(5509), 3, + ACTIONS(5483), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5499), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5085), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(526), 3, + STATE(538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1070), 3, + STATE(1975), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1007), 19, + STATE(2820), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -60051,87 +59524,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [17415] = 35, + [17282] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, - anon_sym_POUND, - ACTIONS(15), 1, - aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(5041), 1, + anon_sym_COLON, + ACTIONS(5043), 1, + anon_sym_COLON_COLON, + ACTIONS(5045), 1, + anon_sym_DQUOTE, + ACTIONS(5047), 1, + aux_sym_sym_lit_token1, + ACTIONS(5049), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(5051), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(5093), 1, + sym_self_referential_reader_macro, + ACTIONS(5479), 1, + anon_sym_POUND, + ACTIONS(5481), 1, + aux_sym_num_lit_token1, + ACTIONS(5485), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(5487), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(5489), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(5491), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(5493), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(5495), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(5497), 1, anon_sym_cl, - ACTIONS(5517), 1, - sym_self_referential_reader_macro, - STATE(1875), 1, + STATE(1976), 1, sym__bare_set_lit, - STATE(1878), 1, - sym_sym_lit, - STATE(2808), 1, + STATE(2842), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2875), 1, + sym_sym_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(1492), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(1498), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5513), 2, + ACTIONS(5483), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5499), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5501), 2, sym__ws, sym_comment, - ACTIONS(5515), 3, + ACTIONS(5091), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(450), 3, + STATE(539), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1877), 3, + STATE(1975), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(580), 19, + STATE(2831), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -60151,7 +59624,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [17550] = 35, + [17417] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -60160,78 +59633,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(1598), 1, - anon_sym_POUND, - ACTIONS(1602), 1, - aux_sym_num_lit_token1, - ACTIONS(1606), 1, + ACTIONS(5041), 1, + anon_sym_COLON, + ACTIONS(5043), 1, anon_sym_COLON_COLON, - ACTIONS(1608), 1, + ACTIONS(5045), 1, anon_sym_DQUOTE, - ACTIONS(1610), 1, + ACTIONS(5047), 1, aux_sym_sym_lit_token1, - ACTIONS(1612), 1, + ACTIONS(5049), 1, anon_sym_LPAREN, - ACTIONS(1616), 1, + ACTIONS(5051), 1, anon_sym_POUND_QMARK, - ACTIONS(1618), 1, + ACTIONS(5097), 1, + sym_self_referential_reader_macro, + ACTIONS(5479), 1, + anon_sym_POUND, + ACTIONS(5481), 1, + aux_sym_num_lit_token1, + ACTIONS(5485), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1620), 1, + ACTIONS(5487), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1622), 1, + ACTIONS(5489), 1, anon_sym_SQUOTE, - ACTIONS(1624), 1, + ACTIONS(5491), 1, anon_sym_BQUOTE, - ACTIONS(1626), 1, + ACTIONS(5493), 1, anon_sym_COMMA_AT, - ACTIONS(1628), 1, + ACTIONS(5495), 1, anon_sym_COMMA, - ACTIONS(5101), 1, - anon_sym_COLON, - ACTIONS(5103), 1, + ACTIONS(5497), 1, anon_sym_cl, - ACTIONS(5521), 1, - sym_self_referential_reader_macro, - STATE(1893), 1, + STATE(1976), 1, sym__bare_set_lit, - STATE(2762), 1, - sym_sym_lit, - STATE(2840), 1, + STATE(2842), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2875), 1, + sym_sym_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(1614), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(1636), 2, + ACTIONS(1492), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(1640), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(1642), 2, + ACTIONS(1498), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(5519), 3, + ACTIONS(5483), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5499), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5095), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1892), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1972), 19, + STATE(1975), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2815), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -60251,13 +59724,9 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [17685] = 35, + [17552] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, - anon_sym_POUND, - ACTIONS(15), 1, - aux_sym_num_lit_token1, ACTIONS(17), 1, anon_sym_COLON, ACTIONS(19), 1, @@ -60276,62 +59745,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(5405), 1, + anon_sym_POUND, + ACTIONS(5409), 1, + aux_sym_num_lit_token1, + ACTIONS(5413), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(5415), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(5417), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(5419), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(5421), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(5525), 1, + ACTIONS(5505), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2808), 1, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2810), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(5523), 3, + ACTIONS(5411), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5425), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5503), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1877), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1804), 19, + STATE(1862), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -60351,87 +59824,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [17820] = 35, + [17687] = 35, ACTIONS(9), 1, anon_sym_POUND_, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, + anon_sym_COLON_COLON, + ACTIONS(21), 1, + anon_sym_DQUOTE, + ACTIONS(23), 1, + aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, + anon_sym_POUND_QMARK, + ACTIONS(35), 1, + anon_sym_POUND_QMARK_AT, ACTIONS(47), 1, sym_block_comment, - ACTIONS(137), 1, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(5405), 1, anon_sym_POUND, - ACTIONS(141), 1, + ACTIONS(5409), 1, aux_sym_num_lit_token1, - ACTIONS(146), 1, - anon_sym_COLON_COLON, - ACTIONS(148), 1, - anon_sym_DQUOTE, - ACTIONS(150), 1, - aux_sym_sym_lit_token1, - ACTIONS(165), 1, - anon_sym_POUND_QMARK, - ACTIONS(167), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(169), 1, + ACTIONS(5413), 1, anon_sym_POUND_SQUOTE, - ACTIONS(171), 1, + ACTIONS(5415), 1, anon_sym_SQUOTE, - ACTIONS(173), 1, + ACTIONS(5417), 1, anon_sym_BQUOTE, - ACTIONS(175), 1, + ACTIONS(5419), 1, anon_sym_COMMA_AT, - ACTIONS(177), 1, + ACTIONS(5421), 1, anon_sym_COMMA, - ACTIONS(4855), 1, - anon_sym_COLON, - ACTIONS(4857), 1, - anon_sym_LPAREN, - ACTIONS(4859), 1, - anon_sym_cl, - ACTIONS(5531), 1, + ACTIONS(5509), 1, sym_self_referential_reader_macro, - STATE(1069), 1, - sym__bare_set_lit, - STATE(1073), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2804), 1, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2810), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(163), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(186), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(190), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(192), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5527), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(5529), 3, + ACTIONS(5411), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5425), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5507), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(529), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1070), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1054), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1863), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -60451,13 +59924,9 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [17955] = 35, + [17822] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, - anon_sym_POUND, - ACTIONS(15), 1, - aux_sym_num_lit_token1, ACTIONS(17), 1, anon_sym_COLON, ACTIONS(19), 1, @@ -60476,62 +59945,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(5405), 1, + anon_sym_POUND, + ACTIONS(5409), 1, + aux_sym_num_lit_token1, + ACTIONS(5413), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(5415), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(5417), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(5419), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(5421), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(5537), 1, + ACTIONS(5513), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2808), 1, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2810), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5533), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(5535), 3, + ACTIONS(5411), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5425), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5511), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(885), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1877), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(729), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1864), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -60551,7 +60024,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [18090] = 35, + [17957] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -60560,78 +60033,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(1598), 1, - anon_sym_POUND, - ACTIONS(1602), 1, - aux_sym_num_lit_token1, - ACTIONS(1606), 1, + ACTIONS(5041), 1, + anon_sym_COLON, + ACTIONS(5043), 1, anon_sym_COLON_COLON, - ACTIONS(1608), 1, + ACTIONS(5045), 1, anon_sym_DQUOTE, - ACTIONS(1610), 1, + ACTIONS(5047), 1, aux_sym_sym_lit_token1, - ACTIONS(1612), 1, + ACTIONS(5049), 1, anon_sym_LPAREN, - ACTIONS(1616), 1, + ACTIONS(5051), 1, anon_sym_POUND_QMARK, - ACTIONS(1618), 1, + ACTIONS(5113), 1, + sym_self_referential_reader_macro, + ACTIONS(5479), 1, + anon_sym_POUND, + ACTIONS(5481), 1, + aux_sym_num_lit_token1, + ACTIONS(5485), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1620), 1, + ACTIONS(5487), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1622), 1, + ACTIONS(5489), 1, anon_sym_SQUOTE, - ACTIONS(1624), 1, + ACTIONS(5491), 1, anon_sym_BQUOTE, - ACTIONS(1626), 1, + ACTIONS(5493), 1, anon_sym_COMMA_AT, - ACTIONS(1628), 1, + ACTIONS(5495), 1, anon_sym_COMMA, - ACTIONS(5101), 1, - anon_sym_COLON, - ACTIONS(5103), 1, + ACTIONS(5497), 1, anon_sym_cl, - ACTIONS(5541), 1, - sym_self_referential_reader_macro, - STATE(1893), 1, + STATE(1976), 1, sym__bare_set_lit, - STATE(2762), 1, - sym_sym_lit, - STATE(2840), 1, + STATE(2842), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2875), 1, + sym_sym_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(1614), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(1636), 2, + ACTIONS(1492), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(1640), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(1642), 2, + ACTIONS(1498), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(5539), 3, + ACTIONS(5483), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5499), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5111), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1892), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1971), 19, + STATE(1975), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2828), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -60651,7 +60124,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [18225] = 35, + [18092] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -60660,78 +60133,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(1598), 1, - anon_sym_POUND, - ACTIONS(1602), 1, - aux_sym_num_lit_token1, - ACTIONS(1606), 1, + ACTIONS(5041), 1, + anon_sym_COLON, + ACTIONS(5043), 1, anon_sym_COLON_COLON, - ACTIONS(1608), 1, + ACTIONS(5045), 1, anon_sym_DQUOTE, - ACTIONS(1610), 1, + ACTIONS(5047), 1, aux_sym_sym_lit_token1, - ACTIONS(1612), 1, + ACTIONS(5049), 1, anon_sym_LPAREN, - ACTIONS(1616), 1, + ACTIONS(5051), 1, anon_sym_POUND_QMARK, - ACTIONS(1618), 1, + ACTIONS(5117), 1, + sym_self_referential_reader_macro, + ACTIONS(5479), 1, + anon_sym_POUND, + ACTIONS(5481), 1, + aux_sym_num_lit_token1, + ACTIONS(5485), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1620), 1, + ACTIONS(5487), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1622), 1, + ACTIONS(5489), 1, anon_sym_SQUOTE, - ACTIONS(1624), 1, + ACTIONS(5491), 1, anon_sym_BQUOTE, - ACTIONS(1626), 1, + ACTIONS(5493), 1, anon_sym_COMMA_AT, - ACTIONS(1628), 1, + ACTIONS(5495), 1, anon_sym_COMMA, - ACTIONS(5101), 1, - anon_sym_COLON, - ACTIONS(5103), 1, + ACTIONS(5497), 1, anon_sym_cl, - ACTIONS(5545), 1, - sym_self_referential_reader_macro, - STATE(1893), 1, + STATE(1976), 1, sym__bare_set_lit, - STATE(2762), 1, - sym_sym_lit, - STATE(2840), 1, + STATE(2842), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2875), 1, + sym_sym_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(1614), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(1636), 2, + ACTIONS(1492), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(1640), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(1642), 2, + ACTIONS(1498), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(5543), 3, + ACTIONS(5483), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5499), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5115), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1892), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1970), 19, + STATE(1975), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2829), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -60751,13 +60224,9 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [18360] = 35, + [18227] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, - anon_sym_POUND, - ACTIONS(15), 1, - aux_sym_num_lit_token1, ACTIONS(17), 1, anon_sym_COLON, ACTIONS(19), 1, @@ -60776,162 +60245,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, - anon_sym_SQUOTE, - ACTIONS(41), 1, - anon_sym_BQUOTE, - ACTIONS(43), 1, - anon_sym_COMMA_AT, - ACTIONS(45), 1, - anon_sym_COMMA, ACTIONS(47), 1, sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(5549), 1, - sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, - sym_sym_lit, - STATE(2808), 1, - aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, - sym_old_meta_lit, - STATE(2901), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4801), 2, - sym__ws, - sym_comment, - ACTIONS(5547), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(1877), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1805), 19, - sym__form, - sym_num_lit, - sym_kwd_lit, - sym_str_lit, - sym_char_lit, - sym_list_lit, - sym_vec_lit, - sym_set_lit, - sym_read_cond_lit, - sym_splicing_read_cond_lit, - sym_var_quoting_lit, - sym_quoting_lit, - sym_syn_quoting_lit, - sym_unquote_splicing_lit, - sym_unquoting_lit, - sym_path_lit, - sym_package_lit, - sym_include_reader_macro, - sym_complex_num_lit, - [18495] = 35, - ACTIONS(9), 1, - anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(636), 1, + ACTIONS(5405), 1, anon_sym_POUND, - ACTIONS(640), 1, + ACTIONS(5409), 1, aux_sym_num_lit_token1, - ACTIONS(644), 1, - anon_sym_COLON_COLON, - ACTIONS(646), 1, - anon_sym_DQUOTE, - ACTIONS(648), 1, - aux_sym_sym_lit_token1, - ACTIONS(652), 1, - anon_sym_POUND_QMARK, - ACTIONS(654), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(656), 1, + ACTIONS(5413), 1, anon_sym_POUND_SQUOTE, - ACTIONS(658), 1, + ACTIONS(5415), 1, anon_sym_SQUOTE, - ACTIONS(660), 1, + ACTIONS(5417), 1, anon_sym_BQUOTE, - ACTIONS(662), 1, + ACTIONS(5419), 1, anon_sym_COMMA_AT, - ACTIONS(664), 1, + ACTIONS(5421), 1, anon_sym_COMMA, - ACTIONS(4410), 1, - anon_sym_COLON, - ACTIONS(4412), 1, - anon_sym_LPAREN, - ACTIONS(4414), 1, - anon_sym_cl, - ACTIONS(5553), 1, + ACTIONS(5519), 1, sym_self_referential_reader_macro, - STATE(1186), 1, + STATE(1771), 1, sym_sym_lit, - STATE(1191), 1, + STATE(1801), 1, sym__bare_set_lit, - STATE(2827), 1, + STATE(2810), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(650), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(666), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(670), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(672), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(5411), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5425), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5515), 2, sym__ws, sym_comment, - ACTIONS(5551), 3, + ACTIONS(5517), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1187), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(544), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1177), 19, + STATE(1790), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1868), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -60951,87 +60324,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [18630] = 35, + [18362] = 35, ACTIONS(9), 1, anon_sym_POUND_, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, + anon_sym_COLON_COLON, + ACTIONS(21), 1, + anon_sym_DQUOTE, + ACTIONS(23), 1, + aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, + anon_sym_POUND_QMARK, + ACTIONS(35), 1, + anon_sym_POUND_QMARK_AT, ACTIONS(47), 1, sym_block_comment, - ACTIONS(1598), 1, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(5405), 1, anon_sym_POUND, - ACTIONS(1602), 1, + ACTIONS(5409), 1, aux_sym_num_lit_token1, - ACTIONS(1606), 1, - anon_sym_COLON_COLON, - ACTIONS(1608), 1, - anon_sym_DQUOTE, - ACTIONS(1610), 1, - aux_sym_sym_lit_token1, - ACTIONS(1612), 1, - anon_sym_LPAREN, - ACTIONS(1616), 1, - anon_sym_POUND_QMARK, - ACTIONS(1618), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(1620), 1, + ACTIONS(5413), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1622), 1, + ACTIONS(5415), 1, anon_sym_SQUOTE, - ACTIONS(1624), 1, + ACTIONS(5417), 1, anon_sym_BQUOTE, - ACTIONS(1626), 1, + ACTIONS(5419), 1, anon_sym_COMMA_AT, - ACTIONS(1628), 1, + ACTIONS(5421), 1, anon_sym_COMMA, - ACTIONS(5101), 1, - anon_sym_COLON, - ACTIONS(5103), 1, - anon_sym_cl, - ACTIONS(5557), 1, + ACTIONS(5525), 1, sym_self_referential_reader_macro, - STATE(1893), 1, - sym__bare_set_lit, - STATE(2762), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2840), 1, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2810), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(1614), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(1636), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(1640), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(1642), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(5411), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5425), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5521), 2, sym__ws, sym_comment, - ACTIONS(5555), 3, + ACTIONS(5523), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1892), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(546), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2775), 19, + STATE(1790), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1879), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -61051,13 +60424,9 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [18765] = 35, + [18497] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, - anon_sym_POUND, - ACTIONS(15), 1, - aux_sym_num_lit_token1, ACTIONS(17), 1, anon_sym_COLON, ACTIONS(19), 1, @@ -61076,62 +60445,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, - anon_sym_SQUOTE, - ACTIONS(41), 1, - anon_sym_BQUOTE, - ACTIONS(43), 1, - anon_sym_COMMA_AT, - ACTIONS(45), 1, - anon_sym_COMMA, ACTIONS(47), 1, sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(5561), 1, + ACTIONS(4761), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + ACTIONS(5405), 1, + anon_sym_POUND, + ACTIONS(5409), 1, + aux_sym_num_lit_token1, + ACTIONS(5413), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(5415), 1, + anon_sym_SQUOTE, + ACTIONS(5417), 1, + anon_sym_BQUOTE, + ACTIONS(5419), 1, + anon_sym_COMMA_AT, + ACTIONS(5421), 1, + anon_sym_COMMA, + STATE(1771), 1, sym_sym_lit, - STATE(2808), 1, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2810), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(5411), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5425), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5527), 2, sym__ws, sym_comment, - ACTIONS(5559), 3, + ACTIONS(4759), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1877), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(547), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(569), 19, + STATE(1790), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1881), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -61151,7 +60524,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [18900] = 35, + [18632] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -61160,78 +60533,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(1598), 1, - anon_sym_POUND, - ACTIONS(1602), 1, - aux_sym_num_lit_token1, - ACTIONS(1606), 1, + ACTIONS(5041), 1, + anon_sym_COLON, + ACTIONS(5043), 1, anon_sym_COLON_COLON, - ACTIONS(1608), 1, + ACTIONS(5045), 1, anon_sym_DQUOTE, - ACTIONS(1610), 1, + ACTIONS(5047), 1, aux_sym_sym_lit_token1, - ACTIONS(1612), 1, + ACTIONS(5049), 1, anon_sym_LPAREN, - ACTIONS(1616), 1, + ACTIONS(5051), 1, anon_sym_POUND_QMARK, - ACTIONS(1618), 1, + ACTIONS(5141), 1, + sym_self_referential_reader_macro, + ACTIONS(5479), 1, + anon_sym_POUND, + ACTIONS(5481), 1, + aux_sym_num_lit_token1, + ACTIONS(5485), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1620), 1, + ACTIONS(5487), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1622), 1, + ACTIONS(5489), 1, anon_sym_SQUOTE, - ACTIONS(1624), 1, + ACTIONS(5491), 1, anon_sym_BQUOTE, - ACTIONS(1626), 1, + ACTIONS(5493), 1, anon_sym_COMMA_AT, - ACTIONS(1628), 1, + ACTIONS(5495), 1, anon_sym_COMMA, - ACTIONS(5101), 1, - anon_sym_COLON, - ACTIONS(5103), 1, + ACTIONS(5497), 1, anon_sym_cl, - ACTIONS(5565), 1, - sym_self_referential_reader_macro, - STATE(1893), 1, + STATE(1976), 1, sym__bare_set_lit, - STATE(2762), 1, - sym_sym_lit, - STATE(2840), 1, + STATE(2842), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2875), 1, + sym_sym_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(1614), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(1636), 2, + ACTIONS(1492), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(1640), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(1642), 2, + ACTIONS(1498), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(5483), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5499), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5529), 2, sym__ws, sym_comment, - ACTIONS(5563), 3, + ACTIONS(5139), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1892), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(548), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2774), 19, + STATE(1975), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2837), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -61251,87 +60624,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [19035] = 35, + [18767] = 35, ACTIONS(9), 1, anon_sym_POUND_, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, + anon_sym_COLON_COLON, + ACTIONS(21), 1, + anon_sym_DQUOTE, + ACTIONS(23), 1, + aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, + anon_sym_POUND_QMARK, + ACTIONS(35), 1, + anon_sym_POUND_QMARK_AT, ACTIONS(47), 1, sym_block_comment, - ACTIONS(137), 1, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(5405), 1, anon_sym_POUND, - ACTIONS(141), 1, + ACTIONS(5409), 1, aux_sym_num_lit_token1, - ACTIONS(146), 1, - anon_sym_COLON_COLON, - ACTIONS(148), 1, - anon_sym_DQUOTE, - ACTIONS(150), 1, - aux_sym_sym_lit_token1, - ACTIONS(165), 1, - anon_sym_POUND_QMARK, - ACTIONS(167), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(169), 1, + ACTIONS(5413), 1, anon_sym_POUND_SQUOTE, - ACTIONS(171), 1, + ACTIONS(5415), 1, anon_sym_SQUOTE, - ACTIONS(173), 1, + ACTIONS(5417), 1, anon_sym_BQUOTE, - ACTIONS(175), 1, + ACTIONS(5419), 1, anon_sym_COMMA_AT, - ACTIONS(177), 1, + ACTIONS(5421), 1, anon_sym_COMMA, - ACTIONS(4855), 1, - anon_sym_COLON, - ACTIONS(4857), 1, - anon_sym_LPAREN, - ACTIONS(4859), 1, - anon_sym_cl, - ACTIONS(5569), 1, + ACTIONS(5533), 1, sym_self_referential_reader_macro, - STATE(1069), 1, - sym__bare_set_lit, - STATE(1073), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2804), 1, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2810), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(163), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(186), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(190), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(192), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(5567), 3, + ACTIONS(5411), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5425), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5531), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1070), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1098), 19, + STATE(1792), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -61351,87 +60724,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [19170] = 35, + [18902] = 35, ACTIONS(9), 1, anon_sym_POUND_, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, + anon_sym_COLON_COLON, + ACTIONS(21), 1, + anon_sym_DQUOTE, + ACTIONS(23), 1, + aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, + anon_sym_POUND_QMARK, + ACTIONS(35), 1, + anon_sym_POUND_QMARK_AT, ACTIONS(47), 1, sym_block_comment, - ACTIONS(1598), 1, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(5405), 1, anon_sym_POUND, - ACTIONS(1602), 1, + ACTIONS(5409), 1, aux_sym_num_lit_token1, - ACTIONS(1606), 1, - anon_sym_COLON_COLON, - ACTIONS(1608), 1, - anon_sym_DQUOTE, - ACTIONS(1610), 1, - aux_sym_sym_lit_token1, - ACTIONS(1612), 1, - anon_sym_LPAREN, - ACTIONS(1616), 1, - anon_sym_POUND_QMARK, - ACTIONS(1618), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(1620), 1, + ACTIONS(5413), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1622), 1, + ACTIONS(5415), 1, anon_sym_SQUOTE, - ACTIONS(1624), 1, + ACTIONS(5417), 1, anon_sym_BQUOTE, - ACTIONS(1626), 1, + ACTIONS(5419), 1, anon_sym_COMMA_AT, - ACTIONS(1628), 1, + ACTIONS(5421), 1, anon_sym_COMMA, - ACTIONS(5101), 1, - anon_sym_COLON, - ACTIONS(5103), 1, - anon_sym_cl, - ACTIONS(5575), 1, + ACTIONS(5539), 1, sym_self_referential_reader_macro, - STATE(1893), 1, - sym__bare_set_lit, - STATE(2762), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2840), 1, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2810), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(1614), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(1636), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(1640), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(1642), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5571), 2, + ACTIONS(5411), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5425), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5535), 2, sym__ws, sym_comment, - ACTIONS(5573), 3, + ACTIONS(5537), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(554), 3, + STATE(551), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1892), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1968), 19, + STATE(1793), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -61451,13 +60824,9 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [19305] = 35, + [19037] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, - anon_sym_POUND, - ACTIONS(15), 1, - aux_sym_num_lit_token1, ACTIONS(17), 1, anon_sym_COLON, ACTIONS(19), 1, @@ -61476,62 +60845,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(5405), 1, + anon_sym_POUND, + ACTIONS(5409), 1, + aux_sym_num_lit_token1, + ACTIONS(5413), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(5415), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(5417), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(5419), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(5421), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(5581), 1, + ACTIONS(5543), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2808), 1, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2810), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5577), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(5579), 3, + ACTIONS(5411), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5425), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5541), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(544), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1877), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(547), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1796), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -61551,87 +60924,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [19440] = 35, + [19172] = 35, ACTIONS(9), 1, anon_sym_POUND_, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, + anon_sym_COLON_COLON, + ACTIONS(21), 1, + anon_sym_DQUOTE, + ACTIONS(23), 1, + aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, + anon_sym_POUND_QMARK, + ACTIONS(35), 1, + anon_sym_POUND_QMARK_AT, ACTIONS(47), 1, sym_block_comment, - ACTIONS(137), 1, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(5405), 1, anon_sym_POUND, - ACTIONS(141), 1, + ACTIONS(5409), 1, aux_sym_num_lit_token1, - ACTIONS(146), 1, - anon_sym_COLON_COLON, - ACTIONS(148), 1, - anon_sym_DQUOTE, - ACTIONS(150), 1, - aux_sym_sym_lit_token1, - ACTIONS(165), 1, - anon_sym_POUND_QMARK, - ACTIONS(167), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(169), 1, + ACTIONS(5413), 1, anon_sym_POUND_SQUOTE, - ACTIONS(171), 1, + ACTIONS(5415), 1, anon_sym_SQUOTE, - ACTIONS(173), 1, + ACTIONS(5417), 1, anon_sym_BQUOTE, - ACTIONS(175), 1, + ACTIONS(5419), 1, anon_sym_COMMA_AT, - ACTIONS(177), 1, + ACTIONS(5421), 1, anon_sym_COMMA, - ACTIONS(4855), 1, - anon_sym_COLON, - ACTIONS(4857), 1, - anon_sym_LPAREN, - ACTIONS(4859), 1, - anon_sym_cl, - ACTIONS(5585), 1, + ACTIONS(5547), 1, sym_self_referential_reader_macro, - STATE(1069), 1, - sym__bare_set_lit, - STATE(1073), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2804), 1, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2810), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(163), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(186), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(190), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(192), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(5583), 3, + ACTIONS(5411), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5425), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5545), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1070), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1108), 19, + STATE(1797), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -61651,7 +61024,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [19575] = 35, + [19307] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -61660,78 +61033,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(1598), 1, - anon_sym_POUND, - ACTIONS(1602), 1, - aux_sym_num_lit_token1, - ACTIONS(1606), 1, + ACTIONS(5041), 1, + anon_sym_COLON, + ACTIONS(5043), 1, anon_sym_COLON_COLON, - ACTIONS(1608), 1, + ACTIONS(5045), 1, anon_sym_DQUOTE, - ACTIONS(1610), 1, + ACTIONS(5047), 1, aux_sym_sym_lit_token1, - ACTIONS(1612), 1, + ACTIONS(5049), 1, anon_sym_LPAREN, - ACTIONS(1616), 1, + ACTIONS(5051), 1, anon_sym_POUND_QMARK, - ACTIONS(1618), 1, + ACTIONS(5163), 1, + sym_self_referential_reader_macro, + ACTIONS(5479), 1, + anon_sym_POUND, + ACTIONS(5481), 1, + aux_sym_num_lit_token1, + ACTIONS(5485), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1620), 1, + ACTIONS(5487), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1622), 1, + ACTIONS(5489), 1, anon_sym_SQUOTE, - ACTIONS(1624), 1, + ACTIONS(5491), 1, anon_sym_BQUOTE, - ACTIONS(1626), 1, + ACTIONS(5493), 1, anon_sym_COMMA_AT, - ACTIONS(1628), 1, + ACTIONS(5495), 1, anon_sym_COMMA, - ACTIONS(5101), 1, - anon_sym_COLON, - ACTIONS(5103), 1, + ACTIONS(5497), 1, anon_sym_cl, - ACTIONS(5591), 1, - sym_self_referential_reader_macro, - STATE(1893), 1, + STATE(1976), 1, sym__bare_set_lit, - STATE(2762), 1, - sym_sym_lit, - STATE(2840), 1, + STATE(2842), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2875), 1, + sym_sym_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(1614), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(1636), 2, + ACTIONS(1492), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(1640), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(1642), 2, + ACTIONS(1498), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5587), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(5589), 3, + ACTIONS(5483), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5499), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5161), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(532), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1892), 3, + STATE(1975), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2796), 19, + STATE(2845), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -61751,87 +61124,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [19710] = 35, + [19442] = 35, ACTIONS(9), 1, anon_sym_POUND_, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, + anon_sym_COLON_COLON, + ACTIONS(21), 1, + anon_sym_DQUOTE, + ACTIONS(23), 1, + aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, + anon_sym_POUND_QMARK, + ACTIONS(35), 1, + anon_sym_POUND_QMARK_AT, ACTIONS(47), 1, sym_block_comment, - ACTIONS(1598), 1, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(5405), 1, anon_sym_POUND, - ACTIONS(1602), 1, + ACTIONS(5409), 1, aux_sym_num_lit_token1, - ACTIONS(1606), 1, - anon_sym_COLON_COLON, - ACTIONS(1608), 1, - anon_sym_DQUOTE, - ACTIONS(1610), 1, - aux_sym_sym_lit_token1, - ACTIONS(1612), 1, - anon_sym_LPAREN, - ACTIONS(1616), 1, - anon_sym_POUND_QMARK, - ACTIONS(1618), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(1620), 1, + ACTIONS(5413), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1622), 1, + ACTIONS(5415), 1, anon_sym_SQUOTE, - ACTIONS(1624), 1, + ACTIONS(5417), 1, anon_sym_BQUOTE, - ACTIONS(1626), 1, + ACTIONS(5419), 1, anon_sym_COMMA_AT, - ACTIONS(1628), 1, + ACTIONS(5421), 1, anon_sym_COMMA, - ACTIONS(5101), 1, - anon_sym_COLON, - ACTIONS(5103), 1, - anon_sym_cl, - ACTIONS(5597), 1, + ACTIONS(5553), 1, sym_self_referential_reader_macro, - STATE(1893), 1, - sym__bare_set_lit, - STATE(2762), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2840), 1, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2810), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(1614), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(1636), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(1640), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(1642), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5593), 2, + ACTIONS(5411), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5425), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5549), 2, sym__ws, sym_comment, - ACTIONS(5595), 3, + ACTIONS(5551), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(570), 3, + STATE(552), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1892), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1966), 19, + STATE(1799), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -61851,87 +61224,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [19845] = 35, + [19577] = 35, ACTIONS(9), 1, anon_sym_POUND_, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, + anon_sym_COLON_COLON, + ACTIONS(21), 1, + anon_sym_DQUOTE, + ACTIONS(23), 1, + aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, + anon_sym_POUND_QMARK, + ACTIONS(35), 1, + anon_sym_POUND_QMARK_AT, ACTIONS(47), 1, sym_block_comment, - ACTIONS(1598), 1, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(5405), 1, anon_sym_POUND, - ACTIONS(1602), 1, + ACTIONS(5409), 1, aux_sym_num_lit_token1, - ACTIONS(1606), 1, - anon_sym_COLON_COLON, - ACTIONS(1608), 1, - anon_sym_DQUOTE, - ACTIONS(1610), 1, - aux_sym_sym_lit_token1, - ACTIONS(1612), 1, - anon_sym_LPAREN, - ACTIONS(1616), 1, - anon_sym_POUND_QMARK, - ACTIONS(1618), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(1620), 1, + ACTIONS(5413), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1622), 1, + ACTIONS(5415), 1, anon_sym_SQUOTE, - ACTIONS(1624), 1, + ACTIONS(5417), 1, anon_sym_BQUOTE, - ACTIONS(1626), 1, + ACTIONS(5419), 1, anon_sym_COMMA_AT, - ACTIONS(1628), 1, + ACTIONS(5421), 1, anon_sym_COMMA, - ACTIONS(5101), 1, - anon_sym_COLON, - ACTIONS(5103), 1, - anon_sym_cl, - ACTIONS(5603), 1, + ACTIONS(5559), 1, sym_self_referential_reader_macro, - STATE(1893), 1, - sym__bare_set_lit, - STATE(2762), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2840), 1, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2810), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(1614), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(1636), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(1640), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(1642), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5599), 2, + ACTIONS(5411), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5425), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5555), 2, sym__ws, sym_comment, - ACTIONS(5601), 3, + ACTIONS(5557), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(573), 3, + STATE(554), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1892), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1965), 19, + STATE(1800), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -61951,87 +61324,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [19980] = 35, + [19712] = 35, ACTIONS(9), 1, anon_sym_POUND_, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, + anon_sym_COLON_COLON, + ACTIONS(21), 1, + anon_sym_DQUOTE, + ACTIONS(23), 1, + aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, + anon_sym_POUND_QMARK, + ACTIONS(35), 1, + anon_sym_POUND_QMARK_AT, ACTIONS(47), 1, sym_block_comment, - ACTIONS(1598), 1, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(5405), 1, anon_sym_POUND, - ACTIONS(1602), 1, + ACTIONS(5409), 1, aux_sym_num_lit_token1, - ACTIONS(1606), 1, - anon_sym_COLON_COLON, - ACTIONS(1608), 1, - anon_sym_DQUOTE, - ACTIONS(1610), 1, - aux_sym_sym_lit_token1, - ACTIONS(1612), 1, - anon_sym_LPAREN, - ACTIONS(1616), 1, - anon_sym_POUND_QMARK, - ACTIONS(1618), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(1620), 1, + ACTIONS(5413), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1622), 1, + ACTIONS(5415), 1, anon_sym_SQUOTE, - ACTIONS(1624), 1, + ACTIONS(5417), 1, anon_sym_BQUOTE, - ACTIONS(1626), 1, + ACTIONS(5419), 1, anon_sym_COMMA_AT, - ACTIONS(1628), 1, + ACTIONS(5421), 1, anon_sym_COMMA, - ACTIONS(5101), 1, - anon_sym_COLON, - ACTIONS(5103), 1, - anon_sym_cl, - ACTIONS(5609), 1, + ACTIONS(5563), 1, sym_self_referential_reader_macro, - STATE(1893), 1, - sym__bare_set_lit, - STATE(2762), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2840), 1, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2810), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(1614), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(1636), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(1640), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(1642), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5605), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(5607), 3, + ACTIONS(5411), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5425), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5561), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(576), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1892), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2772), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1840), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -62051,87 +61424,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [20115] = 35, + [19847] = 35, ACTIONS(9), 1, anon_sym_POUND_, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, + anon_sym_COLON_COLON, + ACTIONS(21), 1, + anon_sym_DQUOTE, + ACTIONS(23), 1, + aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, + anon_sym_POUND_QMARK, + ACTIONS(35), 1, + anon_sym_POUND_QMARK_AT, ACTIONS(47), 1, sym_block_comment, - ACTIONS(1598), 1, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(5405), 1, anon_sym_POUND, - ACTIONS(1602), 1, + ACTIONS(5409), 1, aux_sym_num_lit_token1, - ACTIONS(1606), 1, - anon_sym_COLON_COLON, - ACTIONS(1608), 1, - anon_sym_DQUOTE, - ACTIONS(1610), 1, - aux_sym_sym_lit_token1, - ACTIONS(1612), 1, - anon_sym_LPAREN, - ACTIONS(1616), 1, - anon_sym_POUND_QMARK, - ACTIONS(1618), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(1620), 1, + ACTIONS(5413), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1622), 1, + ACTIONS(5415), 1, anon_sym_SQUOTE, - ACTIONS(1624), 1, + ACTIONS(5417), 1, anon_sym_BQUOTE, - ACTIONS(1626), 1, + ACTIONS(5419), 1, anon_sym_COMMA_AT, - ACTIONS(1628), 1, + ACTIONS(5421), 1, anon_sym_COMMA, - ACTIONS(5101), 1, - anon_sym_COLON, - ACTIONS(5103), 1, - anon_sym_cl, - ACTIONS(5613), 1, + ACTIONS(5567), 1, sym_self_referential_reader_macro, - STATE(1893), 1, - sym__bare_set_lit, - STATE(2762), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2840), 1, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2810), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(1614), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(1636), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(1640), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(1642), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(5611), 3, + ACTIONS(5411), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5425), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5565), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1892), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1962), 19, + STATE(1842), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -62151,87 +61524,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [20250] = 35, + [19982] = 35, ACTIONS(9), 1, anon_sym_POUND_, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, + anon_sym_COLON_COLON, + ACTIONS(21), 1, + anon_sym_DQUOTE, + ACTIONS(23), 1, + aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, + anon_sym_POUND_QMARK, + ACTIONS(35), 1, + anon_sym_POUND_QMARK_AT, ACTIONS(47), 1, sym_block_comment, - ACTIONS(137), 1, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(5405), 1, anon_sym_POUND, - ACTIONS(141), 1, + ACTIONS(5409), 1, aux_sym_num_lit_token1, - ACTIONS(146), 1, - anon_sym_COLON_COLON, - ACTIONS(148), 1, - anon_sym_DQUOTE, - ACTIONS(150), 1, - aux_sym_sym_lit_token1, - ACTIONS(165), 1, - anon_sym_POUND_QMARK, - ACTIONS(167), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(169), 1, + ACTIONS(5413), 1, anon_sym_POUND_SQUOTE, - ACTIONS(171), 1, + ACTIONS(5415), 1, anon_sym_SQUOTE, - ACTIONS(173), 1, + ACTIONS(5417), 1, anon_sym_BQUOTE, - ACTIONS(175), 1, + ACTIONS(5419), 1, anon_sym_COMMA_AT, - ACTIONS(177), 1, + ACTIONS(5421), 1, anon_sym_COMMA, - ACTIONS(4855), 1, - anon_sym_COLON, - ACTIONS(4857), 1, - anon_sym_LPAREN, - ACTIONS(4859), 1, - anon_sym_cl, - ACTIONS(5619), 1, + ACTIONS(5573), 1, sym_self_referential_reader_macro, - STATE(1069), 1, - sym__bare_set_lit, - STATE(1073), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2804), 1, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2810), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(163), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(186), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(190), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(192), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5615), 2, + ACTIONS(5411), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5425), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5569), 2, sym__ws, sym_comment, - ACTIONS(5617), 3, + ACTIONS(5571), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(531), 3, + STATE(556), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1070), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1120), 19, + STATE(1843), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -62251,87 +61624,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [20385] = 35, + [20117] = 35, ACTIONS(9), 1, anon_sym_POUND_, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, + anon_sym_COLON_COLON, + ACTIONS(21), 1, + anon_sym_DQUOTE, + ACTIONS(23), 1, + aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, + anon_sym_POUND_QMARK, + ACTIONS(35), 1, + anon_sym_POUND_QMARK_AT, ACTIONS(47), 1, sym_block_comment, - ACTIONS(137), 1, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(5405), 1, anon_sym_POUND, - ACTIONS(141), 1, + ACTIONS(5409), 1, aux_sym_num_lit_token1, - ACTIONS(146), 1, - anon_sym_COLON_COLON, - ACTIONS(148), 1, - anon_sym_DQUOTE, - ACTIONS(150), 1, - aux_sym_sym_lit_token1, - ACTIONS(165), 1, - anon_sym_POUND_QMARK, - ACTIONS(167), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(169), 1, + ACTIONS(5413), 1, anon_sym_POUND_SQUOTE, - ACTIONS(171), 1, + ACTIONS(5415), 1, anon_sym_SQUOTE, - ACTIONS(173), 1, + ACTIONS(5417), 1, anon_sym_BQUOTE, - ACTIONS(175), 1, + ACTIONS(5419), 1, anon_sym_COMMA_AT, - ACTIONS(177), 1, + ACTIONS(5421), 1, anon_sym_COMMA, - ACTIONS(4855), 1, - anon_sym_COLON, - ACTIONS(4857), 1, - anon_sym_LPAREN, - ACTIONS(4859), 1, - anon_sym_cl, - ACTIONS(5623), 1, + ACTIONS(5577), 1, sym_self_referential_reader_macro, - STATE(1069), 1, - sym__bare_set_lit, - STATE(1073), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2804), 1, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2810), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(163), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(186), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(190), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(192), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(5621), 3, + ACTIONS(5411), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5425), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5575), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1070), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1122), 19, + STATE(1844), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -62351,87 +61724,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [20520] = 35, + [20252] = 35, ACTIONS(9), 1, anon_sym_POUND_, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, + anon_sym_COLON_COLON, + ACTIONS(21), 1, + anon_sym_DQUOTE, + ACTIONS(23), 1, + aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, + anon_sym_POUND_QMARK, + ACTIONS(35), 1, + anon_sym_POUND_QMARK_AT, ACTIONS(47), 1, sym_block_comment, - ACTIONS(636), 1, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(5405), 1, anon_sym_POUND, - ACTIONS(640), 1, + ACTIONS(5409), 1, aux_sym_num_lit_token1, - ACTIONS(644), 1, - anon_sym_COLON_COLON, - ACTIONS(646), 1, - anon_sym_DQUOTE, - ACTIONS(648), 1, - aux_sym_sym_lit_token1, - ACTIONS(652), 1, - anon_sym_POUND_QMARK, - ACTIONS(654), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(656), 1, + ACTIONS(5413), 1, anon_sym_POUND_SQUOTE, - ACTIONS(658), 1, + ACTIONS(5415), 1, anon_sym_SQUOTE, - ACTIONS(660), 1, + ACTIONS(5417), 1, anon_sym_BQUOTE, - ACTIONS(662), 1, + ACTIONS(5419), 1, anon_sym_COMMA_AT, - ACTIONS(664), 1, + ACTIONS(5421), 1, anon_sym_COMMA, - ACTIONS(4410), 1, - anon_sym_COLON, - ACTIONS(4412), 1, - anon_sym_LPAREN, - ACTIONS(4414), 1, - anon_sym_cl, - ACTIONS(5629), 1, + ACTIONS(5583), 1, sym_self_referential_reader_macro, - STATE(1186), 1, + STATE(1771), 1, sym_sym_lit, - STATE(1191), 1, + STATE(1801), 1, sym__bare_set_lit, - STATE(2827), 1, + STATE(2810), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(650), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(666), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(670), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(672), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5625), 2, + ACTIONS(5411), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5425), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5579), 2, sym__ws, sym_comment, - ACTIONS(5627), 3, + ACTIONS(5581), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(542), 3, + STATE(557), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1187), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1164), 19, + STATE(1845), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -62451,87 +61824,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [20655] = 35, + [20387] = 35, ACTIONS(9), 1, anon_sym_POUND_, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, + anon_sym_COLON_COLON, + ACTIONS(21), 1, + anon_sym_DQUOTE, + ACTIONS(23), 1, + aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, + anon_sym_POUND_QMARK, + ACTIONS(35), 1, + anon_sym_POUND_QMARK_AT, ACTIONS(47), 1, sym_block_comment, - ACTIONS(137), 1, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(4933), 1, + sym_self_referential_reader_macro, + ACTIONS(5405), 1, anon_sym_POUND, - ACTIONS(141), 1, + ACTIONS(5409), 1, aux_sym_num_lit_token1, - ACTIONS(146), 1, - anon_sym_COLON_COLON, - ACTIONS(148), 1, - anon_sym_DQUOTE, - ACTIONS(150), 1, - aux_sym_sym_lit_token1, - ACTIONS(165), 1, - anon_sym_POUND_QMARK, - ACTIONS(167), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(169), 1, + ACTIONS(5413), 1, anon_sym_POUND_SQUOTE, - ACTIONS(171), 1, + ACTIONS(5415), 1, anon_sym_SQUOTE, - ACTIONS(173), 1, + ACTIONS(5417), 1, anon_sym_BQUOTE, - ACTIONS(175), 1, + ACTIONS(5419), 1, anon_sym_COMMA_AT, - ACTIONS(177), 1, + ACTIONS(5421), 1, anon_sym_COMMA, - ACTIONS(4855), 1, - anon_sym_COLON, - ACTIONS(4857), 1, - anon_sym_LPAREN, - ACTIONS(4859), 1, - anon_sym_cl, - ACTIONS(5635), 1, - sym_self_referential_reader_macro, - STATE(1069), 1, - sym__bare_set_lit, - STATE(1073), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2804), 1, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2810), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(163), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(186), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(190), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(192), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5631), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(5633), 3, + ACTIONS(5411), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5425), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4931), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(546), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1070), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1103), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1875), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -62551,87 +61924,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [20790] = 35, + [20522] = 35, ACTIONS(9), 1, anon_sym_POUND_, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, + anon_sym_COLON_COLON, + ACTIONS(21), 1, + anon_sym_DQUOTE, + ACTIONS(23), 1, + aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, + anon_sym_POUND_QMARK, + ACTIONS(35), 1, + anon_sym_POUND_QMARK_AT, ACTIONS(47), 1, sym_block_comment, - ACTIONS(137), 1, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(4937), 1, + sym_self_referential_reader_macro, + ACTIONS(5405), 1, anon_sym_POUND, - ACTIONS(141), 1, + ACTIONS(5409), 1, aux_sym_num_lit_token1, - ACTIONS(146), 1, - anon_sym_COLON_COLON, - ACTIONS(148), 1, - anon_sym_DQUOTE, - ACTIONS(150), 1, - aux_sym_sym_lit_token1, - ACTIONS(165), 1, - anon_sym_POUND_QMARK, - ACTIONS(167), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(169), 1, + ACTIONS(5413), 1, anon_sym_POUND_SQUOTE, - ACTIONS(171), 1, + ACTIONS(5415), 1, anon_sym_SQUOTE, - ACTIONS(173), 1, + ACTIONS(5417), 1, anon_sym_BQUOTE, - ACTIONS(175), 1, + ACTIONS(5419), 1, anon_sym_COMMA_AT, - ACTIONS(177), 1, + ACTIONS(5421), 1, anon_sym_COMMA, - ACTIONS(4855), 1, - anon_sym_COLON, - ACTIONS(4857), 1, - anon_sym_LPAREN, - ACTIONS(4859), 1, - anon_sym_cl, - ACTIONS(5641), 1, - sym_self_referential_reader_macro, - STATE(1069), 1, - sym__bare_set_lit, - STATE(1073), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2804), 1, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2810), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(163), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(186), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(190), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(192), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5637), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(5639), 3, + ACTIONS(5411), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5425), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4935), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(549), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1070), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1091), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1876), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -62651,7 +62024,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [20925] = 35, + [20657] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -62660,78 +62033,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(137), 1, - anon_sym_POUND, - ACTIONS(141), 1, - aux_sym_num_lit_token1, - ACTIONS(146), 1, + ACTIONS(5041), 1, + anon_sym_COLON, + ACTIONS(5043), 1, anon_sym_COLON_COLON, - ACTIONS(148), 1, + ACTIONS(5045), 1, anon_sym_DQUOTE, - ACTIONS(150), 1, + ACTIONS(5047), 1, aux_sym_sym_lit_token1, - ACTIONS(165), 1, + ACTIONS(5049), 1, + anon_sym_LPAREN, + ACTIONS(5051), 1, anon_sym_POUND_QMARK, - ACTIONS(167), 1, + ACTIONS(5479), 1, + anon_sym_POUND, + ACTIONS(5481), 1, + aux_sym_num_lit_token1, + ACTIONS(5485), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(169), 1, + ACTIONS(5487), 1, anon_sym_POUND_SQUOTE, - ACTIONS(171), 1, + ACTIONS(5489), 1, anon_sym_SQUOTE, - ACTIONS(173), 1, + ACTIONS(5491), 1, anon_sym_BQUOTE, - ACTIONS(175), 1, + ACTIONS(5493), 1, anon_sym_COMMA_AT, - ACTIONS(177), 1, + ACTIONS(5495), 1, anon_sym_COMMA, - ACTIONS(4855), 1, - anon_sym_COLON, - ACTIONS(4857), 1, - anon_sym_LPAREN, - ACTIONS(4859), 1, + ACTIONS(5497), 1, anon_sym_cl, - ACTIONS(5647), 1, + ACTIONS(5589), 1, sym_self_referential_reader_macro, - STATE(1069), 1, + STATE(1976), 1, sym__bare_set_lit, - STATE(1073), 1, - sym_sym_lit, - STATE(2804), 1, + STATE(2842), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2875), 1, + sym_sym_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(163), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(186), 2, + ACTIONS(1492), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(190), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(192), 2, + ACTIONS(1498), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5643), 2, + ACTIONS(5483), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5499), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5585), 2, sym__ws, sym_comment, - ACTIONS(5645), 3, + ACTIONS(5587), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(556), 3, + STATE(564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1070), 3, + STATE(1975), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1053), 19, + STATE(1895), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -62751,7 +62124,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [21060] = 35, + [20792] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -62760,78 +62133,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(636), 1, - anon_sym_POUND, - ACTIONS(640), 1, - aux_sym_num_lit_token1, - ACTIONS(644), 1, + ACTIONS(5041), 1, + anon_sym_COLON, + ACTIONS(5043), 1, anon_sym_COLON_COLON, - ACTIONS(646), 1, + ACTIONS(5045), 1, anon_sym_DQUOTE, - ACTIONS(648), 1, + ACTIONS(5047), 1, aux_sym_sym_lit_token1, - ACTIONS(652), 1, + ACTIONS(5049), 1, + anon_sym_LPAREN, + ACTIONS(5051), 1, anon_sym_POUND_QMARK, - ACTIONS(654), 1, + ACTIONS(5479), 1, + anon_sym_POUND, + ACTIONS(5481), 1, + aux_sym_num_lit_token1, + ACTIONS(5485), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(656), 1, + ACTIONS(5487), 1, anon_sym_POUND_SQUOTE, - ACTIONS(658), 1, + ACTIONS(5489), 1, anon_sym_SQUOTE, - ACTIONS(660), 1, + ACTIONS(5491), 1, anon_sym_BQUOTE, - ACTIONS(662), 1, + ACTIONS(5493), 1, anon_sym_COMMA_AT, - ACTIONS(664), 1, + ACTIONS(5495), 1, anon_sym_COMMA, - ACTIONS(4410), 1, - anon_sym_COLON, - ACTIONS(4412), 1, - anon_sym_LPAREN, - ACTIONS(4414), 1, + ACTIONS(5497), 1, anon_sym_cl, - ACTIONS(5651), 1, + ACTIONS(5595), 1, sym_self_referential_reader_macro, - STATE(1186), 1, - sym_sym_lit, - STATE(1191), 1, + STATE(1976), 1, sym__bare_set_lit, - STATE(2827), 1, + STATE(2842), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2875), 1, + sym_sym_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(650), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(666), 2, + ACTIONS(1492), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(670), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(672), 2, + ACTIONS(1498), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(5483), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5499), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5591), 2, sym__ws, sym_comment, - ACTIONS(5649), 3, + ACTIONS(5593), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1187), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(565), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1157), 19, + STATE(1975), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1896), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -62851,87 +62224,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [21195] = 35, + [20927] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, - anon_sym_POUND, - ACTIONS(15), 1, - aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(5041), 1, + anon_sym_COLON, + ACTIONS(5043), 1, + anon_sym_COLON_COLON, + ACTIONS(5045), 1, + anon_sym_DQUOTE, + ACTIONS(5047), 1, + aux_sym_sym_lit_token1, + ACTIONS(5049), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(5051), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(5479), 1, + anon_sym_POUND, + ACTIONS(5481), 1, + aux_sym_num_lit_token1, + ACTIONS(5485), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(5487), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(5489), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(5491), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(5493), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(5495), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(5497), 1, anon_sym_cl, - ACTIONS(5655), 1, + ACTIONS(5601), 1, sym_self_referential_reader_macro, - STATE(1875), 1, + STATE(1976), 1, sym__bare_set_lit, - STATE(1878), 1, - sym_sym_lit, - STATE(2808), 1, + STATE(2842), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2875), 1, + sym_sym_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(1492), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(1498), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(5483), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5499), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5597), 2, sym__ws, sym_comment, - ACTIONS(5653), 3, + ACTIONS(5599), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1877), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(566), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(409), 19, + STATE(1975), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1890), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -62951,7 +62324,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [21330] = 35, + [21062] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -62960,78 +62333,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(636), 1, + ACTIONS(174), 1, anon_sym_POUND, - ACTIONS(640), 1, + ACTIONS(178), 1, aux_sym_num_lit_token1, - ACTIONS(644), 1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(646), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(648), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(652), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(654), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(656), 1, + ACTIONS(211), 1, anon_sym_POUND_SQUOTE, - ACTIONS(658), 1, + ACTIONS(213), 1, anon_sym_SQUOTE, - ACTIONS(660), 1, + ACTIONS(215), 1, anon_sym_BQUOTE, - ACTIONS(662), 1, + ACTIONS(217), 1, anon_sym_COMMA_AT, - ACTIONS(664), 1, + ACTIONS(219), 1, anon_sym_COMMA, - ACTIONS(4410), 1, + ACTIONS(4767), 1, anon_sym_COLON, - ACTIONS(4412), 1, + ACTIONS(4769), 1, anon_sym_LPAREN, - ACTIONS(4414), 1, + ACTIONS(4771), 1, anon_sym_cl, - ACTIONS(5659), 1, + ACTIONS(5607), 1, sym_self_referential_reader_macro, - STATE(1186), 1, + STATE(2112), 1, sym_sym_lit, - STATE(1191), 1, + STATE(2589), 1, sym__bare_set_lit, - STATE(2827), 1, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(650), 2, + ACTIONS(205), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(666), 2, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(670), 2, + ACTIONS(234), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(672), 2, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(5603), 2, sym__ws, sym_comment, - ACTIONS(5657), 3, + ACTIONS(5605), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1187), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(567), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1156), 19, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2108), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -63051,7 +62424,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [21465] = 35, + [21197] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -63060,78 +62433,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4747), 1, + ACTIONS(174), 1, anon_sym_POUND, - ACTIONS(4751), 1, + ACTIONS(178), 1, aux_sym_num_lit_token1, - ACTIONS(4753), 1, - anon_sym_COLON, - ACTIONS(4755), 1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(4757), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(4759), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(4761), 1, - anon_sym_LPAREN, - ACTIONS(4765), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(4767), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4769), 1, + ACTIONS(211), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4771), 1, + ACTIONS(213), 1, anon_sym_SQUOTE, - ACTIONS(4773), 1, + ACTIONS(215), 1, anon_sym_BQUOTE, - ACTIONS(4775), 1, + ACTIONS(217), 1, anon_sym_COMMA_AT, - ACTIONS(4777), 1, + ACTIONS(219), 1, anon_sym_COMMA, - ACTIONS(4779), 1, + ACTIONS(4767), 1, + anon_sym_COLON, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, anon_sym_cl, - ACTIONS(5663), 1, + ACTIONS(5613), 1, sym_self_referential_reader_macro, - STATE(1489), 1, + STATE(2112), 1, sym_sym_lit, - STATE(1557), 1, + STATE(2589), 1, sym__bare_set_lit, - STATE(2841), 1, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(4763), 2, + ACTIONS(205), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4781), 2, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4785), 2, + ACTIONS(234), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4787), 2, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(5609), 2, sym__ws, sym_comment, - ACTIONS(5661), 3, + ACTIONS(5611), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1612), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(568), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1555), 19, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2116), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -63151,87 +62524,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [21600] = 35, + [21332] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(174), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(178), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(211), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(213), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(215), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(217), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(219), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4767), 1, + anon_sym_COLON, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, anon_sym_cl, - ACTIONS(5667), 1, + ACTIONS(5617), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(2112), 1, sym_sym_lit, - STATE(2808), 1, + STATE(2589), 1, + sym__bare_set_lit, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(205), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(234), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(5665), 3, + ACTIONS(5615), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1877), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(442), 19, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2123), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -63251,7 +62624,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [21735] = 35, + [21467] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -63260,78 +62633,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(137), 1, - anon_sym_POUND, - ACTIONS(141), 1, - aux_sym_num_lit_token1, - ACTIONS(146), 1, + ACTIONS(5041), 1, + anon_sym_COLON, + ACTIONS(5043), 1, anon_sym_COLON_COLON, - ACTIONS(148), 1, + ACTIONS(5045), 1, anon_sym_DQUOTE, - ACTIONS(150), 1, + ACTIONS(5047), 1, aux_sym_sym_lit_token1, - ACTIONS(165), 1, + ACTIONS(5049), 1, + anon_sym_LPAREN, + ACTIONS(5051), 1, anon_sym_POUND_QMARK, - ACTIONS(167), 1, + ACTIONS(5479), 1, + anon_sym_POUND, + ACTIONS(5481), 1, + aux_sym_num_lit_token1, + ACTIONS(5485), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(169), 1, + ACTIONS(5487), 1, anon_sym_POUND_SQUOTE, - ACTIONS(171), 1, + ACTIONS(5489), 1, anon_sym_SQUOTE, - ACTIONS(173), 1, + ACTIONS(5491), 1, anon_sym_BQUOTE, - ACTIONS(175), 1, + ACTIONS(5493), 1, anon_sym_COMMA_AT, - ACTIONS(177), 1, + ACTIONS(5495), 1, anon_sym_COMMA, - ACTIONS(4855), 1, - anon_sym_COLON, - ACTIONS(4857), 1, - anon_sym_LPAREN, - ACTIONS(4859), 1, + ACTIONS(5497), 1, anon_sym_cl, - ACTIONS(5671), 1, + ACTIONS(5621), 1, sym_self_referential_reader_macro, - STATE(1069), 1, + STATE(1976), 1, sym__bare_set_lit, - STATE(1073), 1, - sym_sym_lit, - STATE(2804), 1, + STATE(2842), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2875), 1, + sym_sym_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(163), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(186), 2, + ACTIONS(1492), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(190), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(192), 2, + ACTIONS(1498), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(5669), 3, + ACTIONS(5483), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5499), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5619), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1070), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1001), 19, + STATE(1975), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1906), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -63351,87 +62724,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [21870] = 35, + [21602] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, - anon_sym_POUND, - ACTIONS(15), 1, - aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(5041), 1, + anon_sym_COLON, + ACTIONS(5043), 1, + anon_sym_COLON_COLON, + ACTIONS(5045), 1, + anon_sym_DQUOTE, + ACTIONS(5047), 1, + aux_sym_sym_lit_token1, + ACTIONS(5049), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(5051), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(5479), 1, + anon_sym_POUND, + ACTIONS(5481), 1, + aux_sym_num_lit_token1, + ACTIONS(5485), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(5487), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(5489), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(5491), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(5493), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(5495), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(5497), 1, anon_sym_cl, - ACTIONS(5677), 1, + ACTIONS(5625), 1, sym_self_referential_reader_macro, - STATE(1875), 1, + STATE(1976), 1, sym__bare_set_lit, - STATE(1878), 1, - sym_sym_lit, - STATE(2808), 1, + STATE(2842), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2875), 1, + sym_sym_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(1492), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(1498), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5673), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(5675), 3, + ACTIONS(5483), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5499), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5623), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(562), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1877), 3, + STATE(1975), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(435), 19, + STATE(1907), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -63451,7 +62824,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [22005] = 35, + [21737] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -63460,78 +62833,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(137), 1, - anon_sym_POUND, - ACTIONS(141), 1, - aux_sym_num_lit_token1, - ACTIONS(146), 1, + ACTIONS(5041), 1, + anon_sym_COLON, + ACTIONS(5043), 1, anon_sym_COLON_COLON, - ACTIONS(148), 1, + ACTIONS(5045), 1, anon_sym_DQUOTE, - ACTIONS(150), 1, + ACTIONS(5047), 1, aux_sym_sym_lit_token1, - ACTIONS(165), 1, + ACTIONS(5049), 1, + anon_sym_LPAREN, + ACTIONS(5051), 1, anon_sym_POUND_QMARK, - ACTIONS(167), 1, + ACTIONS(5479), 1, + anon_sym_POUND, + ACTIONS(5481), 1, + aux_sym_num_lit_token1, + ACTIONS(5485), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(169), 1, + ACTIONS(5487), 1, anon_sym_POUND_SQUOTE, - ACTIONS(171), 1, + ACTIONS(5489), 1, anon_sym_SQUOTE, - ACTIONS(173), 1, + ACTIONS(5491), 1, anon_sym_BQUOTE, - ACTIONS(175), 1, + ACTIONS(5493), 1, anon_sym_COMMA_AT, - ACTIONS(177), 1, + ACTIONS(5495), 1, anon_sym_COMMA, - ACTIONS(4855), 1, - anon_sym_COLON, - ACTIONS(4857), 1, - anon_sym_LPAREN, - ACTIONS(4859), 1, + ACTIONS(5497), 1, anon_sym_cl, - ACTIONS(5681), 1, + ACTIONS(5629), 1, sym_self_referential_reader_macro, - STATE(1069), 1, + STATE(1976), 1, sym__bare_set_lit, - STATE(1073), 1, - sym_sym_lit, - STATE(2804), 1, + STATE(2842), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2875), 1, + sym_sym_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(163), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(186), 2, + ACTIONS(1492), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(190), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(192), 2, + ACTIONS(1498), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(5679), 3, + ACTIONS(5483), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5499), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5627), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1070), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1002), 19, + STATE(1975), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1908), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -63551,7 +62924,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [22140] = 35, + [21872] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -63560,78 +62933,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(1598), 1, + ACTIONS(174), 1, anon_sym_POUND, - ACTIONS(1602), 1, + ACTIONS(178), 1, aux_sym_num_lit_token1, - ACTIONS(1606), 1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(1608), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(1610), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(1612), 1, - anon_sym_LPAREN, - ACTIONS(1616), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(1618), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1620), 1, + ACTIONS(211), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1622), 1, + ACTIONS(213), 1, anon_sym_SQUOTE, - ACTIONS(1624), 1, + ACTIONS(215), 1, anon_sym_BQUOTE, - ACTIONS(1626), 1, + ACTIONS(217), 1, anon_sym_COMMA_AT, - ACTIONS(1628), 1, + ACTIONS(219), 1, anon_sym_COMMA, - ACTIONS(5101), 1, + ACTIONS(4767), 1, anon_sym_COLON, - ACTIONS(5103), 1, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, anon_sym_cl, - ACTIONS(5687), 1, + ACTIONS(5633), 1, sym_self_referential_reader_macro, - STATE(1893), 1, - sym__bare_set_lit, - STATE(2762), 1, + STATE(2112), 1, sym_sym_lit, - STATE(2840), 1, + STATE(2589), 1, + sym__bare_set_lit, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(1614), 2, + ACTIONS(205), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(1636), 2, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(1640), 2, + ACTIONS(234), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1642), 2, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5683), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(5685), 3, + ACTIONS(5631), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(585), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1892), 3, + STATE(2584), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1961), 19, + STATE(2149), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -63651,7 +63024,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [22275] = 35, + [22007] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -63660,78 +63033,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(1598), 1, + ACTIONS(174), 1, anon_sym_POUND, - ACTIONS(1602), 1, + ACTIONS(178), 1, aux_sym_num_lit_token1, - ACTIONS(1606), 1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(1608), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(1610), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(1612), 1, - anon_sym_LPAREN, - ACTIONS(1616), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(1618), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1620), 1, + ACTIONS(211), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1622), 1, + ACTIONS(213), 1, anon_sym_SQUOTE, - ACTIONS(1624), 1, + ACTIONS(215), 1, anon_sym_BQUOTE, - ACTIONS(1626), 1, + ACTIONS(217), 1, anon_sym_COMMA_AT, - ACTIONS(1628), 1, + ACTIONS(219), 1, anon_sym_COMMA, - ACTIONS(5101), 1, + ACTIONS(4767), 1, anon_sym_COLON, - ACTIONS(5103), 1, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, anon_sym_cl, - ACTIONS(5691), 1, + ACTIONS(5637), 1, sym_self_referential_reader_macro, - STATE(1893), 1, - sym__bare_set_lit, - STATE(2762), 1, + STATE(2112), 1, sym_sym_lit, - STATE(2840), 1, + STATE(2589), 1, + sym__bare_set_lit, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(1614), 2, + ACTIONS(205), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(1636), 2, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(1640), 2, + ACTIONS(234), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1642), 2, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(5689), 3, + ACTIONS(5635), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1892), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1959), 19, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2151), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -63751,7 +63124,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [22410] = 35, + [22142] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -63760,78 +63133,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(137), 1, - anon_sym_POUND, - ACTIONS(141), 1, - aux_sym_num_lit_token1, - ACTIONS(146), 1, + ACTIONS(5041), 1, + anon_sym_COLON, + ACTIONS(5043), 1, anon_sym_COLON_COLON, - ACTIONS(148), 1, + ACTIONS(5045), 1, anon_sym_DQUOTE, - ACTIONS(150), 1, + ACTIONS(5047), 1, aux_sym_sym_lit_token1, - ACTIONS(165), 1, + ACTIONS(5049), 1, + anon_sym_LPAREN, + ACTIONS(5051), 1, anon_sym_POUND_QMARK, - ACTIONS(167), 1, + ACTIONS(5479), 1, + anon_sym_POUND, + ACTIONS(5481), 1, + aux_sym_num_lit_token1, + ACTIONS(5485), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(169), 1, + ACTIONS(5487), 1, anon_sym_POUND_SQUOTE, - ACTIONS(171), 1, + ACTIONS(5489), 1, anon_sym_SQUOTE, - ACTIONS(173), 1, + ACTIONS(5491), 1, anon_sym_BQUOTE, - ACTIONS(175), 1, + ACTIONS(5493), 1, anon_sym_COMMA_AT, - ACTIONS(177), 1, + ACTIONS(5495), 1, anon_sym_COMMA, - ACTIONS(4855), 1, - anon_sym_COLON, - ACTIONS(4857), 1, - anon_sym_LPAREN, - ACTIONS(4859), 1, + ACTIONS(5497), 1, anon_sym_cl, - ACTIONS(5695), 1, + ACTIONS(5643), 1, sym_self_referential_reader_macro, - STATE(1069), 1, + STATE(1976), 1, sym__bare_set_lit, - STATE(1073), 1, - sym_sym_lit, - STATE(2804), 1, + STATE(2842), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2875), 1, + sym_sym_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(163), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(186), 2, + ACTIONS(1492), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(190), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(192), 2, + ACTIONS(1498), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(5483), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5499), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5639), 2, sym__ws, sym_comment, - ACTIONS(5693), 3, + ACTIONS(5641), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1070), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(573), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1003), 19, + STATE(1975), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1910), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -63851,7 +63224,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [22545] = 35, + [22277] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -63860,78 +63233,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5029), 1, + ACTIONS(5041), 1, anon_sym_COLON, - ACTIONS(5031), 1, + ACTIONS(5043), 1, anon_sym_COLON_COLON, - ACTIONS(5033), 1, + ACTIONS(5045), 1, anon_sym_DQUOTE, - ACTIONS(5035), 1, + ACTIONS(5047), 1, aux_sym_sym_lit_token1, - ACTIONS(5053), 1, - anon_sym_cl, - ACTIONS(5175), 1, - anon_sym_POUND, - ACTIONS(5179), 1, - aux_sym_num_lit_token1, - ACTIONS(5181), 1, + ACTIONS(5049), 1, anon_sym_LPAREN, - ACTIONS(5185), 1, + ACTIONS(5051), 1, anon_sym_POUND_QMARK, - ACTIONS(5187), 1, + ACTIONS(5479), 1, + anon_sym_POUND, + ACTIONS(5481), 1, + aux_sym_num_lit_token1, + ACTIONS(5485), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5189), 1, + ACTIONS(5487), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5191), 1, + ACTIONS(5489), 1, anon_sym_SQUOTE, - ACTIONS(5193), 1, + ACTIONS(5491), 1, anon_sym_BQUOTE, - ACTIONS(5195), 1, + ACTIONS(5493), 1, anon_sym_COMMA_AT, - ACTIONS(5197), 1, + ACTIONS(5495), 1, anon_sym_COMMA, - ACTIONS(5699), 1, + ACTIONS(5497), 1, + anon_sym_cl, + ACTIONS(5649), 1, sym_self_referential_reader_macro, - STATE(2839), 1, + STATE(1976), 1, + sym__bare_set_lit, + STATE(2842), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, - sym__metadata_lit, - STATE(2990), 1, - sym__bare_set_lit, - STATE(3078), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2875), 1, sym_sym_lit, - ACTIONS(4801), 2, - sym__ws, - sym_comment, - ACTIONS(5055), 2, + STATE(2903), 1, + sym__metadata_lit, + ACTIONS(1492), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(5061), 2, + ACTIONS(1498), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5183), 2, + ACTIONS(5483), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5201), 2, + ACTIONS(5499), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5697), 3, + ACTIONS(5645), 2, + sym__ws, + sym_comment, + ACTIONS(5647), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, + STATE(575), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2991), 3, + STATE(1975), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(3098), 19, + STATE(1912), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -63951,7 +63324,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [22680] = 35, + [22412] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -63960,78 +63333,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(1598), 1, - anon_sym_POUND, - ACTIONS(1602), 1, - aux_sym_num_lit_token1, - ACTIONS(1606), 1, + ACTIONS(5041), 1, + anon_sym_COLON, + ACTIONS(5043), 1, anon_sym_COLON_COLON, - ACTIONS(1608), 1, + ACTIONS(5045), 1, anon_sym_DQUOTE, - ACTIONS(1610), 1, + ACTIONS(5047), 1, aux_sym_sym_lit_token1, - ACTIONS(1612), 1, + ACTIONS(5049), 1, anon_sym_LPAREN, - ACTIONS(1616), 1, + ACTIONS(5051), 1, anon_sym_POUND_QMARK, - ACTIONS(1618), 1, + ACTIONS(5479), 1, + anon_sym_POUND, + ACTIONS(5481), 1, + aux_sym_num_lit_token1, + ACTIONS(5485), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1620), 1, + ACTIONS(5487), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1622), 1, + ACTIONS(5489), 1, anon_sym_SQUOTE, - ACTIONS(1624), 1, + ACTIONS(5491), 1, anon_sym_BQUOTE, - ACTIONS(1626), 1, + ACTIONS(5493), 1, anon_sym_COMMA_AT, - ACTIONS(1628), 1, + ACTIONS(5495), 1, anon_sym_COMMA, - ACTIONS(5101), 1, - anon_sym_COLON, - ACTIONS(5103), 1, + ACTIONS(5497), 1, anon_sym_cl, - ACTIONS(5703), 1, + ACTIONS(5655), 1, sym_self_referential_reader_macro, - STATE(1893), 1, + STATE(1976), 1, sym__bare_set_lit, - STATE(2762), 1, - sym_sym_lit, - STATE(2840), 1, + STATE(2842), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2875), 1, + sym_sym_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(1614), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(1636), 2, + ACTIONS(1492), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(1640), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(1642), 2, + ACTIONS(1498), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(5483), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5499), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5651), 2, sym__ws, sym_comment, - ACTIONS(5701), 3, + ACTIONS(5653), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1892), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(576), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1958), 19, + STATE(1975), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1913), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -64051,7 +63424,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [22815] = 35, + [22547] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -64060,78 +63433,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(636), 1, + ACTIONS(174), 1, anon_sym_POUND, - ACTIONS(640), 1, + ACTIONS(178), 1, aux_sym_num_lit_token1, - ACTIONS(644), 1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(646), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(648), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(652), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(654), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(656), 1, + ACTIONS(211), 1, anon_sym_POUND_SQUOTE, - ACTIONS(658), 1, + ACTIONS(213), 1, anon_sym_SQUOTE, - ACTIONS(660), 1, + ACTIONS(215), 1, anon_sym_BQUOTE, - ACTIONS(662), 1, + ACTIONS(217), 1, anon_sym_COMMA_AT, - ACTIONS(664), 1, + ACTIONS(219), 1, anon_sym_COMMA, - ACTIONS(4410), 1, + ACTIONS(4767), 1, anon_sym_COLON, - ACTIONS(4412), 1, + ACTIONS(4769), 1, anon_sym_LPAREN, - ACTIONS(4414), 1, + ACTIONS(4771), 1, anon_sym_cl, - ACTIONS(5709), 1, + ACTIONS(5661), 1, sym_self_referential_reader_macro, - STATE(1186), 1, + STATE(2112), 1, sym_sym_lit, - STATE(1191), 1, + STATE(2589), 1, sym__bare_set_lit, - STATE(2827), 1, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(650), 2, + ACTIONS(205), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(666), 2, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(670), 2, + ACTIONS(234), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(672), 2, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5705), 2, + ACTIONS(5657), 2, sym__ws, sym_comment, - ACTIONS(5707), 3, + ACTIONS(5659), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(561), 3, + STATE(577), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1187), 3, + STATE(2584), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1137), 19, + STATE(2177), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -64151,7 +63524,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [22950] = 35, + [22682] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -64160,78 +63533,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(636), 1, - anon_sym_POUND, - ACTIONS(640), 1, - aux_sym_num_lit_token1, - ACTIONS(644), 1, + ACTIONS(5041), 1, + anon_sym_COLON, + ACTIONS(5043), 1, anon_sym_COLON_COLON, - ACTIONS(646), 1, + ACTIONS(5045), 1, anon_sym_DQUOTE, - ACTIONS(648), 1, + ACTIONS(5047), 1, aux_sym_sym_lit_token1, - ACTIONS(652), 1, + ACTIONS(5049), 1, + anon_sym_LPAREN, + ACTIONS(5051), 1, anon_sym_POUND_QMARK, - ACTIONS(654), 1, + ACTIONS(5479), 1, + anon_sym_POUND, + ACTIONS(5481), 1, + aux_sym_num_lit_token1, + ACTIONS(5485), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(656), 1, + ACTIONS(5487), 1, anon_sym_POUND_SQUOTE, - ACTIONS(658), 1, + ACTIONS(5489), 1, anon_sym_SQUOTE, - ACTIONS(660), 1, + ACTIONS(5491), 1, anon_sym_BQUOTE, - ACTIONS(662), 1, + ACTIONS(5493), 1, anon_sym_COMMA_AT, - ACTIONS(664), 1, + ACTIONS(5495), 1, anon_sym_COMMA, - ACTIONS(4410), 1, - anon_sym_COLON, - ACTIONS(4412), 1, - anon_sym_LPAREN, - ACTIONS(4414), 1, + ACTIONS(5497), 1, anon_sym_cl, - ACTIONS(5715), 1, + ACTIONS(5665), 1, sym_self_referential_reader_macro, - STATE(1186), 1, - sym_sym_lit, - STATE(1191), 1, + STATE(1976), 1, sym__bare_set_lit, - STATE(2827), 1, + STATE(2842), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2875), 1, + sym_sym_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(650), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(666), 2, + ACTIONS(1492), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(670), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(672), 2, + ACTIONS(1498), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5711), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(5713), 3, + ACTIONS(5483), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5499), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5663), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(563), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1187), 3, + STATE(1975), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1136), 19, + STATE(1916), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -64251,7 +63624,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [23085] = 35, + [22817] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -64260,78 +63633,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(1598), 1, - anon_sym_POUND, - ACTIONS(1602), 1, - aux_sym_num_lit_token1, - ACTIONS(1606), 1, + ACTIONS(5041), 1, + anon_sym_COLON, + ACTIONS(5043), 1, anon_sym_COLON_COLON, - ACTIONS(1608), 1, + ACTIONS(5045), 1, anon_sym_DQUOTE, - ACTIONS(1610), 1, + ACTIONS(5047), 1, aux_sym_sym_lit_token1, - ACTIONS(1612), 1, + ACTIONS(5049), 1, anon_sym_LPAREN, - ACTIONS(1616), 1, + ACTIONS(5051), 1, anon_sym_POUND_QMARK, - ACTIONS(1618), 1, + ACTIONS(5479), 1, + anon_sym_POUND, + ACTIONS(5481), 1, + aux_sym_num_lit_token1, + ACTIONS(5485), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1620), 1, + ACTIONS(5487), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1622), 1, + ACTIONS(5489), 1, anon_sym_SQUOTE, - ACTIONS(1624), 1, + ACTIONS(5491), 1, anon_sym_BQUOTE, - ACTIONS(1626), 1, + ACTIONS(5493), 1, anon_sym_COMMA_AT, - ACTIONS(1628), 1, + ACTIONS(5495), 1, anon_sym_COMMA, - ACTIONS(5101), 1, - anon_sym_COLON, - ACTIONS(5103), 1, + ACTIONS(5497), 1, anon_sym_cl, - ACTIONS(5719), 1, + ACTIONS(5671), 1, sym_self_referential_reader_macro, - STATE(1893), 1, + STATE(1976), 1, sym__bare_set_lit, - STATE(2762), 1, - sym_sym_lit, - STATE(2840), 1, + STATE(2842), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2875), 1, + sym_sym_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(1614), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(1636), 2, + ACTIONS(1492), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(1640), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(1642), 2, + ACTIONS(1498), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(5483), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5499), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5667), 2, sym__ws, sym_comment, - ACTIONS(5717), 3, + ACTIONS(5669), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1892), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(580), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2789), 19, + STATE(1975), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1917), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -64351,7 +63724,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [23220] = 35, + [22952] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -64360,78 +63733,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(137), 1, - anon_sym_POUND, - ACTIONS(141), 1, - aux_sym_num_lit_token1, - ACTIONS(146), 1, + ACTIONS(5041), 1, + anon_sym_COLON, + ACTIONS(5043), 1, anon_sym_COLON_COLON, - ACTIONS(148), 1, + ACTIONS(5045), 1, anon_sym_DQUOTE, - ACTIONS(150), 1, + ACTIONS(5047), 1, aux_sym_sym_lit_token1, - ACTIONS(165), 1, + ACTIONS(5049), 1, + anon_sym_LPAREN, + ACTIONS(5051), 1, anon_sym_POUND_QMARK, - ACTIONS(167), 1, + ACTIONS(5479), 1, + anon_sym_POUND, + ACTIONS(5481), 1, + aux_sym_num_lit_token1, + ACTIONS(5485), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(169), 1, + ACTIONS(5487), 1, anon_sym_POUND_SQUOTE, - ACTIONS(171), 1, + ACTIONS(5489), 1, anon_sym_SQUOTE, - ACTIONS(173), 1, + ACTIONS(5491), 1, anon_sym_BQUOTE, - ACTIONS(175), 1, + ACTIONS(5493), 1, anon_sym_COMMA_AT, - ACTIONS(177), 1, + ACTIONS(5495), 1, anon_sym_COMMA, - ACTIONS(4855), 1, - anon_sym_COLON, - ACTIONS(4857), 1, - anon_sym_LPAREN, - ACTIONS(4859), 1, + ACTIONS(5497), 1, anon_sym_cl, - ACTIONS(5725), 1, + ACTIONS(5675), 1, sym_self_referential_reader_macro, - STATE(1069), 1, + STATE(1976), 1, sym__bare_set_lit, - STATE(1073), 1, - sym_sym_lit, - STATE(2804), 1, + STATE(2842), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2875), 1, + sym_sym_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(163), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(186), 2, + ACTIONS(1492), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(190), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(192), 2, + ACTIONS(1498), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5721), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(5723), 3, + ACTIONS(5483), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5499), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5673), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(566), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1070), 3, + STATE(1975), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1039), 19, + STATE(1919), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -64451,7 +63824,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [23355] = 35, + [23087] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -64460,78 +63833,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(137), 1, - anon_sym_POUND, - ACTIONS(141), 1, - aux_sym_num_lit_token1, - ACTIONS(146), 1, + ACTIONS(5041), 1, + anon_sym_COLON, + ACTIONS(5043), 1, anon_sym_COLON_COLON, - ACTIONS(148), 1, + ACTIONS(5045), 1, anon_sym_DQUOTE, - ACTIONS(150), 1, + ACTIONS(5047), 1, aux_sym_sym_lit_token1, - ACTIONS(165), 1, + ACTIONS(5049), 1, + anon_sym_LPAREN, + ACTIONS(5051), 1, anon_sym_POUND_QMARK, - ACTIONS(167), 1, + ACTIONS(5479), 1, + anon_sym_POUND, + ACTIONS(5481), 1, + aux_sym_num_lit_token1, + ACTIONS(5485), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(169), 1, + ACTIONS(5487), 1, anon_sym_POUND_SQUOTE, - ACTIONS(171), 1, + ACTIONS(5489), 1, anon_sym_SQUOTE, - ACTIONS(173), 1, + ACTIONS(5491), 1, anon_sym_BQUOTE, - ACTIONS(175), 1, + ACTIONS(5493), 1, anon_sym_COMMA_AT, - ACTIONS(177), 1, + ACTIONS(5495), 1, anon_sym_COMMA, - ACTIONS(4855), 1, - anon_sym_COLON, - ACTIONS(4857), 1, - anon_sym_LPAREN, - ACTIONS(4859), 1, + ACTIONS(5497), 1, anon_sym_cl, - ACTIONS(5731), 1, + ACTIONS(5679), 1, sym_self_referential_reader_macro, - STATE(1069), 1, + STATE(1976), 1, sym__bare_set_lit, - STATE(1073), 1, - sym_sym_lit, - STATE(2804), 1, + STATE(2842), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2875), 1, + sym_sym_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(163), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(186), 2, + ACTIONS(1492), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(190), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(192), 2, + ACTIONS(1498), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5727), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(5729), 3, + ACTIONS(5483), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5499), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5677), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(568), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1070), 3, + STATE(1975), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1043), 19, + STATE(1920), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -64551,7 +63924,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [23490] = 35, + [23222] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -64560,78 +63933,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(137), 1, + ACTIONS(174), 1, anon_sym_POUND, - ACTIONS(141), 1, + ACTIONS(178), 1, aux_sym_num_lit_token1, - ACTIONS(146), 1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(148), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(150), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(165), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(167), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(169), 1, + ACTIONS(211), 1, anon_sym_POUND_SQUOTE, - ACTIONS(171), 1, + ACTIONS(213), 1, anon_sym_SQUOTE, - ACTIONS(173), 1, + ACTIONS(215), 1, anon_sym_BQUOTE, - ACTIONS(175), 1, + ACTIONS(217), 1, anon_sym_COMMA_AT, - ACTIONS(177), 1, + ACTIONS(219), 1, anon_sym_COMMA, - ACTIONS(4855), 1, + ACTIONS(4767), 1, anon_sym_COLON, - ACTIONS(4857), 1, + ACTIONS(4769), 1, anon_sym_LPAREN, - ACTIONS(4859), 1, + ACTIONS(4771), 1, anon_sym_cl, - ACTIONS(5737), 1, + ACTIONS(5683), 1, sym_self_referential_reader_macro, - STATE(1069), 1, - sym__bare_set_lit, - STATE(1073), 1, + STATE(2112), 1, sym_sym_lit, - STATE(2804), 1, + STATE(2589), 1, + sym__bare_set_lit, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(163), 2, + ACTIONS(205), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(186), 2, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(190), 2, + ACTIONS(234), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(192), 2, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5733), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(5735), 3, + ACTIONS(5681), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(571), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1070), 3, + STATE(2584), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1046), 19, + STATE(2491), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -64651,7 +64024,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [23625] = 35, + [23357] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -64660,78 +64033,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(1598), 1, - anon_sym_POUND, - ACTIONS(1602), 1, - aux_sym_num_lit_token1, - ACTIONS(1606), 1, + ACTIONS(5041), 1, + anon_sym_COLON, + ACTIONS(5043), 1, anon_sym_COLON_COLON, - ACTIONS(1608), 1, + ACTIONS(5045), 1, anon_sym_DQUOTE, - ACTIONS(1610), 1, + ACTIONS(5047), 1, aux_sym_sym_lit_token1, - ACTIONS(1612), 1, + ACTIONS(5049), 1, anon_sym_LPAREN, - ACTIONS(1616), 1, + ACTIONS(5051), 1, anon_sym_POUND_QMARK, - ACTIONS(1618), 1, + ACTIONS(5479), 1, + anon_sym_POUND, + ACTIONS(5481), 1, + aux_sym_num_lit_token1, + ACTIONS(5485), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1620), 1, + ACTIONS(5487), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1622), 1, + ACTIONS(5489), 1, anon_sym_SQUOTE, - ACTIONS(1624), 1, + ACTIONS(5491), 1, anon_sym_BQUOTE, - ACTIONS(1626), 1, + ACTIONS(5493), 1, anon_sym_COMMA_AT, - ACTIONS(1628), 1, + ACTIONS(5495), 1, anon_sym_COMMA, - ACTIONS(5101), 1, - anon_sym_COLON, - ACTIONS(5103), 1, + ACTIONS(5497), 1, anon_sym_cl, - ACTIONS(5743), 1, + ACTIONS(5689), 1, sym_self_referential_reader_macro, - STATE(1893), 1, + STATE(1976), 1, sym__bare_set_lit, - STATE(2762), 1, - sym_sym_lit, - STATE(2840), 1, + STATE(2842), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2875), 1, + sym_sym_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(1614), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(1636), 2, + ACTIONS(1492), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(1640), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(1642), 2, + ACTIONS(1498), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5739), 2, + ACTIONS(5483), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5499), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5685), 2, sym__ws, sym_comment, - ACTIONS(5741), 3, + ACTIONS(5687), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(588), 3, + STATE(581), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1892), 3, + STATE(1975), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1957), 19, + STATE(1921), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -64751,87 +64124,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [23760] = 35, + [23492] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, - anon_sym_POUND, - ACTIONS(15), 1, - aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(5041), 1, + anon_sym_COLON, + ACTIONS(5043), 1, + anon_sym_COLON_COLON, + ACTIONS(5045), 1, + anon_sym_DQUOTE, + ACTIONS(5047), 1, + aux_sym_sym_lit_token1, + ACTIONS(5049), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(5051), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(5479), 1, + anon_sym_POUND, + ACTIONS(5481), 1, + aux_sym_num_lit_token1, + ACTIONS(5485), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(5487), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(5489), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(5491), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(5493), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(5495), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(5497), 1, anon_sym_cl, - ACTIONS(5749), 1, + ACTIONS(5695), 1, sym_self_referential_reader_macro, - STATE(1875), 1, + STATE(1976), 1, sym__bare_set_lit, - STATE(1878), 1, - sym_sym_lit, - STATE(2808), 1, + STATE(2842), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2875), 1, + sym_sym_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(1492), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(1498), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5745), 2, + ACTIONS(5483), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5499), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5691), 2, sym__ws, sym_comment, - ACTIONS(5747), 3, + ACTIONS(5693), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(565), 3, + STATE(583), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1877), 3, + STATE(1975), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(451), 19, + STATE(1922), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -64851,7 +64224,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [23895] = 35, + [23627] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -64860,78 +64233,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(1598), 1, - anon_sym_POUND, - ACTIONS(1602), 1, - aux_sym_num_lit_token1, - ACTIONS(1606), 1, + ACTIONS(5041), 1, + anon_sym_COLON, + ACTIONS(5043), 1, anon_sym_COLON_COLON, - ACTIONS(1608), 1, + ACTIONS(5045), 1, anon_sym_DQUOTE, - ACTIONS(1610), 1, + ACTIONS(5047), 1, aux_sym_sym_lit_token1, - ACTIONS(1612), 1, + ACTIONS(5049), 1, anon_sym_LPAREN, - ACTIONS(1616), 1, + ACTIONS(5051), 1, anon_sym_POUND_QMARK, - ACTIONS(1618), 1, + ACTIONS(5479), 1, + anon_sym_POUND, + ACTIONS(5481), 1, + aux_sym_num_lit_token1, + ACTIONS(5485), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1620), 1, + ACTIONS(5487), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1622), 1, + ACTIONS(5489), 1, anon_sym_SQUOTE, - ACTIONS(1624), 1, + ACTIONS(5491), 1, anon_sym_BQUOTE, - ACTIONS(1626), 1, + ACTIONS(5493), 1, anon_sym_COMMA_AT, - ACTIONS(1628), 1, + ACTIONS(5495), 1, anon_sym_COMMA, - ACTIONS(5101), 1, - anon_sym_COLON, - ACTIONS(5103), 1, + ACTIONS(5497), 1, anon_sym_cl, - ACTIONS(5755), 1, + ACTIONS(5699), 1, sym_self_referential_reader_macro, - STATE(1893), 1, + STATE(1976), 1, sym__bare_set_lit, - STATE(2762), 1, - sym_sym_lit, - STATE(2840), 1, + STATE(2842), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2875), 1, + sym_sym_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(1614), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(1636), 2, + ACTIONS(1492), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(1640), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(1642), 2, + ACTIONS(1498), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5751), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(5753), 3, + ACTIONS(5483), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5499), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5697), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(591), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1892), 3, + STATE(1975), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1956), 19, + STATE(1923), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -64951,7 +64324,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [24030] = 35, + [23762] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -64960,78 +64333,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2728), 1, - anon_sym_POUND, - ACTIONS(2732), 1, - aux_sym_num_lit_token1, - ACTIONS(2737), 1, + ACTIONS(5041), 1, + anon_sym_COLON, + ACTIONS(5043), 1, anon_sym_COLON_COLON, - ACTIONS(2739), 1, + ACTIONS(5045), 1, anon_sym_DQUOTE, - ACTIONS(2741), 1, + ACTIONS(5047), 1, aux_sym_sym_lit_token1, - ACTIONS(2756), 1, + ACTIONS(5049), 1, + anon_sym_LPAREN, + ACTIONS(5051), 1, anon_sym_POUND_QMARK, - ACTIONS(2758), 1, + ACTIONS(5479), 1, + anon_sym_POUND, + ACTIONS(5481), 1, + aux_sym_num_lit_token1, + ACTIONS(5485), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2760), 1, + ACTIONS(5487), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2762), 1, + ACTIONS(5489), 1, anon_sym_SQUOTE, - ACTIONS(2764), 1, + ACTIONS(5491), 1, anon_sym_BQUOTE, - ACTIONS(2766), 1, + ACTIONS(5493), 1, anon_sym_COMMA_AT, - ACTIONS(2768), 1, + ACTIONS(5495), 1, anon_sym_COMMA, - ACTIONS(4793), 1, - anon_sym_COLON, - ACTIONS(4795), 1, - anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(5497), 1, anon_sym_cl, - ACTIONS(5759), 1, + ACTIONS(5703), 1, sym_self_referential_reader_macro, - STATE(1482), 1, + STATE(1976), 1, sym__bare_set_lit, - STATE(1484), 1, - sym_sym_lit, - STATE(2813), 1, + STATE(2842), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2875), 1, + sym_sym_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(2754), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(2775), 2, + ACTIONS(1492), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2779), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(2781), 2, + ACTIONS(1498), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(5757), 3, + ACTIONS(5483), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5499), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5701), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1483), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1407), 19, + STATE(1975), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1925), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -65051,7 +64424,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [24165] = 35, + [23897] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -65060,78 +64433,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2728), 1, - anon_sym_POUND, - ACTIONS(2732), 1, - aux_sym_num_lit_token1, - ACTIONS(2737), 1, + ACTIONS(5041), 1, + anon_sym_COLON, + ACTIONS(5043), 1, anon_sym_COLON_COLON, - ACTIONS(2739), 1, + ACTIONS(5045), 1, anon_sym_DQUOTE, - ACTIONS(2741), 1, + ACTIONS(5047), 1, aux_sym_sym_lit_token1, - ACTIONS(2756), 1, + ACTIONS(5049), 1, + anon_sym_LPAREN, + ACTIONS(5051), 1, anon_sym_POUND_QMARK, - ACTIONS(2758), 1, + ACTIONS(5479), 1, + anon_sym_POUND, + ACTIONS(5481), 1, + aux_sym_num_lit_token1, + ACTIONS(5485), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2760), 1, + ACTIONS(5487), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2762), 1, + ACTIONS(5489), 1, anon_sym_SQUOTE, - ACTIONS(2764), 1, + ACTIONS(5491), 1, anon_sym_BQUOTE, - ACTIONS(2766), 1, + ACTIONS(5493), 1, anon_sym_COMMA_AT, - ACTIONS(2768), 1, + ACTIONS(5495), 1, anon_sym_COMMA, - ACTIONS(4793), 1, - anon_sym_COLON, - ACTIONS(4795), 1, - anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(5497), 1, anon_sym_cl, - ACTIONS(5763), 1, + ACTIONS(5709), 1, sym_self_referential_reader_macro, - STATE(1482), 1, + STATE(1976), 1, sym__bare_set_lit, - STATE(1484), 1, - sym_sym_lit, - STATE(2813), 1, + STATE(2842), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2875), 1, + sym_sym_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(2754), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(2775), 2, + ACTIONS(1492), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2779), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(2781), 2, + ACTIONS(1498), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(5483), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5499), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5705), 2, sym__ws, sym_comment, - ACTIONS(5761), 3, + ACTIONS(5707), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1483), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(585), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1408), 19, + STATE(1975), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1926), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -65151,7 +64524,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [24300] = 35, + [24032] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -65160,78 +64533,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(1598), 1, - anon_sym_POUND, - ACTIONS(1602), 1, - aux_sym_num_lit_token1, - ACTIONS(1606), 1, + ACTIONS(5041), 1, + anon_sym_COLON, + ACTIONS(5043), 1, anon_sym_COLON_COLON, - ACTIONS(1608), 1, + ACTIONS(5045), 1, anon_sym_DQUOTE, - ACTIONS(1610), 1, + ACTIONS(5047), 1, aux_sym_sym_lit_token1, - ACTIONS(1612), 1, + ACTIONS(5049), 1, anon_sym_LPAREN, - ACTIONS(1616), 1, + ACTIONS(5051), 1, anon_sym_POUND_QMARK, - ACTIONS(1618), 1, + ACTIONS(5479), 1, + anon_sym_POUND, + ACTIONS(5481), 1, + aux_sym_num_lit_token1, + ACTIONS(5485), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1620), 1, + ACTIONS(5487), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1622), 1, + ACTIONS(5489), 1, anon_sym_SQUOTE, - ACTIONS(1624), 1, + ACTIONS(5491), 1, anon_sym_BQUOTE, - ACTIONS(1626), 1, + ACTIONS(5493), 1, anon_sym_COMMA_AT, - ACTIONS(1628), 1, + ACTIONS(5495), 1, anon_sym_COMMA, - ACTIONS(5101), 1, - anon_sym_COLON, - ACTIONS(5103), 1, + ACTIONS(5497), 1, anon_sym_cl, - ACTIONS(5767), 1, + ACTIONS(5713), 1, sym_self_referential_reader_macro, - STATE(1893), 1, + STATE(1976), 1, sym__bare_set_lit, - STATE(2762), 1, - sym_sym_lit, - STATE(2840), 1, + STATE(2842), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2875), 1, + sym_sym_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(1614), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(1636), 2, + ACTIONS(1492), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(1640), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(1642), 2, + ACTIONS(1498), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(5765), 3, + ACTIONS(5483), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5499), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5711), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1892), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1955), 19, + STATE(1975), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1927), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -65251,7 +64624,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [24435] = 35, + [24167] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -65260,78 +64633,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2728), 1, - anon_sym_POUND, - ACTIONS(2732), 1, - aux_sym_num_lit_token1, - ACTIONS(2737), 1, + ACTIONS(5041), 1, + anon_sym_COLON, + ACTIONS(5043), 1, anon_sym_COLON_COLON, - ACTIONS(2739), 1, + ACTIONS(5045), 1, anon_sym_DQUOTE, - ACTIONS(2741), 1, + ACTIONS(5047), 1, aux_sym_sym_lit_token1, - ACTIONS(2756), 1, + ACTIONS(5049), 1, + anon_sym_LPAREN, + ACTIONS(5051), 1, anon_sym_POUND_QMARK, - ACTIONS(2758), 1, + ACTIONS(5479), 1, + anon_sym_POUND, + ACTIONS(5481), 1, + aux_sym_num_lit_token1, + ACTIONS(5485), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2760), 1, + ACTIONS(5487), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2762), 1, + ACTIONS(5489), 1, anon_sym_SQUOTE, - ACTIONS(2764), 1, + ACTIONS(5491), 1, anon_sym_BQUOTE, - ACTIONS(2766), 1, + ACTIONS(5493), 1, anon_sym_COMMA_AT, - ACTIONS(2768), 1, + ACTIONS(5495), 1, anon_sym_COMMA, - ACTIONS(4793), 1, - anon_sym_COLON, - ACTIONS(4795), 1, - anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(5497), 1, anon_sym_cl, - ACTIONS(5773), 1, + ACTIONS(5719), 1, sym_self_referential_reader_macro, - STATE(1482), 1, + STATE(1976), 1, sym__bare_set_lit, - STATE(1484), 1, - sym_sym_lit, - STATE(2813), 1, + STATE(2842), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2875), 1, + sym_sym_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(2754), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(2775), 2, + ACTIONS(1492), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2779), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(2781), 2, + ACTIONS(1498), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5769), 2, + ACTIONS(5483), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5499), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5715), 2, sym__ws, sym_comment, - ACTIONS(5771), 3, + ACTIONS(5717), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(583), 3, + STATE(586), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1483), 3, + STATE(1975), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1284), 19, + STATE(1928), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -65351,7 +64724,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [24570] = 35, + [24302] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -65360,78 +64733,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2728), 1, - anon_sym_POUND, - ACTIONS(2732), 1, - aux_sym_num_lit_token1, - ACTIONS(2737), 1, + ACTIONS(5041), 1, + anon_sym_COLON, + ACTIONS(5043), 1, anon_sym_COLON_COLON, - ACTIONS(2739), 1, + ACTIONS(5045), 1, anon_sym_DQUOTE, - ACTIONS(2741), 1, + ACTIONS(5047), 1, aux_sym_sym_lit_token1, - ACTIONS(2756), 1, + ACTIONS(5049), 1, + anon_sym_LPAREN, + ACTIONS(5051), 1, anon_sym_POUND_QMARK, - ACTIONS(2758), 1, + ACTIONS(5479), 1, + anon_sym_POUND, + ACTIONS(5481), 1, + aux_sym_num_lit_token1, + ACTIONS(5485), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2760), 1, + ACTIONS(5487), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2762), 1, + ACTIONS(5489), 1, anon_sym_SQUOTE, - ACTIONS(2764), 1, + ACTIONS(5491), 1, anon_sym_BQUOTE, - ACTIONS(2766), 1, + ACTIONS(5493), 1, anon_sym_COMMA_AT, - ACTIONS(2768), 1, + ACTIONS(5495), 1, anon_sym_COMMA, - ACTIONS(4793), 1, - anon_sym_COLON, - ACTIONS(4795), 1, - anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(5497), 1, anon_sym_cl, - ACTIONS(5777), 1, + ACTIONS(5723), 1, sym_self_referential_reader_macro, - STATE(1482), 1, + STATE(1976), 1, sym__bare_set_lit, - STATE(1484), 1, - sym_sym_lit, - STATE(2813), 1, + STATE(2842), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2875), 1, + sym_sym_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(2754), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(2775), 2, + ACTIONS(1492), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2779), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(2781), 2, + ACTIONS(1498), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(5775), 3, + ACTIONS(5483), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5499), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5721), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1483), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1414), 19, + STATE(1975), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1932), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -65451,7 +64824,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [24705] = 35, + [24437] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -65460,78 +64833,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(1598), 1, - anon_sym_POUND, - ACTIONS(1602), 1, - aux_sym_num_lit_token1, - ACTIONS(1606), 1, + ACTIONS(5041), 1, + anon_sym_COLON, + ACTIONS(5043), 1, anon_sym_COLON_COLON, - ACTIONS(1608), 1, + ACTIONS(5045), 1, anon_sym_DQUOTE, - ACTIONS(1610), 1, + ACTIONS(5047), 1, aux_sym_sym_lit_token1, - ACTIONS(1612), 1, + ACTIONS(5049), 1, anon_sym_LPAREN, - ACTIONS(1616), 1, + ACTIONS(5051), 1, anon_sym_POUND_QMARK, - ACTIONS(1618), 1, + ACTIONS(5479), 1, + anon_sym_POUND, + ACTIONS(5481), 1, + aux_sym_num_lit_token1, + ACTIONS(5485), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1620), 1, + ACTIONS(5487), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1622), 1, + ACTIONS(5489), 1, anon_sym_SQUOTE, - ACTIONS(1624), 1, + ACTIONS(5491), 1, anon_sym_BQUOTE, - ACTIONS(1626), 1, + ACTIONS(5493), 1, anon_sym_COMMA_AT, - ACTIONS(1628), 1, + ACTIONS(5495), 1, anon_sym_COMMA, - ACTIONS(5101), 1, - anon_sym_COLON, - ACTIONS(5103), 1, + ACTIONS(5497), 1, anon_sym_cl, - ACTIONS(5781), 1, + ACTIONS(5727), 1, sym_self_referential_reader_macro, - STATE(1893), 1, + STATE(1976), 1, sym__bare_set_lit, - STATE(2762), 1, - sym_sym_lit, - STATE(2840), 1, + STATE(2842), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2875), 1, + sym_sym_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(1614), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(1636), 2, + ACTIONS(1492), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(1640), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(1642), 2, + ACTIONS(1498), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(5779), 3, + ACTIONS(5483), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5499), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5725), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1892), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1953), 19, + STATE(1975), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1933), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -65551,7 +64924,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [24840] = 35, + [24572] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -65560,78 +64933,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2728), 1, + ACTIONS(174), 1, anon_sym_POUND, - ACTIONS(2732), 1, + ACTIONS(178), 1, aux_sym_num_lit_token1, - ACTIONS(2737), 1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(2739), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(2741), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(2756), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(2758), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2760), 1, + ACTIONS(211), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2762), 1, + ACTIONS(213), 1, anon_sym_SQUOTE, - ACTIONS(2764), 1, + ACTIONS(215), 1, anon_sym_BQUOTE, - ACTIONS(2766), 1, + ACTIONS(217), 1, anon_sym_COMMA_AT, - ACTIONS(2768), 1, + ACTIONS(219), 1, anon_sym_COMMA, - ACTIONS(4793), 1, + ACTIONS(4767), 1, anon_sym_COLON, - ACTIONS(4795), 1, + ACTIONS(4769), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4771), 1, anon_sym_cl, - ACTIONS(5787), 1, + ACTIONS(5733), 1, sym_self_referential_reader_macro, - STATE(1482), 1, - sym__bare_set_lit, - STATE(1484), 1, + STATE(2112), 1, sym_sym_lit, - STATE(2813), 1, + STATE(2589), 1, + sym__bare_set_lit, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(2754), 2, + ACTIONS(205), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2775), 2, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2779), 2, + ACTIONS(234), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2781), 2, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5783), 2, + ACTIONS(5729), 2, sym__ws, sym_comment, - ACTIONS(5785), 3, + ACTIONS(5731), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(584), 3, + STATE(593), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1483), 3, + STATE(2584), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1415), 19, + STATE(2612), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -65651,7 +65024,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [24975] = 35, + [24707] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -65660,78 +65033,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(1598), 1, + ACTIONS(174), 1, anon_sym_POUND, - ACTIONS(1602), 1, + ACTIONS(178), 1, aux_sym_num_lit_token1, - ACTIONS(1606), 1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(1608), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(1610), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(1612), 1, - anon_sym_LPAREN, - ACTIONS(1616), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(1618), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1620), 1, + ACTIONS(211), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1622), 1, + ACTIONS(213), 1, anon_sym_SQUOTE, - ACTIONS(1624), 1, + ACTIONS(215), 1, anon_sym_BQUOTE, - ACTIONS(1626), 1, + ACTIONS(217), 1, anon_sym_COMMA_AT, - ACTIONS(1628), 1, + ACTIONS(219), 1, anon_sym_COMMA, - ACTIONS(5101), 1, + ACTIONS(4767), 1, anon_sym_COLON, - ACTIONS(5103), 1, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, anon_sym_cl, - ACTIONS(5793), 1, + ACTIONS(5739), 1, sym_self_referential_reader_macro, - STATE(1893), 1, - sym__bare_set_lit, - STATE(2762), 1, + STATE(2112), 1, sym_sym_lit, - STATE(2840), 1, + STATE(2589), 1, + sym__bare_set_lit, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(1614), 2, + ACTIONS(205), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(1636), 2, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(1640), 2, + ACTIONS(234), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1642), 2, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5789), 2, + ACTIONS(5735), 2, sym__ws, sym_comment, - ACTIONS(5791), 3, + ACTIONS(5737), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(597), 3, + STATE(594), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1892), 3, + STATE(2584), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1952), 19, + STATE(2613), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -65751,7 +65124,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [25110] = 35, + [24842] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -65760,78 +65133,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(1598), 1, + ACTIONS(174), 1, anon_sym_POUND, - ACTIONS(1602), 1, + ACTIONS(178), 1, aux_sym_num_lit_token1, - ACTIONS(1606), 1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(1608), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(1610), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(1612), 1, - anon_sym_LPAREN, - ACTIONS(1616), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(1618), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1620), 1, + ACTIONS(211), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1622), 1, + ACTIONS(213), 1, anon_sym_SQUOTE, - ACTIONS(1624), 1, + ACTIONS(215), 1, anon_sym_BQUOTE, - ACTIONS(1626), 1, + ACTIONS(217), 1, anon_sym_COMMA_AT, - ACTIONS(1628), 1, + ACTIONS(219), 1, anon_sym_COMMA, - ACTIONS(5101), 1, + ACTIONS(4767), 1, anon_sym_COLON, - ACTIONS(5103), 1, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, anon_sym_cl, - ACTIONS(5797), 1, + ACTIONS(5745), 1, sym_self_referential_reader_macro, - STATE(1893), 1, - sym__bare_set_lit, - STATE(2762), 1, + STATE(2112), 1, sym_sym_lit, - STATE(2840), 1, + STATE(2589), 1, + sym__bare_set_lit, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(1614), 2, + ACTIONS(205), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(1636), 2, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(1640), 2, + ACTIONS(234), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1642), 2, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(5741), 2, sym__ws, sym_comment, - ACTIONS(5795), 3, + ACTIONS(5743), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1892), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(595), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1951), 19, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2620), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -65851,7 +65224,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [25245] = 35, + [24977] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -65860,78 +65233,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2728), 1, + ACTIONS(1688), 1, anon_sym_POUND, - ACTIONS(2732), 1, + ACTIONS(1692), 1, aux_sym_num_lit_token1, - ACTIONS(2737), 1, + ACTIONS(1697), 1, anon_sym_COLON_COLON, - ACTIONS(2739), 1, + ACTIONS(1699), 1, anon_sym_DQUOTE, - ACTIONS(2741), 1, + ACTIONS(1701), 1, aux_sym_sym_lit_token1, - ACTIONS(2756), 1, + ACTIONS(1716), 1, anon_sym_POUND_QMARK, - ACTIONS(2758), 1, + ACTIONS(1718), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2760), 1, + ACTIONS(1720), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2762), 1, + ACTIONS(1722), 1, anon_sym_SQUOTE, - ACTIONS(2764), 1, + ACTIONS(1724), 1, anon_sym_BQUOTE, - ACTIONS(2766), 1, + ACTIONS(1726), 1, anon_sym_COMMA_AT, - ACTIONS(2768), 1, + ACTIONS(1728), 1, anon_sym_COMMA, - ACTIONS(4793), 1, + ACTIONS(4791), 1, anon_sym_COLON, - ACTIONS(4795), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4795), 1, anon_sym_cl, - ACTIONS(5801), 1, + ACTIONS(5751), 1, sym_self_referential_reader_macro, - STATE(1482), 1, - sym__bare_set_lit, - STATE(1484), 1, + STATE(1288), 1, sym_sym_lit, - STATE(2813), 1, + STATE(1290), 1, + sym__bare_set_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(2754), 2, + ACTIONS(1714), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2775), 2, + ACTIONS(1735), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2779), 2, + ACTIONS(1739), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2781), 2, + ACTIONS(1741), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(5747), 2, sym__ws, sym_comment, - ACTIONS(5799), 3, + ACTIONS(5749), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1483), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(596), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1416), 19, + STATE(1289), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1308), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -65951,7 +65324,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [25380] = 35, + [25112] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -65960,78 +65333,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2728), 1, + ACTIONS(1688), 1, anon_sym_POUND, - ACTIONS(2732), 1, + ACTIONS(1692), 1, aux_sym_num_lit_token1, - ACTIONS(2737), 1, + ACTIONS(1697), 1, anon_sym_COLON_COLON, - ACTIONS(2739), 1, + ACTIONS(1699), 1, anon_sym_DQUOTE, - ACTIONS(2741), 1, + ACTIONS(1701), 1, aux_sym_sym_lit_token1, - ACTIONS(2756), 1, + ACTIONS(1716), 1, anon_sym_POUND_QMARK, - ACTIONS(2758), 1, + ACTIONS(1718), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2760), 1, + ACTIONS(1720), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2762), 1, + ACTIONS(1722), 1, anon_sym_SQUOTE, - ACTIONS(2764), 1, + ACTIONS(1724), 1, anon_sym_BQUOTE, - ACTIONS(2766), 1, + ACTIONS(1726), 1, anon_sym_COMMA_AT, - ACTIONS(2768), 1, + ACTIONS(1728), 1, anon_sym_COMMA, - ACTIONS(4793), 1, + ACTIONS(4791), 1, anon_sym_COLON, - ACTIONS(4795), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4795), 1, anon_sym_cl, - ACTIONS(5805), 1, + ACTIONS(5757), 1, sym_self_referential_reader_macro, - STATE(1482), 1, - sym__bare_set_lit, - STATE(1484), 1, + STATE(1288), 1, sym_sym_lit, - STATE(2813), 1, + STATE(1290), 1, + sym__bare_set_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(2754), 2, + ACTIONS(1714), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2775), 2, + ACTIONS(1735), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2779), 2, + ACTIONS(1739), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2781), 2, + ACTIONS(1741), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(5753), 2, sym__ws, sym_comment, - ACTIONS(5803), 3, + ACTIONS(5755), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1483), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(597), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1418), 19, + STATE(1289), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1309), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -66051,7 +65424,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [25515] = 35, + [25247] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -66060,78 +65433,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(1598), 1, - anon_sym_POUND, - ACTIONS(1602), 1, - aux_sym_num_lit_token1, - ACTIONS(1606), 1, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4997), 1, + anon_sym_COLON, + ACTIONS(4999), 1, anon_sym_COLON_COLON, - ACTIONS(1608), 1, + ACTIONS(5001), 1, anon_sym_DQUOTE, - ACTIONS(1610), 1, + ACTIONS(5003), 1, aux_sym_sym_lit_token1, - ACTIONS(1612), 1, - anon_sym_LPAREN, - ACTIONS(1616), 1, + ACTIONS(5019), 1, + anon_sym_cl, + ACTIONS(5617), 1, + sym_self_referential_reader_macro, + ACTIONS(5759), 1, + anon_sym_POUND, + ACTIONS(5761), 1, + aux_sym_num_lit_token1, + ACTIONS(5765), 1, anon_sym_POUND_QMARK, - ACTIONS(1618), 1, + ACTIONS(5767), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1620), 1, + ACTIONS(5769), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1622), 1, + ACTIONS(5771), 1, anon_sym_SQUOTE, - ACTIONS(1624), 1, + ACTIONS(5773), 1, anon_sym_BQUOTE, - ACTIONS(1626), 1, + ACTIONS(5775), 1, anon_sym_COMMA_AT, - ACTIONS(1628), 1, + ACTIONS(5777), 1, anon_sym_COMMA, - ACTIONS(5101), 1, - anon_sym_COLON, - ACTIONS(5103), 1, - anon_sym_cl, - ACTIONS(5811), 1, - sym_self_referential_reader_macro, - STATE(1893), 1, - sym__bare_set_lit, - STATE(2762), 1, - sym_sym_lit, - STATE(2840), 1, + STATE(2814), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(1614), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(1636), 2, + STATE(2986), 1, + sym__bare_set_lit, + STATE(3094), 1, + sym_sym_lit, + ACTIONS(4763), 2, + sym__ws, + sym_comment, + ACTIONS(5021), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(1640), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(1642), 2, + ACTIONS(5027), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5807), 2, - sym__ws, - sym_comment, - ACTIONS(5809), 3, + ACTIONS(5763), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5779), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5615), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(599), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1892), 3, + STATE(2985), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1950), 19, + STATE(2123), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -66151,7 +65524,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [25650] = 35, + [25382] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -66160,78 +65533,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2728), 1, + ACTIONS(174), 1, anon_sym_POUND, - ACTIONS(2732), 1, + ACTIONS(178), 1, aux_sym_num_lit_token1, - ACTIONS(2737), 1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(2739), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(2741), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(2756), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(2758), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2760), 1, + ACTIONS(211), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2762), 1, + ACTIONS(213), 1, anon_sym_SQUOTE, - ACTIONS(2764), 1, + ACTIONS(215), 1, anon_sym_BQUOTE, - ACTIONS(2766), 1, + ACTIONS(217), 1, anon_sym_COMMA_AT, - ACTIONS(2768), 1, + ACTIONS(219), 1, anon_sym_COMMA, - ACTIONS(4793), 1, + ACTIONS(4767), 1, anon_sym_COLON, - ACTIONS(4795), 1, + ACTIONS(4769), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4771), 1, anon_sym_cl, - ACTIONS(5817), 1, + ACTIONS(5783), 1, sym_self_referential_reader_macro, - STATE(1482), 1, - sym__bare_set_lit, - STATE(1484), 1, + STATE(2112), 1, sym_sym_lit, - STATE(2813), 1, + STATE(2589), 1, + sym__bare_set_lit, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(2754), 2, + ACTIONS(205), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2775), 2, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2779), 2, + ACTIONS(234), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2781), 2, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5813), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(5815), 3, + ACTIONS(5781), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(587), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1483), 3, + STATE(2584), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1423), 19, + STATE(2586), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -66251,7 +65624,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [25785] = 35, + [25517] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -66260,78 +65633,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2728), 1, + ACTIONS(174), 1, anon_sym_POUND, - ACTIONS(2732), 1, + ACTIONS(178), 1, aux_sym_num_lit_token1, - ACTIONS(2737), 1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(2739), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(2741), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(2756), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(2758), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2760), 1, + ACTIONS(211), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2762), 1, + ACTIONS(213), 1, anon_sym_SQUOTE, - ACTIONS(2764), 1, + ACTIONS(215), 1, anon_sym_BQUOTE, - ACTIONS(2766), 1, + ACTIONS(217), 1, anon_sym_COMMA_AT, - ACTIONS(2768), 1, + ACTIONS(219), 1, anon_sym_COMMA, - ACTIONS(4793), 1, + ACTIONS(4767), 1, anon_sym_COLON, - ACTIONS(4795), 1, + ACTIONS(4769), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4771), 1, anon_sym_cl, - ACTIONS(5823), 1, + ACTIONS(5787), 1, sym_self_referential_reader_macro, - STATE(1482), 1, - sym__bare_set_lit, - STATE(1484), 1, + STATE(2112), 1, sym_sym_lit, - STATE(2813), 1, + STATE(2589), 1, + sym__bare_set_lit, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(2754), 2, + ACTIONS(205), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2775), 2, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2779), 2, + ACTIONS(234), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2781), 2, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5819), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(5821), 3, + ACTIONS(5785), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(592), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1483), 3, + STATE(2584), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1424), 19, + STATE(2587), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -66351,7 +65724,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [25920] = 35, + [25652] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -66360,78 +65733,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(1598), 1, + ACTIONS(174), 1, anon_sym_POUND, - ACTIONS(1602), 1, + ACTIONS(178), 1, aux_sym_num_lit_token1, - ACTIONS(1606), 1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(1608), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(1610), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(1612), 1, - anon_sym_LPAREN, - ACTIONS(1616), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(1618), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1620), 1, + ACTIONS(211), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1622), 1, + ACTIONS(213), 1, anon_sym_SQUOTE, - ACTIONS(1624), 1, + ACTIONS(215), 1, anon_sym_BQUOTE, - ACTIONS(1626), 1, + ACTIONS(217), 1, anon_sym_COMMA_AT, - ACTIONS(1628), 1, + ACTIONS(219), 1, anon_sym_COMMA, - ACTIONS(5101), 1, + ACTIONS(4767), 1, anon_sym_COLON, - ACTIONS(5103), 1, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, anon_sym_cl, - ACTIONS(5827), 1, + ACTIONS(5791), 1, sym_self_referential_reader_macro, - STATE(1893), 1, - sym__bare_set_lit, - STATE(2762), 1, + STATE(2112), 1, sym_sym_lit, - STATE(2840), 1, + STATE(2589), 1, + sym__bare_set_lit, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(1614), 2, + ACTIONS(205), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(1636), 2, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(1640), 2, + ACTIONS(234), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1642), 2, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(5825), 3, + ACTIONS(5789), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1892), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1946), 19, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2588), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -66451,7 +65824,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [26055] = 35, + [25787] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -66460,78 +65833,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(137), 1, + ACTIONS(1688), 1, anon_sym_POUND, - ACTIONS(141), 1, + ACTIONS(1692), 1, aux_sym_num_lit_token1, - ACTIONS(146), 1, + ACTIONS(1697), 1, anon_sym_COLON_COLON, - ACTIONS(148), 1, + ACTIONS(1699), 1, anon_sym_DQUOTE, - ACTIONS(150), 1, + ACTIONS(1701), 1, aux_sym_sym_lit_token1, - ACTIONS(165), 1, + ACTIONS(1716), 1, anon_sym_POUND_QMARK, - ACTIONS(167), 1, + ACTIONS(1718), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(169), 1, + ACTIONS(1720), 1, anon_sym_POUND_SQUOTE, - ACTIONS(171), 1, + ACTIONS(1722), 1, anon_sym_SQUOTE, - ACTIONS(173), 1, + ACTIONS(1724), 1, anon_sym_BQUOTE, - ACTIONS(175), 1, + ACTIONS(1726), 1, anon_sym_COMMA_AT, - ACTIONS(177), 1, + ACTIONS(1728), 1, anon_sym_COMMA, - ACTIONS(4855), 1, + ACTIONS(4791), 1, anon_sym_COLON, - ACTIONS(4857), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4859), 1, + ACTIONS(4795), 1, anon_sym_cl, - ACTIONS(5831), 1, + ACTIONS(5795), 1, sym_self_referential_reader_macro, - STATE(1069), 1, - sym__bare_set_lit, - STATE(1073), 1, + STATE(1288), 1, sym_sym_lit, - STATE(2804), 1, + STATE(1290), 1, + sym__bare_set_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(163), 2, + ACTIONS(1714), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(186), 2, + ACTIONS(1735), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(190), 2, + ACTIONS(1739), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(192), 2, + ACTIONS(1741), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(5829), 3, + ACTIONS(5793), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1070), 3, + STATE(1289), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1061), 19, + STATE(1327), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -66551,7 +65924,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [26190] = 35, + [25922] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -66560,78 +65933,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(1598), 1, + ACTIONS(1688), 1, anon_sym_POUND, - ACTIONS(1602), 1, + ACTIONS(1692), 1, aux_sym_num_lit_token1, - ACTIONS(1606), 1, + ACTIONS(1697), 1, anon_sym_COLON_COLON, - ACTIONS(1608), 1, + ACTIONS(1699), 1, anon_sym_DQUOTE, - ACTIONS(1610), 1, + ACTIONS(1701), 1, aux_sym_sym_lit_token1, - ACTIONS(1612), 1, - anon_sym_LPAREN, - ACTIONS(1616), 1, + ACTIONS(1716), 1, anon_sym_POUND_QMARK, - ACTIONS(1618), 1, + ACTIONS(1718), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1620), 1, + ACTIONS(1720), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1622), 1, + ACTIONS(1722), 1, anon_sym_SQUOTE, - ACTIONS(1624), 1, + ACTIONS(1724), 1, anon_sym_BQUOTE, - ACTIONS(1626), 1, + ACTIONS(1726), 1, anon_sym_COMMA_AT, - ACTIONS(1628), 1, + ACTIONS(1728), 1, anon_sym_COMMA, - ACTIONS(5101), 1, + ACTIONS(4791), 1, anon_sym_COLON, - ACTIONS(5103), 1, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4795), 1, anon_sym_cl, - ACTIONS(5835), 1, + ACTIONS(5799), 1, sym_self_referential_reader_macro, - STATE(1893), 1, - sym__bare_set_lit, - STATE(2762), 1, + STATE(1288), 1, sym_sym_lit, - STATE(2840), 1, + STATE(1290), 1, + sym__bare_set_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(1614), 2, + ACTIONS(1714), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(1636), 2, + ACTIONS(1735), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(1640), 2, + ACTIONS(1739), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1642), 2, + ACTIONS(1741), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(5833), 3, + ACTIONS(5797), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1892), 3, + STATE(1289), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1945), 19, + STATE(1328), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -66651,7 +66024,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [26325] = 35, + [26057] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -66660,78 +66033,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2728), 1, + ACTIONS(174), 1, anon_sym_POUND, - ACTIONS(2732), 1, + ACTIONS(178), 1, aux_sym_num_lit_token1, - ACTIONS(2737), 1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(2739), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(2741), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(2756), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(2758), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2760), 1, + ACTIONS(211), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2762), 1, + ACTIONS(213), 1, anon_sym_SQUOTE, - ACTIONS(2764), 1, + ACTIONS(215), 1, anon_sym_BQUOTE, - ACTIONS(2766), 1, + ACTIONS(217), 1, anon_sym_COMMA_AT, - ACTIONS(2768), 1, + ACTIONS(219), 1, anon_sym_COMMA, - ACTIONS(4793), 1, + ACTIONS(4767), 1, anon_sym_COLON, - ACTIONS(4795), 1, + ACTIONS(4769), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4771), 1, anon_sym_cl, - ACTIONS(5839), 1, + ACTIONS(5805), 1, sym_self_referential_reader_macro, - STATE(1482), 1, - sym__bare_set_lit, - STATE(1484), 1, + STATE(2112), 1, sym_sym_lit, - STATE(2813), 1, + STATE(2589), 1, + sym__bare_set_lit, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(2754), 2, + ACTIONS(205), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2775), 2, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2779), 2, + ACTIONS(234), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2781), 2, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(5801), 2, sym__ws, sym_comment, - ACTIONS(5837), 3, + ACTIONS(5803), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1483), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(602), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1426), 19, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2591), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -66751,87 +66124,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [26460] = 35, + [26192] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(174), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(178), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(211), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(213), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(215), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(217), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(219), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4767), 1, + anon_sym_COLON, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, anon_sym_cl, - ACTIONS(5843), 1, + ACTIONS(5811), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(2112), 1, sym_sym_lit, - STATE(2808), 1, + STATE(2589), 1, + sym__bare_set_lit, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(205), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(234), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(5807), 2, sym__ws, sym_comment, - ACTIONS(5841), 3, + ACTIONS(5809), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1877), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(604), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(415), 19, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2593), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -66851,7 +66224,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [26595] = 35, + [26327] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -66860,78 +66233,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4747), 1, + ACTIONS(174), 1, anon_sym_POUND, - ACTIONS(4751), 1, + ACTIONS(178), 1, aux_sym_num_lit_token1, - ACTIONS(4753), 1, - anon_sym_COLON, - ACTIONS(4755), 1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(4757), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(4759), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(4761), 1, - anon_sym_LPAREN, - ACTIONS(4765), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(4767), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4769), 1, + ACTIONS(211), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4771), 1, + ACTIONS(213), 1, anon_sym_SQUOTE, - ACTIONS(4773), 1, + ACTIONS(215), 1, anon_sym_BQUOTE, - ACTIONS(4775), 1, + ACTIONS(217), 1, anon_sym_COMMA_AT, - ACTIONS(4777), 1, + ACTIONS(219), 1, anon_sym_COMMA, - ACTIONS(4779), 1, + ACTIONS(4767), 1, + anon_sym_COLON, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, anon_sym_cl, - ACTIONS(5849), 1, + ACTIONS(5817), 1, sym_self_referential_reader_macro, - STATE(1489), 1, + STATE(2112), 1, sym_sym_lit, - STATE(1557), 1, + STATE(2589), 1, sym__bare_set_lit, - STATE(2841), 1, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(4763), 2, + ACTIONS(205), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4781), 2, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4785), 2, + ACTIONS(234), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4787), 2, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5845), 2, + ACTIONS(5813), 2, sym__ws, sym_comment, - ACTIONS(5847), 3, + ACTIONS(5815), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(675), 3, + STATE(605), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1612), 3, + STATE(2584), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1510), 19, + STATE(2596), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -66951,7 +66324,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [26730] = 35, + [26462] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -66960,78 +66333,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4747), 1, + ACTIONS(1688), 1, anon_sym_POUND, - ACTIONS(4751), 1, + ACTIONS(1692), 1, aux_sym_num_lit_token1, - ACTIONS(4753), 1, - anon_sym_COLON, - ACTIONS(4755), 1, + ACTIONS(1697), 1, anon_sym_COLON_COLON, - ACTIONS(4757), 1, + ACTIONS(1699), 1, anon_sym_DQUOTE, - ACTIONS(4759), 1, + ACTIONS(1701), 1, aux_sym_sym_lit_token1, - ACTIONS(4761), 1, - anon_sym_LPAREN, - ACTIONS(4765), 1, + ACTIONS(1716), 1, anon_sym_POUND_QMARK, - ACTIONS(4767), 1, + ACTIONS(1718), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4769), 1, + ACTIONS(1720), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4771), 1, + ACTIONS(1722), 1, anon_sym_SQUOTE, - ACTIONS(4773), 1, + ACTIONS(1724), 1, anon_sym_BQUOTE, - ACTIONS(4775), 1, + ACTIONS(1726), 1, anon_sym_COMMA_AT, - ACTIONS(4777), 1, + ACTIONS(1728), 1, anon_sym_COMMA, - ACTIONS(4779), 1, + ACTIONS(4791), 1, + anon_sym_COLON, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4795), 1, anon_sym_cl, - ACTIONS(5855), 1, + ACTIONS(5823), 1, sym_self_referential_reader_macro, - STATE(1489), 1, + STATE(1288), 1, sym_sym_lit, - STATE(1557), 1, + STATE(1290), 1, sym__bare_set_lit, - STATE(2841), 1, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(4763), 2, + ACTIONS(1714), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4781), 2, + ACTIONS(1735), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4785), 2, + ACTIONS(1739), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4787), 2, + ACTIONS(1741), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5851), 2, + ACTIONS(5819), 2, sym__ws, sym_comment, - ACTIONS(5853), 3, + ACTIONS(5821), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(679), 3, + STATE(606), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1612), 3, + STATE(1289), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1511), 19, + STATE(1335), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -67051,7 +66424,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [26865] = 35, + [26597] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -67060,78 +66433,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2728), 1, + ACTIONS(174), 1, anon_sym_POUND, - ACTIONS(2732), 1, + ACTIONS(178), 1, aux_sym_num_lit_token1, - ACTIONS(2737), 1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(2739), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(2741), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(2756), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(2758), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2760), 1, + ACTIONS(211), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2762), 1, + ACTIONS(213), 1, anon_sym_SQUOTE, - ACTIONS(2764), 1, + ACTIONS(215), 1, anon_sym_BQUOTE, - ACTIONS(2766), 1, + ACTIONS(217), 1, anon_sym_COMMA_AT, - ACTIONS(2768), 1, + ACTIONS(219), 1, anon_sym_COMMA, - ACTIONS(4793), 1, + ACTIONS(4767), 1, anon_sym_COLON, - ACTIONS(4795), 1, + ACTIONS(4769), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4771), 1, anon_sym_cl, - ACTIONS(5859), 1, + ACTIONS(5827), 1, sym_self_referential_reader_macro, - STATE(1482), 1, - sym__bare_set_lit, - STATE(1484), 1, + STATE(2112), 1, sym_sym_lit, - STATE(2813), 1, + STATE(2589), 1, + sym__bare_set_lit, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(2754), 2, + ACTIONS(205), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2775), 2, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2779), 2, + ACTIONS(234), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2781), 2, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(5857), 3, + ACTIONS(5825), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1483), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1427), 19, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2602), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -67151,7 +66524,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [27000] = 35, + [26732] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -67160,78 +66533,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(67), 1, + ACTIONS(174), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(178), 1, aux_sym_num_lit_token1, - ACTIONS(77), 1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(104), 1, + ACTIONS(211), 1, anon_sym_POUND_SQUOTE, - ACTIONS(106), 1, + ACTIONS(213), 1, anon_sym_SQUOTE, - ACTIONS(108), 1, + ACTIONS(215), 1, anon_sym_BQUOTE, - ACTIONS(110), 1, + ACTIONS(217), 1, anon_sym_COMMA_AT, - ACTIONS(112), 1, + ACTIONS(219), 1, anon_sym_COMMA, - ACTIONS(4809), 1, + ACTIONS(4767), 1, anon_sym_COLON, - ACTIONS(4811), 1, + ACTIONS(4769), 1, anon_sym_LPAREN, - ACTIONS(4825), 1, + ACTIONS(4771), 1, anon_sym_cl, - ACTIONS(5863), 1, + ACTIONS(5833), 1, sym_self_referential_reader_macro, - STATE(2497), 1, + STATE(2112), 1, sym_sym_lit, - STATE(2625), 1, + STATE(2589), 1, sym__bare_set_lit, - STATE(2834), 1, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(98), 2, + ACTIONS(205), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(123), 2, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(127), 2, + ACTIONS(234), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(129), 2, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(5829), 2, sym__ws, sym_comment, - ACTIONS(5861), 3, + ACTIONS(5831), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, + STATE(609), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(2584), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2707), 19, + STATE(2603), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -67251,7 +66624,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [27135] = 35, + [26867] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -67260,78 +66633,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(67), 1, + ACTIONS(174), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(178), 1, aux_sym_num_lit_token1, - ACTIONS(77), 1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(104), 1, + ACTIONS(211), 1, anon_sym_POUND_SQUOTE, - ACTIONS(106), 1, + ACTIONS(213), 1, anon_sym_SQUOTE, - ACTIONS(108), 1, + ACTIONS(215), 1, anon_sym_BQUOTE, - ACTIONS(110), 1, + ACTIONS(217), 1, anon_sym_COMMA_AT, - ACTIONS(112), 1, + ACTIONS(219), 1, anon_sym_COMMA, - ACTIONS(4809), 1, + ACTIONS(4767), 1, anon_sym_COLON, - ACTIONS(4811), 1, + ACTIONS(4769), 1, anon_sym_LPAREN, - ACTIONS(4825), 1, + ACTIONS(4771), 1, anon_sym_cl, - ACTIONS(5869), 1, + ACTIONS(5837), 1, sym_self_referential_reader_macro, - STATE(2497), 1, + STATE(2112), 1, sym_sym_lit, - STATE(2625), 1, + STATE(2589), 1, sym__bare_set_lit, - STATE(2834), 1, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(98), 2, + ACTIONS(205), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(123), 2, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(127), 2, + ACTIONS(234), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(129), 2, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5865), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(5867), 3, + ACTIONS(5835), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(784), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(2584), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2702), 19, + STATE(2605), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -67351,7 +66724,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [27270] = 35, + [27002] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -67360,78 +66733,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2728), 1, + ACTIONS(174), 1, anon_sym_POUND, - ACTIONS(2732), 1, + ACTIONS(178), 1, aux_sym_num_lit_token1, - ACTIONS(2737), 1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(2739), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(2741), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(2756), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(2758), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2760), 1, + ACTIONS(211), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2762), 1, + ACTIONS(213), 1, anon_sym_SQUOTE, - ACTIONS(2764), 1, + ACTIONS(215), 1, anon_sym_BQUOTE, - ACTIONS(2766), 1, + ACTIONS(217), 1, anon_sym_COMMA_AT, - ACTIONS(2768), 1, + ACTIONS(219), 1, anon_sym_COMMA, - ACTIONS(4793), 1, + ACTIONS(4767), 1, anon_sym_COLON, - ACTIONS(4795), 1, + ACTIONS(4769), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4771), 1, anon_sym_cl, - ACTIONS(5875), 1, + ACTIONS(5841), 1, sym_self_referential_reader_macro, - STATE(1482), 1, - sym__bare_set_lit, - STATE(1484), 1, + STATE(2112), 1, sym_sym_lit, - STATE(2813), 1, + STATE(2589), 1, + sym__bare_set_lit, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(2754), 2, + ACTIONS(205), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2775), 2, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2779), 2, + ACTIONS(234), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2781), 2, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5871), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(5873), 3, + ACTIONS(5839), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(593), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1483), 3, + STATE(2584), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1430), 19, + STATE(2606), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -67451,7 +66824,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [27405] = 35, + [27137] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -67460,78 +66833,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(67), 1, + ACTIONS(1688), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(1692), 1, aux_sym_num_lit_token1, - ACTIONS(77), 1, + ACTIONS(1697), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(1699), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(1701), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(1716), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(1718), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(104), 1, + ACTIONS(1720), 1, anon_sym_POUND_SQUOTE, - ACTIONS(106), 1, + ACTIONS(1722), 1, anon_sym_SQUOTE, - ACTIONS(108), 1, + ACTIONS(1724), 1, anon_sym_BQUOTE, - ACTIONS(110), 1, + ACTIONS(1726), 1, anon_sym_COMMA_AT, - ACTIONS(112), 1, + ACTIONS(1728), 1, anon_sym_COMMA, - ACTIONS(4809), 1, + ACTIONS(4791), 1, anon_sym_COLON, - ACTIONS(4811), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4825), 1, + ACTIONS(4795), 1, anon_sym_cl, - ACTIONS(5881), 1, + ACTIONS(5845), 1, sym_self_referential_reader_macro, - STATE(2497), 1, + STATE(1288), 1, sym_sym_lit, - STATE(2625), 1, + STATE(1290), 1, sym__bare_set_lit, - STATE(2834), 1, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(98), 2, + ACTIONS(1714), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(123), 2, + ACTIONS(1735), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(127), 2, + ACTIONS(1739), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(129), 2, + ACTIONS(1741), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5877), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(5879), 3, + ACTIONS(5843), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(786), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(1289), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2699), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1348), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -67551,7 +66924,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [27540] = 35, + [27272] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -67560,78 +66933,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2728), 1, + ACTIONS(174), 1, anon_sym_POUND, - ACTIONS(2732), 1, + ACTIONS(178), 1, aux_sym_num_lit_token1, - ACTIONS(2737), 1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(2739), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(2741), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(2756), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(2758), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2760), 1, + ACTIONS(211), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2762), 1, + ACTIONS(213), 1, anon_sym_SQUOTE, - ACTIONS(2764), 1, + ACTIONS(215), 1, anon_sym_BQUOTE, - ACTIONS(2766), 1, + ACTIONS(217), 1, anon_sym_COMMA_AT, - ACTIONS(2768), 1, + ACTIONS(219), 1, anon_sym_COMMA, - ACTIONS(4793), 1, + ACTIONS(4767), 1, anon_sym_COLON, - ACTIONS(4795), 1, + ACTIONS(4769), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4771), 1, anon_sym_cl, - ACTIONS(5885), 1, + ACTIONS(5851), 1, sym_self_referential_reader_macro, - STATE(1482), 1, - sym__bare_set_lit, - STATE(1484), 1, + STATE(2112), 1, sym_sym_lit, - STATE(2813), 1, + STATE(2589), 1, + sym__bare_set_lit, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(2754), 2, + ACTIONS(205), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2775), 2, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2779), 2, + ACTIONS(234), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2781), 2, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(5847), 2, sym__ws, sym_comment, - ACTIONS(5883), 3, + ACTIONS(5849), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1483), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(610), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1431), 19, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2607), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -67651,7 +67024,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [27675] = 35, + [27407] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -67660,78 +67033,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(137), 1, + ACTIONS(174), 1, anon_sym_POUND, - ACTIONS(141), 1, + ACTIONS(178), 1, aux_sym_num_lit_token1, - ACTIONS(146), 1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(148), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(150), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(165), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(167), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(169), 1, + ACTIONS(211), 1, anon_sym_POUND_SQUOTE, - ACTIONS(171), 1, + ACTIONS(213), 1, anon_sym_SQUOTE, - ACTIONS(173), 1, + ACTIONS(215), 1, anon_sym_BQUOTE, - ACTIONS(175), 1, + ACTIONS(217), 1, anon_sym_COMMA_AT, - ACTIONS(177), 1, + ACTIONS(219), 1, anon_sym_COMMA, - ACTIONS(4855), 1, + ACTIONS(4767), 1, anon_sym_COLON, - ACTIONS(4857), 1, + ACTIONS(4769), 1, anon_sym_LPAREN, - ACTIONS(4859), 1, + ACTIONS(4771), 1, anon_sym_cl, - ACTIONS(5891), 1, + ACTIONS(5857), 1, sym_self_referential_reader_macro, - STATE(1069), 1, - sym__bare_set_lit, - STATE(1073), 1, + STATE(2112), 1, sym_sym_lit, - STATE(2804), 1, + STATE(2589), 1, + sym__bare_set_lit, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(163), 2, + ACTIONS(205), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(186), 2, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(190), 2, + ACTIONS(234), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(192), 2, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5887), 2, + ACTIONS(5853), 2, sym__ws, sym_comment, - ACTIONS(5889), 3, + ACTIONS(5855), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(598), 3, + STATE(612), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1070), 3, + STATE(2584), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1113), 19, + STATE(2609), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -67751,7 +67124,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [27810] = 35, + [27542] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -67760,78 +67133,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(67), 1, + ACTIONS(174), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(178), 1, aux_sym_num_lit_token1, - ACTIONS(77), 1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(104), 1, + ACTIONS(211), 1, anon_sym_POUND_SQUOTE, - ACTIONS(106), 1, + ACTIONS(213), 1, anon_sym_SQUOTE, - ACTIONS(108), 1, + ACTIONS(215), 1, anon_sym_BQUOTE, - ACTIONS(110), 1, + ACTIONS(217), 1, anon_sym_COMMA_AT, - ACTIONS(112), 1, + ACTIONS(219), 1, anon_sym_COMMA, - ACTIONS(4809), 1, + ACTIONS(4767), 1, anon_sym_COLON, - ACTIONS(4811), 1, + ACTIONS(4769), 1, anon_sym_LPAREN, - ACTIONS(4825), 1, + ACTIONS(4771), 1, anon_sym_cl, - ACTIONS(5895), 1, + ACTIONS(5861), 1, sym_self_referential_reader_macro, - STATE(2497), 1, + STATE(2112), 1, sym_sym_lit, - STATE(2625), 1, + STATE(2589), 1, sym__bare_set_lit, - STATE(2834), 1, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(98), 2, + ACTIONS(205), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(123), 2, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(127), 2, + ACTIONS(234), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(129), 2, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(5893), 3, + ACTIONS(5859), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(2584), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2694), 19, + STATE(2614), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -67851,7 +67224,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [27945] = 35, + [27677] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -67860,78 +67233,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(67), 1, + ACTIONS(174), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(178), 1, aux_sym_num_lit_token1, - ACTIONS(77), 1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(104), 1, + ACTIONS(211), 1, anon_sym_POUND_SQUOTE, - ACTIONS(106), 1, + ACTIONS(213), 1, anon_sym_SQUOTE, - ACTIONS(108), 1, + ACTIONS(215), 1, anon_sym_BQUOTE, - ACTIONS(110), 1, + ACTIONS(217), 1, anon_sym_COMMA_AT, - ACTIONS(112), 1, + ACTIONS(219), 1, anon_sym_COMMA, - ACTIONS(4809), 1, + ACTIONS(4767), 1, anon_sym_COLON, - ACTIONS(4811), 1, + ACTIONS(4769), 1, anon_sym_LPAREN, - ACTIONS(4825), 1, + ACTIONS(4771), 1, anon_sym_cl, - ACTIONS(5901), 1, + ACTIONS(5865), 1, sym_self_referential_reader_macro, - STATE(2497), 1, + STATE(2112), 1, sym_sym_lit, - STATE(2625), 1, + STATE(2589), 1, sym__bare_set_lit, - STATE(2834), 1, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(98), 2, + ACTIONS(205), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(123), 2, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(127), 2, + ACTIONS(234), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(129), 2, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5897), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(5899), 3, + ACTIONS(5863), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(790), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(2584), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2692), 19, + STATE(2616), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -67951,7 +67324,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [28080] = 35, + [27812] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -67960,78 +67333,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2728), 1, + ACTIONS(174), 1, anon_sym_POUND, - ACTIONS(2732), 1, + ACTIONS(178), 1, aux_sym_num_lit_token1, - ACTIONS(2737), 1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(2739), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(2741), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(2756), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(2758), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2760), 1, + ACTIONS(211), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2762), 1, + ACTIONS(213), 1, anon_sym_SQUOTE, - ACTIONS(2764), 1, + ACTIONS(215), 1, anon_sym_BQUOTE, - ACTIONS(2766), 1, + ACTIONS(217), 1, anon_sym_COMMA_AT, - ACTIONS(2768), 1, + ACTIONS(219), 1, anon_sym_COMMA, - ACTIONS(4793), 1, + ACTIONS(4767), 1, anon_sym_COLON, - ACTIONS(4795), 1, + ACTIONS(4769), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4771), 1, anon_sym_cl, - ACTIONS(5907), 1, + ACTIONS(5871), 1, sym_self_referential_reader_macro, - STATE(1482), 1, - sym__bare_set_lit, - STATE(1484), 1, + STATE(2112), 1, sym_sym_lit, - STATE(2813), 1, + STATE(2589), 1, + sym__bare_set_lit, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(2754), 2, + ACTIONS(205), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2775), 2, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2779), 2, + ACTIONS(234), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2781), 2, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5903), 2, + ACTIONS(5867), 2, sym__ws, sym_comment, - ACTIONS(5905), 3, + ACTIONS(5869), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(600), 3, + STATE(614), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1483), 3, + STATE(2584), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1439), 19, + STATE(2617), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -68051,7 +67424,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [28215] = 35, + [27947] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -68060,78 +67433,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2728), 1, + ACTIONS(174), 1, anon_sym_POUND, - ACTIONS(2732), 1, + ACTIONS(178), 1, aux_sym_num_lit_token1, - ACTIONS(2737), 1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(2739), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(2741), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(2756), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(2758), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2760), 1, + ACTIONS(211), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2762), 1, + ACTIONS(213), 1, anon_sym_SQUOTE, - ACTIONS(2764), 1, + ACTIONS(215), 1, anon_sym_BQUOTE, - ACTIONS(2766), 1, + ACTIONS(217), 1, anon_sym_COMMA_AT, - ACTIONS(2768), 1, + ACTIONS(219), 1, anon_sym_COMMA, - ACTIONS(4793), 1, + ACTIONS(4767), 1, anon_sym_COLON, - ACTIONS(4795), 1, + ACTIONS(4769), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4771), 1, anon_sym_cl, - ACTIONS(5913), 1, + ACTIONS(5875), 1, sym_self_referential_reader_macro, - STATE(1482), 1, - sym__bare_set_lit, - STATE(1484), 1, + STATE(2112), 1, sym_sym_lit, - STATE(2813), 1, + STATE(2589), 1, + sym__bare_set_lit, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(2754), 2, + ACTIONS(205), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2775), 2, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2779), 2, + ACTIONS(234), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2781), 2, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5909), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(5911), 3, + ACTIONS(5873), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(604), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1483), 3, + STATE(2584), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1440), 19, + STATE(2618), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -68151,7 +67524,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [28350] = 35, + [28082] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -68160,78 +67533,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(67), 1, + ACTIONS(174), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(178), 1, aux_sym_num_lit_token1, - ACTIONS(77), 1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(104), 1, + ACTIONS(211), 1, anon_sym_POUND_SQUOTE, - ACTIONS(106), 1, + ACTIONS(213), 1, anon_sym_SQUOTE, - ACTIONS(108), 1, + ACTIONS(215), 1, anon_sym_BQUOTE, - ACTIONS(110), 1, + ACTIONS(217), 1, anon_sym_COMMA_AT, - ACTIONS(112), 1, + ACTIONS(219), 1, anon_sym_COMMA, - ACTIONS(4809), 1, + ACTIONS(4767), 1, anon_sym_COLON, - ACTIONS(4811), 1, + ACTIONS(4769), 1, anon_sym_LPAREN, - ACTIONS(4825), 1, + ACTIONS(4771), 1, anon_sym_cl, - ACTIONS(5917), 1, + ACTIONS(5881), 1, sym_self_referential_reader_macro, - STATE(2497), 1, + STATE(2112), 1, sym_sym_lit, - STATE(2625), 1, + STATE(2589), 1, sym__bare_set_lit, - STATE(2834), 1, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(98), 2, + ACTIONS(205), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(123), 2, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(127), 2, + ACTIONS(234), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(129), 2, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(5877), 2, sym__ws, sym_comment, - ACTIONS(5915), 3, + ACTIONS(5879), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, + STATE(615), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(2584), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2712), 19, + STATE(2619), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -68251,7 +67624,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [28485] = 35, + [28217] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -68260,78 +67633,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2728), 1, + ACTIONS(174), 1, anon_sym_POUND, - ACTIONS(2732), 1, + ACTIONS(178), 1, aux_sym_num_lit_token1, - ACTIONS(2737), 1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(2739), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(2741), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(2756), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(2758), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2760), 1, + ACTIONS(211), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2762), 1, + ACTIONS(213), 1, anon_sym_SQUOTE, - ACTIONS(2764), 1, + ACTIONS(215), 1, anon_sym_BQUOTE, - ACTIONS(2766), 1, + ACTIONS(217), 1, anon_sym_COMMA_AT, - ACTIONS(2768), 1, + ACTIONS(219), 1, anon_sym_COMMA, - ACTIONS(4793), 1, + ACTIONS(4767), 1, anon_sym_COLON, - ACTIONS(4795), 1, + ACTIONS(4769), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4771), 1, anon_sym_cl, - ACTIONS(5923), 1, + ACTIONS(5885), 1, sym_self_referential_reader_macro, - STATE(1482), 1, - sym__bare_set_lit, - STATE(1484), 1, + STATE(2112), 1, sym_sym_lit, - STATE(2813), 1, + STATE(2589), 1, + sym__bare_set_lit, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(2754), 2, + ACTIONS(205), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2775), 2, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2779), 2, + ACTIONS(234), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2781), 2, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5919), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(5921), 3, + ACTIONS(5883), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(609), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1483), 3, + STATE(2584), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1443), 19, + STATE(2624), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -68351,7 +67724,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [28620] = 35, + [28352] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -68360,78 +67733,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(137), 1, + ACTIONS(174), 1, anon_sym_POUND, - ACTIONS(141), 1, + ACTIONS(178), 1, aux_sym_num_lit_token1, - ACTIONS(146), 1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(148), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(150), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(165), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(167), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(169), 1, + ACTIONS(211), 1, anon_sym_POUND_SQUOTE, - ACTIONS(171), 1, + ACTIONS(213), 1, anon_sym_SQUOTE, - ACTIONS(173), 1, + ACTIONS(215), 1, anon_sym_BQUOTE, - ACTIONS(175), 1, + ACTIONS(217), 1, anon_sym_COMMA_AT, - ACTIONS(177), 1, + ACTIONS(219), 1, anon_sym_COMMA, - ACTIONS(4855), 1, + ACTIONS(4767), 1, anon_sym_COLON, - ACTIONS(4857), 1, + ACTIONS(4769), 1, anon_sym_LPAREN, - ACTIONS(4859), 1, + ACTIONS(4771), 1, anon_sym_cl, - ACTIONS(5927), 1, + ACTIONS(5889), 1, sym_self_referential_reader_macro, - STATE(1069), 1, - sym__bare_set_lit, - STATE(1073), 1, + STATE(2112), 1, sym_sym_lit, - STATE(2804), 1, + STATE(2589), 1, + sym__bare_set_lit, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(163), 2, + ACTIONS(205), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(186), 2, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(190), 2, + ACTIONS(234), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(192), 2, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(5925), 3, + ACTIONS(5887), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1070), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(999), 19, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2625), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -68451,7 +67824,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [28755] = 35, + [28487] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -68460,78 +67833,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(67), 1, + ACTIONS(1688), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(1692), 1, aux_sym_num_lit_token1, - ACTIONS(77), 1, + ACTIONS(1697), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(1699), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(1701), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(1716), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(1718), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(104), 1, + ACTIONS(1720), 1, anon_sym_POUND_SQUOTE, - ACTIONS(106), 1, + ACTIONS(1722), 1, anon_sym_SQUOTE, - ACTIONS(108), 1, + ACTIONS(1724), 1, anon_sym_BQUOTE, - ACTIONS(110), 1, + ACTIONS(1726), 1, anon_sym_COMMA_AT, - ACTIONS(112), 1, + ACTIONS(1728), 1, anon_sym_COMMA, - ACTIONS(4809), 1, + ACTIONS(4791), 1, anon_sym_COLON, - ACTIONS(4811), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4825), 1, + ACTIONS(4795), 1, anon_sym_cl, - ACTIONS(5933), 1, + ACTIONS(5895), 1, sym_self_referential_reader_macro, - STATE(2497), 1, + STATE(1288), 1, sym_sym_lit, - STATE(2625), 1, + STATE(1290), 1, sym__bare_set_lit, - STATE(2834), 1, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(98), 2, + ACTIONS(1714), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(123), 2, + ACTIONS(1735), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(127), 2, + ACTIONS(1739), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(129), 2, + ACTIONS(1741), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5929), 2, + ACTIONS(5891), 2, sym__ws, sym_comment, - ACTIONS(5931), 3, + ACTIONS(5893), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(796), 3, + STATE(622), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(1289), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2691), 19, + STATE(1305), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -68551,7 +67924,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [28890] = 35, + [28622] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -68560,78 +67933,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(137), 1, + ACTIONS(1688), 1, anon_sym_POUND, - ACTIONS(141), 1, + ACTIONS(1692), 1, aux_sym_num_lit_token1, - ACTIONS(146), 1, + ACTIONS(1697), 1, anon_sym_COLON_COLON, - ACTIONS(148), 1, + ACTIONS(1699), 1, anon_sym_DQUOTE, - ACTIONS(150), 1, + ACTIONS(1701), 1, aux_sym_sym_lit_token1, - ACTIONS(165), 1, + ACTIONS(1716), 1, anon_sym_POUND_QMARK, - ACTIONS(167), 1, + ACTIONS(1718), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(169), 1, + ACTIONS(1720), 1, anon_sym_POUND_SQUOTE, - ACTIONS(171), 1, + ACTIONS(1722), 1, anon_sym_SQUOTE, - ACTIONS(173), 1, + ACTIONS(1724), 1, anon_sym_BQUOTE, - ACTIONS(175), 1, + ACTIONS(1726), 1, anon_sym_COMMA_AT, - ACTIONS(177), 1, + ACTIONS(1728), 1, anon_sym_COMMA, - ACTIONS(4855), 1, + ACTIONS(4791), 1, anon_sym_COLON, - ACTIONS(4857), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4859), 1, + ACTIONS(4795), 1, anon_sym_cl, - ACTIONS(5937), 1, + ACTIONS(5901), 1, sym_self_referential_reader_macro, - STATE(1069), 1, - sym__bare_set_lit, - STATE(1073), 1, + STATE(1288), 1, sym_sym_lit, - STATE(2804), 1, + STATE(1290), 1, + sym__bare_set_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(163), 2, + ACTIONS(1714), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(186), 2, + ACTIONS(1735), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(190), 2, + ACTIONS(1739), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(192), 2, + ACTIONS(1741), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(5897), 2, sym__ws, sym_comment, - ACTIONS(5935), 3, + ACTIONS(5899), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1070), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(623), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1000), 19, + STATE(1289), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1306), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -68651,7 +68024,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [29025] = 35, + [28757] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -68660,78 +68033,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2728), 1, + ACTIONS(1688), 1, anon_sym_POUND, - ACTIONS(2732), 1, + ACTIONS(1692), 1, aux_sym_num_lit_token1, - ACTIONS(2737), 1, + ACTIONS(1697), 1, anon_sym_COLON_COLON, - ACTIONS(2739), 1, + ACTIONS(1699), 1, anon_sym_DQUOTE, - ACTIONS(2741), 1, + ACTIONS(1701), 1, aux_sym_sym_lit_token1, - ACTIONS(2756), 1, + ACTIONS(1716), 1, anon_sym_POUND_QMARK, - ACTIONS(2758), 1, + ACTIONS(1718), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2760), 1, + ACTIONS(1720), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2762), 1, + ACTIONS(1722), 1, anon_sym_SQUOTE, - ACTIONS(2764), 1, + ACTIONS(1724), 1, anon_sym_BQUOTE, - ACTIONS(2766), 1, + ACTIONS(1726), 1, anon_sym_COMMA_AT, - ACTIONS(2768), 1, + ACTIONS(1728), 1, anon_sym_COMMA, - ACTIONS(4793), 1, + ACTIONS(4791), 1, anon_sym_COLON, - ACTIONS(4795), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4795), 1, anon_sym_cl, - ACTIONS(5941), 1, + ACTIONS(5907), 1, sym_self_referential_reader_macro, - STATE(1482), 1, - sym__bare_set_lit, - STATE(1484), 1, + STATE(1288), 1, sym_sym_lit, - STATE(2813), 1, + STATE(1290), 1, + sym__bare_set_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(2754), 2, + ACTIONS(1714), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2775), 2, + ACTIONS(1735), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2779), 2, + ACTIONS(1739), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2781), 2, + ACTIONS(1741), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(5903), 2, sym__ws, sym_comment, - ACTIONS(5939), 3, + ACTIONS(5905), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1483), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(624), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1447), 19, + STATE(1289), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1307), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -68751,7 +68124,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [29160] = 35, + [28892] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -68760,78 +68133,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2728), 1, + ACTIONS(65), 1, anon_sym_POUND, - ACTIONS(2732), 1, + ACTIONS(69), 1, aux_sym_num_lit_token1, - ACTIONS(2737), 1, + ACTIONS(74), 1, anon_sym_COLON_COLON, - ACTIONS(2739), 1, + ACTIONS(76), 1, anon_sym_DQUOTE, - ACTIONS(2741), 1, + ACTIONS(78), 1, aux_sym_sym_lit_token1, - ACTIONS(2756), 1, + ACTIONS(93), 1, anon_sym_POUND_QMARK, - ACTIONS(2758), 1, + ACTIONS(95), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2760), 1, + ACTIONS(97), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2762), 1, + ACTIONS(99), 1, anon_sym_SQUOTE, - ACTIONS(2764), 1, + ACTIONS(101), 1, anon_sym_BQUOTE, - ACTIONS(2766), 1, + ACTIONS(103), 1, anon_sym_COMMA_AT, - ACTIONS(2768), 1, + ACTIONS(105), 1, anon_sym_COMMA, - ACTIONS(4793), 1, + ACTIONS(4749), 1, anon_sym_COLON, - ACTIONS(4795), 1, + ACTIONS(4751), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4753), 1, anon_sym_cl, - ACTIONS(5945), 1, + ACTIONS(5913), 1, sym_self_referential_reader_macro, - STATE(1482), 1, - sym__bare_set_lit, - STATE(1484), 1, + STATE(1101), 1, sym_sym_lit, - STATE(2813), 1, + STATE(1117), 1, + sym__bare_set_lit, + STATE(2812), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(2754), 2, + ACTIONS(91), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2775), 2, + ACTIONS(114), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2779), 2, + ACTIONS(118), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2781), 2, + ACTIONS(120), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(5909), 2, sym__ws, sym_comment, - ACTIONS(5943), 3, + ACTIONS(5911), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1483), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(625), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1448), 19, + STATE(1109), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1018), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -68851,7 +68224,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [29295] = 35, + [29027] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -68860,78 +68233,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2728), 1, + ACTIONS(65), 1, anon_sym_POUND, - ACTIONS(2732), 1, + ACTIONS(69), 1, aux_sym_num_lit_token1, - ACTIONS(2737), 1, + ACTIONS(74), 1, anon_sym_COLON_COLON, - ACTIONS(2739), 1, + ACTIONS(76), 1, anon_sym_DQUOTE, - ACTIONS(2741), 1, + ACTIONS(78), 1, aux_sym_sym_lit_token1, - ACTIONS(2756), 1, + ACTIONS(93), 1, anon_sym_POUND_QMARK, - ACTIONS(2758), 1, + ACTIONS(95), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2760), 1, + ACTIONS(97), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2762), 1, + ACTIONS(99), 1, anon_sym_SQUOTE, - ACTIONS(2764), 1, + ACTIONS(101), 1, anon_sym_BQUOTE, - ACTIONS(2766), 1, + ACTIONS(103), 1, anon_sym_COMMA_AT, - ACTIONS(2768), 1, + ACTIONS(105), 1, anon_sym_COMMA, - ACTIONS(4793), 1, + ACTIONS(4749), 1, anon_sym_COLON, - ACTIONS(4795), 1, + ACTIONS(4751), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4753), 1, anon_sym_cl, - ACTIONS(5949), 1, + ACTIONS(5919), 1, sym_self_referential_reader_macro, - STATE(1482), 1, - sym__bare_set_lit, - STATE(1484), 1, + STATE(1101), 1, sym_sym_lit, - STATE(2813), 1, + STATE(1117), 1, + sym__bare_set_lit, + STATE(2812), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(2754), 2, + ACTIONS(91), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2775), 2, + ACTIONS(114), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2779), 2, + ACTIONS(118), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2781), 2, + ACTIONS(120), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(5915), 2, sym__ws, sym_comment, - ACTIONS(5947), 3, + ACTIONS(5917), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1483), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(626), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1449), 19, + STATE(1109), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1020), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -68951,7 +68324,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [29430] = 35, + [29162] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -68960,78 +68333,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(77), 1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4803), 1, - anon_sym_POUND, - ACTIONS(4807), 1, - aux_sym_num_lit_token1, - ACTIONS(4809), 1, + ACTIONS(4767), 1, anon_sym_COLON, - ACTIONS(4811), 1, + ACTIONS(4769), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4771), 1, + anon_sym_cl, + ACTIONS(5617), 1, + sym_self_referential_reader_macro, + ACTIONS(5921), 1, + anon_sym_POUND, + ACTIONS(5923), 1, + aux_sym_num_lit_token1, + ACTIONS(5927), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4817), 1, + ACTIONS(5929), 1, anon_sym_SQUOTE, - ACTIONS(4819), 1, + ACTIONS(5931), 1, anon_sym_BQUOTE, - ACTIONS(4821), 1, + ACTIONS(5933), 1, anon_sym_COMMA_AT, - ACTIONS(4823), 1, + ACTIONS(5935), 1, anon_sym_COMMA, - ACTIONS(4825), 1, - anon_sym_cl, - ACTIONS(5953), 1, - sym_self_referential_reader_macro, - STATE(2497), 1, + STATE(2112), 1, sym_sym_lit, - STATE(2625), 1, + STATE(2589), 1, sym__bare_set_lit, - STATE(2828), 1, + STATE(2824), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(123), 2, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(129), 2, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(4813), 2, + ACTIONS(5925), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4829), 2, + ACTIONS(5937), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5951), 3, + ACTIONS(5615), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(2584), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2511), 19, + STATE(2123), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -69051,7 +68424,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [29565] = 35, + [29297] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -69060,78 +68433,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(137), 1, + ACTIONS(1688), 1, anon_sym_POUND, - ACTIONS(141), 1, + ACTIONS(1692), 1, aux_sym_num_lit_token1, - ACTIONS(146), 1, + ACTIONS(1697), 1, anon_sym_COLON_COLON, - ACTIONS(148), 1, + ACTIONS(1699), 1, anon_sym_DQUOTE, - ACTIONS(150), 1, + ACTIONS(1701), 1, aux_sym_sym_lit_token1, - ACTIONS(165), 1, + ACTIONS(1716), 1, anon_sym_POUND_QMARK, - ACTIONS(167), 1, + ACTIONS(1718), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(169), 1, + ACTIONS(1720), 1, anon_sym_POUND_SQUOTE, - ACTIONS(171), 1, + ACTIONS(1722), 1, anon_sym_SQUOTE, - ACTIONS(173), 1, + ACTIONS(1724), 1, anon_sym_BQUOTE, - ACTIONS(175), 1, + ACTIONS(1726), 1, anon_sym_COMMA_AT, - ACTIONS(177), 1, + ACTIONS(1728), 1, anon_sym_COMMA, - ACTIONS(4855), 1, + ACTIONS(4791), 1, anon_sym_COLON, - ACTIONS(4857), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4859), 1, + ACTIONS(4795), 1, anon_sym_cl, - ACTIONS(5959), 1, + ACTIONS(5941), 1, sym_self_referential_reader_macro, - STATE(1069), 1, - sym__bare_set_lit, - STATE(1073), 1, + STATE(1288), 1, sym_sym_lit, - STATE(2804), 1, + STATE(1290), 1, + sym__bare_set_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(163), 2, + ACTIONS(1714), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(186), 2, + ACTIONS(1735), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(190), 2, + ACTIONS(1739), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(192), 2, + ACTIONS(1741), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5955), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(5957), 3, + ACTIONS(5939), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(617), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1070), 3, + STATE(1289), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1033), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1324), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -69151,7 +68524,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [29700] = 35, + [29432] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -69160,78 +68533,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(137), 1, + ACTIONS(1688), 1, anon_sym_POUND, - ACTIONS(141), 1, + ACTIONS(1692), 1, aux_sym_num_lit_token1, - ACTIONS(146), 1, + ACTIONS(1697), 1, anon_sym_COLON_COLON, - ACTIONS(148), 1, + ACTIONS(1699), 1, anon_sym_DQUOTE, - ACTIONS(150), 1, + ACTIONS(1701), 1, aux_sym_sym_lit_token1, - ACTIONS(165), 1, + ACTIONS(1716), 1, anon_sym_POUND_QMARK, - ACTIONS(167), 1, + ACTIONS(1718), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(169), 1, + ACTIONS(1720), 1, anon_sym_POUND_SQUOTE, - ACTIONS(171), 1, + ACTIONS(1722), 1, anon_sym_SQUOTE, - ACTIONS(173), 1, + ACTIONS(1724), 1, anon_sym_BQUOTE, - ACTIONS(175), 1, + ACTIONS(1726), 1, anon_sym_COMMA_AT, - ACTIONS(177), 1, + ACTIONS(1728), 1, anon_sym_COMMA, - ACTIONS(4855), 1, + ACTIONS(4791), 1, anon_sym_COLON, - ACTIONS(4857), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4859), 1, + ACTIONS(4795), 1, anon_sym_cl, - ACTIONS(5965), 1, + ACTIONS(5945), 1, sym_self_referential_reader_macro, - STATE(1069), 1, - sym__bare_set_lit, - STATE(1073), 1, + STATE(1288), 1, sym_sym_lit, - STATE(2804), 1, + STATE(1290), 1, + sym__bare_set_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(163), 2, + ACTIONS(1714), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(186), 2, + ACTIONS(1735), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(190), 2, + ACTIONS(1739), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(192), 2, + ACTIONS(1741), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5961), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(5963), 3, + ACTIONS(5943), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(619), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1070), 3, + STATE(1289), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1036), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1325), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -69251,7 +68624,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [29835] = 35, + [29567] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -69260,78 +68633,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2728), 1, + ACTIONS(1688), 1, anon_sym_POUND, - ACTIONS(2732), 1, + ACTIONS(1692), 1, aux_sym_num_lit_token1, - ACTIONS(2737), 1, + ACTIONS(1697), 1, anon_sym_COLON_COLON, - ACTIONS(2739), 1, + ACTIONS(1699), 1, anon_sym_DQUOTE, - ACTIONS(2741), 1, + ACTIONS(1701), 1, aux_sym_sym_lit_token1, - ACTIONS(2756), 1, + ACTIONS(1716), 1, anon_sym_POUND_QMARK, - ACTIONS(2758), 1, + ACTIONS(1718), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2760), 1, + ACTIONS(1720), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2762), 1, + ACTIONS(1722), 1, anon_sym_SQUOTE, - ACTIONS(2764), 1, + ACTIONS(1724), 1, anon_sym_BQUOTE, - ACTIONS(2766), 1, + ACTIONS(1726), 1, anon_sym_COMMA_AT, - ACTIONS(2768), 1, + ACTIONS(1728), 1, anon_sym_COMMA, - ACTIONS(4793), 1, + ACTIONS(4791), 1, anon_sym_COLON, - ACTIONS(4795), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4795), 1, anon_sym_cl, - ACTIONS(5971), 1, + ACTIONS(5949), 1, sym_self_referential_reader_macro, - STATE(1482), 1, - sym__bare_set_lit, - STATE(1484), 1, + STATE(1288), 1, sym_sym_lit, - STATE(2813), 1, + STATE(1290), 1, + sym__bare_set_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(2754), 2, + ACTIONS(1714), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2775), 2, + ACTIONS(1735), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2779), 2, + ACTIONS(1739), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2781), 2, + ACTIONS(1741), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5967), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(5969), 3, + ACTIONS(5947), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(620), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1483), 3, + STATE(1289), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1466), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1326), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -69351,7 +68724,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [29970] = 35, + [29702] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -69360,78 +68733,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2728), 1, + ACTIONS(65), 1, anon_sym_POUND, - ACTIONS(2732), 1, + ACTIONS(69), 1, aux_sym_num_lit_token1, - ACTIONS(2737), 1, + ACTIONS(74), 1, anon_sym_COLON_COLON, - ACTIONS(2739), 1, + ACTIONS(76), 1, anon_sym_DQUOTE, - ACTIONS(2741), 1, + ACTIONS(78), 1, aux_sym_sym_lit_token1, - ACTIONS(2756), 1, + ACTIONS(93), 1, anon_sym_POUND_QMARK, - ACTIONS(2758), 1, + ACTIONS(95), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2760), 1, + ACTIONS(97), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2762), 1, + ACTIONS(99), 1, anon_sym_SQUOTE, - ACTIONS(2764), 1, + ACTIONS(101), 1, anon_sym_BQUOTE, - ACTIONS(2766), 1, + ACTIONS(103), 1, anon_sym_COMMA_AT, - ACTIONS(2768), 1, + ACTIONS(105), 1, anon_sym_COMMA, - ACTIONS(4793), 1, + ACTIONS(4749), 1, anon_sym_COLON, - ACTIONS(4795), 1, + ACTIONS(4751), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4753), 1, anon_sym_cl, - ACTIONS(5977), 1, + ACTIONS(5953), 1, sym_self_referential_reader_macro, - STATE(1482), 1, - sym__bare_set_lit, - STATE(1484), 1, + STATE(1101), 1, sym_sym_lit, - STATE(2813), 1, + STATE(1117), 1, + sym__bare_set_lit, + STATE(2812), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(2754), 2, + ACTIONS(91), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2775), 2, + ACTIONS(114), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2779), 2, + ACTIONS(118), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2781), 2, + ACTIONS(120), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5973), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(5975), 3, + ACTIONS(5951), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(621), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1483), 3, + STATE(1109), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1467), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1042), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -69451,7 +68824,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [30105] = 35, + [29837] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -69460,78 +68833,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2728), 1, + ACTIONS(65), 1, anon_sym_POUND, - ACTIONS(2732), 1, + ACTIONS(69), 1, aux_sym_num_lit_token1, - ACTIONS(2737), 1, + ACTIONS(74), 1, anon_sym_COLON_COLON, - ACTIONS(2739), 1, + ACTIONS(76), 1, anon_sym_DQUOTE, - ACTIONS(2741), 1, + ACTIONS(78), 1, aux_sym_sym_lit_token1, - ACTIONS(2756), 1, + ACTIONS(93), 1, anon_sym_POUND_QMARK, - ACTIONS(2758), 1, + ACTIONS(95), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2760), 1, + ACTIONS(97), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2762), 1, + ACTIONS(99), 1, anon_sym_SQUOTE, - ACTIONS(2764), 1, + ACTIONS(101), 1, anon_sym_BQUOTE, - ACTIONS(2766), 1, + ACTIONS(103), 1, anon_sym_COMMA_AT, - ACTIONS(2768), 1, + ACTIONS(105), 1, anon_sym_COMMA, - ACTIONS(4793), 1, + ACTIONS(4749), 1, anon_sym_COLON, - ACTIONS(4795), 1, + ACTIONS(4751), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4753), 1, anon_sym_cl, - ACTIONS(5983), 1, + ACTIONS(5957), 1, sym_self_referential_reader_macro, - STATE(1482), 1, - sym__bare_set_lit, - STATE(1484), 1, + STATE(1101), 1, sym_sym_lit, - STATE(2813), 1, + STATE(1117), 1, + sym__bare_set_lit, + STATE(2812), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(2754), 2, + ACTIONS(91), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2775), 2, + ACTIONS(114), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2779), 2, + ACTIONS(118), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2781), 2, + ACTIONS(120), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5979), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(5981), 3, + ACTIONS(5955), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(622), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1483), 3, + STATE(1109), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1468), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1043), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -69551,87 +68924,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [30240] = 35, + [29972] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(1688), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(1692), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(1697), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(1699), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(1701), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(1716), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(1718), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(1720), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(1722), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(1724), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(1726), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(1728), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4791), 1, + anon_sym_COLON, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4795), 1, anon_sym_cl, - ACTIONS(5989), 1, + ACTIONS(5963), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(1288), 1, sym_sym_lit, + STATE(1290), 1, + sym__bare_set_lit, STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(1714), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(1735), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(1739), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(1741), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5985), 2, + ACTIONS(5959), 2, sym__ws, sym_comment, - ACTIONS(5987), 3, + ACTIONS(5961), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(601), 3, + STATE(631), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1877), 3, + STATE(1289), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(424), 19, + STATE(1330), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -69651,87 +69024,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [30375] = 35, + [30107] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(1688), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(1692), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(1697), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(1699), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(1701), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(1716), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(1718), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(1720), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(1722), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(1724), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(1726), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(1728), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4791), 1, + anon_sym_COLON, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4795), 1, anon_sym_cl, - ACTIONS(5993), 1, + ACTIONS(5969), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(1288), 1, sym_sym_lit, + STATE(1290), 1, + sym__bare_set_lit, STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(1714), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(1735), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(1739), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(1741), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(5965), 2, sym__ws, sym_comment, - ACTIONS(5991), 3, + ACTIONS(5967), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1877), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(633), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1860), 19, + STATE(1289), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1333), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -69751,7 +69124,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [30510] = 35, + [30242] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -69760,78 +69133,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(636), 1, + ACTIONS(1688), 1, anon_sym_POUND, - ACTIONS(640), 1, + ACTIONS(1692), 1, aux_sym_num_lit_token1, - ACTIONS(644), 1, + ACTIONS(1697), 1, anon_sym_COLON_COLON, - ACTIONS(646), 1, + ACTIONS(1699), 1, anon_sym_DQUOTE, - ACTIONS(648), 1, + ACTIONS(1701), 1, aux_sym_sym_lit_token1, - ACTIONS(652), 1, + ACTIONS(1716), 1, anon_sym_POUND_QMARK, - ACTIONS(654), 1, + ACTIONS(1718), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(656), 1, + ACTIONS(1720), 1, anon_sym_POUND_SQUOTE, - ACTIONS(658), 1, + ACTIONS(1722), 1, anon_sym_SQUOTE, - ACTIONS(660), 1, + ACTIONS(1724), 1, anon_sym_BQUOTE, - ACTIONS(662), 1, + ACTIONS(1726), 1, anon_sym_COMMA_AT, - ACTIONS(664), 1, + ACTIONS(1728), 1, anon_sym_COMMA, - ACTIONS(4410), 1, + ACTIONS(4791), 1, anon_sym_COLON, - ACTIONS(4412), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4414), 1, + ACTIONS(4795), 1, anon_sym_cl, - ACTIONS(5999), 1, + ACTIONS(5975), 1, sym_self_referential_reader_macro, - STATE(1186), 1, + STATE(1288), 1, sym_sym_lit, - STATE(1191), 1, + STATE(1290), 1, sym__bare_set_lit, - STATE(2827), 1, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(650), 2, + ACTIONS(1714), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(666), 2, + ACTIONS(1735), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(670), 2, + ACTIONS(1739), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(672), 2, + ACTIONS(1741), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5995), 2, + ACTIONS(5971), 2, sym__ws, sym_comment, - ACTIONS(5997), 3, + ACTIONS(5973), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(434), 3, + STATE(634), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1187), 3, + STATE(1289), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1192), 19, + STATE(1334), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -69851,87 +69224,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [30645] = 35, + [30377] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(65), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(69), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(74), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(76), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(78), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(93), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(95), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(97), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(99), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(101), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(103), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(105), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4749), 1, + anon_sym_COLON, + ACTIONS(4751), 1, + anon_sym_LPAREN, + ACTIONS(4753), 1, anon_sym_cl, - ACTIONS(6003), 1, + ACTIONS(5981), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(1101), 1, sym_sym_lit, - STATE(2808), 1, + STATE(1117), 1, + sym__bare_set_lit, + STATE(2812), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(91), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(114), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(118), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(120), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(5977), 2, sym__ws, sym_comment, - ACTIONS(6001), 3, + ACTIONS(5979), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1877), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(635), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(452), 19, + STATE(1109), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1054), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -69951,87 +69324,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [30780] = 35, + [30512] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(1688), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(1692), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(1697), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(1699), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(1701), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(1716), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(1718), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(1720), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(1722), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(1724), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(1726), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(1728), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4791), 1, + anon_sym_COLON, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4795), 1, anon_sym_cl, - ACTIONS(6007), 1, + ACTIONS(5985), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(1288), 1, sym_sym_lit, + STATE(1290), 1, + sym__bare_set_lit, STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(1714), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(1735), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(1739), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(1741), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(6005), 3, + ACTIONS(5983), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1877), 3, + STATE(1289), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(460), 19, + STATE(1342), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -70051,87 +69424,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [30915] = 35, + [30647] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(1688), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(1692), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(1697), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(1699), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(1701), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(1716), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(1718), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(1720), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(1722), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(1724), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(1726), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(1728), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4791), 1, + anon_sym_COLON, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4795), 1, anon_sym_cl, - ACTIONS(6013), 1, + ACTIONS(5991), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(1288), 1, sym_sym_lit, + STATE(1290), 1, + sym__bare_set_lit, STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(1714), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(1735), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(1739), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(1741), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6009), 2, + ACTIONS(5987), 2, sym__ws, sym_comment, - ACTIONS(6011), 3, + ACTIONS(5989), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(632), 3, + STATE(638), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1877), 3, + STATE(1289), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(465), 19, + STATE(1343), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -70151,87 +69524,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [31050] = 35, + [30782] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(1688), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(1692), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(1697), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(1699), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(1701), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(1716), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(1718), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(1720), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(1722), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(1724), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(1726), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(1728), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4791), 1, + anon_sym_COLON, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4795), 1, anon_sym_cl, - ACTIONS(6019), 1, + ACTIONS(5995), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(1288), 1, sym_sym_lit, + STATE(1290), 1, + sym__bare_set_lit, STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(1714), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(1735), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(1739), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(1741), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6015), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(6017), 3, + ACTIONS(5993), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(633), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1877), 3, + STATE(1289), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(466), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1346), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -70251,87 +69624,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [31185] = 35, + [30917] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(1688), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(1692), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(1697), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(1699), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(1701), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(1716), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(1718), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(1720), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(1722), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(1724), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(1726), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(1728), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4791), 1, + anon_sym_COLON, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4795), 1, anon_sym_cl, - ACTIONS(6023), 1, + ACTIONS(5999), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(1288), 1, sym_sym_lit, + STATE(1290), 1, + sym__bare_set_lit, STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(1714), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(1735), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(1739), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(1741), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(6021), 3, + ACTIONS(5997), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1877), 3, + STATE(1289), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(471), 19, + STATE(1347), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -70351,87 +69724,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [31320] = 35, + [31052] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(65), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(69), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(74), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(76), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(78), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(93), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(95), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(97), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(99), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(101), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(103), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(105), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4749), 1, + anon_sym_COLON, + ACTIONS(4751), 1, + anon_sym_LPAREN, + ACTIONS(4753), 1, anon_sym_cl, - ACTIONS(6029), 1, + ACTIONS(6003), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(1101), 1, sym_sym_lit, - STATE(2808), 1, + STATE(1117), 1, + sym__bare_set_lit, + STATE(2812), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(91), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(114), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(118), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(120), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6025), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(6027), 3, + ACTIONS(6001), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(636), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1877), 3, + STATE(1109), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(476), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1068), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -70451,7 +69824,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [31455] = 35, + [31187] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -70460,78 +69833,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(137), 1, + ACTIONS(1688), 1, anon_sym_POUND, - ACTIONS(141), 1, + ACTIONS(1692), 1, aux_sym_num_lit_token1, - ACTIONS(146), 1, + ACTIONS(1697), 1, anon_sym_COLON_COLON, - ACTIONS(148), 1, + ACTIONS(1699), 1, anon_sym_DQUOTE, - ACTIONS(150), 1, + ACTIONS(1701), 1, aux_sym_sym_lit_token1, - ACTIONS(165), 1, + ACTIONS(1716), 1, anon_sym_POUND_QMARK, - ACTIONS(167), 1, + ACTIONS(1718), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(169), 1, + ACTIONS(1720), 1, anon_sym_POUND_SQUOTE, - ACTIONS(171), 1, + ACTIONS(1722), 1, anon_sym_SQUOTE, - ACTIONS(173), 1, + ACTIONS(1724), 1, anon_sym_BQUOTE, - ACTIONS(175), 1, + ACTIONS(1726), 1, anon_sym_COMMA_AT, - ACTIONS(177), 1, + ACTIONS(1728), 1, anon_sym_COMMA, - ACTIONS(4855), 1, + ACTIONS(4791), 1, anon_sym_COLON, - ACTIONS(4857), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4859), 1, + ACTIONS(4795), 1, anon_sym_cl, - ACTIONS(6035), 1, + ACTIONS(6009), 1, sym_self_referential_reader_macro, - STATE(1069), 1, - sym__bare_set_lit, - STATE(1073), 1, + STATE(1288), 1, sym_sym_lit, - STATE(2804), 1, + STATE(1290), 1, + sym__bare_set_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(163), 2, + ACTIONS(1714), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(186), 2, + ACTIONS(1735), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(190), 2, + ACTIONS(1739), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(192), 2, + ACTIONS(1741), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6031), 2, + ACTIONS(6005), 2, sym__ws, sym_comment, - ACTIONS(6033), 3, + ACTIONS(6007), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(482), 3, + STATE(639), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1070), 3, + STATE(1289), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1067), 19, + STATE(1349), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -70551,7 +69924,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [31590] = 35, + [31322] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -70560,78 +69933,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5179), 1, - aux_sym_num_lit_token1, - ACTIONS(5297), 1, - sym_self_referential_reader_macro, - ACTIONS(6039), 1, + ACTIONS(1688), 1, anon_sym_POUND, - ACTIONS(6041), 1, - anon_sym_COLON, - ACTIONS(6043), 1, + ACTIONS(1692), 1, + aux_sym_num_lit_token1, + ACTIONS(1697), 1, anon_sym_COLON_COLON, - ACTIONS(6045), 1, + ACTIONS(1699), 1, anon_sym_DQUOTE, - ACTIONS(6047), 1, + ACTIONS(1701), 1, aux_sym_sym_lit_token1, - ACTIONS(6049), 1, - anon_sym_LPAREN, - ACTIONS(6051), 1, + ACTIONS(1716), 1, anon_sym_POUND_QMARK, - ACTIONS(6053), 1, + ACTIONS(1718), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(6055), 1, + ACTIONS(1720), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6057), 1, + ACTIONS(1722), 1, anon_sym_SQUOTE, - ACTIONS(6059), 1, + ACTIONS(1724), 1, anon_sym_BQUOTE, - ACTIONS(6061), 1, + ACTIONS(1726), 1, anon_sym_COMMA_AT, - ACTIONS(6063), 1, + ACTIONS(1728), 1, anon_sym_COMMA, - ACTIONS(6065), 1, + ACTIONS(4791), 1, + anon_sym_COLON, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4795), 1, anon_sym_cl, - STATE(2815), 1, + ACTIONS(6015), 1, + sym_self_referential_reader_macro, + STATE(1288), 1, + sym_sym_lit, + STATE(1290), 1, + sym__bare_set_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, - sym__bare_set_lit, - STATE(3039), 1, - sym_sym_lit, - ACTIONS(5055), 2, + ACTIONS(1714), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(1735), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(5061), 2, + ACTIONS(1739), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1741), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5183), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(6037), 2, + ACTIONS(6011), 2, sym__ws, sym_comment, - ACTIONS(6067), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(5295), 3, + ACTIONS(6013), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(647), 3, + STATE(641), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2991), 3, + STATE(1289), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2935), 19, + STATE(1350), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -70651,7 +70024,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [31725] = 35, + [31457] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -70660,78 +70033,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5179), 1, - aux_sym_num_lit_token1, - ACTIONS(5291), 1, - sym_self_referential_reader_macro, - ACTIONS(6039), 1, + ACTIONS(1688), 1, anon_sym_POUND, - ACTIONS(6041), 1, - anon_sym_COLON, - ACTIONS(6043), 1, + ACTIONS(1692), 1, + aux_sym_num_lit_token1, + ACTIONS(1697), 1, anon_sym_COLON_COLON, - ACTIONS(6045), 1, + ACTIONS(1699), 1, anon_sym_DQUOTE, - ACTIONS(6047), 1, + ACTIONS(1701), 1, aux_sym_sym_lit_token1, - ACTIONS(6049), 1, - anon_sym_LPAREN, - ACTIONS(6051), 1, + ACTIONS(1716), 1, anon_sym_POUND_QMARK, - ACTIONS(6053), 1, + ACTIONS(1718), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(6055), 1, + ACTIONS(1720), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6057), 1, + ACTIONS(1722), 1, anon_sym_SQUOTE, - ACTIONS(6059), 1, + ACTIONS(1724), 1, anon_sym_BQUOTE, - ACTIONS(6061), 1, + ACTIONS(1726), 1, anon_sym_COMMA_AT, - ACTIONS(6063), 1, + ACTIONS(1728), 1, anon_sym_COMMA, - ACTIONS(6065), 1, + ACTIONS(4791), 1, + anon_sym_COLON, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4795), 1, anon_sym_cl, - STATE(2815), 1, + ACTIONS(6019), 1, + sym_self_referential_reader_macro, + STATE(1288), 1, + sym_sym_lit, + STATE(1290), 1, + sym__bare_set_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, - sym__bare_set_lit, - STATE(3039), 1, - sym_sym_lit, - ACTIONS(5055), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(5061), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5183), 2, + ACTIONS(1714), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(6067), 2, + ACTIONS(1735), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(1739), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6069), 2, + ACTIONS(1741), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(5289), 3, + ACTIONS(6017), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(648), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2991), 3, + STATE(1289), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2936), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1356), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -70751,7 +70124,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [31860] = 35, + [31592] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -70760,78 +70133,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5179), 1, - aux_sym_num_lit_token1, - ACTIONS(5285), 1, - sym_self_referential_reader_macro, - ACTIONS(6039), 1, + ACTIONS(1688), 1, anon_sym_POUND, - ACTIONS(6041), 1, - anon_sym_COLON, - ACTIONS(6043), 1, + ACTIONS(1692), 1, + aux_sym_num_lit_token1, + ACTIONS(1697), 1, anon_sym_COLON_COLON, - ACTIONS(6045), 1, + ACTIONS(1699), 1, anon_sym_DQUOTE, - ACTIONS(6047), 1, + ACTIONS(1701), 1, aux_sym_sym_lit_token1, - ACTIONS(6049), 1, - anon_sym_LPAREN, - ACTIONS(6051), 1, + ACTIONS(1716), 1, anon_sym_POUND_QMARK, - ACTIONS(6053), 1, + ACTIONS(1718), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(6055), 1, + ACTIONS(1720), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6057), 1, + ACTIONS(1722), 1, anon_sym_SQUOTE, - ACTIONS(6059), 1, + ACTIONS(1724), 1, anon_sym_BQUOTE, - ACTIONS(6061), 1, + ACTIONS(1726), 1, anon_sym_COMMA_AT, - ACTIONS(6063), 1, + ACTIONS(1728), 1, anon_sym_COMMA, - ACTIONS(6065), 1, + ACTIONS(4791), 1, + anon_sym_COLON, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4795), 1, anon_sym_cl, - STATE(2815), 1, + ACTIONS(6023), 1, + sym_self_referential_reader_macro, + STATE(1288), 1, + sym_sym_lit, + STATE(1290), 1, + sym__bare_set_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, - sym__bare_set_lit, - STATE(3039), 1, - sym_sym_lit, - ACTIONS(5055), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(5061), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5183), 2, + ACTIONS(1714), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(6067), 2, + ACTIONS(1735), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(1739), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6071), 2, + ACTIONS(1741), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(5283), 3, + ACTIONS(6021), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(651), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2991), 3, + STATE(1289), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2940), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1358), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -70851,7 +70224,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [31995] = 35, + [31727] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -70860,78 +70233,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5179), 1, - aux_sym_num_lit_token1, - ACTIONS(6039), 1, + ACTIONS(1688), 1, anon_sym_POUND, - ACTIONS(6041), 1, - anon_sym_COLON, - ACTIONS(6043), 1, + ACTIONS(1692), 1, + aux_sym_num_lit_token1, + ACTIONS(1697), 1, anon_sym_COLON_COLON, - ACTIONS(6045), 1, + ACTIONS(1699), 1, anon_sym_DQUOTE, - ACTIONS(6047), 1, + ACTIONS(1701), 1, aux_sym_sym_lit_token1, - ACTIONS(6049), 1, - anon_sym_LPAREN, - ACTIONS(6051), 1, + ACTIONS(1716), 1, anon_sym_POUND_QMARK, - ACTIONS(6053), 1, + ACTIONS(1718), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(6055), 1, + ACTIONS(1720), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6057), 1, + ACTIONS(1722), 1, anon_sym_SQUOTE, - ACTIONS(6059), 1, + ACTIONS(1724), 1, anon_sym_BQUOTE, - ACTIONS(6061), 1, + ACTIONS(1726), 1, anon_sym_COMMA_AT, - ACTIONS(6063), 1, + ACTIONS(1728), 1, anon_sym_COMMA, - ACTIONS(6065), 1, + ACTIONS(4791), 1, + anon_sym_COLON, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4795), 1, anon_sym_cl, - ACTIONS(6077), 1, + ACTIONS(6029), 1, sym_self_referential_reader_macro, - STATE(2815), 1, + STATE(1288), 1, + sym_sym_lit, + STATE(1290), 1, + sym__bare_set_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, - sym__bare_set_lit, - STATE(3039), 1, - sym_sym_lit, - ACTIONS(5055), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(5061), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5183), 2, + ACTIONS(1714), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(6067), 2, + ACTIONS(1735), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(1739), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6073), 2, + ACTIONS(1741), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6025), 2, sym__ws, sym_comment, - ACTIONS(6075), 3, + ACTIONS(6027), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(652), 3, + STATE(643), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2991), 3, + STATE(1289), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2800), 19, + STATE(1359), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -70951,87 +70324,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [32130] = 35, + [31862] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(1688), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(1692), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(1697), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(1699), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(1701), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(1716), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(1718), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(1720), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(1722), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(1724), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(1726), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(1728), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4791), 1, + anon_sym_COLON, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4795), 1, anon_sym_cl, - ACTIONS(6081), 1, + ACTIONS(6033), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(1288), 1, sym_sym_lit, + STATE(1290), 1, + sym__bare_set_lit, STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(1714), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(1735), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(1739), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(1741), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(6079), 3, + ACTIONS(6031), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1877), 3, + STATE(1289), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(490), 19, + STATE(1360), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -71051,7 +70424,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [32265] = 35, + [31997] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -71060,78 +70433,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5179), 1, - aux_sym_num_lit_token1, - ACTIONS(6039), 1, + ACTIONS(1688), 1, anon_sym_POUND, - ACTIONS(6041), 1, - anon_sym_COLON, - ACTIONS(6043), 1, + ACTIONS(1692), 1, + aux_sym_num_lit_token1, + ACTIONS(1697), 1, anon_sym_COLON_COLON, - ACTIONS(6045), 1, + ACTIONS(1699), 1, anon_sym_DQUOTE, - ACTIONS(6047), 1, + ACTIONS(1701), 1, aux_sym_sym_lit_token1, - ACTIONS(6049), 1, - anon_sym_LPAREN, - ACTIONS(6051), 1, + ACTIONS(1716), 1, anon_sym_POUND_QMARK, - ACTIONS(6053), 1, + ACTIONS(1718), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(6055), 1, + ACTIONS(1720), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6057), 1, + ACTIONS(1722), 1, anon_sym_SQUOTE, - ACTIONS(6059), 1, + ACTIONS(1724), 1, anon_sym_BQUOTE, - ACTIONS(6061), 1, + ACTIONS(1726), 1, anon_sym_COMMA_AT, - ACTIONS(6063), 1, + ACTIONS(1728), 1, anon_sym_COMMA, - ACTIONS(6065), 1, + ACTIONS(4791), 1, + anon_sym_COLON, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4795), 1, anon_sym_cl, - ACTIONS(6087), 1, + ACTIONS(6039), 1, sym_self_referential_reader_macro, - STATE(2815), 1, + STATE(1288), 1, + sym_sym_lit, + STATE(1290), 1, + sym__bare_set_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, - sym__bare_set_lit, - STATE(3039), 1, - sym_sym_lit, - ACTIONS(5055), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(5061), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5183), 2, + ACTIONS(1714), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(6067), 2, + ACTIONS(1735), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(1739), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6083), 2, + ACTIONS(1741), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6035), 2, sym__ws, sym_comment, - ACTIONS(6085), 3, + ACTIONS(6037), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(654), 3, + STATE(644), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2991), 3, + STATE(1289), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2801), 19, + STATE(1361), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -71151,7 +70524,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [32400] = 35, + [32132] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -71160,78 +70533,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5179), 1, - aux_sym_num_lit_token1, - ACTIONS(6039), 1, + ACTIONS(1688), 1, anon_sym_POUND, - ACTIONS(6041), 1, - anon_sym_COLON, - ACTIONS(6043), 1, + ACTIONS(1692), 1, + aux_sym_num_lit_token1, + ACTIONS(1697), 1, anon_sym_COLON_COLON, - ACTIONS(6045), 1, + ACTIONS(1699), 1, anon_sym_DQUOTE, - ACTIONS(6047), 1, + ACTIONS(1701), 1, aux_sym_sym_lit_token1, - ACTIONS(6049), 1, - anon_sym_LPAREN, - ACTIONS(6051), 1, + ACTIONS(1716), 1, anon_sym_POUND_QMARK, - ACTIONS(6053), 1, + ACTIONS(1718), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(6055), 1, + ACTIONS(1720), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6057), 1, + ACTIONS(1722), 1, anon_sym_SQUOTE, - ACTIONS(6059), 1, + ACTIONS(1724), 1, anon_sym_BQUOTE, - ACTIONS(6061), 1, + ACTIONS(1726), 1, anon_sym_COMMA_AT, - ACTIONS(6063), 1, + ACTIONS(1728), 1, anon_sym_COMMA, - ACTIONS(6065), 1, + ACTIONS(4791), 1, + anon_sym_COLON, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4795), 1, anon_sym_cl, - ACTIONS(6091), 1, + ACTIONS(6043), 1, sym_self_referential_reader_macro, - STATE(2815), 1, + STATE(1288), 1, + sym_sym_lit, + STATE(1290), 1, + sym__bare_set_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, - sym__bare_set_lit, - STATE(3039), 1, - sym_sym_lit, - ACTIONS(4801), 2, - sym__ws, - sym_comment, - ACTIONS(5055), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(5061), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5183), 2, + ACTIONS(1714), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(6067), 2, + ACTIONS(1735), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(1739), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6089), 3, + ACTIONS(1741), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4763), 2, + sym__ws, + sym_comment, + ACTIONS(6041), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2991), 3, + STATE(1289), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2829), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1367), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -71251,87 +70624,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [32535] = 35, + [32267] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(1688), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(1692), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(1697), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(1699), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(1701), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(1716), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(1718), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(1720), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(1722), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(1724), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(1726), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(1728), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4791), 1, + anon_sym_COLON, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4795), 1, anon_sym_cl, - ACTIONS(6095), 1, + ACTIONS(6047), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(1288), 1, sym_sym_lit, + STATE(1290), 1, + sym__bare_set_lit, STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(1714), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(1735), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(1739), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(1741), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(6093), 3, + ACTIONS(6045), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1877), 3, + STATE(1289), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(492), 19, + STATE(1368), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -71351,7 +70724,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [32670] = 35, + [32402] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -71360,78 +70733,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5179), 1, - aux_sym_num_lit_token1, - ACTIONS(5263), 1, - sym_self_referential_reader_macro, - ACTIONS(6039), 1, + ACTIONS(65), 1, anon_sym_POUND, - ACTIONS(6041), 1, - anon_sym_COLON, - ACTIONS(6043), 1, + ACTIONS(69), 1, + aux_sym_num_lit_token1, + ACTIONS(74), 1, anon_sym_COLON_COLON, - ACTIONS(6045), 1, + ACTIONS(76), 1, anon_sym_DQUOTE, - ACTIONS(6047), 1, + ACTIONS(78), 1, aux_sym_sym_lit_token1, - ACTIONS(6049), 1, - anon_sym_LPAREN, - ACTIONS(6051), 1, + ACTIONS(93), 1, anon_sym_POUND_QMARK, - ACTIONS(6053), 1, + ACTIONS(95), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(6055), 1, + ACTIONS(97), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6057), 1, + ACTIONS(99), 1, anon_sym_SQUOTE, - ACTIONS(6059), 1, + ACTIONS(101), 1, anon_sym_BQUOTE, - ACTIONS(6061), 1, + ACTIONS(103), 1, anon_sym_COMMA_AT, - ACTIONS(6063), 1, + ACTIONS(105), 1, anon_sym_COMMA, - ACTIONS(6065), 1, + ACTIONS(4749), 1, + anon_sym_COLON, + ACTIONS(4751), 1, + anon_sym_LPAREN, + ACTIONS(4753), 1, anon_sym_cl, - STATE(2815), 1, + ACTIONS(6053), 1, + sym_self_referential_reader_macro, + STATE(1101), 1, + sym_sym_lit, + STATE(1117), 1, + sym__bare_set_lit, + STATE(2812), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, - sym__bare_set_lit, - STATE(3039), 1, - sym_sym_lit, - ACTIONS(4801), 2, - sym__ws, - sym_comment, - ACTIONS(5055), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(5061), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5183), 2, + ACTIONS(91), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(6067), 2, + ACTIONS(114), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(118), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5261), 3, + ACTIONS(120), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6049), 2, + sym__ws, + sym_comment, + ACTIONS(6051), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, + STATE(651), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2991), 3, + STATE(1109), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2981), 19, + STATE(1013), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -71451,7 +70824,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [32805] = 35, + [32537] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -71460,78 +70833,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5179), 1, - aux_sym_num_lit_token1, - ACTIONS(5259), 1, - sym_self_referential_reader_macro, - ACTIONS(6039), 1, + ACTIONS(65), 1, anon_sym_POUND, - ACTIONS(6041), 1, - anon_sym_COLON, - ACTIONS(6043), 1, + ACTIONS(69), 1, + aux_sym_num_lit_token1, + ACTIONS(74), 1, anon_sym_COLON_COLON, - ACTIONS(6045), 1, + ACTIONS(76), 1, anon_sym_DQUOTE, - ACTIONS(6047), 1, + ACTIONS(78), 1, aux_sym_sym_lit_token1, - ACTIONS(6049), 1, - anon_sym_LPAREN, - ACTIONS(6051), 1, + ACTIONS(93), 1, anon_sym_POUND_QMARK, - ACTIONS(6053), 1, + ACTIONS(95), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(6055), 1, + ACTIONS(97), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6057), 1, + ACTIONS(99), 1, anon_sym_SQUOTE, - ACTIONS(6059), 1, + ACTIONS(101), 1, anon_sym_BQUOTE, - ACTIONS(6061), 1, + ACTIONS(103), 1, anon_sym_COMMA_AT, - ACTIONS(6063), 1, + ACTIONS(105), 1, anon_sym_COMMA, - ACTIONS(6065), 1, + ACTIONS(4749), 1, + anon_sym_COLON, + ACTIONS(4751), 1, + anon_sym_LPAREN, + ACTIONS(4753), 1, anon_sym_cl, - STATE(2815), 1, + ACTIONS(6059), 1, + sym_self_referential_reader_macro, + STATE(1101), 1, + sym_sym_lit, + STATE(1117), 1, + sym__bare_set_lit, + STATE(2812), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, - sym__bare_set_lit, - STATE(3039), 1, - sym_sym_lit, - ACTIONS(4801), 2, - sym__ws, - sym_comment, - ACTIONS(5055), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(5061), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5183), 2, + ACTIONS(91), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(6067), 2, + ACTIONS(114), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(118), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5257), 3, + ACTIONS(120), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6055), 2, + sym__ws, + sym_comment, + ACTIONS(6057), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, + STATE(652), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2991), 3, + STATE(1109), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2979), 19, + STATE(1015), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -71551,87 +70924,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [32940] = 35, + [32672] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(65), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(69), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(74), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(76), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(78), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(93), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(95), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(97), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(99), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(101), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(103), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(105), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4749), 1, + anon_sym_COLON, + ACTIONS(4751), 1, + anon_sym_LPAREN, + ACTIONS(4753), 1, anon_sym_cl, - ACTIONS(6101), 1, + ACTIONS(6065), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(1101), 1, sym_sym_lit, - STATE(2808), 1, + STATE(1117), 1, + sym__bare_set_lit, + STATE(2812), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(91), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(114), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(118), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(120), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6097), 2, + ACTIONS(6061), 2, sym__ws, sym_comment, - ACTIONS(6099), 3, + ACTIONS(6063), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(643), 3, + STATE(653), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1877), 3, + STATE(1109), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(495), 19, + STATE(1017), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -71651,87 +71024,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [33075] = 35, + [32807] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(124), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(128), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(132), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(134), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(136), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(140), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(142), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(144), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(146), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(148), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(150), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(152), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4378), 1, + anon_sym_COLON, + ACTIONS(4380), 1, + anon_sym_LPAREN, + ACTIONS(4382), 1, anon_sym_cl, - ACTIONS(6107), 1, + ACTIONS(6071), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(1136), 1, sym_sym_lit, - STATE(2808), 1, + STATE(1138), 1, + sym__bare_set_lit, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(138), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(154), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(158), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(160), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6103), 2, + ACTIONS(6067), 2, sym__ws, sym_comment, - ACTIONS(6105), 3, + ACTIONS(6069), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(646), 3, + STATE(654), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1877), 3, + STATE(1137), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(496), 19, + STATE(1155), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -71751,7 +71124,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [33210] = 35, + [32942] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -71760,78 +71133,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5179), 1, - aux_sym_num_lit_token1, - ACTIONS(5255), 1, - sym_self_referential_reader_macro, - ACTIONS(6039), 1, + ACTIONS(124), 1, anon_sym_POUND, - ACTIONS(6041), 1, - anon_sym_COLON, - ACTIONS(6043), 1, + ACTIONS(128), 1, + aux_sym_num_lit_token1, + ACTIONS(132), 1, anon_sym_COLON_COLON, - ACTIONS(6045), 1, + ACTIONS(134), 1, anon_sym_DQUOTE, - ACTIONS(6047), 1, + ACTIONS(136), 1, aux_sym_sym_lit_token1, - ACTIONS(6049), 1, - anon_sym_LPAREN, - ACTIONS(6051), 1, + ACTIONS(140), 1, anon_sym_POUND_QMARK, - ACTIONS(6053), 1, + ACTIONS(142), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(6055), 1, + ACTIONS(144), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6057), 1, + ACTIONS(146), 1, anon_sym_SQUOTE, - ACTIONS(6059), 1, + ACTIONS(148), 1, anon_sym_BQUOTE, - ACTIONS(6061), 1, + ACTIONS(150), 1, anon_sym_COMMA_AT, - ACTIONS(6063), 1, + ACTIONS(152), 1, anon_sym_COMMA, - ACTIONS(6065), 1, + ACTIONS(4378), 1, + anon_sym_COLON, + ACTIONS(4380), 1, + anon_sym_LPAREN, + ACTIONS(4382), 1, anon_sym_cl, - STATE(2815), 1, + ACTIONS(6077), 1, + sym_self_referential_reader_macro, + STATE(1136), 1, + sym_sym_lit, + STATE(1138), 1, + sym__bare_set_lit, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, - sym__bare_set_lit, - STATE(3039), 1, - sym_sym_lit, - ACTIONS(4801), 2, - sym__ws, - sym_comment, - ACTIONS(5055), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(5061), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5183), 2, + ACTIONS(138), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(6067), 2, + ACTIONS(154), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(158), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5253), 3, + ACTIONS(160), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6073), 2, + sym__ws, + sym_comment, + ACTIONS(6075), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, + STATE(655), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2991), 3, + STATE(1137), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2977), 19, + STATE(1156), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -71851,7 +71224,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [33345] = 35, + [33077] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -71860,78 +71233,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5179), 1, - aux_sym_num_lit_token1, - ACTIONS(6039), 1, + ACTIONS(4991), 1, anon_sym_POUND, - ACTIONS(6041), 1, + ACTIONS(4995), 1, + aux_sym_num_lit_token1, + ACTIONS(4997), 1, anon_sym_COLON, - ACTIONS(6043), 1, + ACTIONS(4999), 1, anon_sym_COLON_COLON, - ACTIONS(6045), 1, + ACTIONS(5001), 1, anon_sym_DQUOTE, - ACTIONS(6047), 1, + ACTIONS(5003), 1, aux_sym_sym_lit_token1, - ACTIONS(6049), 1, + ACTIONS(5005), 1, anon_sym_LPAREN, - ACTIONS(6051), 1, + ACTIONS(5009), 1, anon_sym_POUND_QMARK, - ACTIONS(6053), 1, + ACTIONS(5011), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(6055), 1, + ACTIONS(5013), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6057), 1, + ACTIONS(5015), 1, anon_sym_SQUOTE, - ACTIONS(6059), 1, + ACTIONS(5017), 1, anon_sym_BQUOTE, - ACTIONS(6061), 1, + ACTIONS(5019), 1, + anon_sym_cl, + ACTIONS(5395), 1, anon_sym_COMMA_AT, - ACTIONS(6063), 1, + ACTIONS(5397), 1, anon_sym_COMMA, - ACTIONS(6065), 1, - anon_sym_cl, - ACTIONS(6111), 1, + ACTIONS(6081), 1, sym_self_referential_reader_macro, - STATE(2815), 1, + STATE(2818), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, + STATE(2986), 1, sym__bare_set_lit, - STATE(3039), 1, + STATE(3094), 1, sym_sym_lit, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(5055), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(5061), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5183), 2, + ACTIONS(5007), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(6067), 2, + ACTIONS(5021), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(5025), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6109), 3, + ACTIONS(5027), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6079), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2991), 3, + STATE(2985), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2822), 19, + STATE(3092), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -71951,87 +71324,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [33480] = 35, + [33212] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(65), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(69), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(74), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(76), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(78), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(93), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(95), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(97), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(99), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(101), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(103), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(105), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4749), 1, + anon_sym_COLON, + ACTIONS(4751), 1, + anon_sym_LPAREN, + ACTIONS(4753), 1, anon_sym_cl, - ACTIONS(6115), 1, + ACTIONS(6085), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(1101), 1, sym_sym_lit, - STATE(2808), 1, + STATE(1117), 1, + sym__bare_set_lit, + STATE(2812), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(91), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(114), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(118), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(120), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(6113), 3, + ACTIONS(6083), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1877), 3, + STATE(1109), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(500), 19, + STATE(1039), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -72051,7 +71424,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [33615] = 35, + [33347] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -72060,78 +71433,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5179), 1, - aux_sym_num_lit_token1, - ACTIONS(6039), 1, + ACTIONS(65), 1, anon_sym_POUND, - ACTIONS(6041), 1, - anon_sym_COLON, - ACTIONS(6043), 1, + ACTIONS(69), 1, + aux_sym_num_lit_token1, + ACTIONS(74), 1, anon_sym_COLON_COLON, - ACTIONS(6045), 1, + ACTIONS(76), 1, anon_sym_DQUOTE, - ACTIONS(6047), 1, + ACTIONS(78), 1, aux_sym_sym_lit_token1, - ACTIONS(6049), 1, - anon_sym_LPAREN, - ACTIONS(6051), 1, + ACTIONS(93), 1, anon_sym_POUND_QMARK, - ACTIONS(6053), 1, + ACTIONS(95), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(6055), 1, + ACTIONS(97), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6057), 1, + ACTIONS(99), 1, anon_sym_SQUOTE, - ACTIONS(6059), 1, + ACTIONS(101), 1, anon_sym_BQUOTE, - ACTIONS(6061), 1, + ACTIONS(103), 1, anon_sym_COMMA_AT, - ACTIONS(6063), 1, + ACTIONS(105), 1, anon_sym_COMMA, - ACTIONS(6065), 1, + ACTIONS(4749), 1, + anon_sym_COLON, + ACTIONS(4751), 1, + anon_sym_LPAREN, + ACTIONS(4753), 1, anon_sym_cl, - ACTIONS(6119), 1, + ACTIONS(6089), 1, sym_self_referential_reader_macro, - STATE(2815), 1, + STATE(1101), 1, + sym_sym_lit, + STATE(1117), 1, + sym__bare_set_lit, + STATE(2812), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, - sym__bare_set_lit, - STATE(3039), 1, - sym_sym_lit, - ACTIONS(4801), 2, - sym__ws, - sym_comment, - ACTIONS(5055), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(5061), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5183), 2, + ACTIONS(91), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(6067), 2, + ACTIONS(114), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(118), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6117), 3, + ACTIONS(120), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4763), 2, + sym__ws, + sym_comment, + ACTIONS(6087), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2991), 3, + STATE(1109), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2830), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1040), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -72151,7 +71524,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [33750] = 35, + [33482] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -72160,78 +71533,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5179), 1, - aux_sym_num_lit_token1, - ACTIONS(5243), 1, - sym_self_referential_reader_macro, - ACTIONS(6039), 1, + ACTIONS(65), 1, anon_sym_POUND, - ACTIONS(6041), 1, - anon_sym_COLON, - ACTIONS(6043), 1, + ACTIONS(69), 1, + aux_sym_num_lit_token1, + ACTIONS(74), 1, anon_sym_COLON_COLON, - ACTIONS(6045), 1, + ACTIONS(76), 1, anon_sym_DQUOTE, - ACTIONS(6047), 1, + ACTIONS(78), 1, aux_sym_sym_lit_token1, - ACTIONS(6049), 1, - anon_sym_LPAREN, - ACTIONS(6051), 1, + ACTIONS(93), 1, anon_sym_POUND_QMARK, - ACTIONS(6053), 1, + ACTIONS(95), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(6055), 1, + ACTIONS(97), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6057), 1, + ACTIONS(99), 1, anon_sym_SQUOTE, - ACTIONS(6059), 1, + ACTIONS(101), 1, anon_sym_BQUOTE, - ACTIONS(6061), 1, + ACTIONS(103), 1, anon_sym_COMMA_AT, - ACTIONS(6063), 1, + ACTIONS(105), 1, anon_sym_COMMA, - ACTIONS(6065), 1, + ACTIONS(4749), 1, + anon_sym_COLON, + ACTIONS(4751), 1, + anon_sym_LPAREN, + ACTIONS(4753), 1, anon_sym_cl, - STATE(2815), 1, + ACTIONS(6093), 1, + sym_self_referential_reader_macro, + STATE(1101), 1, + sym_sym_lit, + STATE(1117), 1, + sym__bare_set_lit, + STATE(2812), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, - sym__bare_set_lit, - STATE(3039), 1, - sym_sym_lit, - ACTIONS(5055), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(5061), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5183), 2, + ACTIONS(91), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(6067), 2, + ACTIONS(114), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(118), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6121), 2, + ACTIONS(120), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(5241), 3, + ACTIONS(6091), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(660), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2991), 3, + STATE(1109), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2963), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1041), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -72251,7 +71624,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [33885] = 35, + [33617] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -72260,78 +71633,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5179), 1, - aux_sym_num_lit_token1, - ACTIONS(5237), 1, - sym_self_referential_reader_macro, - ACTIONS(6039), 1, + ACTIONS(124), 1, anon_sym_POUND, - ACTIONS(6041), 1, - anon_sym_COLON, - ACTIONS(6043), 1, + ACTIONS(128), 1, + aux_sym_num_lit_token1, + ACTIONS(132), 1, anon_sym_COLON_COLON, - ACTIONS(6045), 1, + ACTIONS(134), 1, anon_sym_DQUOTE, - ACTIONS(6047), 1, + ACTIONS(136), 1, aux_sym_sym_lit_token1, - ACTIONS(6049), 1, - anon_sym_LPAREN, - ACTIONS(6051), 1, + ACTIONS(140), 1, anon_sym_POUND_QMARK, - ACTIONS(6053), 1, + ACTIONS(142), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(6055), 1, + ACTIONS(144), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6057), 1, + ACTIONS(146), 1, anon_sym_SQUOTE, - ACTIONS(6059), 1, + ACTIONS(148), 1, anon_sym_BQUOTE, - ACTIONS(6061), 1, + ACTIONS(150), 1, anon_sym_COMMA_AT, - ACTIONS(6063), 1, + ACTIONS(152), 1, anon_sym_COMMA, - ACTIONS(6065), 1, + ACTIONS(4378), 1, + anon_sym_COLON, + ACTIONS(4380), 1, + anon_sym_LPAREN, + ACTIONS(4382), 1, anon_sym_cl, - STATE(2815), 1, + ACTIONS(6097), 1, + sym_self_referential_reader_macro, + STATE(1136), 1, + sym_sym_lit, + STATE(1138), 1, + sym__bare_set_lit, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, - sym__bare_set_lit, - STATE(3039), 1, - sym_sym_lit, - ACTIONS(5055), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(5061), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5183), 2, + ACTIONS(138), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(6067), 2, + ACTIONS(154), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(158), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6123), 2, + ACTIONS(160), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(5235), 3, + ACTIONS(6095), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(663), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2991), 3, + STATE(1137), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2948), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1174), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -72351,7 +71724,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [34020] = 35, + [33752] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -72360,78 +71733,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5179), 1, - aux_sym_num_lit_token1, - ACTIONS(5231), 1, - sym_self_referential_reader_macro, - ACTIONS(6039), 1, + ACTIONS(124), 1, anon_sym_POUND, - ACTIONS(6041), 1, - anon_sym_COLON, - ACTIONS(6043), 1, + ACTIONS(128), 1, + aux_sym_num_lit_token1, + ACTIONS(132), 1, anon_sym_COLON_COLON, - ACTIONS(6045), 1, + ACTIONS(134), 1, anon_sym_DQUOTE, - ACTIONS(6047), 1, + ACTIONS(136), 1, aux_sym_sym_lit_token1, - ACTIONS(6049), 1, - anon_sym_LPAREN, - ACTIONS(6051), 1, + ACTIONS(140), 1, anon_sym_POUND_QMARK, - ACTIONS(6053), 1, + ACTIONS(142), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(6055), 1, + ACTIONS(144), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6057), 1, + ACTIONS(146), 1, anon_sym_SQUOTE, - ACTIONS(6059), 1, + ACTIONS(148), 1, anon_sym_BQUOTE, - ACTIONS(6061), 1, + ACTIONS(150), 1, anon_sym_COMMA_AT, - ACTIONS(6063), 1, + ACTIONS(152), 1, anon_sym_COMMA, - ACTIONS(6065), 1, + ACTIONS(4378), 1, + anon_sym_COLON, + ACTIONS(4380), 1, + anon_sym_LPAREN, + ACTIONS(4382), 1, anon_sym_cl, - STATE(2815), 1, + ACTIONS(6101), 1, + sym_self_referential_reader_macro, + STATE(1136), 1, + sym_sym_lit, + STATE(1138), 1, + sym__bare_set_lit, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, - sym__bare_set_lit, - STATE(3039), 1, - sym_sym_lit, - ACTIONS(5055), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(5061), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5183), 2, + ACTIONS(138), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(6067), 2, + ACTIONS(154), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(158), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6125), 2, + ACTIONS(160), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(5229), 3, + ACTIONS(6099), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(664), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2991), 3, + STATE(1137), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2944), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1175), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -72451,7 +71824,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [34155] = 35, + [33887] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -72460,78 +71833,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5179), 1, - aux_sym_num_lit_token1, - ACTIONS(6039), 1, + ACTIONS(65), 1, anon_sym_POUND, - ACTIONS(6041), 1, - anon_sym_COLON, - ACTIONS(6043), 1, + ACTIONS(69), 1, + aux_sym_num_lit_token1, + ACTIONS(74), 1, anon_sym_COLON_COLON, - ACTIONS(6045), 1, + ACTIONS(76), 1, anon_sym_DQUOTE, - ACTIONS(6047), 1, + ACTIONS(78), 1, aux_sym_sym_lit_token1, - ACTIONS(6049), 1, - anon_sym_LPAREN, - ACTIONS(6051), 1, + ACTIONS(93), 1, anon_sym_POUND_QMARK, - ACTIONS(6053), 1, + ACTIONS(95), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(6055), 1, + ACTIONS(97), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6057), 1, + ACTIONS(99), 1, anon_sym_SQUOTE, - ACTIONS(6059), 1, + ACTIONS(101), 1, anon_sym_BQUOTE, - ACTIONS(6061), 1, + ACTIONS(103), 1, anon_sym_COMMA_AT, - ACTIONS(6063), 1, + ACTIONS(105), 1, anon_sym_COMMA, - ACTIONS(6065), 1, + ACTIONS(4749), 1, + anon_sym_COLON, + ACTIONS(4751), 1, + anon_sym_LPAREN, + ACTIONS(4753), 1, anon_sym_cl, - ACTIONS(6131), 1, + ACTIONS(6107), 1, sym_self_referential_reader_macro, - STATE(2815), 1, + STATE(1101), 1, + sym_sym_lit, + STATE(1117), 1, + sym__bare_set_lit, + STATE(2812), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, - sym__bare_set_lit, - STATE(3039), 1, - sym_sym_lit, - ACTIONS(5055), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(5061), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5183), 2, + ACTIONS(91), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(6067), 2, + ACTIONS(114), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(118), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6127), 2, + ACTIONS(120), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6103), 2, sym__ws, sym_comment, - ACTIONS(6129), 3, + ACTIONS(6105), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(665), 3, + STATE(660), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2991), 3, + STATE(1109), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2799), 19, + STATE(1045), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -72551,87 +71924,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [34290] = 35, + [34022] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(65), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(69), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(74), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(76), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(78), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(93), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(95), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(97), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(99), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(101), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(103), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(105), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4749), 1, + anon_sym_COLON, + ACTIONS(4751), 1, + anon_sym_LPAREN, + ACTIONS(4753), 1, anon_sym_cl, - ACTIONS(6137), 1, + ACTIONS(6113), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(1101), 1, sym_sym_lit, - STATE(2808), 1, + STATE(1117), 1, + sym__bare_set_lit, + STATE(2812), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(91), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(114), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(118), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(120), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6133), 2, + ACTIONS(6109), 2, sym__ws, sym_comment, - ACTIONS(6135), 3, + ACTIONS(6111), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(653), 3, + STATE(662), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1877), 3, + STATE(1109), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(505), 19, + STATE(1051), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -72651,7 +72024,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [34425] = 35, + [34157] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -72660,78 +72033,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5179), 1, - aux_sym_num_lit_token1, - ACTIONS(5219), 1, - sym_self_referential_reader_macro, - ACTIONS(6039), 1, + ACTIONS(65), 1, anon_sym_POUND, - ACTIONS(6041), 1, - anon_sym_COLON, - ACTIONS(6043), 1, + ACTIONS(69), 1, + aux_sym_num_lit_token1, + ACTIONS(74), 1, anon_sym_COLON_COLON, - ACTIONS(6045), 1, + ACTIONS(76), 1, anon_sym_DQUOTE, - ACTIONS(6047), 1, + ACTIONS(78), 1, aux_sym_sym_lit_token1, - ACTIONS(6049), 1, - anon_sym_LPAREN, - ACTIONS(6051), 1, + ACTIONS(93), 1, anon_sym_POUND_QMARK, - ACTIONS(6053), 1, + ACTIONS(95), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(6055), 1, + ACTIONS(97), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6057), 1, + ACTIONS(99), 1, anon_sym_SQUOTE, - ACTIONS(6059), 1, + ACTIONS(101), 1, anon_sym_BQUOTE, - ACTIONS(6061), 1, + ACTIONS(103), 1, anon_sym_COMMA_AT, - ACTIONS(6063), 1, + ACTIONS(105), 1, anon_sym_COMMA, - ACTIONS(6065), 1, + ACTIONS(4749), 1, + anon_sym_COLON, + ACTIONS(4751), 1, + anon_sym_LPAREN, + ACTIONS(4753), 1, anon_sym_cl, - STATE(2815), 1, + ACTIONS(6119), 1, + sym_self_referential_reader_macro, + STATE(1101), 1, + sym_sym_lit, + STATE(1117), 1, + sym__bare_set_lit, + STATE(2812), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, - sym__bare_set_lit, - STATE(3039), 1, - sym_sym_lit, - ACTIONS(4801), 2, - sym__ws, - sym_comment, - ACTIONS(5055), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(5061), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5183), 2, + ACTIONS(91), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(6067), 2, + ACTIONS(114), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(118), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5217), 3, + ACTIONS(120), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6115), 2, + sym__ws, + sym_comment, + ACTIONS(6117), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, + STATE(663), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2991), 3, + STATE(1109), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2950), 19, + STATE(1053), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -72751,7 +72124,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [34560] = 35, + [34292] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -72760,78 +72133,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5179), 1, - aux_sym_num_lit_token1, - ACTIONS(5215), 1, - sym_self_referential_reader_macro, - ACTIONS(6039), 1, + ACTIONS(124), 1, anon_sym_POUND, - ACTIONS(6041), 1, - anon_sym_COLON, - ACTIONS(6043), 1, + ACTIONS(128), 1, + aux_sym_num_lit_token1, + ACTIONS(132), 1, anon_sym_COLON_COLON, - ACTIONS(6045), 1, + ACTIONS(134), 1, anon_sym_DQUOTE, - ACTIONS(6047), 1, + ACTIONS(136), 1, aux_sym_sym_lit_token1, - ACTIONS(6049), 1, - anon_sym_LPAREN, - ACTIONS(6051), 1, + ACTIONS(140), 1, anon_sym_POUND_QMARK, - ACTIONS(6053), 1, + ACTIONS(142), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(6055), 1, + ACTIONS(144), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6057), 1, + ACTIONS(146), 1, anon_sym_SQUOTE, - ACTIONS(6059), 1, + ACTIONS(148), 1, anon_sym_BQUOTE, - ACTIONS(6061), 1, + ACTIONS(150), 1, anon_sym_COMMA_AT, - ACTIONS(6063), 1, + ACTIONS(152), 1, anon_sym_COMMA, - ACTIONS(6065), 1, + ACTIONS(4378), 1, + anon_sym_COLON, + ACTIONS(4380), 1, + anon_sym_LPAREN, + ACTIONS(4382), 1, anon_sym_cl, - STATE(2815), 1, + ACTIONS(6125), 1, + sym_self_referential_reader_macro, + STATE(1136), 1, + sym_sym_lit, + STATE(1138), 1, + sym__bare_set_lit, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, - sym__bare_set_lit, - STATE(3039), 1, - sym_sym_lit, - ACTIONS(5055), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(5061), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5183), 2, + ACTIONS(138), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(6067), 2, + ACTIONS(154), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(158), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6139), 2, + ACTIONS(160), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6121), 2, sym__ws, sym_comment, - ACTIONS(5213), 3, + ACTIONS(6123), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(670), 3, + STATE(664), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2991), 3, + STATE(1137), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2905), 19, + STATE(1182), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -72851,90 +72224,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [34695] = 36, + [34427] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(43), 1, - anon_sym_COMMA_AT, - ACTIONS(45), 1, - anon_sym_COMMA, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5029), 1, - anon_sym_COLON, - ACTIONS(5031), 1, + ACTIONS(65), 1, + anon_sym_POUND, + ACTIONS(69), 1, + aux_sym_num_lit_token1, + ACTIONS(74), 1, anon_sym_COLON_COLON, - ACTIONS(5033), 1, + ACTIONS(76), 1, anon_sym_DQUOTE, - ACTIONS(5035), 1, + ACTIONS(78), 1, aux_sym_sym_lit_token1, - ACTIONS(5053), 1, - anon_sym_cl, - ACTIONS(5175), 1, - anon_sym_POUND, - ACTIONS(5179), 1, - aux_sym_num_lit_token1, - ACTIONS(5181), 1, - anon_sym_LPAREN, - ACTIONS(5185), 1, + ACTIONS(93), 1, anon_sym_POUND_QMARK, - ACTIONS(5187), 1, + ACTIONS(95), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5189), 1, + ACTIONS(97), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5191), 1, + ACTIONS(99), 1, anon_sym_SQUOTE, - ACTIONS(5193), 1, + ACTIONS(101), 1, anon_sym_BQUOTE, - ACTIONS(6145), 1, + ACTIONS(103), 1, + anon_sym_COMMA_AT, + ACTIONS(105), 1, + anon_sym_COMMA, + ACTIONS(4749), 1, + anon_sym_COLON, + ACTIONS(4751), 1, + anon_sym_LPAREN, + ACTIONS(4753), 1, + anon_sym_cl, + ACTIONS(6129), 1, sym_self_referential_reader_macro, - STATE(2810), 1, + STATE(1101), 1, + sym_sym_lit, + STATE(1117), 1, + sym__bare_set_lit, + STATE(2812), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, - sym__bare_set_lit, - STATE(3078), 1, - sym_sym_lit, - ACTIONS(5055), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(5061), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5183), 2, + ACTIONS(91), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5201), 2, + ACTIONS(114), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(118), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6141), 2, + ACTIONS(120), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4763), 2, sym__ws, sym_comment, - STATE(1981), 2, - sym_unquote_splicing_lit, - sym_unquoting_lit, - ACTIONS(6143), 3, + ACTIONS(6127), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(911), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2991), 3, + STATE(1109), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2760), 17, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1062), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -72948,11 +72318,13 @@ static const uint16_t ts_small_parse_table[] = { sym_var_quoting_lit, sym_quoting_lit, sym_syn_quoting_lit, + sym_unquote_splicing_lit, + sym_unquoting_lit, sym_path_lit, sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [34832] = 35, + [34562] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -72961,78 +72333,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5179), 1, - aux_sym_num_lit_token1, - ACTIONS(5209), 1, - sym_self_referential_reader_macro, - ACTIONS(6039), 1, + ACTIONS(65), 1, anon_sym_POUND, - ACTIONS(6041), 1, - anon_sym_COLON, - ACTIONS(6043), 1, + ACTIONS(69), 1, + aux_sym_num_lit_token1, + ACTIONS(74), 1, anon_sym_COLON_COLON, - ACTIONS(6045), 1, + ACTIONS(76), 1, anon_sym_DQUOTE, - ACTIONS(6047), 1, + ACTIONS(78), 1, aux_sym_sym_lit_token1, - ACTIONS(6049), 1, - anon_sym_LPAREN, - ACTIONS(6051), 1, + ACTIONS(93), 1, anon_sym_POUND_QMARK, - ACTIONS(6053), 1, + ACTIONS(95), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(6055), 1, + ACTIONS(97), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6057), 1, + ACTIONS(99), 1, anon_sym_SQUOTE, - ACTIONS(6059), 1, + ACTIONS(101), 1, anon_sym_BQUOTE, - ACTIONS(6061), 1, + ACTIONS(103), 1, anon_sym_COMMA_AT, - ACTIONS(6063), 1, + ACTIONS(105), 1, anon_sym_COMMA, - ACTIONS(6065), 1, + ACTIONS(4749), 1, + anon_sym_COLON, + ACTIONS(4751), 1, + anon_sym_LPAREN, + ACTIONS(4753), 1, anon_sym_cl, - STATE(2815), 1, + ACTIONS(6135), 1, + sym_self_referential_reader_macro, + STATE(1101), 1, + sym_sym_lit, + STATE(1117), 1, + sym__bare_set_lit, + STATE(2812), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, - sym__bare_set_lit, - STATE(3039), 1, - sym_sym_lit, - ACTIONS(4801), 2, - sym__ws, - sym_comment, - ACTIONS(5055), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(5061), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5183), 2, + ACTIONS(91), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(6067), 2, + ACTIONS(114), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(118), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5207), 3, + ACTIONS(120), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6131), 2, + sym__ws, + sym_comment, + ACTIONS(6133), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, + STATE(667), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2991), 3, + STATE(1109), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2960), 19, + STATE(1063), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -73052,7 +72424,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [34967] = 35, + [34697] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -73061,78 +72433,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5179), 1, - aux_sym_num_lit_token1, - ACTIONS(5205), 1, - sym_self_referential_reader_macro, - ACTIONS(6039), 1, + ACTIONS(65), 1, anon_sym_POUND, - ACTIONS(6041), 1, - anon_sym_COLON, - ACTIONS(6043), 1, + ACTIONS(69), 1, + aux_sym_num_lit_token1, + ACTIONS(74), 1, anon_sym_COLON_COLON, - ACTIONS(6045), 1, + ACTIONS(76), 1, anon_sym_DQUOTE, - ACTIONS(6047), 1, + ACTIONS(78), 1, aux_sym_sym_lit_token1, - ACTIONS(6049), 1, - anon_sym_LPAREN, - ACTIONS(6051), 1, + ACTIONS(93), 1, anon_sym_POUND_QMARK, - ACTIONS(6053), 1, + ACTIONS(95), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(6055), 1, + ACTIONS(97), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6057), 1, + ACTIONS(99), 1, anon_sym_SQUOTE, - ACTIONS(6059), 1, + ACTIONS(101), 1, anon_sym_BQUOTE, - ACTIONS(6061), 1, + ACTIONS(103), 1, anon_sym_COMMA_AT, - ACTIONS(6063), 1, + ACTIONS(105), 1, anon_sym_COMMA, - ACTIONS(6065), 1, + ACTIONS(4749), 1, + anon_sym_COLON, + ACTIONS(4751), 1, + anon_sym_LPAREN, + ACTIONS(4753), 1, anon_sym_cl, - STATE(2815), 1, + ACTIONS(6139), 1, + sym_self_referential_reader_macro, + STATE(1101), 1, + sym_sym_lit, + STATE(1117), 1, + sym__bare_set_lit, + STATE(2812), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, - sym__bare_set_lit, - STATE(3039), 1, - sym_sym_lit, - ACTIONS(4801), 2, - sym__ws, - sym_comment, - ACTIONS(5055), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(5061), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5183), 2, + ACTIONS(91), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(6067), 2, + ACTIONS(114), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(118), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5203), 3, + ACTIONS(120), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4763), 2, + sym__ws, + sym_comment, + ACTIONS(6137), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2991), 3, + STATE(1109), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2961), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1066), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -73152,7 +72524,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [35102] = 35, + [34832] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -73161,78 +72533,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5179), 1, - aux_sym_num_lit_token1, - ACTIONS(6039), 1, + ACTIONS(65), 1, anon_sym_POUND, - ACTIONS(6041), 1, - anon_sym_COLON, - ACTIONS(6043), 1, + ACTIONS(69), 1, + aux_sym_num_lit_token1, + ACTIONS(74), 1, anon_sym_COLON_COLON, - ACTIONS(6045), 1, + ACTIONS(76), 1, anon_sym_DQUOTE, - ACTIONS(6047), 1, + ACTIONS(78), 1, aux_sym_sym_lit_token1, - ACTIONS(6049), 1, - anon_sym_LPAREN, - ACTIONS(6051), 1, + ACTIONS(93), 1, anon_sym_POUND_QMARK, - ACTIONS(6053), 1, + ACTIONS(95), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(6055), 1, + ACTIONS(97), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6057), 1, + ACTIONS(99), 1, anon_sym_SQUOTE, - ACTIONS(6059), 1, + ACTIONS(101), 1, anon_sym_BQUOTE, - ACTIONS(6061), 1, + ACTIONS(103), 1, anon_sym_COMMA_AT, - ACTIONS(6063), 1, + ACTIONS(105), 1, anon_sym_COMMA, - ACTIONS(6065), 1, + ACTIONS(4749), 1, + anon_sym_COLON, + ACTIONS(4751), 1, + anon_sym_LPAREN, + ACTIONS(4753), 1, anon_sym_cl, - ACTIONS(6149), 1, + ACTIONS(6143), 1, sym_self_referential_reader_macro, - STATE(2815), 1, + STATE(1101), 1, + sym_sym_lit, + STATE(1117), 1, + sym__bare_set_lit, + STATE(2812), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, - sym__bare_set_lit, - STATE(3039), 1, - sym_sym_lit, - ACTIONS(4801), 2, - sym__ws, - sym_comment, - ACTIONS(5055), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(5061), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5183), 2, + ACTIONS(91), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(6067), 2, + ACTIONS(114), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(118), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6147), 3, + ACTIONS(120), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4763), 2, + sym__ws, + sym_comment, + ACTIONS(6141), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2991), 3, + STATE(1109), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2837), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1067), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -73252,7 +72624,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [35237] = 35, + [34967] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -73261,78 +72633,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5167), 1, - sym_self_referential_reader_macro, - ACTIONS(5179), 1, - aux_sym_num_lit_token1, - ACTIONS(6039), 1, + ACTIONS(124), 1, anon_sym_POUND, - ACTIONS(6041), 1, - anon_sym_COLON, - ACTIONS(6043), 1, + ACTIONS(128), 1, + aux_sym_num_lit_token1, + ACTIONS(132), 1, anon_sym_COLON_COLON, - ACTIONS(6045), 1, + ACTIONS(134), 1, anon_sym_DQUOTE, - ACTIONS(6047), 1, + ACTIONS(136), 1, aux_sym_sym_lit_token1, - ACTIONS(6049), 1, - anon_sym_LPAREN, - ACTIONS(6051), 1, + ACTIONS(140), 1, anon_sym_POUND_QMARK, - ACTIONS(6053), 1, + ACTIONS(142), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(6055), 1, + ACTIONS(144), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6057), 1, + ACTIONS(146), 1, anon_sym_SQUOTE, - ACTIONS(6059), 1, + ACTIONS(148), 1, anon_sym_BQUOTE, - ACTIONS(6061), 1, + ACTIONS(150), 1, anon_sym_COMMA_AT, - ACTIONS(6063), 1, + ACTIONS(152), 1, anon_sym_COMMA, - ACTIONS(6065), 1, + ACTIONS(4378), 1, + anon_sym_COLON, + ACTIONS(4380), 1, + anon_sym_LPAREN, + ACTIONS(4382), 1, anon_sym_cl, - STATE(2815), 1, + ACTIONS(6147), 1, + sym_self_referential_reader_macro, + STATE(1136), 1, + sym_sym_lit, + STATE(1138), 1, + sym__bare_set_lit, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, - sym__bare_set_lit, - STATE(3039), 1, - sym_sym_lit, - ACTIONS(5055), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(5061), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5183), 2, + ACTIONS(138), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(6067), 2, + ACTIONS(154), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(158), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6151), 2, + ACTIONS(160), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(5165), 3, + ACTIONS(6145), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(671), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2991), 3, + STATE(1137), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2980), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1195), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -73352,7 +72724,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [35372] = 35, + [35102] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -73361,78 +72733,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5161), 1, - sym_self_referential_reader_macro, - ACTIONS(5179), 1, - aux_sym_num_lit_token1, - ACTIONS(6039), 1, + ACTIONS(65), 1, anon_sym_POUND, - ACTIONS(6041), 1, - anon_sym_COLON, - ACTIONS(6043), 1, + ACTIONS(69), 1, + aux_sym_num_lit_token1, + ACTIONS(74), 1, anon_sym_COLON_COLON, - ACTIONS(6045), 1, + ACTIONS(76), 1, anon_sym_DQUOTE, - ACTIONS(6047), 1, + ACTIONS(78), 1, aux_sym_sym_lit_token1, - ACTIONS(6049), 1, - anon_sym_LPAREN, - ACTIONS(6051), 1, + ACTIONS(93), 1, anon_sym_POUND_QMARK, - ACTIONS(6053), 1, + ACTIONS(95), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(6055), 1, + ACTIONS(97), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6057), 1, + ACTIONS(99), 1, anon_sym_SQUOTE, - ACTIONS(6059), 1, + ACTIONS(101), 1, anon_sym_BQUOTE, - ACTIONS(6061), 1, + ACTIONS(103), 1, anon_sym_COMMA_AT, - ACTIONS(6063), 1, + ACTIONS(105), 1, anon_sym_COMMA, - ACTIONS(6065), 1, + ACTIONS(4749), 1, + anon_sym_COLON, + ACTIONS(4751), 1, + anon_sym_LPAREN, + ACTIONS(4753), 1, anon_sym_cl, - STATE(2815), 1, + ACTIONS(6153), 1, + sym_self_referential_reader_macro, + STATE(1101), 1, + sym_sym_lit, + STATE(1117), 1, + sym__bare_set_lit, + STATE(2812), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, - sym__bare_set_lit, - STATE(3039), 1, - sym_sym_lit, - ACTIONS(5055), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(5061), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5183), 2, + ACTIONS(91), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(6067), 2, + ACTIONS(114), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(118), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6153), 2, + ACTIONS(120), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6149), 2, sym__ws, sym_comment, - ACTIONS(5159), 3, + ACTIONS(6151), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(676), 3, + STATE(668), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2991), 3, + STATE(1109), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2971), 19, + STATE(1131), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -73452,7 +72824,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [35507] = 35, + [35237] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -73461,78 +72833,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4747), 1, + ACTIONS(65), 1, anon_sym_POUND, - ACTIONS(4751), 1, + ACTIONS(69), 1, aux_sym_num_lit_token1, - ACTIONS(4753), 1, - anon_sym_COLON, - ACTIONS(4755), 1, + ACTIONS(74), 1, anon_sym_COLON_COLON, - ACTIONS(4757), 1, + ACTIONS(76), 1, anon_sym_DQUOTE, - ACTIONS(4759), 1, + ACTIONS(78), 1, aux_sym_sym_lit_token1, - ACTIONS(4761), 1, - anon_sym_LPAREN, - ACTIONS(4765), 1, + ACTIONS(93), 1, anon_sym_POUND_QMARK, - ACTIONS(4767), 1, + ACTIONS(95), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4769), 1, + ACTIONS(97), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4771), 1, + ACTIONS(99), 1, anon_sym_SQUOTE, - ACTIONS(4773), 1, + ACTIONS(101), 1, anon_sym_BQUOTE, - ACTIONS(4775), 1, + ACTIONS(103), 1, anon_sym_COMMA_AT, - ACTIONS(4777), 1, + ACTIONS(105), 1, anon_sym_COMMA, - ACTIONS(4779), 1, + ACTIONS(4749), 1, + anon_sym_COLON, + ACTIONS(4751), 1, + anon_sym_LPAREN, + ACTIONS(4753), 1, anon_sym_cl, - ACTIONS(6157), 1, + ACTIONS(6159), 1, sym_self_referential_reader_macro, - STATE(1489), 1, + STATE(1101), 1, sym_sym_lit, - STATE(1557), 1, + STATE(1117), 1, sym__bare_set_lit, - STATE(2841), 1, + STATE(2812), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(4763), 2, + ACTIONS(91), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4781), 2, + ACTIONS(114), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4785), 2, + ACTIONS(118), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4787), 2, + ACTIONS(120), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(6155), 2, sym__ws, sym_comment, - ACTIONS(6155), 3, + ACTIONS(6157), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1612), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(670), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1569), 19, + STATE(1109), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1071), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -73552,7 +72924,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [35642] = 35, + [35372] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -73561,78 +72933,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4747), 1, + ACTIONS(65), 1, anon_sym_POUND, - ACTIONS(4751), 1, + ACTIONS(69), 1, aux_sym_num_lit_token1, - ACTIONS(4753), 1, - anon_sym_COLON, - ACTIONS(4755), 1, + ACTIONS(74), 1, anon_sym_COLON_COLON, - ACTIONS(4757), 1, + ACTIONS(76), 1, anon_sym_DQUOTE, - ACTIONS(4759), 1, + ACTIONS(78), 1, aux_sym_sym_lit_token1, - ACTIONS(4761), 1, - anon_sym_LPAREN, - ACTIONS(4765), 1, + ACTIONS(93), 1, anon_sym_POUND_QMARK, - ACTIONS(4767), 1, + ACTIONS(95), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4769), 1, + ACTIONS(97), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4771), 1, + ACTIONS(99), 1, anon_sym_SQUOTE, - ACTIONS(4773), 1, + ACTIONS(101), 1, anon_sym_BQUOTE, - ACTIONS(4775), 1, + ACTIONS(103), 1, anon_sym_COMMA_AT, - ACTIONS(4777), 1, + ACTIONS(105), 1, anon_sym_COMMA, - ACTIONS(4779), 1, + ACTIONS(4749), 1, + anon_sym_COLON, + ACTIONS(4751), 1, + anon_sym_LPAREN, + ACTIONS(4753), 1, anon_sym_cl, ACTIONS(6163), 1, sym_self_referential_reader_macro, - STATE(1489), 1, + STATE(1101), 1, sym_sym_lit, - STATE(1557), 1, + STATE(1117), 1, sym__bare_set_lit, - STATE(2841), 1, + STATE(2812), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(4763), 2, + ACTIONS(91), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4781), 2, + ACTIONS(114), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4785), 2, + ACTIONS(118), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4787), 2, + ACTIONS(120), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6159), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, ACTIONS(6161), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(684), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1612), 3, + STATE(1109), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1513), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1077), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -73652,7 +73024,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [35777] = 35, + [35507] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -73661,78 +73033,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5149), 1, - sym_self_referential_reader_macro, - ACTIONS(5179), 1, - aux_sym_num_lit_token1, - ACTIONS(6039), 1, + ACTIONS(65), 1, anon_sym_POUND, - ACTIONS(6041), 1, - anon_sym_COLON, - ACTIONS(6043), 1, + ACTIONS(69), 1, + aux_sym_num_lit_token1, + ACTIONS(74), 1, anon_sym_COLON_COLON, - ACTIONS(6045), 1, + ACTIONS(76), 1, anon_sym_DQUOTE, - ACTIONS(6047), 1, + ACTIONS(78), 1, aux_sym_sym_lit_token1, - ACTIONS(6049), 1, - anon_sym_LPAREN, - ACTIONS(6051), 1, + ACTIONS(93), 1, anon_sym_POUND_QMARK, - ACTIONS(6053), 1, + ACTIONS(95), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(6055), 1, + ACTIONS(97), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6057), 1, + ACTIONS(99), 1, anon_sym_SQUOTE, - ACTIONS(6059), 1, + ACTIONS(101), 1, anon_sym_BQUOTE, - ACTIONS(6061), 1, + ACTIONS(103), 1, anon_sym_COMMA_AT, - ACTIONS(6063), 1, + ACTIONS(105), 1, anon_sym_COMMA, - ACTIONS(6065), 1, + ACTIONS(4749), 1, + anon_sym_COLON, + ACTIONS(4751), 1, + anon_sym_LPAREN, + ACTIONS(4753), 1, anon_sym_cl, - STATE(2815), 1, + ACTIONS(6167), 1, + sym_self_referential_reader_macro, + STATE(1101), 1, + sym_sym_lit, + STATE(1117), 1, + sym__bare_set_lit, + STATE(2812), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, - sym__bare_set_lit, - STATE(3039), 1, - sym_sym_lit, - ACTIONS(4801), 2, - sym__ws, - sym_comment, - ACTIONS(5055), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(5061), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5183), 2, + ACTIONS(91), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(6067), 2, + ACTIONS(114), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(118), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5147), 3, + ACTIONS(120), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4763), 2, + sym__ws, + sym_comment, + ACTIONS(6165), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2991), 3, + STATE(1109), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2925), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1079), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -73752,7 +73124,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [35912] = 35, + [35642] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -73761,78 +73133,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5145), 1, - sym_self_referential_reader_macro, - ACTIONS(5179), 1, - aux_sym_num_lit_token1, - ACTIONS(6039), 1, + ACTIONS(65), 1, anon_sym_POUND, - ACTIONS(6041), 1, - anon_sym_COLON, - ACTIONS(6043), 1, + ACTIONS(69), 1, + aux_sym_num_lit_token1, + ACTIONS(74), 1, anon_sym_COLON_COLON, - ACTIONS(6045), 1, + ACTIONS(76), 1, anon_sym_DQUOTE, - ACTIONS(6047), 1, + ACTIONS(78), 1, aux_sym_sym_lit_token1, - ACTIONS(6049), 1, - anon_sym_LPAREN, - ACTIONS(6051), 1, + ACTIONS(93), 1, anon_sym_POUND_QMARK, - ACTIONS(6053), 1, + ACTIONS(95), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(6055), 1, + ACTIONS(97), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6057), 1, + ACTIONS(99), 1, anon_sym_SQUOTE, - ACTIONS(6059), 1, + ACTIONS(101), 1, anon_sym_BQUOTE, - ACTIONS(6061), 1, + ACTIONS(103), 1, anon_sym_COMMA_AT, - ACTIONS(6063), 1, + ACTIONS(105), 1, anon_sym_COMMA, - ACTIONS(6065), 1, + ACTIONS(4749), 1, + anon_sym_COLON, + ACTIONS(4751), 1, + anon_sym_LPAREN, + ACTIONS(4753), 1, anon_sym_cl, - STATE(2815), 1, + ACTIONS(6173), 1, + sym_self_referential_reader_macro, + STATE(1101), 1, + sym_sym_lit, + STATE(1117), 1, + sym__bare_set_lit, + STATE(2812), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, - sym__bare_set_lit, - STATE(3039), 1, - sym_sym_lit, - ACTIONS(4801), 2, - sym__ws, - sym_comment, - ACTIONS(5055), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(5061), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5183), 2, + ACTIONS(91), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(6067), 2, + ACTIONS(114), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(118), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5143), 3, + ACTIONS(120), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6169), 2, + sym__ws, + sym_comment, + ACTIONS(6171), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, + STATE(672), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2991), 3, + STATE(1109), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2920), 19, + STATE(1080), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -73852,7 +73224,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [36047] = 35, + [35777] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -73861,78 +73233,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4747), 1, + ACTIONS(65), 1, anon_sym_POUND, - ACTIONS(4751), 1, + ACTIONS(69), 1, aux_sym_num_lit_token1, - ACTIONS(4753), 1, - anon_sym_COLON, - ACTIONS(4755), 1, + ACTIONS(74), 1, anon_sym_COLON_COLON, - ACTIONS(4757), 1, + ACTIONS(76), 1, anon_sym_DQUOTE, - ACTIONS(4759), 1, + ACTIONS(78), 1, aux_sym_sym_lit_token1, - ACTIONS(4761), 1, - anon_sym_LPAREN, - ACTIONS(4765), 1, + ACTIONS(93), 1, anon_sym_POUND_QMARK, - ACTIONS(4767), 1, + ACTIONS(95), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4769), 1, + ACTIONS(97), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4771), 1, + ACTIONS(99), 1, anon_sym_SQUOTE, - ACTIONS(4773), 1, + ACTIONS(101), 1, anon_sym_BQUOTE, - ACTIONS(4775), 1, + ACTIONS(103), 1, anon_sym_COMMA_AT, - ACTIONS(4777), 1, + ACTIONS(105), 1, anon_sym_COMMA, - ACTIONS(4779), 1, + ACTIONS(4749), 1, + anon_sym_COLON, + ACTIONS(4751), 1, + anon_sym_LPAREN, + ACTIONS(4753), 1, anon_sym_cl, - ACTIONS(6169), 1, + ACTIONS(6177), 1, sym_self_referential_reader_macro, - STATE(1489), 1, + STATE(1101), 1, sym_sym_lit, - STATE(1557), 1, + STATE(1117), 1, sym__bare_set_lit, - STATE(2841), 1, + STATE(2812), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(4763), 2, + ACTIONS(91), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4781), 2, + ACTIONS(114), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4785), 2, + ACTIONS(118), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4787), 2, + ACTIONS(120), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6165), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(6167), 3, + ACTIONS(6175), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(687), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1612), 3, + STATE(1109), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1514), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1081), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -73952,7 +73324,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [36182] = 35, + [35912] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -73961,78 +73333,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2728), 1, + ACTIONS(65), 1, anon_sym_POUND, - ACTIONS(2732), 1, + ACTIONS(69), 1, aux_sym_num_lit_token1, - ACTIONS(2737), 1, + ACTIONS(74), 1, anon_sym_COLON_COLON, - ACTIONS(2739), 1, + ACTIONS(76), 1, anon_sym_DQUOTE, - ACTIONS(2741), 1, + ACTIONS(78), 1, aux_sym_sym_lit_token1, - ACTIONS(2756), 1, + ACTIONS(93), 1, anon_sym_POUND_QMARK, - ACTIONS(2758), 1, + ACTIONS(95), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2760), 1, + ACTIONS(97), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2762), 1, + ACTIONS(99), 1, anon_sym_SQUOTE, - ACTIONS(2764), 1, + ACTIONS(101), 1, anon_sym_BQUOTE, - ACTIONS(2766), 1, + ACTIONS(103), 1, anon_sym_COMMA_AT, - ACTIONS(2768), 1, + ACTIONS(105), 1, anon_sym_COMMA, - ACTIONS(4793), 1, + ACTIONS(4749), 1, anon_sym_COLON, - ACTIONS(4795), 1, + ACTIONS(4751), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4753), 1, anon_sym_cl, - ACTIONS(6175), 1, + ACTIONS(6183), 1, sym_self_referential_reader_macro, - STATE(1482), 1, - sym__bare_set_lit, - STATE(1484), 1, + STATE(1101), 1, sym_sym_lit, - STATE(2813), 1, + STATE(1117), 1, + sym__bare_set_lit, + STATE(2812), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(2754), 2, + ACTIONS(91), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2775), 2, + ACTIONS(114), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2779), 2, + ACTIONS(118), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2781), 2, + ACTIONS(120), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6171), 2, + ACTIONS(6179), 2, sym__ws, sym_comment, - ACTIONS(6173), 3, + ACTIONS(6181), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(511), 3, + STATE(673), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1483), 3, + STATE(1109), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1481), 19, + STATE(1082), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -74052,7 +73424,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [36317] = 35, + [36047] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -74061,78 +73433,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5137), 1, - sym_self_referential_reader_macro, - ACTIONS(5179), 1, - aux_sym_num_lit_token1, - ACTIONS(6039), 1, + ACTIONS(65), 1, anon_sym_POUND, - ACTIONS(6041), 1, - anon_sym_COLON, - ACTIONS(6043), 1, + ACTIONS(69), 1, + aux_sym_num_lit_token1, + ACTIONS(74), 1, anon_sym_COLON_COLON, - ACTIONS(6045), 1, + ACTIONS(76), 1, anon_sym_DQUOTE, - ACTIONS(6047), 1, + ACTIONS(78), 1, aux_sym_sym_lit_token1, - ACTIONS(6049), 1, - anon_sym_LPAREN, - ACTIONS(6051), 1, + ACTIONS(93), 1, anon_sym_POUND_QMARK, - ACTIONS(6053), 1, + ACTIONS(95), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(6055), 1, + ACTIONS(97), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6057), 1, + ACTIONS(99), 1, anon_sym_SQUOTE, - ACTIONS(6059), 1, + ACTIONS(101), 1, anon_sym_BQUOTE, - ACTIONS(6061), 1, + ACTIONS(103), 1, anon_sym_COMMA_AT, - ACTIONS(6063), 1, + ACTIONS(105), 1, anon_sym_COMMA, - ACTIONS(6065), 1, + ACTIONS(4749), 1, + anon_sym_COLON, + ACTIONS(4751), 1, + anon_sym_LPAREN, + ACTIONS(4753), 1, anon_sym_cl, - STATE(2815), 1, + ACTIONS(6187), 1, + sym_self_referential_reader_macro, + STATE(1101), 1, + sym_sym_lit, + STATE(1117), 1, + sym__bare_set_lit, + STATE(2812), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, - sym__bare_set_lit, - STATE(3039), 1, - sym_sym_lit, - ACTIONS(5055), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(5061), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5183), 2, + ACTIONS(91), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(6067), 2, + ACTIONS(114), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(118), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6177), 2, + ACTIONS(120), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(5135), 3, + ACTIONS(6185), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(680), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2991), 3, + STATE(1109), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2910), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1090), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -74152,7 +73524,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [36452] = 35, + [36182] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -74161,78 +73533,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4747), 1, + ACTIONS(65), 1, anon_sym_POUND, - ACTIONS(4751), 1, + ACTIONS(69), 1, aux_sym_num_lit_token1, - ACTIONS(4753), 1, - anon_sym_COLON, - ACTIONS(4755), 1, + ACTIONS(74), 1, anon_sym_COLON_COLON, - ACTIONS(4757), 1, + ACTIONS(76), 1, anon_sym_DQUOTE, - ACTIONS(4759), 1, + ACTIONS(78), 1, aux_sym_sym_lit_token1, - ACTIONS(4761), 1, - anon_sym_LPAREN, - ACTIONS(4765), 1, + ACTIONS(93), 1, anon_sym_POUND_QMARK, - ACTIONS(4767), 1, + ACTIONS(95), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4769), 1, + ACTIONS(97), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4771), 1, + ACTIONS(99), 1, anon_sym_SQUOTE, - ACTIONS(4773), 1, + ACTIONS(101), 1, anon_sym_BQUOTE, - ACTIONS(4775), 1, + ACTIONS(103), 1, anon_sym_COMMA_AT, - ACTIONS(4777), 1, + ACTIONS(105), 1, anon_sym_COMMA, - ACTIONS(4779), 1, + ACTIONS(4749), 1, + anon_sym_COLON, + ACTIONS(4751), 1, + anon_sym_LPAREN, + ACTIONS(4753), 1, anon_sym_cl, - ACTIONS(6181), 1, + ACTIONS(6191), 1, sym_self_referential_reader_macro, - STATE(1489), 1, + STATE(1101), 1, sym_sym_lit, - STATE(1557), 1, + STATE(1117), 1, sym__bare_set_lit, - STATE(2841), 1, + STATE(2812), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(4763), 2, + ACTIONS(91), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4781), 2, + ACTIONS(114), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4785), 2, + ACTIONS(118), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4787), 2, + ACTIONS(120), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(6179), 3, + ACTIONS(6189), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1612), 3, + STATE(1109), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1529), 19, + STATE(1091), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -74252,7 +73624,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [36587] = 35, + [36317] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -74261,78 +73633,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5131), 1, - sym_self_referential_reader_macro, - ACTIONS(5179), 1, - aux_sym_num_lit_token1, - ACTIONS(6039), 1, + ACTIONS(124), 1, anon_sym_POUND, - ACTIONS(6041), 1, - anon_sym_COLON, - ACTIONS(6043), 1, + ACTIONS(128), 1, + aux_sym_num_lit_token1, + ACTIONS(132), 1, anon_sym_COLON_COLON, - ACTIONS(6045), 1, + ACTIONS(134), 1, anon_sym_DQUOTE, - ACTIONS(6047), 1, + ACTIONS(136), 1, aux_sym_sym_lit_token1, - ACTIONS(6049), 1, - anon_sym_LPAREN, - ACTIONS(6051), 1, + ACTIONS(140), 1, anon_sym_POUND_QMARK, - ACTIONS(6053), 1, + ACTIONS(142), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(6055), 1, + ACTIONS(144), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6057), 1, + ACTIONS(146), 1, anon_sym_SQUOTE, - ACTIONS(6059), 1, + ACTIONS(148), 1, anon_sym_BQUOTE, - ACTIONS(6061), 1, + ACTIONS(150), 1, anon_sym_COMMA_AT, - ACTIONS(6063), 1, + ACTIONS(152), 1, anon_sym_COMMA, - ACTIONS(6065), 1, + ACTIONS(4378), 1, + anon_sym_COLON, + ACTIONS(4380), 1, + anon_sym_LPAREN, + ACTIONS(4382), 1, anon_sym_cl, - STATE(2815), 1, + ACTIONS(6197), 1, + sym_self_referential_reader_macro, + STATE(1136), 1, + sym_sym_lit, + STATE(1138), 1, + sym__bare_set_lit, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, - sym__bare_set_lit, - STATE(3039), 1, - sym_sym_lit, - ACTIONS(4801), 2, - sym__ws, - sym_comment, - ACTIONS(5055), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(5061), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5183), 2, + ACTIONS(138), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(6067), 2, + ACTIONS(154), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(158), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5129), 3, + ACTIONS(160), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6193), 2, + sym__ws, + sym_comment, + ACTIONS(6195), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, + STATE(680), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2991), 3, + STATE(1137), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2908), 19, + STATE(1152), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -74352,87 +73724,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [36722] = 35, + [36452] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(124), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(128), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(132), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(134), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(136), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(140), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(142), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(144), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(146), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(148), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(150), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(152), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4378), 1, + anon_sym_COLON, + ACTIONS(4380), 1, + anon_sym_LPAREN, + ACTIONS(4382), 1, anon_sym_cl, - ACTIONS(6185), 1, + ACTIONS(6203), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(1136), 1, sym_sym_lit, - STATE(2808), 1, + STATE(1138), 1, + sym__bare_set_lit, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(138), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(154), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(158), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(160), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(6199), 2, sym__ws, sym_comment, - ACTIONS(6183), 3, + ACTIONS(6201), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1877), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(681), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(525), 19, + STATE(1137), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1153), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -74452,7 +73824,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [36857] = 35, + [36587] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -74461,78 +73833,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5089), 1, - sym_self_referential_reader_macro, - ACTIONS(5179), 1, - aux_sym_num_lit_token1, - ACTIONS(6039), 1, + ACTIONS(124), 1, anon_sym_POUND, - ACTIONS(6041), 1, - anon_sym_COLON, - ACTIONS(6043), 1, + ACTIONS(128), 1, + aux_sym_num_lit_token1, + ACTIONS(132), 1, anon_sym_COLON_COLON, - ACTIONS(6045), 1, + ACTIONS(134), 1, anon_sym_DQUOTE, - ACTIONS(6047), 1, + ACTIONS(136), 1, aux_sym_sym_lit_token1, - ACTIONS(6049), 1, - anon_sym_LPAREN, - ACTIONS(6051), 1, + ACTIONS(140), 1, anon_sym_POUND_QMARK, - ACTIONS(6053), 1, + ACTIONS(142), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(6055), 1, + ACTIONS(144), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6057), 1, + ACTIONS(146), 1, anon_sym_SQUOTE, - ACTIONS(6059), 1, + ACTIONS(148), 1, anon_sym_BQUOTE, - ACTIONS(6061), 1, + ACTIONS(150), 1, anon_sym_COMMA_AT, - ACTIONS(6063), 1, + ACTIONS(152), 1, anon_sym_COMMA, - ACTIONS(6065), 1, + ACTIONS(4378), 1, + anon_sym_COLON, + ACTIONS(4380), 1, + anon_sym_LPAREN, + ACTIONS(4382), 1, anon_sym_cl, - STATE(2815), 1, + ACTIONS(6209), 1, + sym_self_referential_reader_macro, + STATE(1136), 1, + sym_sym_lit, + STATE(1138), 1, + sym__bare_set_lit, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, - sym__bare_set_lit, - STATE(3039), 1, - sym_sym_lit, - ACTIONS(5055), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(5061), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5183), 2, + ACTIONS(138), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(6067), 2, + ACTIONS(154), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(158), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6187), 2, + ACTIONS(160), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6205), 2, sym__ws, sym_comment, - ACTIONS(5087), 3, + ACTIONS(6207), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(685), 3, + STATE(682), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2991), 3, + STATE(1137), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2919), 19, + STATE(1154), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -74552,7 +73924,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [36992] = 35, + [36722] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -74561,78 +73933,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4747), 1, - anon_sym_POUND, - ACTIONS(4751), 1, - aux_sym_num_lit_token1, - ACTIONS(4753), 1, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4997), 1, anon_sym_COLON, - ACTIONS(4755), 1, + ACTIONS(4999), 1, anon_sym_COLON_COLON, - ACTIONS(4757), 1, + ACTIONS(5001), 1, anon_sym_DQUOTE, - ACTIONS(4759), 1, + ACTIONS(5003), 1, aux_sym_sym_lit_token1, - ACTIONS(4761), 1, - anon_sym_LPAREN, - ACTIONS(4765), 1, + ACTIONS(5019), 1, + anon_sym_cl, + ACTIONS(5607), 1, + sym_self_referential_reader_macro, + ACTIONS(5759), 1, + anon_sym_POUND, + ACTIONS(5761), 1, + aux_sym_num_lit_token1, + ACTIONS(5765), 1, anon_sym_POUND_QMARK, - ACTIONS(4767), 1, + ACTIONS(5767), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4769), 1, + ACTIONS(5769), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4771), 1, + ACTIONS(5771), 1, anon_sym_SQUOTE, - ACTIONS(4773), 1, + ACTIONS(5773), 1, anon_sym_BQUOTE, - ACTIONS(4775), 1, + ACTIONS(5775), 1, anon_sym_COMMA_AT, - ACTIONS(4777), 1, + ACTIONS(5777), 1, anon_sym_COMMA, - ACTIONS(4779), 1, - anon_sym_cl, - ACTIONS(6191), 1, - sym_self_referential_reader_macro, - STATE(1489), 1, - sym_sym_lit, - STATE(1557), 1, - sym__bare_set_lit, - STATE(2841), 1, + STATE(2814), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(4763), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(4781), 2, + STATE(2986), 1, + sym__bare_set_lit, + STATE(3094), 1, + sym_sym_lit, + ACTIONS(5021), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4785), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(4787), 2, + ACTIONS(5027), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(5763), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5779), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6211), 2, sym__ws, sym_comment, - ACTIONS(6189), 3, + ACTIONS(5605), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1612), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(683), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1530), 19, + STATE(2985), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2108), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -74652,7 +74024,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [37127] = 35, + [36857] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -74661,78 +74033,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5069), 1, - sym_self_referential_reader_macro, - ACTIONS(5179), 1, - aux_sym_num_lit_token1, - ACTIONS(6039), 1, - anon_sym_POUND, - ACTIONS(6041), 1, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4997), 1, anon_sym_COLON, - ACTIONS(6043), 1, + ACTIONS(4999), 1, anon_sym_COLON_COLON, - ACTIONS(6045), 1, + ACTIONS(5001), 1, anon_sym_DQUOTE, - ACTIONS(6047), 1, + ACTIONS(5003), 1, aux_sym_sym_lit_token1, - ACTIONS(6049), 1, - anon_sym_LPAREN, - ACTIONS(6051), 1, + ACTIONS(5019), 1, + anon_sym_cl, + ACTIONS(5613), 1, + sym_self_referential_reader_macro, + ACTIONS(5759), 1, + anon_sym_POUND, + ACTIONS(5761), 1, + aux_sym_num_lit_token1, + ACTIONS(5765), 1, anon_sym_POUND_QMARK, - ACTIONS(6053), 1, + ACTIONS(5767), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(6055), 1, + ACTIONS(5769), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6057), 1, + ACTIONS(5771), 1, anon_sym_SQUOTE, - ACTIONS(6059), 1, + ACTIONS(5773), 1, anon_sym_BQUOTE, - ACTIONS(6061), 1, + ACTIONS(5775), 1, anon_sym_COMMA_AT, - ACTIONS(6063), 1, + ACTIONS(5777), 1, anon_sym_COMMA, - ACTIONS(6065), 1, - anon_sym_cl, - STATE(2815), 1, + STATE(2814), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, + STATE(2986), 1, sym__bare_set_lit, - STATE(3039), 1, + STATE(3094), 1, sym_sym_lit, - ACTIONS(4801), 2, - sym__ws, - sym_comment, - ACTIONS(5055), 2, + ACTIONS(5021), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(5061), 2, + ACTIONS(5027), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5183), 2, + ACTIONS(5763), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(6067), 2, + ACTIONS(5779), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5067), 3, + ACTIONS(6213), 2, + sym__ws, + sym_comment, + ACTIONS(5611), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, + STATE(684), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2991), 3, + STATE(2985), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2998), 19, + STATE(2116), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -74752,7 +74124,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [37262] = 35, + [36992] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -74761,78 +74133,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4747), 1, + ACTIONS(1688), 1, anon_sym_POUND, - ACTIONS(4751), 1, + ACTIONS(1692), 1, aux_sym_num_lit_token1, - ACTIONS(4753), 1, - anon_sym_COLON, - ACTIONS(4755), 1, + ACTIONS(1697), 1, anon_sym_COLON_COLON, - ACTIONS(4757), 1, + ACTIONS(1699), 1, anon_sym_DQUOTE, - ACTIONS(4759), 1, + ACTIONS(1701), 1, aux_sym_sym_lit_token1, - ACTIONS(4761), 1, - anon_sym_LPAREN, - ACTIONS(4765), 1, + ACTIONS(1716), 1, anon_sym_POUND_QMARK, - ACTIONS(4767), 1, + ACTIONS(1718), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4769), 1, + ACTIONS(1720), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4771), 1, + ACTIONS(1722), 1, anon_sym_SQUOTE, - ACTIONS(4773), 1, + ACTIONS(1724), 1, anon_sym_BQUOTE, - ACTIONS(4775), 1, + ACTIONS(1726), 1, anon_sym_COMMA_AT, - ACTIONS(4777), 1, + ACTIONS(1728), 1, anon_sym_COMMA, - ACTIONS(4779), 1, + ACTIONS(4791), 1, + anon_sym_COLON, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4795), 1, anon_sym_cl, - ACTIONS(6195), 1, + ACTIONS(6217), 1, sym_self_referential_reader_macro, - STATE(1489), 1, + STATE(1288), 1, sym_sym_lit, - STATE(1557), 1, + STATE(1290), 1, sym__bare_set_lit, - STATE(2841), 1, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(4763), 2, + ACTIONS(1714), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4781), 2, + ACTIONS(1735), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4785), 2, + ACTIONS(1739), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4787), 2, + ACTIONS(1741), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(6193), 3, + ACTIONS(6215), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1612), 3, + STATE(1289), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1531), 19, + STATE(1313), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -74852,87 +74224,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [37397] = 35, + [37127] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(124), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(128), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(132), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(134), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(136), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(140), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(142), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(144), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(146), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(148), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(150), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(152), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4378), 1, + anon_sym_COLON, + ACTIONS(4380), 1, + anon_sym_LPAREN, + ACTIONS(4382), 1, anon_sym_cl, - ACTIONS(6199), 1, + ACTIONS(6221), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(1136), 1, sym_sym_lit, - STATE(2808), 1, + STATE(1138), 1, + sym__bare_set_lit, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(138), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(154), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(158), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(160), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(6197), 3, + ACTIONS(6219), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1877), 3, + STATE(1137), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(528), 19, + STATE(1171), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -74952,87 +74324,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [37532] = 35, + [37262] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(124), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(128), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(132), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(134), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(136), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(140), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(142), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(144), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(146), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(148), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(150), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(152), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4378), 1, + anon_sym_COLON, + ACTIONS(4380), 1, + anon_sym_LPAREN, + ACTIONS(4382), 1, anon_sym_cl, - ACTIONS(6203), 1, + ACTIONS(6225), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(1136), 1, sym_sym_lit, - STATE(2808), 1, + STATE(1138), 1, + sym__bare_set_lit, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(138), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(154), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(158), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(160), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(6201), 3, + ACTIONS(6223), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1877), 3, + STATE(1137), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1839), 19, + STATE(1172), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -75052,7 +74424,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [37667] = 35, + [37397] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -75061,78 +74433,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4747), 1, + ACTIONS(124), 1, anon_sym_POUND, - ACTIONS(4751), 1, + ACTIONS(128), 1, aux_sym_num_lit_token1, - ACTIONS(4753), 1, - anon_sym_COLON, - ACTIONS(4755), 1, + ACTIONS(132), 1, anon_sym_COLON_COLON, - ACTIONS(4757), 1, + ACTIONS(134), 1, anon_sym_DQUOTE, - ACTIONS(4759), 1, + ACTIONS(136), 1, aux_sym_sym_lit_token1, - ACTIONS(4761), 1, - anon_sym_LPAREN, - ACTIONS(4765), 1, + ACTIONS(140), 1, anon_sym_POUND_QMARK, - ACTIONS(4767), 1, + ACTIONS(142), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4769), 1, + ACTIONS(144), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4771), 1, + ACTIONS(146), 1, anon_sym_SQUOTE, - ACTIONS(4773), 1, + ACTIONS(148), 1, anon_sym_BQUOTE, - ACTIONS(4775), 1, + ACTIONS(150), 1, anon_sym_COMMA_AT, - ACTIONS(4777), 1, + ACTIONS(152), 1, anon_sym_COMMA, - ACTIONS(4779), 1, + ACTIONS(4378), 1, + anon_sym_COLON, + ACTIONS(4380), 1, + anon_sym_LPAREN, + ACTIONS(4382), 1, anon_sym_cl, - ACTIONS(6207), 1, + ACTIONS(6229), 1, sym_self_referential_reader_macro, - STATE(1489), 1, + STATE(1136), 1, sym_sym_lit, - STATE(1557), 1, + STATE(1138), 1, sym__bare_set_lit, - STATE(2841), 1, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(4763), 2, + ACTIONS(138), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4781), 2, + ACTIONS(154), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4785), 2, + ACTIONS(158), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4787), 2, + ACTIONS(160), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(6205), 3, + ACTIONS(6227), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1612), 3, + STATE(1137), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1532), 19, + STATE(1173), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -75152,7 +74524,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [37802] = 35, + [37532] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -75161,78 +74533,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5057), 1, - sym_self_referential_reader_macro, - ACTIONS(5179), 1, - aux_sym_num_lit_token1, - ACTIONS(6039), 1, - anon_sym_POUND, - ACTIONS(6041), 1, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4997), 1, anon_sym_COLON, - ACTIONS(6043), 1, + ACTIONS(4999), 1, anon_sym_COLON_COLON, - ACTIONS(6045), 1, + ACTIONS(5001), 1, anon_sym_DQUOTE, - ACTIONS(6047), 1, + ACTIONS(5003), 1, aux_sym_sym_lit_token1, - ACTIONS(6049), 1, - anon_sym_LPAREN, - ACTIONS(6051), 1, + ACTIONS(5019), 1, + anon_sym_cl, + ACTIONS(5633), 1, + sym_self_referential_reader_macro, + ACTIONS(5759), 1, + anon_sym_POUND, + ACTIONS(5761), 1, + aux_sym_num_lit_token1, + ACTIONS(5765), 1, anon_sym_POUND_QMARK, - ACTIONS(6053), 1, + ACTIONS(5767), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(6055), 1, + ACTIONS(5769), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6057), 1, + ACTIONS(5771), 1, anon_sym_SQUOTE, - ACTIONS(6059), 1, + ACTIONS(5773), 1, anon_sym_BQUOTE, - ACTIONS(6061), 1, + ACTIONS(5775), 1, anon_sym_COMMA_AT, - ACTIONS(6063), 1, + ACTIONS(5777), 1, anon_sym_COMMA, - ACTIONS(6065), 1, - anon_sym_cl, - STATE(2815), 1, + STATE(2814), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, + STATE(2986), 1, sym__bare_set_lit, - STATE(3039), 1, + STATE(3094), 1, sym_sym_lit, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(5055), 2, + ACTIONS(5021), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(5061), 2, + ACTIONS(5027), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5183), 2, + ACTIONS(5763), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(6067), 2, + ACTIONS(5779), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5025), 3, + ACTIONS(5631), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2991), 3, + STATE(2985), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2997), 19, + STATE(2149), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -75252,7 +74624,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [37937] = 35, + [37667] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -75261,78 +74633,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6211), 1, - anon_sym_POUND, - ACTIONS(6215), 1, - aux_sym_num_lit_token1, - ACTIONS(6217), 1, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4997), 1, anon_sym_COLON, - ACTIONS(6219), 1, + ACTIONS(4999), 1, anon_sym_COLON_COLON, - ACTIONS(6221), 1, + ACTIONS(5001), 1, anon_sym_DQUOTE, - ACTIONS(6223), 1, + ACTIONS(5003), 1, aux_sym_sym_lit_token1, - ACTIONS(6225), 1, - anon_sym_LPAREN, - ACTIONS(6229), 1, + ACTIONS(5019), 1, + anon_sym_cl, + ACTIONS(5637), 1, + sym_self_referential_reader_macro, + ACTIONS(5759), 1, + anon_sym_POUND, + ACTIONS(5761), 1, + aux_sym_num_lit_token1, + ACTIONS(5765), 1, anon_sym_POUND_QMARK, - ACTIONS(6231), 1, + ACTIONS(5767), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(6233), 1, + ACTIONS(5769), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6235), 1, + ACTIONS(5771), 1, anon_sym_SQUOTE, - ACTIONS(6237), 1, + ACTIONS(5773), 1, anon_sym_BQUOTE, - ACTIONS(6239), 1, + ACTIONS(5775), 1, anon_sym_COMMA_AT, - ACTIONS(6241), 1, + ACTIONS(5777), 1, anon_sym_COMMA, - ACTIONS(6243), 1, - anon_sym_cl, - ACTIONS(6247), 1, - sym_self_referential_reader_macro, - STATE(1675), 1, - sym_sym_lit, - STATE(1677), 1, - sym__bare_set_lit, - STATE(2833), 1, + STATE(2814), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(6209), 2, + STATE(2986), 1, + sym__bare_set_lit, + STATE(3094), 1, + sym_sym_lit, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(6227), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(6245), 2, + ACTIONS(5021), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(6249), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(6251), 2, + ACTIONS(5027), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6213), 3, + ACTIONS(5763), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5779), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5635), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(705), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1676), 3, + STATE(2985), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1692), 19, + STATE(2151), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -75352,7 +74724,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [38072] = 35, + [37802] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -75361,78 +74733,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4747), 1, + ACTIONS(124), 1, anon_sym_POUND, - ACTIONS(4751), 1, + ACTIONS(128), 1, aux_sym_num_lit_token1, - ACTIONS(4753), 1, - anon_sym_COLON, - ACTIONS(4755), 1, + ACTIONS(132), 1, anon_sym_COLON_COLON, - ACTIONS(4757), 1, + ACTIONS(134), 1, anon_sym_DQUOTE, - ACTIONS(4759), 1, + ACTIONS(136), 1, aux_sym_sym_lit_token1, - ACTIONS(4761), 1, - anon_sym_LPAREN, - ACTIONS(4765), 1, + ACTIONS(140), 1, anon_sym_POUND_QMARK, - ACTIONS(4767), 1, + ACTIONS(142), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4769), 1, + ACTIONS(144), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4771), 1, + ACTIONS(146), 1, anon_sym_SQUOTE, - ACTIONS(4773), 1, + ACTIONS(148), 1, anon_sym_BQUOTE, - ACTIONS(4775), 1, + ACTIONS(150), 1, anon_sym_COMMA_AT, - ACTIONS(4777), 1, + ACTIONS(152), 1, anon_sym_COMMA, - ACTIONS(4779), 1, + ACTIONS(4378), 1, + anon_sym_COLON, + ACTIONS(4380), 1, + anon_sym_LPAREN, + ACTIONS(4382), 1, anon_sym_cl, - ACTIONS(6255), 1, + ACTIONS(6235), 1, sym_self_referential_reader_macro, - STATE(1489), 1, + STATE(1136), 1, sym_sym_lit, - STATE(1557), 1, + STATE(1138), 1, sym__bare_set_lit, - STATE(2841), 1, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(4763), 2, + ACTIONS(138), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4781), 2, + ACTIONS(154), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4785), 2, + ACTIONS(158), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4787), 2, + ACTIONS(160), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(6231), 2, sym__ws, sym_comment, - ACTIONS(6253), 3, + ACTIONS(6233), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1612), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(689), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1533), 19, + STATE(1137), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1177), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -75452,87 +74824,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [38207] = 35, + [37937] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(124), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(128), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(132), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(134), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(136), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(140), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(142), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(144), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(146), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(148), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(150), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(152), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4378), 1, + anon_sym_COLON, + ACTIONS(4380), 1, + anon_sym_LPAREN, + ACTIONS(4382), 1, anon_sym_cl, - ACTIONS(6259), 1, + ACTIONS(6241), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(1136), 1, sym_sym_lit, - STATE(2808), 1, + STATE(1138), 1, + sym__bare_set_lit, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(138), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(154), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(158), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(160), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(6237), 2, sym__ws, sym_comment, - ACTIONS(6257), 3, + ACTIONS(6239), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1877), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(691), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1837), 19, + STATE(1137), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1180), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -75552,7 +74924,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [38342] = 35, + [38072] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -75561,78 +74933,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(67), 1, + ACTIONS(124), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(128), 1, aux_sym_num_lit_token1, - ACTIONS(77), 1, + ACTIONS(132), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(134), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(136), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(140), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(142), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(104), 1, + ACTIONS(144), 1, anon_sym_POUND_SQUOTE, - ACTIONS(106), 1, + ACTIONS(146), 1, anon_sym_SQUOTE, - ACTIONS(108), 1, + ACTIONS(148), 1, anon_sym_BQUOTE, - ACTIONS(110), 1, + ACTIONS(150), 1, anon_sym_COMMA_AT, - ACTIONS(112), 1, + ACTIONS(152), 1, anon_sym_COMMA, - ACTIONS(4809), 1, + ACTIONS(4378), 1, anon_sym_COLON, - ACTIONS(4811), 1, + ACTIONS(4380), 1, anon_sym_LPAREN, - ACTIONS(4825), 1, + ACTIONS(4382), 1, anon_sym_cl, - ACTIONS(6265), 1, + ACTIONS(6247), 1, sym_self_referential_reader_macro, - STATE(2497), 1, + STATE(1136), 1, sym_sym_lit, - STATE(2625), 1, + STATE(1138), 1, sym__bare_set_lit, - STATE(2834), 1, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(98), 2, + ACTIONS(138), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(123), 2, + ACTIONS(154), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(127), 2, + ACTIONS(158), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(129), 2, + ACTIONS(160), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6261), 2, + ACTIONS(6243), 2, sym__ws, sym_comment, - ACTIONS(6263), 3, + ACTIONS(6245), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(461), 3, + STATE(692), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(1137), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2716), 19, + STATE(1181), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -75652,7 +75024,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [38477] = 35, + [38207] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -75661,78 +75033,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4747), 1, - anon_sym_POUND, - ACTIONS(4751), 1, - aux_sym_num_lit_token1, - ACTIONS(4753), 1, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4997), 1, anon_sym_COLON, - ACTIONS(4755), 1, + ACTIONS(4999), 1, anon_sym_COLON_COLON, - ACTIONS(4757), 1, + ACTIONS(5001), 1, anon_sym_DQUOTE, - ACTIONS(4759), 1, + ACTIONS(5003), 1, aux_sym_sym_lit_token1, - ACTIONS(4761), 1, - anon_sym_LPAREN, - ACTIONS(4765), 1, + ACTIONS(5019), 1, + anon_sym_cl, + ACTIONS(5661), 1, + sym_self_referential_reader_macro, + ACTIONS(5759), 1, + anon_sym_POUND, + ACTIONS(5761), 1, + aux_sym_num_lit_token1, + ACTIONS(5765), 1, anon_sym_POUND_QMARK, - ACTIONS(4767), 1, + ACTIONS(5767), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4769), 1, + ACTIONS(5769), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4771), 1, + ACTIONS(5771), 1, anon_sym_SQUOTE, - ACTIONS(4773), 1, + ACTIONS(5773), 1, anon_sym_BQUOTE, - ACTIONS(4775), 1, + ACTIONS(5775), 1, anon_sym_COMMA_AT, - ACTIONS(4777), 1, + ACTIONS(5777), 1, anon_sym_COMMA, - ACTIONS(4779), 1, - anon_sym_cl, - ACTIONS(6271), 1, - sym_self_referential_reader_macro, - STATE(1489), 1, - sym_sym_lit, - STATE(1557), 1, - sym__bare_set_lit, - STATE(2841), 1, + STATE(2814), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(4763), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(4781), 2, + STATE(2986), 1, + sym__bare_set_lit, + STATE(3094), 1, + sym_sym_lit, + ACTIONS(5021), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4785), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(4787), 2, + ACTIONS(5027), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6267), 2, + ACTIONS(5763), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5779), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6249), 2, sym__ws, sym_comment, - ACTIONS(6269), 3, + ACTIONS(5659), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(701), 3, + STATE(693), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1612), 3, + STATE(2985), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1535), 19, + STATE(2177), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -75752,7 +75124,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [38612] = 35, + [38342] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -75761,78 +75133,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(67), 1, + ACTIONS(124), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(128), 1, aux_sym_num_lit_token1, - ACTIONS(77), 1, + ACTIONS(132), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(134), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(136), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(140), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(142), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(104), 1, + ACTIONS(144), 1, anon_sym_POUND_SQUOTE, - ACTIONS(106), 1, + ACTIONS(146), 1, anon_sym_SQUOTE, - ACTIONS(108), 1, + ACTIONS(148), 1, anon_sym_BQUOTE, - ACTIONS(110), 1, + ACTIONS(150), 1, anon_sym_COMMA_AT, - ACTIONS(112), 1, + ACTIONS(152), 1, anon_sym_COMMA, - ACTIONS(4809), 1, + ACTIONS(4378), 1, anon_sym_COLON, - ACTIONS(4811), 1, + ACTIONS(4380), 1, anon_sym_LPAREN, - ACTIONS(4825), 1, + ACTIONS(4382), 1, anon_sym_cl, - ACTIONS(5109), 1, + ACTIONS(6253), 1, sym_self_referential_reader_macro, - STATE(2497), 1, + STATE(1136), 1, sym_sym_lit, - STATE(2625), 1, + STATE(1138), 1, sym__bare_set_lit, - STATE(2834), 1, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(98), 2, + ACTIONS(138), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(123), 2, + ACTIONS(154), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(127), 2, + ACTIONS(158), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(129), 2, + ACTIONS(160), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(5107), 3, + ACTIONS(6251), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(1137), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2563), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1254), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -75852,7 +75224,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [38747] = 35, + [38477] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -75861,78 +75233,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6211), 1, + ACTIONS(124), 1, anon_sym_POUND, - ACTIONS(6215), 1, + ACTIONS(128), 1, aux_sym_num_lit_token1, - ACTIONS(6217), 1, - anon_sym_COLON, - ACTIONS(6219), 1, + ACTIONS(132), 1, anon_sym_COLON_COLON, - ACTIONS(6221), 1, + ACTIONS(134), 1, anon_sym_DQUOTE, - ACTIONS(6223), 1, + ACTIONS(136), 1, aux_sym_sym_lit_token1, - ACTIONS(6225), 1, - anon_sym_LPAREN, - ACTIONS(6229), 1, + ACTIONS(140), 1, anon_sym_POUND_QMARK, - ACTIONS(6231), 1, + ACTIONS(142), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(6233), 1, + ACTIONS(144), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6235), 1, + ACTIONS(146), 1, anon_sym_SQUOTE, - ACTIONS(6237), 1, + ACTIONS(148), 1, anon_sym_BQUOTE, - ACTIONS(6239), 1, + ACTIONS(150), 1, anon_sym_COMMA_AT, - ACTIONS(6241), 1, + ACTIONS(152), 1, anon_sym_COMMA, - ACTIONS(6243), 1, + ACTIONS(4378), 1, + anon_sym_COLON, + ACTIONS(4380), 1, + anon_sym_LPAREN, + ACTIONS(4382), 1, anon_sym_cl, - ACTIONS(6277), 1, + ACTIONS(6259), 1, sym_self_referential_reader_macro, - STATE(1675), 1, + STATE(1136), 1, sym_sym_lit, - STATE(1677), 1, + STATE(1138), 1, sym__bare_set_lit, - STATE(2833), 1, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(6227), 2, + ACTIONS(138), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(6245), 2, + ACTIONS(154), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(6249), 2, + ACTIONS(158), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6251), 2, + ACTIONS(160), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6273), 2, + ACTIONS(6255), 2, sym__ws, sym_comment, - ACTIONS(6275), 3, + ACTIONS(6257), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(706), 3, + STATE(696), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1676), 3, + STATE(1137), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1694), 19, + STATE(1190), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -75952,7 +75324,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [38882] = 35, + [38612] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -75961,78 +75333,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4747), 1, + ACTIONS(124), 1, anon_sym_POUND, - ACTIONS(4751), 1, + ACTIONS(128), 1, aux_sym_num_lit_token1, - ACTIONS(4753), 1, - anon_sym_COLON, - ACTIONS(4755), 1, + ACTIONS(132), 1, anon_sym_COLON_COLON, - ACTIONS(4757), 1, + ACTIONS(134), 1, anon_sym_DQUOTE, - ACTIONS(4759), 1, + ACTIONS(136), 1, aux_sym_sym_lit_token1, - ACTIONS(4761), 1, - anon_sym_LPAREN, - ACTIONS(4765), 1, + ACTIONS(140), 1, anon_sym_POUND_QMARK, - ACTIONS(4767), 1, + ACTIONS(142), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4769), 1, + ACTIONS(144), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4771), 1, + ACTIONS(146), 1, anon_sym_SQUOTE, - ACTIONS(4773), 1, + ACTIONS(148), 1, anon_sym_BQUOTE, - ACTIONS(4775), 1, + ACTIONS(150), 1, anon_sym_COMMA_AT, - ACTIONS(4777), 1, + ACTIONS(152), 1, anon_sym_COMMA, - ACTIONS(4779), 1, + ACTIONS(4378), 1, + anon_sym_COLON, + ACTIONS(4380), 1, + anon_sym_LPAREN, + ACTIONS(4382), 1, anon_sym_cl, - ACTIONS(6283), 1, + ACTIONS(6263), 1, sym_self_referential_reader_macro, - STATE(1489), 1, + STATE(1136), 1, sym_sym_lit, - STATE(1557), 1, + STATE(1138), 1, sym__bare_set_lit, - STATE(2841), 1, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(4763), 2, + ACTIONS(138), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4781), 2, + ACTIONS(154), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4785), 2, + ACTIONS(158), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4787), 2, + ACTIONS(160), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6279), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(6281), 3, + ACTIONS(6261), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(716), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1612), 3, + STATE(1137), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1537), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1132), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -76052,7 +75424,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [39017] = 35, + [38747] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -76061,78 +75433,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6211), 1, + ACTIONS(124), 1, anon_sym_POUND, - ACTIONS(6215), 1, + ACTIONS(128), 1, aux_sym_num_lit_token1, - ACTIONS(6217), 1, - anon_sym_COLON, - ACTIONS(6219), 1, + ACTIONS(132), 1, anon_sym_COLON_COLON, - ACTIONS(6221), 1, + ACTIONS(134), 1, anon_sym_DQUOTE, - ACTIONS(6223), 1, + ACTIONS(136), 1, aux_sym_sym_lit_token1, - ACTIONS(6225), 1, - anon_sym_LPAREN, - ACTIONS(6229), 1, + ACTIONS(140), 1, anon_sym_POUND_QMARK, - ACTIONS(6231), 1, + ACTIONS(142), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(6233), 1, + ACTIONS(144), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6235), 1, + ACTIONS(146), 1, anon_sym_SQUOTE, - ACTIONS(6237), 1, + ACTIONS(148), 1, anon_sym_BQUOTE, - ACTIONS(6239), 1, + ACTIONS(150), 1, anon_sym_COMMA_AT, - ACTIONS(6241), 1, + ACTIONS(152), 1, anon_sym_COMMA, - ACTIONS(6243), 1, + ACTIONS(4378), 1, + anon_sym_COLON, + ACTIONS(4380), 1, + anon_sym_LPAREN, + ACTIONS(4382), 1, anon_sym_cl, - ACTIONS(6289), 1, + ACTIONS(6267), 1, sym_self_referential_reader_macro, - STATE(1675), 1, + STATE(1136), 1, sym_sym_lit, - STATE(1677), 1, + STATE(1138), 1, sym__bare_set_lit, - STATE(2833), 1, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(6227), 2, + ACTIONS(138), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(6245), 2, + ACTIONS(154), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(6249), 2, + ACTIONS(158), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6251), 2, + ACTIONS(160), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6285), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(6287), 3, + ACTIONS(6265), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(708), 3, + STATE(1137), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1676), 3, + STATE(1194), 19, + sym__form, + sym_num_lit, + sym_kwd_lit, + sym_str_lit, + sym_char_lit, + sym_list_lit, + sym_vec_lit, + sym_set_lit, + sym_read_cond_lit, + sym_splicing_read_cond_lit, + sym_var_quoting_lit, + sym_quoting_lit, + sym_syn_quoting_lit, + sym_unquote_splicing_lit, + sym_unquoting_lit, + sym_path_lit, + sym_package_lit, + sym_include_reader_macro, + sym_complex_num_lit, + [38882] = 35, + ACTIONS(9), 1, + anon_sym_POUND_, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4997), 1, + anon_sym_COLON, + ACTIONS(4999), 1, + anon_sym_COLON_COLON, + ACTIONS(5001), 1, + anon_sym_DQUOTE, + ACTIONS(5003), 1, + aux_sym_sym_lit_token1, + ACTIONS(5019), 1, + anon_sym_cl, + ACTIONS(5683), 1, + sym_self_referential_reader_macro, + ACTIONS(5759), 1, + anon_sym_POUND, + ACTIONS(5761), 1, + aux_sym_num_lit_token1, + ACTIONS(5765), 1, + anon_sym_POUND_QMARK, + ACTIONS(5767), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(5769), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(5771), 1, + anon_sym_SQUOTE, + ACTIONS(5773), 1, + anon_sym_BQUOTE, + ACTIONS(5775), 1, + anon_sym_COMMA_AT, + ACTIONS(5777), 1, + anon_sym_COMMA, + STATE(2814), 1, + aux_sym_list_lit_repeat1, + STATE(2860), 1, + sym_old_meta_lit, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, + sym__metadata_lit, + STATE(2986), 1, + sym__bare_set_lit, + STATE(3094), 1, + sym_sym_lit, + ACTIONS(4763), 2, + sym__ws, + sym_comment, + ACTIONS(5021), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(5027), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5763), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5779), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5681), 3, + anon_sym_DOT, + sym_nil_lit, + sym_fancy_literal, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(2985), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1696), 19, + STATE(2491), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -76152,7 +75624,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [39152] = 35, + [39017] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -76161,78 +75633,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(67), 1, + ACTIONS(124), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(128), 1, aux_sym_num_lit_token1, - ACTIONS(77), 1, + ACTIONS(132), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(134), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(136), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(140), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(142), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(104), 1, + ACTIONS(144), 1, anon_sym_POUND_SQUOTE, - ACTIONS(106), 1, + ACTIONS(146), 1, anon_sym_SQUOTE, - ACTIONS(108), 1, + ACTIONS(148), 1, anon_sym_BQUOTE, - ACTIONS(110), 1, + ACTIONS(150), 1, anon_sym_COMMA_AT, - ACTIONS(112), 1, + ACTIONS(152), 1, anon_sym_COMMA, - ACTIONS(4809), 1, + ACTIONS(4378), 1, anon_sym_COLON, - ACTIONS(4811), 1, + ACTIONS(4380), 1, anon_sym_LPAREN, - ACTIONS(4825), 1, + ACTIONS(4382), 1, anon_sym_cl, - ACTIONS(5065), 1, + ACTIONS(6273), 1, sym_self_referential_reader_macro, - STATE(2497), 1, + STATE(1136), 1, sym_sym_lit, - STATE(2625), 1, + STATE(1138), 1, sym__bare_set_lit, - STATE(2834), 1, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(98), 2, + ACTIONS(138), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(123), 2, + ACTIONS(154), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(127), 2, + ACTIONS(158), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(129), 2, + ACTIONS(160), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(6269), 2, sym__ws, sym_comment, - ACTIONS(5063), 3, + ACTIONS(6271), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, + STATE(697), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(1137), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2564), 19, + STATE(1196), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -76252,7 +75724,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [39287] = 35, + [39152] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -76261,78 +75733,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4747), 1, + ACTIONS(124), 1, anon_sym_POUND, - ACTIONS(4751), 1, + ACTIONS(128), 1, aux_sym_num_lit_token1, - ACTIONS(4753), 1, - anon_sym_COLON, - ACTIONS(4755), 1, + ACTIONS(132), 1, anon_sym_COLON_COLON, - ACTIONS(4757), 1, + ACTIONS(134), 1, anon_sym_DQUOTE, - ACTIONS(4759), 1, + ACTIONS(136), 1, aux_sym_sym_lit_token1, - ACTIONS(4761), 1, - anon_sym_LPAREN, - ACTIONS(4765), 1, + ACTIONS(140), 1, anon_sym_POUND_QMARK, - ACTIONS(4767), 1, + ACTIONS(142), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4769), 1, + ACTIONS(144), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4771), 1, + ACTIONS(146), 1, anon_sym_SQUOTE, - ACTIONS(4773), 1, + ACTIONS(148), 1, anon_sym_BQUOTE, - ACTIONS(4775), 1, + ACTIONS(150), 1, anon_sym_COMMA_AT, - ACTIONS(4777), 1, + ACTIONS(152), 1, anon_sym_COMMA, - ACTIONS(4779), 1, + ACTIONS(4378), 1, + anon_sym_COLON, + ACTIONS(4380), 1, + anon_sym_LPAREN, + ACTIONS(4382), 1, anon_sym_cl, - ACTIONS(6295), 1, + ACTIONS(6279), 1, sym_self_referential_reader_macro, - STATE(1489), 1, + STATE(1136), 1, sym_sym_lit, - STATE(1557), 1, + STATE(1138), 1, sym__bare_set_lit, - STATE(2841), 1, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(4763), 2, + ACTIONS(138), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4781), 2, + ACTIONS(154), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4785), 2, + ACTIONS(158), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4787), 2, + ACTIONS(160), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6291), 2, + ACTIONS(6275), 2, sym__ws, sym_comment, - ACTIONS(6293), 3, + ACTIONS(6277), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(721), 3, + STATE(699), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1612), 3, + STATE(1137), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1538), 19, + STATE(1197), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -76352,7 +75824,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [39422] = 35, + [39287] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -76361,78 +75833,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6211), 1, + ACTIONS(124), 1, anon_sym_POUND, - ACTIONS(6215), 1, + ACTIONS(128), 1, aux_sym_num_lit_token1, - ACTIONS(6217), 1, - anon_sym_COLON, - ACTIONS(6219), 1, + ACTIONS(132), 1, anon_sym_COLON_COLON, - ACTIONS(6221), 1, + ACTIONS(134), 1, anon_sym_DQUOTE, - ACTIONS(6223), 1, + ACTIONS(136), 1, aux_sym_sym_lit_token1, - ACTIONS(6225), 1, - anon_sym_LPAREN, - ACTIONS(6229), 1, + ACTIONS(140), 1, anon_sym_POUND_QMARK, - ACTIONS(6231), 1, + ACTIONS(142), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(6233), 1, + ACTIONS(144), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6235), 1, + ACTIONS(146), 1, anon_sym_SQUOTE, - ACTIONS(6237), 1, + ACTIONS(148), 1, anon_sym_BQUOTE, - ACTIONS(6239), 1, + ACTIONS(150), 1, anon_sym_COMMA_AT, - ACTIONS(6241), 1, + ACTIONS(152), 1, anon_sym_COMMA, - ACTIONS(6243), 1, + ACTIONS(4378), 1, + anon_sym_COLON, + ACTIONS(4380), 1, + anon_sym_LPAREN, + ACTIONS(4382), 1, anon_sym_cl, - ACTIONS(6301), 1, + ACTIONS(6283), 1, sym_self_referential_reader_macro, - STATE(1675), 1, + STATE(1136), 1, sym_sym_lit, - STATE(1677), 1, + STATE(1138), 1, sym__bare_set_lit, - STATE(2833), 1, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(6227), 2, + ACTIONS(138), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(6245), 2, + ACTIONS(154), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(6249), 2, + ACTIONS(158), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6251), 2, + ACTIONS(160), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6297), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(6299), 3, + ACTIONS(6281), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(709), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1676), 3, + STATE(1137), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1698), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1202), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -76452,7 +75924,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [39557] = 35, + [39422] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -76461,78 +75933,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4747), 1, + ACTIONS(124), 1, anon_sym_POUND, - ACTIONS(4751), 1, + ACTIONS(128), 1, aux_sym_num_lit_token1, - ACTIONS(4753), 1, - anon_sym_COLON, - ACTIONS(4755), 1, + ACTIONS(132), 1, anon_sym_COLON_COLON, - ACTIONS(4757), 1, + ACTIONS(134), 1, anon_sym_DQUOTE, - ACTIONS(4759), 1, + ACTIONS(136), 1, aux_sym_sym_lit_token1, - ACTIONS(4761), 1, - anon_sym_LPAREN, - ACTIONS(4765), 1, + ACTIONS(140), 1, anon_sym_POUND_QMARK, - ACTIONS(4767), 1, + ACTIONS(142), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4769), 1, + ACTIONS(144), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4771), 1, + ACTIONS(146), 1, anon_sym_SQUOTE, - ACTIONS(4773), 1, + ACTIONS(148), 1, anon_sym_BQUOTE, - ACTIONS(4775), 1, + ACTIONS(150), 1, anon_sym_COMMA_AT, - ACTIONS(4777), 1, + ACTIONS(152), 1, anon_sym_COMMA, - ACTIONS(4779), 1, + ACTIONS(4378), 1, + anon_sym_COLON, + ACTIONS(4380), 1, + anon_sym_LPAREN, + ACTIONS(4382), 1, anon_sym_cl, - ACTIONS(6307), 1, + ACTIONS(6287), 1, sym_self_referential_reader_macro, - STATE(1489), 1, + STATE(1136), 1, sym_sym_lit, - STATE(1557), 1, + STATE(1138), 1, sym__bare_set_lit, - STATE(2841), 1, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(4763), 2, + ACTIONS(138), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4781), 2, + ACTIONS(154), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4785), 2, + ACTIONS(158), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4787), 2, + ACTIONS(160), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6303), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(6305), 3, + ACTIONS(6285), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(725), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1612), 3, + STATE(1137), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1539), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1204), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -76552,7 +76024,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [39692] = 35, + [39557] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -76561,78 +76033,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6211), 1, + ACTIONS(124), 1, anon_sym_POUND, - ACTIONS(6215), 1, + ACTIONS(128), 1, aux_sym_num_lit_token1, - ACTIONS(6217), 1, - anon_sym_COLON, - ACTIONS(6219), 1, + ACTIONS(132), 1, anon_sym_COLON_COLON, - ACTIONS(6221), 1, + ACTIONS(134), 1, anon_sym_DQUOTE, - ACTIONS(6223), 1, + ACTIONS(136), 1, aux_sym_sym_lit_token1, - ACTIONS(6225), 1, - anon_sym_LPAREN, - ACTIONS(6229), 1, + ACTIONS(140), 1, anon_sym_POUND_QMARK, - ACTIONS(6231), 1, + ACTIONS(142), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(6233), 1, + ACTIONS(144), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6235), 1, + ACTIONS(146), 1, anon_sym_SQUOTE, - ACTIONS(6237), 1, + ACTIONS(148), 1, anon_sym_BQUOTE, - ACTIONS(6239), 1, + ACTIONS(150), 1, anon_sym_COMMA_AT, - ACTIONS(6241), 1, + ACTIONS(152), 1, anon_sym_COMMA, - ACTIONS(6243), 1, + ACTIONS(4378), 1, + anon_sym_COLON, + ACTIONS(4380), 1, + anon_sym_LPAREN, + ACTIONS(4382), 1, anon_sym_cl, - ACTIONS(6313), 1, + ACTIONS(6293), 1, sym_self_referential_reader_macro, - STATE(1675), 1, + STATE(1136), 1, sym_sym_lit, - STATE(1677), 1, + STATE(1138), 1, sym__bare_set_lit, - STATE(2833), 1, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(6227), 2, + ACTIONS(138), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(6245), 2, + ACTIONS(154), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(6249), 2, + ACTIONS(158), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6251), 2, + ACTIONS(160), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6309), 2, + ACTIONS(6289), 2, sym__ws, sym_comment, - ACTIONS(6311), 3, + ACTIONS(6291), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(710), 3, + STATE(701), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1676), 3, + STATE(1137), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1700), 19, + STATE(1205), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -76652,7 +76124,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [39827] = 35, + [39692] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -76661,78 +76133,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6211), 1, + ACTIONS(124), 1, anon_sym_POUND, - ACTIONS(6215), 1, + ACTIONS(128), 1, aux_sym_num_lit_token1, - ACTIONS(6217), 1, - anon_sym_COLON, - ACTIONS(6219), 1, + ACTIONS(132), 1, anon_sym_COLON_COLON, - ACTIONS(6221), 1, + ACTIONS(134), 1, anon_sym_DQUOTE, - ACTIONS(6223), 1, + ACTIONS(136), 1, aux_sym_sym_lit_token1, - ACTIONS(6225), 1, - anon_sym_LPAREN, - ACTIONS(6229), 1, + ACTIONS(140), 1, anon_sym_POUND_QMARK, - ACTIONS(6231), 1, + ACTIONS(142), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(6233), 1, + ACTIONS(144), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6235), 1, + ACTIONS(146), 1, anon_sym_SQUOTE, - ACTIONS(6237), 1, + ACTIONS(148), 1, anon_sym_BQUOTE, - ACTIONS(6239), 1, + ACTIONS(150), 1, anon_sym_COMMA_AT, - ACTIONS(6241), 1, + ACTIONS(152), 1, anon_sym_COMMA, - ACTIONS(6243), 1, + ACTIONS(4378), 1, + anon_sym_COLON, + ACTIONS(4380), 1, + anon_sym_LPAREN, + ACTIONS(4382), 1, anon_sym_cl, - ACTIONS(6317), 1, + ACTIONS(6297), 1, sym_self_referential_reader_macro, - STATE(1675), 1, + STATE(1136), 1, sym_sym_lit, - STATE(1677), 1, + STATE(1138), 1, sym__bare_set_lit, - STATE(2833), 1, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(4801), 2, - sym__ws, - sym_comment, - ACTIONS(6227), 2, + ACTIONS(138), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(6245), 2, + ACTIONS(154), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(6249), 2, + ACTIONS(158), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6251), 2, + ACTIONS(160), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6315), 3, + ACTIONS(4763), 2, + sym__ws, + sym_comment, + ACTIONS(6295), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1676), 3, + STATE(1137), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1710), 19, + STATE(1206), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -76752,7 +76224,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [39962] = 35, + [39827] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -76761,78 +76233,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4747), 1, + ACTIONS(124), 1, anon_sym_POUND, - ACTIONS(4751), 1, + ACTIONS(128), 1, aux_sym_num_lit_token1, - ACTIONS(4753), 1, - anon_sym_COLON, - ACTIONS(4755), 1, + ACTIONS(132), 1, anon_sym_COLON_COLON, - ACTIONS(4757), 1, + ACTIONS(134), 1, anon_sym_DQUOTE, - ACTIONS(4759), 1, + ACTIONS(136), 1, aux_sym_sym_lit_token1, - ACTIONS(4761), 1, - anon_sym_LPAREN, - ACTIONS(4765), 1, + ACTIONS(140), 1, anon_sym_POUND_QMARK, - ACTIONS(4767), 1, + ACTIONS(142), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4769), 1, + ACTIONS(144), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4771), 1, + ACTIONS(146), 1, anon_sym_SQUOTE, - ACTIONS(4773), 1, + ACTIONS(148), 1, anon_sym_BQUOTE, - ACTIONS(4775), 1, + ACTIONS(150), 1, anon_sym_COMMA_AT, - ACTIONS(4777), 1, + ACTIONS(152), 1, anon_sym_COMMA, - ACTIONS(4779), 1, + ACTIONS(4378), 1, + anon_sym_COLON, + ACTIONS(4380), 1, + anon_sym_LPAREN, + ACTIONS(4382), 1, anon_sym_cl, - ACTIONS(6321), 1, + ACTIONS(6303), 1, sym_self_referential_reader_macro, - STATE(1489), 1, + STATE(1136), 1, sym_sym_lit, - STATE(1557), 1, + STATE(1138), 1, sym__bare_set_lit, - STATE(2841), 1, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(4763), 2, + ACTIONS(138), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4781), 2, + ACTIONS(154), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4785), 2, + ACTIONS(158), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4787), 2, + ACTIONS(160), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(6299), 2, sym__ws, sym_comment, - ACTIONS(6319), 3, + ACTIONS(6301), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1612), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(702), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1545), 19, + STATE(1137), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1207), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -76852,7 +76324,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [40097] = 35, + [39962] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -76861,78 +76333,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4747), 1, + ACTIONS(124), 1, anon_sym_POUND, - ACTIONS(4751), 1, + ACTIONS(128), 1, aux_sym_num_lit_token1, - ACTIONS(4753), 1, - anon_sym_COLON, - ACTIONS(4755), 1, + ACTIONS(132), 1, anon_sym_COLON_COLON, - ACTIONS(4757), 1, + ACTIONS(134), 1, anon_sym_DQUOTE, - ACTIONS(4759), 1, + ACTIONS(136), 1, aux_sym_sym_lit_token1, - ACTIONS(4761), 1, - anon_sym_LPAREN, - ACTIONS(4765), 1, + ACTIONS(140), 1, anon_sym_POUND_QMARK, - ACTIONS(4767), 1, + ACTIONS(142), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4769), 1, + ACTIONS(144), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4771), 1, + ACTIONS(146), 1, anon_sym_SQUOTE, - ACTIONS(4773), 1, + ACTIONS(148), 1, anon_sym_BQUOTE, - ACTIONS(4775), 1, + ACTIONS(150), 1, anon_sym_COMMA_AT, - ACTIONS(4777), 1, + ACTIONS(152), 1, anon_sym_COMMA, - ACTIONS(4779), 1, + ACTIONS(4378), 1, + anon_sym_COLON, + ACTIONS(4380), 1, + anon_sym_LPAREN, + ACTIONS(4382), 1, anon_sym_cl, - ACTIONS(6327), 1, + ACTIONS(6307), 1, sym_self_referential_reader_macro, - STATE(1489), 1, + STATE(1136), 1, sym_sym_lit, - STATE(1557), 1, + STATE(1138), 1, sym__bare_set_lit, - STATE(2841), 1, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(4763), 2, + ACTIONS(138), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4781), 2, + ACTIONS(154), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4785), 2, + ACTIONS(158), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4787), 2, + ACTIONS(160), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6323), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(6325), 3, + ACTIONS(6305), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(733), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1612), 3, + STATE(1137), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1546), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1213), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -76952,87 +76424,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [40232] = 35, + [40097] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(124), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(128), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(132), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(134), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(136), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(140), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(142), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(144), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(146), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(148), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(150), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(152), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4378), 1, + anon_sym_COLON, + ACTIONS(4380), 1, + anon_sym_LPAREN, + ACTIONS(4382), 1, anon_sym_cl, - ACTIONS(6331), 1, + ACTIONS(6311), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(1136), 1, sym_sym_lit, - STATE(2808), 1, + STATE(1138), 1, + sym__bare_set_lit, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(138), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(154), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(158), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(160), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(6329), 3, + ACTIONS(6309), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1877), 3, + STATE(1137), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1836), 19, + STATE(1214), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -77052,87 +76524,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [40367] = 35, + [40232] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, - anon_sym_POUND, - ACTIONS(15), 1, - aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4769), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(4997), 1, + anon_sym_COLON, + ACTIONS(4999), 1, + anon_sym_COLON_COLON, + ACTIONS(5001), 1, + anon_sym_DQUOTE, + ACTIONS(5003), 1, + aux_sym_sym_lit_token1, + ACTIONS(5019), 1, + anon_sym_cl, + ACTIONS(5067), 1, + sym_self_referential_reader_macro, + ACTIONS(5759), 1, + anon_sym_POUND, + ACTIONS(5761), 1, + aux_sym_num_lit_token1, + ACTIONS(5765), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(5767), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(5769), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(5771), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(5773), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(5775), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(5777), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(6335), 1, - sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, - sym_sym_lit, - STATE(2808), 1, + STATE(2814), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + STATE(2986), 1, + sym__bare_set_lit, + STATE(3094), 1, + sym_sym_lit, + ACTIONS(5021), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(5027), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(5763), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5779), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6313), 2, sym__ws, sym_comment, - ACTIONS(6333), 3, + ACTIONS(5039), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1877), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(709), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1767), 19, + STATE(2985), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2976), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -77152,7 +76624,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [40502] = 35, + [40367] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -77161,78 +76633,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6211), 1, - anon_sym_POUND, - ACTIONS(6215), 1, - aux_sym_num_lit_token1, - ACTIONS(6217), 1, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4997), 1, anon_sym_COLON, - ACTIONS(6219), 1, + ACTIONS(4999), 1, anon_sym_COLON_COLON, - ACTIONS(6221), 1, + ACTIONS(5001), 1, anon_sym_DQUOTE, - ACTIONS(6223), 1, + ACTIONS(5003), 1, aux_sym_sym_lit_token1, - ACTIONS(6225), 1, - anon_sym_LPAREN, - ACTIONS(6229), 1, + ACTIONS(5019), 1, + anon_sym_cl, + ACTIONS(5075), 1, + sym_self_referential_reader_macro, + ACTIONS(5759), 1, + anon_sym_POUND, + ACTIONS(5761), 1, + aux_sym_num_lit_token1, + ACTIONS(5765), 1, anon_sym_POUND_QMARK, - ACTIONS(6231), 1, + ACTIONS(5767), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(6233), 1, + ACTIONS(5769), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6235), 1, + ACTIONS(5771), 1, anon_sym_SQUOTE, - ACTIONS(6237), 1, + ACTIONS(5773), 1, anon_sym_BQUOTE, - ACTIONS(6239), 1, + ACTIONS(5775), 1, anon_sym_COMMA_AT, - ACTIONS(6241), 1, + ACTIONS(5777), 1, anon_sym_COMMA, - ACTIONS(6243), 1, - anon_sym_cl, - ACTIONS(6339), 1, - sym_self_referential_reader_macro, - STATE(1675), 1, - sym_sym_lit, - STATE(1677), 1, - sym__bare_set_lit, - STATE(2833), 1, + STATE(2814), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(4801), 2, - sym__ws, - sym_comment, - ACTIONS(6227), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(6245), 2, + STATE(2986), 1, + sym__bare_set_lit, + STATE(3094), 1, + sym_sym_lit, + ACTIONS(5021), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(6249), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(6251), 2, + ACTIONS(5027), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6337), 3, + ACTIONS(5763), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5779), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6315), 2, + sym__ws, + sym_comment, + ACTIONS(5073), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1676), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(710), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1722), 19, + STATE(2985), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2907), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -77252,7 +76724,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [40637] = 35, + [40502] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -77261,78 +76733,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6211), 1, - anon_sym_POUND, - ACTIONS(6215), 1, - aux_sym_num_lit_token1, - ACTIONS(6217), 1, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4997), 1, anon_sym_COLON, - ACTIONS(6219), 1, + ACTIONS(4999), 1, anon_sym_COLON_COLON, - ACTIONS(6221), 1, + ACTIONS(5001), 1, anon_sym_DQUOTE, - ACTIONS(6223), 1, + ACTIONS(5003), 1, aux_sym_sym_lit_token1, - ACTIONS(6225), 1, - anon_sym_LPAREN, - ACTIONS(6229), 1, + ACTIONS(5019), 1, + anon_sym_cl, + ACTIONS(5081), 1, + sym_self_referential_reader_macro, + ACTIONS(5759), 1, + anon_sym_POUND, + ACTIONS(5761), 1, + aux_sym_num_lit_token1, + ACTIONS(5765), 1, anon_sym_POUND_QMARK, - ACTIONS(6231), 1, + ACTIONS(5767), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(6233), 1, + ACTIONS(5769), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6235), 1, + ACTIONS(5771), 1, anon_sym_SQUOTE, - ACTIONS(6237), 1, + ACTIONS(5773), 1, anon_sym_BQUOTE, - ACTIONS(6239), 1, + ACTIONS(5775), 1, anon_sym_COMMA_AT, - ACTIONS(6241), 1, + ACTIONS(5777), 1, anon_sym_COMMA, - ACTIONS(6243), 1, - anon_sym_cl, - ACTIONS(6343), 1, - sym_self_referential_reader_macro, - STATE(1675), 1, - sym_sym_lit, - STATE(1677), 1, - sym__bare_set_lit, - STATE(2833), 1, + STATE(2814), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(4801), 2, - sym__ws, - sym_comment, - ACTIONS(6227), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(6245), 2, + STATE(2986), 1, + sym__bare_set_lit, + STATE(3094), 1, + sym_sym_lit, + ACTIONS(5021), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(6249), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(6251), 2, + ACTIONS(5027), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6341), 3, + ACTIONS(5763), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5779), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6317), 2, + sym__ws, + sym_comment, + ACTIONS(5079), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1676), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(711), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1723), 19, + STATE(2985), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2964), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -77352,87 +76824,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [40772] = 35, + [40637] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4991), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(4995), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(4997), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(4999), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(5001), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(5003), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(5005), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(5009), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(5011), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(5013), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(5015), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(5017), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(5019), 1, + anon_sym_cl, + ACTIONS(5395), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(5397), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(6347), 1, + ACTIONS(6323), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, - sym_sym_lit, - STATE(2808), 1, + STATE(2818), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(31), 2, + STATE(2986), 1, + sym__bare_set_lit, + STATE(3094), 1, + sym_sym_lit, + ACTIONS(5007), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(5021), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(5025), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(5027), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(6319), 2, sym__ws, sym_comment, - ACTIONS(6345), 3, + ACTIONS(6321), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1877), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(712), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1833), 19, + STATE(2985), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(3070), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -77452,7 +76924,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [40907] = 35, + [40772] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -77461,78 +76933,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6211), 1, + ACTIONS(4991), 1, anon_sym_POUND, - ACTIONS(6215), 1, + ACTIONS(4995), 1, aux_sym_num_lit_token1, - ACTIONS(6217), 1, + ACTIONS(4997), 1, anon_sym_COLON, - ACTIONS(6219), 1, + ACTIONS(4999), 1, anon_sym_COLON_COLON, - ACTIONS(6221), 1, + ACTIONS(5001), 1, anon_sym_DQUOTE, - ACTIONS(6223), 1, + ACTIONS(5003), 1, aux_sym_sym_lit_token1, - ACTIONS(6225), 1, + ACTIONS(5005), 1, anon_sym_LPAREN, - ACTIONS(6229), 1, + ACTIONS(5009), 1, anon_sym_POUND_QMARK, - ACTIONS(6231), 1, + ACTIONS(5011), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(6233), 1, + ACTIONS(5013), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6235), 1, + ACTIONS(5015), 1, anon_sym_SQUOTE, - ACTIONS(6237), 1, + ACTIONS(5017), 1, anon_sym_BQUOTE, - ACTIONS(6239), 1, + ACTIONS(5019), 1, + anon_sym_cl, + ACTIONS(5395), 1, anon_sym_COMMA_AT, - ACTIONS(6241), 1, + ACTIONS(5397), 1, anon_sym_COMMA, - ACTIONS(6243), 1, - anon_sym_cl, - ACTIONS(6351), 1, + ACTIONS(6329), 1, sym_self_referential_reader_macro, - STATE(1675), 1, - sym_sym_lit, - STATE(1677), 1, - sym__bare_set_lit, - STATE(2833), 1, + STATE(2818), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(4801), 2, - sym__ws, - sym_comment, - ACTIONS(6227), 2, + STATE(2986), 1, + sym__bare_set_lit, + STATE(3094), 1, + sym_sym_lit, + ACTIONS(5007), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(6245), 2, + ACTIONS(5021), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(6249), 2, + ACTIONS(5025), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6251), 2, + ACTIONS(5027), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6349), 3, + ACTIONS(6325), 2, + sym__ws, + sym_comment, + ACTIONS(6327), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1676), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(713), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1724), 19, + STATE(2985), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(3090), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -77552,7 +77024,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [41042] = 35, + [40907] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -77561,78 +77033,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6211), 1, + ACTIONS(65), 1, anon_sym_POUND, - ACTIONS(6215), 1, + ACTIONS(69), 1, aux_sym_num_lit_token1, - ACTIONS(6217), 1, - anon_sym_COLON, - ACTIONS(6219), 1, + ACTIONS(74), 1, anon_sym_COLON_COLON, - ACTIONS(6221), 1, + ACTIONS(76), 1, anon_sym_DQUOTE, - ACTIONS(6223), 1, + ACTIONS(78), 1, aux_sym_sym_lit_token1, - ACTIONS(6225), 1, - anon_sym_LPAREN, - ACTIONS(6229), 1, + ACTIONS(93), 1, anon_sym_POUND_QMARK, - ACTIONS(6231), 1, + ACTIONS(95), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(6233), 1, + ACTIONS(97), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6235), 1, + ACTIONS(99), 1, anon_sym_SQUOTE, - ACTIONS(6237), 1, + ACTIONS(101), 1, anon_sym_BQUOTE, - ACTIONS(6239), 1, + ACTIONS(103), 1, anon_sym_COMMA_AT, - ACTIONS(6241), 1, + ACTIONS(105), 1, anon_sym_COMMA, - ACTIONS(6243), 1, + ACTIONS(4749), 1, + anon_sym_COLON, + ACTIONS(4751), 1, + anon_sym_LPAREN, + ACTIONS(4753), 1, anon_sym_cl, - ACTIONS(6355), 1, + ACTIONS(6333), 1, sym_self_referential_reader_macro, - STATE(1675), 1, + STATE(1101), 1, sym_sym_lit, - STATE(1677), 1, + STATE(1117), 1, sym__bare_set_lit, - STATE(2833), 1, + STATE(2812), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(4801), 2, - sym__ws, - sym_comment, - ACTIONS(6227), 2, + ACTIONS(91), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(6245), 2, + ACTIONS(114), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(6249), 2, + ACTIONS(118), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6251), 2, + ACTIONS(120), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6353), 3, + ACTIONS(4763), 2, + sym__ws, + sym_comment, + ACTIONS(6331), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1676), 3, + STATE(1109), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1725), 19, + STATE(1024), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -77652,7 +77124,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [41177] = 35, + [41042] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -77661,78 +77133,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6211), 1, - anon_sym_POUND, - ACTIONS(6215), 1, - aux_sym_num_lit_token1, - ACTIONS(6217), 1, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4997), 1, anon_sym_COLON, - ACTIONS(6219), 1, + ACTIONS(4999), 1, anon_sym_COLON_COLON, - ACTIONS(6221), 1, + ACTIONS(5001), 1, anon_sym_DQUOTE, - ACTIONS(6223), 1, + ACTIONS(5003), 1, aux_sym_sym_lit_token1, - ACTIONS(6225), 1, - anon_sym_LPAREN, - ACTIONS(6229), 1, + ACTIONS(5019), 1, + anon_sym_cl, + ACTIONS(5101), 1, + sym_self_referential_reader_macro, + ACTIONS(5759), 1, + anon_sym_POUND, + ACTIONS(5761), 1, + aux_sym_num_lit_token1, + ACTIONS(5765), 1, anon_sym_POUND_QMARK, - ACTIONS(6231), 1, + ACTIONS(5767), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(6233), 1, + ACTIONS(5769), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6235), 1, + ACTIONS(5771), 1, anon_sym_SQUOTE, - ACTIONS(6237), 1, + ACTIONS(5773), 1, anon_sym_BQUOTE, - ACTIONS(6239), 1, + ACTIONS(5775), 1, anon_sym_COMMA_AT, - ACTIONS(6241), 1, + ACTIONS(5777), 1, anon_sym_COMMA, - ACTIONS(6243), 1, - anon_sym_cl, - ACTIONS(6359), 1, - sym_self_referential_reader_macro, - STATE(1675), 1, - sym_sym_lit, - STATE(1677), 1, - sym__bare_set_lit, - STATE(2833), 1, + STATE(2814), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(4801), 2, + STATE(2986), 1, + sym__bare_set_lit, + STATE(3094), 1, + sym_sym_lit, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(6227), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(6245), 2, + ACTIONS(5021), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(6249), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(6251), 2, + ACTIONS(5027), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6357), 3, + ACTIONS(5763), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5779), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5099), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1676), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1726), 19, + STATE(2985), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2922), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -77752,7 +77224,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [41312] = 35, + [41177] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -77761,78 +77233,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6211), 1, - anon_sym_POUND, - ACTIONS(6215), 1, - aux_sym_num_lit_token1, - ACTIONS(6217), 1, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4997), 1, anon_sym_COLON, - ACTIONS(6219), 1, + ACTIONS(4999), 1, anon_sym_COLON_COLON, - ACTIONS(6221), 1, + ACTIONS(5001), 1, anon_sym_DQUOTE, - ACTIONS(6223), 1, + ACTIONS(5003), 1, aux_sym_sym_lit_token1, - ACTIONS(6225), 1, - anon_sym_LPAREN, - ACTIONS(6229), 1, + ACTIONS(5019), 1, + anon_sym_cl, + ACTIONS(5105), 1, + sym_self_referential_reader_macro, + ACTIONS(5759), 1, + anon_sym_POUND, + ACTIONS(5761), 1, + aux_sym_num_lit_token1, + ACTIONS(5765), 1, anon_sym_POUND_QMARK, - ACTIONS(6231), 1, + ACTIONS(5767), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(6233), 1, + ACTIONS(5769), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6235), 1, + ACTIONS(5771), 1, anon_sym_SQUOTE, - ACTIONS(6237), 1, + ACTIONS(5773), 1, anon_sym_BQUOTE, - ACTIONS(6239), 1, + ACTIONS(5775), 1, anon_sym_COMMA_AT, - ACTIONS(6241), 1, + ACTIONS(5777), 1, anon_sym_COMMA, - ACTIONS(6243), 1, - anon_sym_cl, - ACTIONS(6365), 1, - sym_self_referential_reader_macro, - STATE(1675), 1, - sym_sym_lit, - STATE(1677), 1, - sym__bare_set_lit, - STATE(2833), 1, + STATE(2814), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(6227), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(6245), 2, + STATE(2986), 1, + sym__bare_set_lit, + STATE(3094), 1, + sym_sym_lit, + ACTIONS(4763), 2, + sym__ws, + sym_comment, + ACTIONS(5021), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(6249), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(6251), 2, + ACTIONS(5027), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6361), 2, - sym__ws, - sym_comment, - ACTIONS(6363), 3, + ACTIONS(5763), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5779), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5103), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(718), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1676), 3, + STATE(2985), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1728), 19, + STATE(2940), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -77852,7 +77324,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [41447] = 35, + [41312] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -77861,78 +77333,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6211), 1, - anon_sym_POUND, - ACTIONS(6215), 1, - aux_sym_num_lit_token1, - ACTIONS(6217), 1, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4997), 1, anon_sym_COLON, - ACTIONS(6219), 1, + ACTIONS(4999), 1, anon_sym_COLON_COLON, - ACTIONS(6221), 1, + ACTIONS(5001), 1, anon_sym_DQUOTE, - ACTIONS(6223), 1, + ACTIONS(5003), 1, aux_sym_sym_lit_token1, - ACTIONS(6225), 1, - anon_sym_LPAREN, - ACTIONS(6229), 1, + ACTIONS(5019), 1, + anon_sym_cl, + ACTIONS(5109), 1, + sym_self_referential_reader_macro, + ACTIONS(5759), 1, + anon_sym_POUND, + ACTIONS(5761), 1, + aux_sym_num_lit_token1, + ACTIONS(5765), 1, anon_sym_POUND_QMARK, - ACTIONS(6231), 1, + ACTIONS(5767), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(6233), 1, + ACTIONS(5769), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6235), 1, + ACTIONS(5771), 1, anon_sym_SQUOTE, - ACTIONS(6237), 1, + ACTIONS(5773), 1, anon_sym_BQUOTE, - ACTIONS(6239), 1, + ACTIONS(5775), 1, anon_sym_COMMA_AT, - ACTIONS(6241), 1, + ACTIONS(5777), 1, anon_sym_COMMA, - ACTIONS(6243), 1, - anon_sym_cl, - ACTIONS(6371), 1, - sym_self_referential_reader_macro, - STATE(1675), 1, - sym_sym_lit, - STATE(1677), 1, - sym__bare_set_lit, - STATE(2833), 1, + STATE(2814), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(6227), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(6245), 2, + STATE(2986), 1, + sym__bare_set_lit, + STATE(3094), 1, + sym_sym_lit, + ACTIONS(4763), 2, + sym__ws, + sym_comment, + ACTIONS(5021), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(6249), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(6251), 2, + ACTIONS(5027), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6367), 2, - sym__ws, - sym_comment, - ACTIONS(6369), 3, + ACTIONS(5763), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5779), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5107), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(724), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1676), 3, + STATE(2985), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1733), 19, + STATE(2963), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -77952,7 +77424,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [41582] = 35, + [41447] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -77961,78 +77433,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6211), 1, + ACTIONS(4991), 1, anon_sym_POUND, - ACTIONS(6215), 1, + ACTIONS(4995), 1, aux_sym_num_lit_token1, - ACTIONS(6217), 1, + ACTIONS(4997), 1, anon_sym_COLON, - ACTIONS(6219), 1, + ACTIONS(4999), 1, anon_sym_COLON_COLON, - ACTIONS(6221), 1, + ACTIONS(5001), 1, anon_sym_DQUOTE, - ACTIONS(6223), 1, + ACTIONS(5003), 1, aux_sym_sym_lit_token1, - ACTIONS(6225), 1, + ACTIONS(5005), 1, anon_sym_LPAREN, - ACTIONS(6229), 1, + ACTIONS(5009), 1, anon_sym_POUND_QMARK, - ACTIONS(6231), 1, + ACTIONS(5011), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(6233), 1, + ACTIONS(5013), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6235), 1, + ACTIONS(5015), 1, anon_sym_SQUOTE, - ACTIONS(6237), 1, + ACTIONS(5017), 1, anon_sym_BQUOTE, - ACTIONS(6239), 1, + ACTIONS(5019), 1, + anon_sym_cl, + ACTIONS(5395), 1, anon_sym_COMMA_AT, - ACTIONS(6241), 1, + ACTIONS(5397), 1, anon_sym_COMMA, - ACTIONS(6243), 1, - anon_sym_cl, - ACTIONS(6377), 1, + ACTIONS(6337), 1, sym_self_referential_reader_macro, - STATE(1675), 1, - sym_sym_lit, - STATE(1677), 1, - sym__bare_set_lit, - STATE(2833), 1, + STATE(2818), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(6227), 2, + STATE(2986), 1, + sym__bare_set_lit, + STATE(3094), 1, + sym_sym_lit, + ACTIONS(4763), 2, + sym__ws, + sym_comment, + ACTIONS(5007), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(6245), 2, + ACTIONS(5021), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(6249), 2, + ACTIONS(5025), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6251), 2, + ACTIONS(5027), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6373), 2, - sym__ws, - sym_comment, - ACTIONS(6375), 3, + ACTIONS(6335), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(730), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1676), 3, + STATE(2985), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1735), 19, + STATE(3075), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -78052,7 +77524,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [41717] = 35, + [41582] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -78061,78 +77533,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6211), 1, + ACTIONS(4991), 1, anon_sym_POUND, - ACTIONS(6215), 1, + ACTIONS(4995), 1, aux_sym_num_lit_token1, - ACTIONS(6217), 1, + ACTIONS(4997), 1, anon_sym_COLON, - ACTIONS(6219), 1, + ACTIONS(4999), 1, anon_sym_COLON_COLON, - ACTIONS(6221), 1, + ACTIONS(5001), 1, anon_sym_DQUOTE, - ACTIONS(6223), 1, + ACTIONS(5003), 1, aux_sym_sym_lit_token1, - ACTIONS(6225), 1, + ACTIONS(5005), 1, anon_sym_LPAREN, - ACTIONS(6229), 1, + ACTIONS(5009), 1, anon_sym_POUND_QMARK, - ACTIONS(6231), 1, + ACTIONS(5011), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(6233), 1, + ACTIONS(5013), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6235), 1, + ACTIONS(5015), 1, anon_sym_SQUOTE, - ACTIONS(6237), 1, + ACTIONS(5017), 1, anon_sym_BQUOTE, - ACTIONS(6239), 1, + ACTIONS(5019), 1, + anon_sym_cl, + ACTIONS(5395), 1, anon_sym_COMMA_AT, - ACTIONS(6241), 1, + ACTIONS(5397), 1, anon_sym_COMMA, - ACTIONS(6243), 1, - anon_sym_cl, - ACTIONS(6383), 1, + ACTIONS(6341), 1, sym_self_referential_reader_macro, - STATE(1675), 1, - sym_sym_lit, - STATE(1677), 1, - sym__bare_set_lit, - STATE(2833), 1, + STATE(2818), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(6227), 2, + STATE(2986), 1, + sym__bare_set_lit, + STATE(3094), 1, + sym_sym_lit, + ACTIONS(4763), 2, + sym__ws, + sym_comment, + ACTIONS(5007), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(6245), 2, + ACTIONS(5021), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(6249), 2, + ACTIONS(5025), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6251), 2, + ACTIONS(5027), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6379), 2, - sym__ws, - sym_comment, - ACTIONS(6381), 3, + ACTIONS(6339), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(731), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1676), 3, + STATE(2985), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1737), 19, + STATE(3053), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -78152,7 +77624,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [41852] = 35, + [41717] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -78161,78 +77633,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(67), 1, - anon_sym_POUND, - ACTIONS(71), 1, - aux_sym_num_lit_token1, - ACTIONS(77), 1, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4997), 1, + anon_sym_COLON, + ACTIONS(4999), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(5001), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(5003), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(5019), 1, + anon_sym_cl, + ACTIONS(5123), 1, + sym_self_referential_reader_macro, + ACTIONS(5759), 1, + anon_sym_POUND, + ACTIONS(5761), 1, + aux_sym_num_lit_token1, + ACTIONS(5765), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(5767), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(104), 1, + ACTIONS(5769), 1, anon_sym_POUND_SQUOTE, - ACTIONS(106), 1, + ACTIONS(5771), 1, anon_sym_SQUOTE, - ACTIONS(108), 1, + ACTIONS(5773), 1, anon_sym_BQUOTE, - ACTIONS(110), 1, + ACTIONS(5775), 1, anon_sym_COMMA_AT, - ACTIONS(112), 1, + ACTIONS(5777), 1, anon_sym_COMMA, - ACTIONS(4809), 1, - anon_sym_COLON, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4825), 1, - anon_sym_cl, - ACTIONS(4839), 1, - sym_self_referential_reader_macro, - STATE(2497), 1, - sym_sym_lit, - STATE(2625), 1, - sym__bare_set_lit, - STATE(2834), 1, + STATE(2814), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(98), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(123), 2, + STATE(2986), 1, + sym__bare_set_lit, + STATE(3094), 1, + sym_sym_lit, + ACTIONS(5021), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(127), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(129), 2, + ACTIONS(5027), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6385), 2, + ACTIONS(5763), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5779), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6343), 2, sym__ws, sym_comment, - ACTIONS(4837), 3, + ACTIONS(5121), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(691), 3, + STATE(718), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(2985), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2571), 19, + STATE(2966), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -78252,7 +77724,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [41987] = 35, + [41852] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -78261,78 +77733,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4747), 1, - anon_sym_POUND, - ACTIONS(4751), 1, - aux_sym_num_lit_token1, - ACTIONS(4753), 1, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4997), 1, anon_sym_COLON, - ACTIONS(4755), 1, + ACTIONS(4999), 1, anon_sym_COLON_COLON, - ACTIONS(4757), 1, + ACTIONS(5001), 1, anon_sym_DQUOTE, - ACTIONS(4759), 1, + ACTIONS(5003), 1, aux_sym_sym_lit_token1, - ACTIONS(4761), 1, - anon_sym_LPAREN, - ACTIONS(4765), 1, + ACTIONS(5019), 1, + anon_sym_cl, + ACTIONS(5129), 1, + sym_self_referential_reader_macro, + ACTIONS(5759), 1, + anon_sym_POUND, + ACTIONS(5761), 1, + aux_sym_num_lit_token1, + ACTIONS(5765), 1, anon_sym_POUND_QMARK, - ACTIONS(4767), 1, + ACTIONS(5767), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4769), 1, + ACTIONS(5769), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4771), 1, + ACTIONS(5771), 1, anon_sym_SQUOTE, - ACTIONS(4773), 1, + ACTIONS(5773), 1, anon_sym_BQUOTE, - ACTIONS(4775), 1, + ACTIONS(5775), 1, anon_sym_COMMA_AT, - ACTIONS(4777), 1, + ACTIONS(5777), 1, anon_sym_COMMA, - ACTIONS(4779), 1, - anon_sym_cl, - ACTIONS(6389), 1, - sym_self_referential_reader_macro, - STATE(1489), 1, - sym_sym_lit, - STATE(1557), 1, - sym__bare_set_lit, - STATE(2841), 1, + STATE(2814), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(4763), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(4781), 2, + STATE(2986), 1, + sym__bare_set_lit, + STATE(3094), 1, + sym_sym_lit, + ACTIONS(5021), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4785), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(4787), 2, + ACTIONS(5027), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(5763), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5779), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6345), 2, sym__ws, sym_comment, - ACTIONS(6387), 3, + ACTIONS(5127), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1612), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(720), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1548), 19, + STATE(2985), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2970), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -78352,7 +77824,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [42122] = 35, + [41987] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -78361,78 +77833,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(67), 1, - anon_sym_POUND, - ACTIONS(71), 1, - aux_sym_num_lit_token1, - ACTIONS(77), 1, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4997), 1, + anon_sym_COLON, + ACTIONS(4999), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(5001), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(5003), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(5019), 1, + anon_sym_cl, + ACTIONS(5135), 1, + sym_self_referential_reader_macro, + ACTIONS(5759), 1, + anon_sym_POUND, + ACTIONS(5761), 1, + aux_sym_num_lit_token1, + ACTIONS(5765), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(5767), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(104), 1, + ACTIONS(5769), 1, anon_sym_POUND_SQUOTE, - ACTIONS(106), 1, + ACTIONS(5771), 1, anon_sym_SQUOTE, - ACTIONS(108), 1, + ACTIONS(5773), 1, anon_sym_BQUOTE, - ACTIONS(110), 1, + ACTIONS(5775), 1, anon_sym_COMMA_AT, - ACTIONS(112), 1, + ACTIONS(5777), 1, anon_sym_COMMA, - ACTIONS(4809), 1, - anon_sym_COLON, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4825), 1, - anon_sym_cl, - ACTIONS(4851), 1, - sym_self_referential_reader_macro, - STATE(2497), 1, - sym_sym_lit, - STATE(2625), 1, - sym__bare_set_lit, - STATE(2834), 1, + STATE(2814), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(98), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(123), 2, + STATE(2986), 1, + sym__bare_set_lit, + STATE(3094), 1, + sym_sym_lit, + ACTIONS(5021), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(127), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(129), 2, + ACTIONS(5027), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(5763), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5779), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6347), 2, sym__ws, sym_comment, - ACTIONS(4849), 3, + ACTIONS(5133), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, + STATE(721), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(2985), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2599), 19, + STATE(2971), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -78452,7 +77924,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [42257] = 35, + [42122] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -78461,78 +77933,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6211), 1, + ACTIONS(4991), 1, anon_sym_POUND, - ACTIONS(6215), 1, + ACTIONS(4995), 1, aux_sym_num_lit_token1, - ACTIONS(6217), 1, + ACTIONS(4997), 1, anon_sym_COLON, - ACTIONS(6219), 1, + ACTIONS(4999), 1, anon_sym_COLON_COLON, - ACTIONS(6221), 1, + ACTIONS(5001), 1, anon_sym_DQUOTE, - ACTIONS(6223), 1, + ACTIONS(5003), 1, aux_sym_sym_lit_token1, - ACTIONS(6225), 1, + ACTIONS(5005), 1, anon_sym_LPAREN, - ACTIONS(6229), 1, + ACTIONS(5009), 1, anon_sym_POUND_QMARK, - ACTIONS(6231), 1, + ACTIONS(5011), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(6233), 1, + ACTIONS(5013), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6235), 1, + ACTIONS(5015), 1, anon_sym_SQUOTE, - ACTIONS(6237), 1, + ACTIONS(5017), 1, anon_sym_BQUOTE, - ACTIONS(6239), 1, + ACTIONS(5019), 1, + anon_sym_cl, + ACTIONS(5395), 1, anon_sym_COMMA_AT, - ACTIONS(6241), 1, + ACTIONS(5397), 1, anon_sym_COMMA, - ACTIONS(6243), 1, - anon_sym_cl, - ACTIONS(6393), 1, + ACTIONS(6353), 1, sym_self_referential_reader_macro, - STATE(1675), 1, - sym_sym_lit, - STATE(1677), 1, - sym__bare_set_lit, - STATE(2833), 1, + STATE(2818), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(4801), 2, - sym__ws, - sym_comment, - ACTIONS(6227), 2, + STATE(2986), 1, + sym__bare_set_lit, + STATE(3094), 1, + sym_sym_lit, + ACTIONS(5007), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(6245), 2, + ACTIONS(5021), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(6249), 2, + ACTIONS(5025), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6251), 2, + ACTIONS(5027), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6391), 3, + ACTIONS(6349), 2, + sym__ws, + sym_comment, + ACTIONS(6351), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1676), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(722), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1730), 19, + STATE(2985), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(3102), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -78552,87 +78024,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [42392] = 35, + [42257] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, - anon_sym_POUND, - ACTIONS(15), 1, - aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4769), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(4997), 1, + anon_sym_COLON, + ACTIONS(4999), 1, + anon_sym_COLON_COLON, + ACTIONS(5001), 1, + anon_sym_DQUOTE, + ACTIONS(5003), 1, + aux_sym_sym_lit_token1, + ACTIONS(5019), 1, + anon_sym_cl, + ACTIONS(5145), 1, + sym_self_referential_reader_macro, + ACTIONS(5759), 1, + anon_sym_POUND, + ACTIONS(5761), 1, + aux_sym_num_lit_token1, + ACTIONS(5765), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(5767), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(5769), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(5771), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(5773), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(5775), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(5777), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(6399), 1, - sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, - sym_sym_lit, - STATE(2808), 1, + STATE(2814), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + STATE(2986), 1, + sym__bare_set_lit, + STATE(3094), 1, + sym_sym_lit, + ACTIONS(4763), 2, + sym__ws, + sym_comment, + ACTIONS(5021), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(5027), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6395), 2, - sym__ws, - sym_comment, - ACTIONS(6397), 3, + ACTIONS(5763), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5779), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5143), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(677), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1877), 3, + STATE(2985), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(533), 19, + STATE(2987), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -78652,87 +78124,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [42527] = 35, + [42392] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, - anon_sym_POUND, - ACTIONS(15), 1, - aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4769), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(4997), 1, + anon_sym_COLON, + ACTIONS(4999), 1, + anon_sym_COLON_COLON, + ACTIONS(5001), 1, + anon_sym_DQUOTE, + ACTIONS(5003), 1, + aux_sym_sym_lit_token1, + ACTIONS(5019), 1, + anon_sym_cl, + ACTIONS(5151), 1, + sym_self_referential_reader_macro, + ACTIONS(5759), 1, + anon_sym_POUND, + ACTIONS(5761), 1, + aux_sym_num_lit_token1, + ACTIONS(5765), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(5767), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(5769), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(5771), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(5773), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(5775), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(5777), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(6405), 1, - sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, - sym_sym_lit, - STATE(2808), 1, + STATE(2814), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + STATE(2986), 1, + sym__bare_set_lit, + STATE(3094), 1, + sym_sym_lit, + ACTIONS(5021), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(5027), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6401), 2, + ACTIONS(5763), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5779), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6355), 2, sym__ws, sym_comment, - ACTIONS(6403), 3, + ACTIONS(5149), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(682), 3, + STATE(725), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1877), 3, + STATE(2985), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(537), 19, + STATE(2989), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -78752,7 +78224,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [42662] = 35, + [42527] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -78761,78 +78233,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4747), 1, - anon_sym_POUND, - ACTIONS(4751), 1, - aux_sym_num_lit_token1, - ACTIONS(4753), 1, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4997), 1, anon_sym_COLON, - ACTIONS(4755), 1, + ACTIONS(4999), 1, anon_sym_COLON_COLON, - ACTIONS(4757), 1, + ACTIONS(5001), 1, anon_sym_DQUOTE, - ACTIONS(4759), 1, + ACTIONS(5003), 1, aux_sym_sym_lit_token1, - ACTIONS(4761), 1, - anon_sym_LPAREN, - ACTIONS(4765), 1, + ACTIONS(5019), 1, + anon_sym_cl, + ACTIONS(5155), 1, + sym_self_referential_reader_macro, + ACTIONS(5759), 1, + anon_sym_POUND, + ACTIONS(5761), 1, + aux_sym_num_lit_token1, + ACTIONS(5765), 1, anon_sym_POUND_QMARK, - ACTIONS(4767), 1, + ACTIONS(5767), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4769), 1, + ACTIONS(5769), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4771), 1, + ACTIONS(5771), 1, anon_sym_SQUOTE, - ACTIONS(4773), 1, + ACTIONS(5773), 1, anon_sym_BQUOTE, - ACTIONS(4775), 1, + ACTIONS(5775), 1, anon_sym_COMMA_AT, - ACTIONS(4777), 1, + ACTIONS(5777), 1, anon_sym_COMMA, - ACTIONS(4779), 1, - anon_sym_cl, - ACTIONS(6409), 1, - sym_self_referential_reader_macro, - STATE(1489), 1, - sym_sym_lit, - STATE(1557), 1, - sym__bare_set_lit, - STATE(2841), 1, + STATE(2814), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, + STATE(2986), 1, + sym__bare_set_lit, + STATE(3094), 1, + sym_sym_lit, ACTIONS(4763), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(4781), 2, + sym__ws, + sym_comment, + ACTIONS(5021), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4785), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(4787), 2, + ACTIONS(5027), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, - sym__ws, - sym_comment, - ACTIONS(6407), 3, + ACTIONS(5763), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5779), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5153), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1612), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1549), 19, + STATE(2985), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2992), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -78852,7 +78324,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [42797] = 35, + [42662] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -78861,78 +78333,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6211), 1, - anon_sym_POUND, - ACTIONS(6215), 1, - aux_sym_num_lit_token1, - ACTIONS(6217), 1, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4997), 1, anon_sym_COLON, - ACTIONS(6219), 1, + ACTIONS(4999), 1, anon_sym_COLON_COLON, - ACTIONS(6221), 1, + ACTIONS(5001), 1, anon_sym_DQUOTE, - ACTIONS(6223), 1, + ACTIONS(5003), 1, aux_sym_sym_lit_token1, - ACTIONS(6225), 1, - anon_sym_LPAREN, - ACTIONS(6229), 1, + ACTIONS(5019), 1, + anon_sym_cl, + ACTIONS(5159), 1, + sym_self_referential_reader_macro, + ACTIONS(5759), 1, + anon_sym_POUND, + ACTIONS(5761), 1, + aux_sym_num_lit_token1, + ACTIONS(5765), 1, anon_sym_POUND_QMARK, - ACTIONS(6231), 1, + ACTIONS(5767), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(6233), 1, + ACTIONS(5769), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6235), 1, + ACTIONS(5771), 1, anon_sym_SQUOTE, - ACTIONS(6237), 1, + ACTIONS(5773), 1, anon_sym_BQUOTE, - ACTIONS(6239), 1, + ACTIONS(5775), 1, anon_sym_COMMA_AT, - ACTIONS(6241), 1, + ACTIONS(5777), 1, anon_sym_COMMA, - ACTIONS(6243), 1, - anon_sym_cl, - ACTIONS(6415), 1, - sym_self_referential_reader_macro, - STATE(1675), 1, - sym_sym_lit, - STATE(1677), 1, - sym__bare_set_lit, - STATE(2833), 1, + STATE(2814), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(6227), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(6245), 2, + STATE(2986), 1, + sym__bare_set_lit, + STATE(3094), 1, + sym_sym_lit, + ACTIONS(4763), 2, + sym__ws, + sym_comment, + ACTIONS(5021), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(6249), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(6251), 2, + ACTIONS(5027), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6411), 2, - sym__ws, - sym_comment, - ACTIONS(6413), 3, + ACTIONS(5763), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5779), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5157), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(735), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1676), 3, + STATE(2985), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1705), 19, + STATE(2993), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -78952,7 +78424,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [42932] = 35, + [42797] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -78961,78 +78433,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(67), 1, + ACTIONS(4991), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(4995), 1, aux_sym_num_lit_token1, - ACTIONS(77), 1, + ACTIONS(4997), 1, + anon_sym_COLON, + ACTIONS(4999), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(5001), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(5003), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(5005), 1, + anon_sym_LPAREN, + ACTIONS(5009), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(5011), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(104), 1, + ACTIONS(5013), 1, anon_sym_POUND_SQUOTE, - ACTIONS(106), 1, + ACTIONS(5015), 1, anon_sym_SQUOTE, - ACTIONS(108), 1, + ACTIONS(5017), 1, anon_sym_BQUOTE, - ACTIONS(110), 1, + ACTIONS(5019), 1, + anon_sym_cl, + ACTIONS(5395), 1, anon_sym_COMMA_AT, - ACTIONS(112), 1, + ACTIONS(5397), 1, anon_sym_COMMA, - ACTIONS(4809), 1, - anon_sym_COLON, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4825), 1, - anon_sym_cl, - ACTIONS(5005), 1, + ACTIONS(6359), 1, sym_self_referential_reader_macro, - STATE(2497), 1, - sym_sym_lit, - STATE(2625), 1, - sym__bare_set_lit, - STATE(2834), 1, + STATE(2818), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(98), 2, + STATE(2986), 1, + sym__bare_set_lit, + STATE(3094), 1, + sym_sym_lit, + ACTIONS(4763), 2, + sym__ws, + sym_comment, + ACTIONS(5007), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(123), 2, + ACTIONS(5021), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(127), 2, + ACTIONS(5025), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(129), 2, + ACTIONS(5027), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6417), 2, - sym__ws, - sym_comment, - ACTIONS(5003), 3, + ACTIONS(6357), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(695), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(2985), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2574), 19, + STATE(3085), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -79052,7 +78524,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [43067] = 35, + [42932] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -79061,78 +78533,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6211), 1, - anon_sym_POUND, - ACTIONS(6215), 1, - aux_sym_num_lit_token1, - ACTIONS(6217), 1, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4997), 1, anon_sym_COLON, - ACTIONS(6219), 1, + ACTIONS(4999), 1, anon_sym_COLON_COLON, - ACTIONS(6221), 1, + ACTIONS(5001), 1, anon_sym_DQUOTE, - ACTIONS(6223), 1, + ACTIONS(5003), 1, aux_sym_sym_lit_token1, - ACTIONS(6225), 1, - anon_sym_LPAREN, - ACTIONS(6229), 1, + ACTIONS(5019), 1, + anon_sym_cl, + ACTIONS(5169), 1, + sym_self_referential_reader_macro, + ACTIONS(5759), 1, + anon_sym_POUND, + ACTIONS(5761), 1, + aux_sym_num_lit_token1, + ACTIONS(5765), 1, anon_sym_POUND_QMARK, - ACTIONS(6231), 1, + ACTIONS(5767), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(6233), 1, + ACTIONS(5769), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6235), 1, + ACTIONS(5771), 1, anon_sym_SQUOTE, - ACTIONS(6237), 1, + ACTIONS(5773), 1, anon_sym_BQUOTE, - ACTIONS(6239), 1, + ACTIONS(5775), 1, anon_sym_COMMA_AT, - ACTIONS(6241), 1, + ACTIONS(5777), 1, anon_sym_COMMA, - ACTIONS(6243), 1, - anon_sym_cl, - ACTIONS(6421), 1, - sym_self_referential_reader_macro, - STATE(1675), 1, - sym_sym_lit, - STATE(1677), 1, - sym__bare_set_lit, - STATE(2833), 1, + STATE(2814), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(4801), 2, - sym__ws, - sym_comment, - ACTIONS(6227), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(6245), 2, + STATE(2986), 1, + sym__bare_set_lit, + STATE(3094), 1, + sym_sym_lit, + ACTIONS(5021), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(6249), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(6251), 2, + ACTIONS(5027), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6419), 3, + ACTIONS(5763), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5779), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6361), 2, + sym__ws, + sym_comment, + ACTIONS(5167), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1676), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(726), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1637), 19, + STATE(2985), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2996), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -79152,7 +78624,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [43202] = 35, + [43067] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -79161,78 +78633,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4747), 1, - anon_sym_POUND, - ACTIONS(4751), 1, - aux_sym_num_lit_token1, - ACTIONS(4753), 1, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4997), 1, anon_sym_COLON, - ACTIONS(4755), 1, + ACTIONS(4999), 1, anon_sym_COLON_COLON, - ACTIONS(4757), 1, + ACTIONS(5001), 1, anon_sym_DQUOTE, - ACTIONS(4759), 1, + ACTIONS(5003), 1, aux_sym_sym_lit_token1, - ACTIONS(4761), 1, - anon_sym_LPAREN, - ACTIONS(4765), 1, + ACTIONS(5019), 1, + anon_sym_cl, + ACTIONS(5175), 1, + sym_self_referential_reader_macro, + ACTIONS(5759), 1, + anon_sym_POUND, + ACTIONS(5761), 1, + aux_sym_num_lit_token1, + ACTIONS(5765), 1, anon_sym_POUND_QMARK, - ACTIONS(4767), 1, + ACTIONS(5767), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4769), 1, + ACTIONS(5769), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4771), 1, + ACTIONS(5771), 1, anon_sym_SQUOTE, - ACTIONS(4773), 1, + ACTIONS(5773), 1, anon_sym_BQUOTE, - ACTIONS(4775), 1, + ACTIONS(5775), 1, anon_sym_COMMA_AT, - ACTIONS(4777), 1, + ACTIONS(5777), 1, anon_sym_COMMA, - ACTIONS(4779), 1, - anon_sym_cl, - ACTIONS(6425), 1, - sym_self_referential_reader_macro, - STATE(1489), 1, - sym_sym_lit, - STATE(1557), 1, - sym__bare_set_lit, - STATE(2841), 1, + STATE(2814), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(4763), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(4781), 2, + STATE(2986), 1, + sym__bare_set_lit, + STATE(3094), 1, + sym_sym_lit, + ACTIONS(5021), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4785), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(4787), 2, + ACTIONS(5027), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(5763), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5779), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6363), 2, sym__ws, sym_comment, - ACTIONS(6423), 3, + ACTIONS(5173), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1612), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(728), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1550), 19, + STATE(2985), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2952), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -79252,7 +78724,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [43337] = 35, + [43202] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -79261,78 +78733,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4747), 1, - anon_sym_POUND, - ACTIONS(4751), 1, - aux_sym_num_lit_token1, - ACTIONS(4753), 1, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4997), 1, anon_sym_COLON, - ACTIONS(4755), 1, + ACTIONS(4999), 1, anon_sym_COLON_COLON, - ACTIONS(4757), 1, + ACTIONS(5001), 1, anon_sym_DQUOTE, - ACTIONS(4759), 1, + ACTIONS(5003), 1, aux_sym_sym_lit_token1, - ACTIONS(4761), 1, - anon_sym_LPAREN, - ACTIONS(4765), 1, + ACTIONS(5019), 1, + anon_sym_cl, + ACTIONS(5179), 1, + sym_self_referential_reader_macro, + ACTIONS(5759), 1, + anon_sym_POUND, + ACTIONS(5761), 1, + aux_sym_num_lit_token1, + ACTIONS(5765), 1, anon_sym_POUND_QMARK, - ACTIONS(4767), 1, + ACTIONS(5767), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4769), 1, + ACTIONS(5769), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4771), 1, + ACTIONS(5771), 1, anon_sym_SQUOTE, - ACTIONS(4773), 1, + ACTIONS(5773), 1, anon_sym_BQUOTE, - ACTIONS(4775), 1, + ACTIONS(5775), 1, anon_sym_COMMA_AT, - ACTIONS(4777), 1, + ACTIONS(5777), 1, anon_sym_COMMA, - ACTIONS(4779), 1, - anon_sym_cl, - ACTIONS(6431), 1, - sym_self_referential_reader_macro, - STATE(1489), 1, - sym_sym_lit, - STATE(1557), 1, - sym__bare_set_lit, - STATE(2841), 1, + STATE(2814), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, + STATE(2986), 1, + sym__bare_set_lit, + STATE(3094), 1, + sym_sym_lit, ACTIONS(4763), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(4781), 2, + sym__ws, + sym_comment, + ACTIONS(5021), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4785), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(4787), 2, + ACTIONS(5027), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6427), 2, - sym__ws, - sym_comment, - ACTIONS(6429), 3, + ACTIONS(5763), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5779), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5177), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(736), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1612), 3, + STATE(2985), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1551), 19, + STATE(2908), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -79352,7 +78824,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [43472] = 35, + [43337] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -79361,78 +78833,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4747), 1, - anon_sym_POUND, - ACTIONS(4751), 1, - aux_sym_num_lit_token1, - ACTIONS(4753), 1, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4997), 1, anon_sym_COLON, - ACTIONS(4755), 1, + ACTIONS(4999), 1, anon_sym_COLON_COLON, - ACTIONS(4757), 1, + ACTIONS(5001), 1, anon_sym_DQUOTE, - ACTIONS(4759), 1, + ACTIONS(5003), 1, aux_sym_sym_lit_token1, - ACTIONS(4761), 1, - anon_sym_LPAREN, - ACTIONS(4765), 1, + ACTIONS(5019), 1, + anon_sym_cl, + ACTIONS(5461), 1, + sym_self_referential_reader_macro, + ACTIONS(5759), 1, + anon_sym_POUND, + ACTIONS(5761), 1, + aux_sym_num_lit_token1, + ACTIONS(5765), 1, anon_sym_POUND_QMARK, - ACTIONS(4767), 1, + ACTIONS(5767), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4769), 1, + ACTIONS(5769), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4771), 1, + ACTIONS(5771), 1, anon_sym_SQUOTE, - ACTIONS(4773), 1, + ACTIONS(5773), 1, anon_sym_BQUOTE, - ACTIONS(4775), 1, + ACTIONS(5775), 1, anon_sym_COMMA_AT, - ACTIONS(4777), 1, + ACTIONS(5777), 1, anon_sym_COMMA, - ACTIONS(4779), 1, - anon_sym_cl, - ACTIONS(6437), 1, - sym_self_referential_reader_macro, - STATE(1489), 1, - sym_sym_lit, - STATE(1557), 1, - sym__bare_set_lit, - STATE(2841), 1, + STATE(2814), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, + STATE(2986), 1, + sym__bare_set_lit, + STATE(3094), 1, + sym_sym_lit, ACTIONS(4763), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(4781), 2, + sym__ws, + sym_comment, + ACTIONS(5021), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4785), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(4787), 2, + ACTIONS(5027), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6433), 2, - sym__ws, - sym_comment, - ACTIONS(6435), 3, + ACTIONS(5763), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5779), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5459), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(757), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1612), 3, + STATE(2985), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1552), 19, + STATE(2910), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -79452,7 +78924,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [43607] = 35, + [43472] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -79461,78 +78933,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(67), 1, - anon_sym_POUND, - ACTIONS(71), 1, - aux_sym_num_lit_token1, - ACTIONS(77), 1, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4997), 1, + anon_sym_COLON, + ACTIONS(4999), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(5001), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(5003), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(5019), 1, + anon_sym_cl, + ACTIONS(5191), 1, + sym_self_referential_reader_macro, + ACTIONS(5759), 1, + anon_sym_POUND, + ACTIONS(5761), 1, + aux_sym_num_lit_token1, + ACTIONS(5765), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(5767), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(104), 1, + ACTIONS(5769), 1, anon_sym_POUND_SQUOTE, - ACTIONS(106), 1, + ACTIONS(5771), 1, anon_sym_SQUOTE, - ACTIONS(108), 1, + ACTIONS(5773), 1, anon_sym_BQUOTE, - ACTIONS(110), 1, + ACTIONS(5775), 1, anon_sym_COMMA_AT, - ACTIONS(112), 1, + ACTIONS(5777), 1, anon_sym_COMMA, - ACTIONS(4809), 1, - anon_sym_COLON, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4825), 1, - anon_sym_cl, - ACTIONS(5021), 1, - sym_self_referential_reader_macro, - STATE(2497), 1, - sym_sym_lit, - STATE(2625), 1, - sym__bare_set_lit, - STATE(2834), 1, + STATE(2814), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(98), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(123), 2, + STATE(2986), 1, + sym__bare_set_lit, + STATE(3094), 1, + sym_sym_lit, + ACTIONS(5021), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(127), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(129), 2, + ACTIONS(5027), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(5763), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5779), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6365), 2, sym__ws, sym_comment, - ACTIONS(5019), 3, + ACTIONS(5189), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, + STATE(730), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(2985), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2552), 19, + STATE(2911), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -79552,87 +79024,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [43742] = 35, + [43607] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, - anon_sym_POUND, - ACTIONS(15), 1, - aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4769), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(4997), 1, + anon_sym_COLON, + ACTIONS(4999), 1, + anon_sym_COLON_COLON, + ACTIONS(5001), 1, + anon_sym_DQUOTE, + ACTIONS(5003), 1, + aux_sym_sym_lit_token1, + ACTIONS(5019), 1, + anon_sym_cl, + ACTIONS(5195), 1, + sym_self_referential_reader_macro, + ACTIONS(5759), 1, + anon_sym_POUND, + ACTIONS(5761), 1, + aux_sym_num_lit_token1, + ACTIONS(5765), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(5767), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(5769), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(5771), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(5773), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(5775), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(5777), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(6443), 1, - sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, - sym_sym_lit, - STATE(2808), 1, + STATE(2814), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + STATE(2986), 1, + sym__bare_set_lit, + STATE(3094), 1, + sym_sym_lit, + ACTIONS(4763), 2, + sym__ws, + sym_comment, + ACTIONS(5021), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(5027), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6439), 2, - sym__ws, - sym_comment, - ACTIONS(6441), 3, + ACTIONS(5763), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5779), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5193), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(923), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1877), 3, + STATE(2985), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1831), 19, + STATE(2913), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -79652,7 +79124,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [43877] = 35, + [43742] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -79661,78 +79133,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6211), 1, - anon_sym_POUND, - ACTIONS(6215), 1, - aux_sym_num_lit_token1, - ACTIONS(6217), 1, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4997), 1, anon_sym_COLON, - ACTIONS(6219), 1, + ACTIONS(4999), 1, anon_sym_COLON_COLON, - ACTIONS(6221), 1, + ACTIONS(5001), 1, anon_sym_DQUOTE, - ACTIONS(6223), 1, + ACTIONS(5003), 1, aux_sym_sym_lit_token1, - ACTIONS(6225), 1, - anon_sym_LPAREN, - ACTIONS(6229), 1, + ACTIONS(5019), 1, + anon_sym_cl, + ACTIONS(5201), 1, + sym_self_referential_reader_macro, + ACTIONS(5759), 1, + anon_sym_POUND, + ACTIONS(5761), 1, + aux_sym_num_lit_token1, + ACTIONS(5765), 1, anon_sym_POUND_QMARK, - ACTIONS(6231), 1, + ACTIONS(5767), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(6233), 1, + ACTIONS(5769), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6235), 1, + ACTIONS(5771), 1, anon_sym_SQUOTE, - ACTIONS(6237), 1, + ACTIONS(5773), 1, anon_sym_BQUOTE, - ACTIONS(6239), 1, + ACTIONS(5775), 1, anon_sym_COMMA_AT, - ACTIONS(6241), 1, + ACTIONS(5777), 1, anon_sym_COMMA, - ACTIONS(6243), 1, - anon_sym_cl, - ACTIONS(6447), 1, - sym_self_referential_reader_macro, - STATE(1675), 1, - sym_sym_lit, - STATE(1677), 1, - sym__bare_set_lit, - STATE(2833), 1, + STATE(2814), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(4801), 2, - sym__ws, - sym_comment, - ACTIONS(6227), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(6245), 2, + STATE(2986), 1, + sym__bare_set_lit, + STATE(3094), 1, + sym_sym_lit, + ACTIONS(5021), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(6249), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(6251), 2, + ACTIONS(5027), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6445), 3, + ACTIONS(5763), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5779), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6367), 2, + sym__ws, + sym_comment, + ACTIONS(5199), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1676), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(731), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1636), 19, + STATE(2985), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2914), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -79752,7 +79224,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [44012] = 35, + [43877] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -79761,78 +79233,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6211), 1, - anon_sym_POUND, - ACTIONS(6215), 1, - aux_sym_num_lit_token1, - ACTIONS(6217), 1, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4997), 1, anon_sym_COLON, - ACTIONS(6219), 1, + ACTIONS(4999), 1, anon_sym_COLON_COLON, - ACTIONS(6221), 1, + ACTIONS(5001), 1, anon_sym_DQUOTE, - ACTIONS(6223), 1, + ACTIONS(5003), 1, aux_sym_sym_lit_token1, - ACTIONS(6225), 1, - anon_sym_LPAREN, - ACTIONS(6229), 1, + ACTIONS(5019), 1, + anon_sym_cl, + ACTIONS(5205), 1, + sym_self_referential_reader_macro, + ACTIONS(5759), 1, + anon_sym_POUND, + ACTIONS(5761), 1, + aux_sym_num_lit_token1, + ACTIONS(5765), 1, anon_sym_POUND_QMARK, - ACTIONS(6231), 1, + ACTIONS(5767), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(6233), 1, + ACTIONS(5769), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6235), 1, + ACTIONS(5771), 1, anon_sym_SQUOTE, - ACTIONS(6237), 1, + ACTIONS(5773), 1, anon_sym_BQUOTE, - ACTIONS(6239), 1, + ACTIONS(5775), 1, anon_sym_COMMA_AT, - ACTIONS(6241), 1, + ACTIONS(5777), 1, anon_sym_COMMA, - ACTIONS(6243), 1, - anon_sym_cl, - ACTIONS(6451), 1, - sym_self_referential_reader_macro, - STATE(1675), 1, - sym_sym_lit, - STATE(1677), 1, - sym__bare_set_lit, - STATE(2833), 1, + STATE(2814), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(4801), 2, + STATE(2986), 1, + sym__bare_set_lit, + STATE(3094), 1, + sym_sym_lit, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(6227), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(6245), 2, + ACTIONS(5021), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(6249), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(6251), 2, + ACTIONS(5027), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6449), 3, + ACTIONS(5763), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5779), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5203), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1676), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1635), 19, + STATE(2985), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2918), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -79852,7 +79324,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [44147] = 35, + [44012] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -79861,78 +79333,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6211), 1, - anon_sym_POUND, - ACTIONS(6215), 1, - aux_sym_num_lit_token1, - ACTIONS(6217), 1, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4997), 1, anon_sym_COLON, - ACTIONS(6219), 1, + ACTIONS(4999), 1, anon_sym_COLON_COLON, - ACTIONS(6221), 1, + ACTIONS(5001), 1, anon_sym_DQUOTE, - ACTIONS(6223), 1, + ACTIONS(5003), 1, aux_sym_sym_lit_token1, - ACTIONS(6225), 1, - anon_sym_LPAREN, - ACTIONS(6229), 1, + ACTIONS(5019), 1, + anon_sym_cl, + ACTIONS(5209), 1, + sym_self_referential_reader_macro, + ACTIONS(5759), 1, + anon_sym_POUND, + ACTIONS(5761), 1, + aux_sym_num_lit_token1, + ACTIONS(5765), 1, anon_sym_POUND_QMARK, - ACTIONS(6231), 1, + ACTIONS(5767), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(6233), 1, + ACTIONS(5769), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6235), 1, + ACTIONS(5771), 1, anon_sym_SQUOTE, - ACTIONS(6237), 1, + ACTIONS(5773), 1, anon_sym_BQUOTE, - ACTIONS(6239), 1, + ACTIONS(5775), 1, anon_sym_COMMA_AT, - ACTIONS(6241), 1, + ACTIONS(5777), 1, anon_sym_COMMA, - ACTIONS(6243), 1, - anon_sym_cl, - ACTIONS(6457), 1, - sym_self_referential_reader_macro, - STATE(1675), 1, - sym_sym_lit, - STATE(1677), 1, - sym__bare_set_lit, - STATE(2833), 1, + STATE(2814), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(6227), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(6245), 2, + STATE(2986), 1, + sym__bare_set_lit, + STATE(3094), 1, + sym_sym_lit, + ACTIONS(4763), 2, + sym__ws, + sym_comment, + ACTIONS(5021), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(6249), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(6251), 2, + ACTIONS(5027), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6453), 2, - sym__ws, - sym_comment, - ACTIONS(6455), 3, + ACTIONS(5763), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5779), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5207), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(738), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1676), 3, + STATE(2985), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1634), 19, + STATE(2919), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -79952,7 +79424,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [44282] = 35, + [44147] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -79961,78 +79433,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4747), 1, - anon_sym_POUND, - ACTIONS(4751), 1, - aux_sym_num_lit_token1, - ACTIONS(4753), 1, - anon_sym_COLON, - ACTIONS(4755), 1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(4757), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(4759), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(4761), 1, - anon_sym_LPAREN, - ACTIONS(4765), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(4767), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, + ACTIONS(4767), 1, + anon_sym_COLON, ACTIONS(4769), 1, - anon_sym_POUND_SQUOTE, + anon_sym_LPAREN, ACTIONS(4771), 1, + anon_sym_cl, + ACTIONS(5733), 1, + sym_self_referential_reader_macro, + ACTIONS(5921), 1, + anon_sym_POUND, + ACTIONS(5923), 1, + aux_sym_num_lit_token1, + ACTIONS(5927), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(5929), 1, anon_sym_SQUOTE, - ACTIONS(4773), 1, + ACTIONS(5931), 1, anon_sym_BQUOTE, - ACTIONS(4775), 1, + ACTIONS(5933), 1, anon_sym_COMMA_AT, - ACTIONS(4777), 1, + ACTIONS(5935), 1, anon_sym_COMMA, - ACTIONS(4779), 1, - anon_sym_cl, - ACTIONS(6461), 1, - sym_self_referential_reader_macro, - STATE(1489), 1, + STATE(2112), 1, sym_sym_lit, - STATE(1557), 1, + STATE(2589), 1, sym__bare_set_lit, - STATE(2841), 1, + STATE(2824), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(4763), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(4781), 2, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4785), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(4787), 2, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(5925), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5937), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6369), 2, sym__ws, sym_comment, - ACTIONS(6459), 3, + ACTIONS(5731), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1612), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(738), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1559), 19, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2612), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -80052,7 +79524,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [44417] = 35, + [44282] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -80061,78 +79533,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6211), 1, - anon_sym_POUND, - ACTIONS(6215), 1, - aux_sym_num_lit_token1, - ACTIONS(6217), 1, - anon_sym_COLON, - ACTIONS(6219), 1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(6221), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(6223), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(6225), 1, - anon_sym_LPAREN, - ACTIONS(6229), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(6231), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(6233), 1, + ACTIONS(4767), 1, + anon_sym_COLON, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, + anon_sym_cl, + ACTIONS(5739), 1, + sym_self_referential_reader_macro, + ACTIONS(5921), 1, + anon_sym_POUND, + ACTIONS(5923), 1, + aux_sym_num_lit_token1, + ACTIONS(5927), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6235), 1, + ACTIONS(5929), 1, anon_sym_SQUOTE, - ACTIONS(6237), 1, + ACTIONS(5931), 1, anon_sym_BQUOTE, - ACTIONS(6239), 1, + ACTIONS(5933), 1, anon_sym_COMMA_AT, - ACTIONS(6241), 1, + ACTIONS(5935), 1, anon_sym_COMMA, - ACTIONS(6243), 1, - anon_sym_cl, - ACTIONS(6467), 1, - sym_self_referential_reader_macro, - STATE(1675), 1, + STATE(2112), 1, sym_sym_lit, - STATE(1677), 1, + STATE(2589), 1, sym__bare_set_lit, - STATE(2833), 1, + STATE(2824), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(6227), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(6245), 2, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(6249), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(6251), 2, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6463), 2, + ACTIONS(5925), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5937), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6371), 2, sym__ws, sym_comment, - ACTIONS(6465), 3, + ACTIONS(5737), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(744), 3, + STATE(739), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1676), 3, + STATE(2584), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1633), 19, + STATE(2613), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -80152,7 +79624,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [44552] = 35, + [44417] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -80161,78 +79633,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6211), 1, - anon_sym_POUND, - ACTIONS(6215), 1, - aux_sym_num_lit_token1, - ACTIONS(6217), 1, - anon_sym_COLON, - ACTIONS(6219), 1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(6221), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(6223), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(6225), 1, - anon_sym_LPAREN, - ACTIONS(6229), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(6231), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(6233), 1, + ACTIONS(4767), 1, + anon_sym_COLON, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, + anon_sym_cl, + ACTIONS(5745), 1, + sym_self_referential_reader_macro, + ACTIONS(5921), 1, + anon_sym_POUND, + ACTIONS(5923), 1, + aux_sym_num_lit_token1, + ACTIONS(5927), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6235), 1, + ACTIONS(5929), 1, anon_sym_SQUOTE, - ACTIONS(6237), 1, + ACTIONS(5931), 1, anon_sym_BQUOTE, - ACTIONS(6239), 1, + ACTIONS(5933), 1, anon_sym_COMMA_AT, - ACTIONS(6241), 1, + ACTIONS(5935), 1, anon_sym_COMMA, - ACTIONS(6243), 1, - anon_sym_cl, - ACTIONS(6471), 1, - sym_self_referential_reader_macro, - STATE(1675), 1, + STATE(2112), 1, sym_sym_lit, - STATE(1677), 1, + STATE(2589), 1, sym__bare_set_lit, - STATE(2833), 1, + STATE(2824), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(4801), 2, - sym__ws, - sym_comment, - ACTIONS(6227), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(6245), 2, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(6249), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(6251), 2, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6469), 3, + ACTIONS(5925), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5937), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6373), 2, + sym__ws, + sym_comment, + ACTIONS(5743), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1676), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(740), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1624), 19, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2620), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -80252,7 +79724,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [44687] = 35, + [44552] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -80261,78 +79733,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4747), 1, - anon_sym_POUND, - ACTIONS(4751), 1, - aux_sym_num_lit_token1, - ACTIONS(4753), 1, - anon_sym_COLON, - ACTIONS(4755), 1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(4757), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(4759), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(4761), 1, - anon_sym_LPAREN, - ACTIONS(4765), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(4767), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, + ACTIONS(4767), 1, + anon_sym_COLON, ACTIONS(4769), 1, - anon_sym_POUND_SQUOTE, + anon_sym_LPAREN, ACTIONS(4771), 1, + anon_sym_cl, + ACTIONS(5607), 1, + sym_self_referential_reader_macro, + ACTIONS(5921), 1, + anon_sym_POUND, + ACTIONS(5923), 1, + aux_sym_num_lit_token1, + ACTIONS(5927), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(5929), 1, anon_sym_SQUOTE, - ACTIONS(4773), 1, + ACTIONS(5931), 1, anon_sym_BQUOTE, - ACTIONS(4775), 1, + ACTIONS(5933), 1, anon_sym_COMMA_AT, - ACTIONS(4777), 1, + ACTIONS(5935), 1, anon_sym_COMMA, - ACTIONS(4779), 1, - anon_sym_cl, - ACTIONS(6475), 1, - sym_self_referential_reader_macro, - STATE(1489), 1, + STATE(2112), 1, sym_sym_lit, - STATE(1557), 1, + STATE(2589), 1, sym__bare_set_lit, - STATE(2841), 1, + STATE(2824), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(4763), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(4781), 2, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4785), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(4787), 2, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(5925), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5937), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6375), 2, sym__ws, sym_comment, - ACTIONS(6473), 3, + ACTIONS(5605), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1612), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(741), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1556), 19, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2108), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -80352,7 +79824,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [44822] = 35, + [44687] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -80361,78 +79833,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(67), 1, - anon_sym_POUND, - ACTIONS(71), 1, - aux_sym_num_lit_token1, - ACTIONS(77), 1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(104), 1, + ACTIONS(4767), 1, + anon_sym_COLON, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, + anon_sym_cl, + ACTIONS(5613), 1, + sym_self_referential_reader_macro, + ACTIONS(5921), 1, + anon_sym_POUND, + ACTIONS(5923), 1, + aux_sym_num_lit_token1, + ACTIONS(5927), 1, anon_sym_POUND_SQUOTE, - ACTIONS(106), 1, + ACTIONS(5929), 1, anon_sym_SQUOTE, - ACTIONS(108), 1, + ACTIONS(5931), 1, anon_sym_BQUOTE, - ACTIONS(110), 1, + ACTIONS(5933), 1, anon_sym_COMMA_AT, - ACTIONS(112), 1, + ACTIONS(5935), 1, anon_sym_COMMA, - ACTIONS(4809), 1, - anon_sym_COLON, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4825), 1, - anon_sym_cl, - ACTIONS(6481), 1, - sym_self_referential_reader_macro, - STATE(2497), 1, + STATE(2112), 1, sym_sym_lit, - STATE(2625), 1, + STATE(2589), 1, sym__bare_set_lit, - STATE(2834), 1, + STATE(2824), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(98), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(123), 2, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(127), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(129), 2, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6477), 2, + ACTIONS(5925), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5937), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6377), 2, sym__ws, sym_comment, - ACTIONS(6479), 3, + ACTIONS(5611), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(422), 3, + STATE(742), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(2584), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2706), 19, + STATE(2116), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -80452,7 +79924,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [44957] = 35, + [44822] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -80461,78 +79933,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6211), 1, + ACTIONS(124), 1, anon_sym_POUND, - ACTIONS(6215), 1, + ACTIONS(128), 1, aux_sym_num_lit_token1, - ACTIONS(6217), 1, - anon_sym_COLON, - ACTIONS(6219), 1, + ACTIONS(132), 1, anon_sym_COLON_COLON, - ACTIONS(6221), 1, + ACTIONS(134), 1, anon_sym_DQUOTE, - ACTIONS(6223), 1, + ACTIONS(136), 1, aux_sym_sym_lit_token1, - ACTIONS(6225), 1, - anon_sym_LPAREN, - ACTIONS(6229), 1, + ACTIONS(140), 1, anon_sym_POUND_QMARK, - ACTIONS(6231), 1, + ACTIONS(142), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(6233), 1, + ACTIONS(144), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6235), 1, + ACTIONS(146), 1, anon_sym_SQUOTE, - ACTIONS(6237), 1, + ACTIONS(148), 1, anon_sym_BQUOTE, - ACTIONS(6239), 1, + ACTIONS(150), 1, anon_sym_COMMA_AT, - ACTIONS(6241), 1, + ACTIONS(152), 1, anon_sym_COMMA, - ACTIONS(6243), 1, + ACTIONS(4378), 1, + anon_sym_COLON, + ACTIONS(4380), 1, + anon_sym_LPAREN, + ACTIONS(4382), 1, anon_sym_cl, - ACTIONS(6485), 1, + ACTIONS(6381), 1, sym_self_referential_reader_macro, - STATE(1675), 1, + STATE(1136), 1, sym_sym_lit, - STATE(1677), 1, + STATE(1138), 1, sym__bare_set_lit, - STATE(2833), 1, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(4801), 2, - sym__ws, - sym_comment, - ACTIONS(6227), 2, + ACTIONS(138), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(6245), 2, + ACTIONS(154), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(6249), 2, + ACTIONS(158), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6251), 2, + ACTIONS(160), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6483), 3, + ACTIONS(4763), 2, + sym__ws, + sym_comment, + ACTIONS(6379), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1676), 3, + STATE(1137), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1627), 19, + STATE(1160), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -80552,7 +80024,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [45092] = 35, + [44957] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -80561,78 +80033,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(67), 1, - anon_sym_POUND, - ACTIONS(71), 1, - aux_sym_num_lit_token1, - ACTIONS(77), 1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(104), 1, + ACTIONS(4767), 1, + anon_sym_COLON, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, + anon_sym_cl, + ACTIONS(5783), 1, + sym_self_referential_reader_macro, + ACTIONS(5921), 1, + anon_sym_POUND, + ACTIONS(5923), 1, + aux_sym_num_lit_token1, + ACTIONS(5927), 1, anon_sym_POUND_SQUOTE, - ACTIONS(106), 1, + ACTIONS(5929), 1, anon_sym_SQUOTE, - ACTIONS(108), 1, + ACTIONS(5931), 1, anon_sym_BQUOTE, - ACTIONS(110), 1, + ACTIONS(5933), 1, anon_sym_COMMA_AT, - ACTIONS(112), 1, + ACTIONS(5935), 1, anon_sym_COMMA, - ACTIONS(4809), 1, - anon_sym_COLON, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4825), 1, - anon_sym_cl, - ACTIONS(4847), 1, - sym_self_referential_reader_macro, - STATE(2497), 1, + STATE(2112), 1, sym_sym_lit, - STATE(2625), 1, + STATE(2589), 1, sym__bare_set_lit, - STATE(2834), 1, + STATE(2824), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(98), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(123), 2, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(127), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(129), 2, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(4845), 3, + ACTIONS(5925), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5937), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5781), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(2584), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2577), 19, + STATE(2586), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -80652,7 +80124,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [45227] = 35, + [45092] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -80661,78 +80133,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4747), 1, - anon_sym_POUND, - ACTIONS(4751), 1, - aux_sym_num_lit_token1, - ACTIONS(4753), 1, - anon_sym_COLON, - ACTIONS(4755), 1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(4757), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(4759), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(4761), 1, - anon_sym_LPAREN, - ACTIONS(4765), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(4767), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, + ACTIONS(4767), 1, + anon_sym_COLON, ACTIONS(4769), 1, - anon_sym_POUND_SQUOTE, + anon_sym_LPAREN, ACTIONS(4771), 1, + anon_sym_cl, + ACTIONS(5787), 1, + sym_self_referential_reader_macro, + ACTIONS(5921), 1, + anon_sym_POUND, + ACTIONS(5923), 1, + aux_sym_num_lit_token1, + ACTIONS(5927), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(5929), 1, anon_sym_SQUOTE, - ACTIONS(4773), 1, + ACTIONS(5931), 1, anon_sym_BQUOTE, - ACTIONS(4775), 1, + ACTIONS(5933), 1, anon_sym_COMMA_AT, - ACTIONS(4777), 1, + ACTIONS(5935), 1, anon_sym_COMMA, - ACTIONS(4779), 1, - anon_sym_cl, - ACTIONS(6491), 1, - sym_self_referential_reader_macro, - STATE(1489), 1, + STATE(2112), 1, sym_sym_lit, - STATE(1557), 1, + STATE(2589), 1, sym__bare_set_lit, - STATE(2841), 1, + STATE(2824), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(4763), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(4781), 2, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4785), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(4787), 2, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6487), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(6489), 3, + ACTIONS(5925), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5937), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5785), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(767), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1612), 3, + STATE(2584), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1560), 19, + STATE(2587), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -80752,7 +80224,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [45362] = 35, + [45227] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -80761,78 +80233,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6211), 1, - anon_sym_POUND, - ACTIONS(6215), 1, - aux_sym_num_lit_token1, - ACTIONS(6217), 1, - anon_sym_COLON, - ACTIONS(6219), 1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(6221), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(6223), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(6225), 1, - anon_sym_LPAREN, - ACTIONS(6229), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(6231), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(6233), 1, + ACTIONS(4767), 1, + anon_sym_COLON, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, + anon_sym_cl, + ACTIONS(5791), 1, + sym_self_referential_reader_macro, + ACTIONS(5921), 1, + anon_sym_POUND, + ACTIONS(5923), 1, + aux_sym_num_lit_token1, + ACTIONS(5927), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6235), 1, + ACTIONS(5929), 1, anon_sym_SQUOTE, - ACTIONS(6237), 1, + ACTIONS(5931), 1, anon_sym_BQUOTE, - ACTIONS(6239), 1, + ACTIONS(5933), 1, anon_sym_COMMA_AT, - ACTIONS(6241), 1, + ACTIONS(5935), 1, anon_sym_COMMA, - ACTIONS(6243), 1, - anon_sym_cl, - ACTIONS(6497), 1, - sym_self_referential_reader_macro, - STATE(1675), 1, + STATE(2112), 1, sym_sym_lit, - STATE(1677), 1, + STATE(2589), 1, sym__bare_set_lit, - STATE(2833), 1, + STATE(2824), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(6227), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(6245), 2, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(6249), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(6251), 2, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6493), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(6495), 3, + ACTIONS(5925), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5937), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5789), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(748), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1676), 3, + STATE(2584), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1626), 19, + STATE(2588), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -80852,87 +80324,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [45497] = 35, + [45362] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, - anon_sym_POUND, - ACTIONS(15), 1, - aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(184), 1, + anon_sym_COLON_COLON, + ACTIONS(186), 1, + anon_sym_DQUOTE, + ACTIONS(188), 1, + aux_sym_sym_lit_token1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(4767), 1, + anon_sym_COLON, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, + anon_sym_cl, + ACTIONS(5633), 1, + sym_self_referential_reader_macro, + ACTIONS(5921), 1, + anon_sym_POUND, + ACTIONS(5923), 1, + aux_sym_num_lit_token1, + ACTIONS(5927), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(5929), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(5931), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(5933), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(5935), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(6503), 1, - sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(2112), 1, sym_sym_lit, - STATE(2808), 1, + STATE(2589), 1, + sym__bare_set_lit, + STATE(2824), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6499), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(6501), 3, + ACTIONS(5925), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5937), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5631), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(630), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1877), 3, + STATE(2584), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1859), 19, + STATE(2149), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -80952,7 +80424,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [45632] = 35, + [45497] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -80961,78 +80433,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(67), 1, - anon_sym_POUND, - ACTIONS(71), 1, - aux_sym_num_lit_token1, - ACTIONS(77), 1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(104), 1, + ACTIONS(4767), 1, + anon_sym_COLON, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, + anon_sym_cl, + ACTIONS(5637), 1, + sym_self_referential_reader_macro, + ACTIONS(5921), 1, + anon_sym_POUND, + ACTIONS(5923), 1, + aux_sym_num_lit_token1, + ACTIONS(5927), 1, anon_sym_POUND_SQUOTE, - ACTIONS(106), 1, + ACTIONS(5929), 1, anon_sym_SQUOTE, - ACTIONS(108), 1, + ACTIONS(5931), 1, anon_sym_BQUOTE, - ACTIONS(110), 1, + ACTIONS(5933), 1, anon_sym_COMMA_AT, - ACTIONS(112), 1, + ACTIONS(5935), 1, anon_sym_COMMA, - ACTIONS(4809), 1, - anon_sym_COLON, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4825), 1, - anon_sym_cl, - ACTIONS(6509), 1, - sym_self_referential_reader_macro, - STATE(2497), 1, + STATE(2112), 1, sym_sym_lit, - STATE(2625), 1, + STATE(2589), 1, sym__bare_set_lit, - STATE(2834), 1, + STATE(2824), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(98), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(123), 2, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(127), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(129), 2, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6505), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(6507), 3, + ACTIONS(5925), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5937), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5635), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(420), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(2584), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2709), 19, + STATE(2151), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -81052,7 +80524,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [45767] = 35, + [45632] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -81061,78 +80533,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6211), 1, - anon_sym_POUND, - ACTIONS(6215), 1, - aux_sym_num_lit_token1, - ACTIONS(6217), 1, - anon_sym_COLON, - ACTIONS(6219), 1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(6221), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(6223), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(6225), 1, - anon_sym_LPAREN, - ACTIONS(6229), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(6231), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(6233), 1, + ACTIONS(4767), 1, + anon_sym_COLON, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, + anon_sym_cl, + ACTIONS(5805), 1, + sym_self_referential_reader_macro, + ACTIONS(5921), 1, + anon_sym_POUND, + ACTIONS(5923), 1, + aux_sym_num_lit_token1, + ACTIONS(5927), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6235), 1, + ACTIONS(5929), 1, anon_sym_SQUOTE, - ACTIONS(6237), 1, + ACTIONS(5931), 1, anon_sym_BQUOTE, - ACTIONS(6239), 1, + ACTIONS(5933), 1, anon_sym_COMMA_AT, - ACTIONS(6241), 1, + ACTIONS(5935), 1, anon_sym_COMMA, - ACTIONS(6243), 1, - anon_sym_cl, - ACTIONS(6513), 1, - sym_self_referential_reader_macro, - STATE(1675), 1, + STATE(2112), 1, sym_sym_lit, - STATE(1677), 1, + STATE(2589), 1, sym__bare_set_lit, - STATE(2833), 1, + STATE(2824), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(4801), 2, - sym__ws, - sym_comment, - ACTIONS(6227), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(6245), 2, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(6249), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(6251), 2, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6511), 3, + ACTIONS(5925), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5937), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6383), 2, + sym__ws, + sym_comment, + ACTIONS(5803), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1676), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(747), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1695), 19, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2591), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -81152,7 +80624,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [45902] = 35, + [45767] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -81161,66 +80633,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6211), 1, - anon_sym_POUND, - ACTIONS(6215), 1, - aux_sym_num_lit_token1, - ACTIONS(6217), 1, - anon_sym_COLON, - ACTIONS(6219), 1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(6221), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(6223), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(6225), 1, - anon_sym_LPAREN, - ACTIONS(6229), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(6231), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(6233), 1, + ACTIONS(4767), 1, + anon_sym_COLON, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, + anon_sym_cl, + ACTIONS(5811), 1, + sym_self_referential_reader_macro, + ACTIONS(5921), 1, + anon_sym_POUND, + ACTIONS(5923), 1, + aux_sym_num_lit_token1, + ACTIONS(5927), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6235), 1, + ACTIONS(5929), 1, anon_sym_SQUOTE, - ACTIONS(6237), 1, + ACTIONS(5931), 1, anon_sym_BQUOTE, - ACTIONS(6239), 1, + ACTIONS(5933), 1, anon_sym_COMMA_AT, - ACTIONS(6241), 1, + ACTIONS(5935), 1, anon_sym_COMMA, - ACTIONS(6243), 1, - anon_sym_cl, - ACTIONS(6519), 1, - sym_self_referential_reader_macro, - STATE(1675), 1, + STATE(2112), 1, sym_sym_lit, - STATE(1677), 1, + STATE(2589), 1, sym__bare_set_lit, - STATE(2833), 1, + STATE(2824), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(6227), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(6245), 2, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(6249), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(6251), 2, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6515), 2, + ACTIONS(5925), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5937), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6385), 2, sym__ws, sym_comment, - ACTIONS(6517), 3, + ACTIONS(5809), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, @@ -81228,11 +80700,11 @@ static const uint16_t ts_small_parse_table[] = { sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1676), 3, + STATE(2584), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1679), 19, + STATE(2593), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -81252,7 +80724,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [46037] = 35, + [45902] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -81261,78 +80733,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(67), 1, - anon_sym_POUND, - ACTIONS(71), 1, - aux_sym_num_lit_token1, - ACTIONS(77), 1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(104), 1, + ACTIONS(4767), 1, + anon_sym_COLON, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, + anon_sym_cl, + ACTIONS(5817), 1, + sym_self_referential_reader_macro, + ACTIONS(5921), 1, + anon_sym_POUND, + ACTIONS(5923), 1, + aux_sym_num_lit_token1, + ACTIONS(5927), 1, anon_sym_POUND_SQUOTE, - ACTIONS(106), 1, + ACTIONS(5929), 1, anon_sym_SQUOTE, - ACTIONS(108), 1, + ACTIONS(5931), 1, anon_sym_BQUOTE, - ACTIONS(110), 1, + ACTIONS(5933), 1, anon_sym_COMMA_AT, - ACTIONS(112), 1, + ACTIONS(5935), 1, anon_sym_COMMA, - ACTIONS(4809), 1, + STATE(2112), 1, + sym_sym_lit, + STATE(2589), 1, + sym__bare_set_lit, + STATE(2824), 1, + aux_sym_list_lit_repeat1, + STATE(2860), 1, + sym_old_meta_lit, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, + sym__metadata_lit, + ACTIONS(230), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(236), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5925), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5937), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6387), 2, + sym__ws, + sym_comment, + ACTIONS(5815), 3, + anon_sym_DOT, + sym_nil_lit, + sym_fancy_literal, + STATE(750), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2596), 19, + sym__form, + sym_num_lit, + sym_kwd_lit, + sym_str_lit, + sym_char_lit, + sym_list_lit, + sym_vec_lit, + sym_set_lit, + sym_read_cond_lit, + sym_splicing_read_cond_lit, + sym_var_quoting_lit, + sym_quoting_lit, + sym_syn_quoting_lit, + sym_unquote_splicing_lit, + sym_unquoting_lit, + sym_path_lit, + sym_package_lit, + sym_include_reader_macro, + sym_complex_num_lit, + [46037] = 35, + ACTIONS(9), 1, + anon_sym_POUND_, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(184), 1, + anon_sym_COLON_COLON, + ACTIONS(186), 1, + anon_sym_DQUOTE, + ACTIONS(188), 1, + aux_sym_sym_lit_token1, + ACTIONS(207), 1, + anon_sym_POUND_QMARK, + ACTIONS(209), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(4767), 1, anon_sym_COLON, - ACTIONS(4811), 1, + ACTIONS(4769), 1, anon_sym_LPAREN, - ACTIONS(4825), 1, + ACTIONS(4771), 1, anon_sym_cl, - ACTIONS(6525), 1, + ACTIONS(5661), 1, sym_self_referential_reader_macro, - STATE(2497), 1, + ACTIONS(5921), 1, + anon_sym_POUND, + ACTIONS(5923), 1, + aux_sym_num_lit_token1, + ACTIONS(5927), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(5929), 1, + anon_sym_SQUOTE, + ACTIONS(5931), 1, + anon_sym_BQUOTE, + ACTIONS(5933), 1, + anon_sym_COMMA_AT, + ACTIONS(5935), 1, + anon_sym_COMMA, + STATE(2112), 1, sym_sym_lit, - STATE(2625), 1, + STATE(2589), 1, sym__bare_set_lit, - STATE(2834), 1, + STATE(2824), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(98), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(123), 2, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(127), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(129), 2, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6521), 2, + ACTIONS(5925), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5937), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6389), 2, sym__ws, sym_comment, - ACTIONS(6523), 3, + ACTIONS(5659), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(418), 3, + STATE(751), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(2584), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2710), 19, + STATE(2177), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -81361,78 +80933,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(67), 1, - anon_sym_POUND, - ACTIONS(71), 1, - aux_sym_num_lit_token1, - ACTIONS(77), 1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(104), 1, + ACTIONS(4767), 1, + anon_sym_COLON, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, + anon_sym_cl, + ACTIONS(5827), 1, + sym_self_referential_reader_macro, + ACTIONS(5921), 1, + anon_sym_POUND, + ACTIONS(5923), 1, + aux_sym_num_lit_token1, + ACTIONS(5927), 1, anon_sym_POUND_SQUOTE, - ACTIONS(106), 1, + ACTIONS(5929), 1, anon_sym_SQUOTE, - ACTIONS(108), 1, + ACTIONS(5931), 1, anon_sym_BQUOTE, - ACTIONS(110), 1, + ACTIONS(5933), 1, anon_sym_COMMA_AT, - ACTIONS(112), 1, + ACTIONS(5935), 1, anon_sym_COMMA, - ACTIONS(4809), 1, - anon_sym_COLON, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4825), 1, - anon_sym_cl, - ACTIONS(6531), 1, - sym_self_referential_reader_macro, - STATE(2497), 1, + STATE(2112), 1, sym_sym_lit, - STATE(2625), 1, + STATE(2589), 1, sym__bare_set_lit, - STATE(2834), 1, + STATE(2824), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(98), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(123), 2, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(127), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(129), 2, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6527), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(6529), 3, + ACTIONS(5925), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5937), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5825), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(416), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(2584), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2714), 19, + STATE(2602), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -81461,78 +81033,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6211), 1, - anon_sym_POUND, - ACTIONS(6215), 1, - aux_sym_num_lit_token1, - ACTIONS(6217), 1, - anon_sym_COLON, - ACTIONS(6219), 1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(6221), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(6223), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(6225), 1, - anon_sym_LPAREN, - ACTIONS(6229), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(6231), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(6233), 1, + ACTIONS(4767), 1, + anon_sym_COLON, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, + anon_sym_cl, + ACTIONS(5833), 1, + sym_self_referential_reader_macro, + ACTIONS(5921), 1, + anon_sym_POUND, + ACTIONS(5923), 1, + aux_sym_num_lit_token1, + ACTIONS(5927), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6235), 1, + ACTIONS(5929), 1, anon_sym_SQUOTE, - ACTIONS(6237), 1, + ACTIONS(5931), 1, anon_sym_BQUOTE, - ACTIONS(6239), 1, + ACTIONS(5933), 1, anon_sym_COMMA_AT, - ACTIONS(6241), 1, + ACTIONS(5935), 1, anon_sym_COMMA, - ACTIONS(6243), 1, - anon_sym_cl, - ACTIONS(6535), 1, - sym_self_referential_reader_macro, - STATE(1675), 1, + STATE(2112), 1, sym_sym_lit, - STATE(1677), 1, + STATE(2589), 1, sym__bare_set_lit, - STATE(2833), 1, + STATE(2824), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(4801), 2, - sym__ws, - sym_comment, - ACTIONS(6227), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(6245), 2, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(6249), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(6251), 2, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6533), 3, + ACTIONS(5925), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5937), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6391), 2, + sym__ws, + sym_comment, + ACTIONS(5831), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1676), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(754), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1711), 19, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2603), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -81561,78 +81133,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6211), 1, - anon_sym_POUND, - ACTIONS(6215), 1, - aux_sym_num_lit_token1, - ACTIONS(6217), 1, - anon_sym_COLON, - ACTIONS(6219), 1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(6221), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(6223), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(6225), 1, - anon_sym_LPAREN, - ACTIONS(6229), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(6231), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(6233), 1, + ACTIONS(4767), 1, + anon_sym_COLON, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, + anon_sym_cl, + ACTIONS(5837), 1, + sym_self_referential_reader_macro, + ACTIONS(5921), 1, + anon_sym_POUND, + ACTIONS(5923), 1, + aux_sym_num_lit_token1, + ACTIONS(5927), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6235), 1, + ACTIONS(5929), 1, anon_sym_SQUOTE, - ACTIONS(6237), 1, + ACTIONS(5931), 1, anon_sym_BQUOTE, - ACTIONS(6239), 1, + ACTIONS(5933), 1, anon_sym_COMMA_AT, - ACTIONS(6241), 1, + ACTIONS(5935), 1, anon_sym_COMMA, - ACTIONS(6243), 1, - anon_sym_cl, - ACTIONS(6539), 1, - sym_self_referential_reader_macro, - STATE(1675), 1, + STATE(2112), 1, sym_sym_lit, - STATE(1677), 1, + STATE(2589), 1, sym__bare_set_lit, - STATE(2833), 1, + STATE(2824), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(4801), 2, + ACTIONS(230), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(236), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(6227), 2, + ACTIONS(5925), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(6245), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(6249), 2, + ACTIONS(5937), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6251), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(6537), 3, + ACTIONS(5835), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1676), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1707), 19, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2605), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -81661,78 +81233,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(137), 1, - anon_sym_POUND, - ACTIONS(141), 1, - aux_sym_num_lit_token1, - ACTIONS(146), 1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(148), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(150), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(165), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(167), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(169), 1, + ACTIONS(4767), 1, + anon_sym_COLON, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, + anon_sym_cl, + ACTIONS(5841), 1, + sym_self_referential_reader_macro, + ACTIONS(5921), 1, + anon_sym_POUND, + ACTIONS(5923), 1, + aux_sym_num_lit_token1, + ACTIONS(5927), 1, anon_sym_POUND_SQUOTE, - ACTIONS(171), 1, + ACTIONS(5929), 1, anon_sym_SQUOTE, - ACTIONS(173), 1, + ACTIONS(5931), 1, anon_sym_BQUOTE, - ACTIONS(175), 1, + ACTIONS(5933), 1, anon_sym_COMMA_AT, - ACTIONS(177), 1, + ACTIONS(5935), 1, anon_sym_COMMA, - ACTIONS(4855), 1, - anon_sym_COLON, - ACTIONS(4857), 1, - anon_sym_LPAREN, - ACTIONS(4859), 1, - anon_sym_cl, - ACTIONS(6545), 1, - sym_self_referential_reader_macro, - STATE(1069), 1, - sym__bare_set_lit, - STATE(1073), 1, + STATE(2112), 1, sym_sym_lit, - STATE(2804), 1, + STATE(2589), 1, + sym__bare_set_lit, + STATE(2824), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(163), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(186), 2, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(190), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(192), 2, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6541), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(6543), 3, + ACTIONS(5925), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5937), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5839), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(413), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1070), 3, + STATE(2584), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(4), 19, + STATE(2606), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -81761,78 +81333,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5029), 1, - anon_sym_COLON, - ACTIONS(5031), 1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(5033), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(5035), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(5053), 1, + ACTIONS(207), 1, + anon_sym_POUND_QMARK, + ACTIONS(209), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(4767), 1, + anon_sym_COLON, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, anon_sym_cl, - ACTIONS(5175), 1, + ACTIONS(5683), 1, + sym_self_referential_reader_macro, + ACTIONS(5921), 1, anon_sym_POUND, - ACTIONS(5179), 1, + ACTIONS(5923), 1, aux_sym_num_lit_token1, - ACTIONS(5181), 1, - anon_sym_LPAREN, - ACTIONS(5185), 1, - anon_sym_POUND_QMARK, - ACTIONS(5187), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(5189), 1, + ACTIONS(5927), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5191), 1, + ACTIONS(5929), 1, anon_sym_SQUOTE, - ACTIONS(5193), 1, + ACTIONS(5931), 1, anon_sym_BQUOTE, - ACTIONS(5195), 1, + ACTIONS(5933), 1, anon_sym_COMMA_AT, - ACTIONS(5197), 1, + ACTIONS(5935), 1, anon_sym_COMMA, - ACTIONS(5297), 1, - sym_self_referential_reader_macro, - STATE(2839), 1, + STATE(2112), 1, + sym_sym_lit, + STATE(2589), 1, + sym__bare_set_lit, + STATE(2824), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, - sym__bare_set_lit, - STATE(3078), 1, - sym_sym_lit, - ACTIONS(5055), 2, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(5061), 2, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5183), 2, + ACTIONS(4763), 2, + sym__ws, + sym_comment, + ACTIONS(5925), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5201), 2, + ACTIONS(5937), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6547), 2, - sym__ws, - sym_comment, - ACTIONS(5295), 3, + ACTIONS(5681), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(772), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2991), 3, + STATE(2584), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2935), 19, + STATE(2491), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -81861,78 +81433,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5029), 1, - anon_sym_COLON, - ACTIONS(5031), 1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(5033), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(5035), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(5053), 1, + ACTIONS(207), 1, + anon_sym_POUND_QMARK, + ACTIONS(209), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(4767), 1, + anon_sym_COLON, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, anon_sym_cl, - ACTIONS(5175), 1, + ACTIONS(5851), 1, + sym_self_referential_reader_macro, + ACTIONS(5921), 1, anon_sym_POUND, - ACTIONS(5179), 1, + ACTIONS(5923), 1, aux_sym_num_lit_token1, - ACTIONS(5181), 1, - anon_sym_LPAREN, - ACTIONS(5185), 1, - anon_sym_POUND_QMARK, - ACTIONS(5187), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(5189), 1, + ACTIONS(5927), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5191), 1, + ACTIONS(5929), 1, anon_sym_SQUOTE, - ACTIONS(5193), 1, + ACTIONS(5931), 1, anon_sym_BQUOTE, - ACTIONS(5195), 1, + ACTIONS(5933), 1, anon_sym_COMMA_AT, - ACTIONS(5197), 1, + ACTIONS(5935), 1, anon_sym_COMMA, - ACTIONS(5291), 1, - sym_self_referential_reader_macro, - STATE(2839), 1, + STATE(2112), 1, + sym_sym_lit, + STATE(2589), 1, + sym__bare_set_lit, + STATE(2824), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, - sym__bare_set_lit, - STATE(3078), 1, - sym_sym_lit, - ACTIONS(5055), 2, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(5061), 2, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5183), 2, + ACTIONS(5925), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5201), 2, + ACTIONS(5937), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6549), 2, + ACTIONS(6393), 2, sym__ws, sym_comment, - ACTIONS(5289), 3, + ACTIONS(5849), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(774), 3, + STATE(755), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2991), 3, + STATE(2584), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2936), 19, + STATE(2607), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -81961,78 +81533,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2728), 1, - anon_sym_POUND, - ACTIONS(2732), 1, - aux_sym_num_lit_token1, - ACTIONS(2737), 1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(2739), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(2741), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(2756), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(2758), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2760), 1, + ACTIONS(4767), 1, + anon_sym_COLON, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, + anon_sym_cl, + ACTIONS(5857), 1, + sym_self_referential_reader_macro, + ACTIONS(5921), 1, + anon_sym_POUND, + ACTIONS(5923), 1, + aux_sym_num_lit_token1, + ACTIONS(5927), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2762), 1, + ACTIONS(5929), 1, anon_sym_SQUOTE, - ACTIONS(2764), 1, + ACTIONS(5931), 1, anon_sym_BQUOTE, - ACTIONS(2766), 1, + ACTIONS(5933), 1, anon_sym_COMMA_AT, - ACTIONS(2768), 1, + ACTIONS(5935), 1, anon_sym_COMMA, - ACTIONS(4793), 1, - anon_sym_COLON, - ACTIONS(4795), 1, - anon_sym_LPAREN, - ACTIONS(4797), 1, - anon_sym_cl, - ACTIONS(6555), 1, - sym_self_referential_reader_macro, - STATE(1482), 1, - sym__bare_set_lit, - STATE(1484), 1, + STATE(2112), 1, sym_sym_lit, - STATE(2813), 1, + STATE(2589), 1, + sym__bare_set_lit, + STATE(2824), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(2754), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(2775), 2, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2779), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(2781), 2, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6551), 2, + ACTIONS(5925), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5937), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6395), 2, sym__ws, sym_comment, - ACTIONS(6553), 3, + ACTIONS(5855), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(410), 3, + STATE(757), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1483), 3, + STATE(2584), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(60), 19, + STATE(2609), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -82061,78 +81633,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(67), 1, - anon_sym_POUND, - ACTIONS(71), 1, - aux_sym_num_lit_token1, - ACTIONS(77), 1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(104), 1, + ACTIONS(4767), 1, + anon_sym_COLON, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, + anon_sym_cl, + ACTIONS(5861), 1, + sym_self_referential_reader_macro, + ACTIONS(5921), 1, + anon_sym_POUND, + ACTIONS(5923), 1, + aux_sym_num_lit_token1, + ACTIONS(5927), 1, anon_sym_POUND_SQUOTE, - ACTIONS(106), 1, + ACTIONS(5929), 1, anon_sym_SQUOTE, - ACTIONS(108), 1, + ACTIONS(5931), 1, anon_sym_BQUOTE, - ACTIONS(110), 1, + ACTIONS(5933), 1, anon_sym_COMMA_AT, - ACTIONS(112), 1, + ACTIONS(5935), 1, anon_sym_COMMA, - ACTIONS(4809), 1, - anon_sym_COLON, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4825), 1, - anon_sym_cl, - ACTIONS(4965), 1, - sym_self_referential_reader_macro, - STATE(2497), 1, + STATE(2112), 1, sym_sym_lit, - STATE(2625), 1, + STATE(2589), 1, sym__bare_set_lit, - STATE(2834), 1, + STATE(2824), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(98), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(123), 2, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(127), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(129), 2, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6557), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(4963), 3, + ACTIONS(5925), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5937), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5859), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(717), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(2584), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2584), 19, + STATE(2614), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -82161,78 +81733,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(67), 1, - anon_sym_POUND, - ACTIONS(71), 1, - aux_sym_num_lit_token1, - ACTIONS(77), 1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(104), 1, + ACTIONS(4767), 1, + anon_sym_COLON, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, + anon_sym_cl, + ACTIONS(5865), 1, + sym_self_referential_reader_macro, + ACTIONS(5921), 1, + anon_sym_POUND, + ACTIONS(5923), 1, + aux_sym_num_lit_token1, + ACTIONS(5927), 1, anon_sym_POUND_SQUOTE, - ACTIONS(106), 1, + ACTIONS(5929), 1, anon_sym_SQUOTE, - ACTIONS(108), 1, + ACTIONS(5931), 1, anon_sym_BQUOTE, - ACTIONS(110), 1, + ACTIONS(5933), 1, anon_sym_COMMA_AT, - ACTIONS(112), 1, + ACTIONS(5935), 1, anon_sym_COMMA, - ACTIONS(4809), 1, - anon_sym_COLON, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4825), 1, - anon_sym_cl, - ACTIONS(5083), 1, - sym_self_referential_reader_macro, - STATE(2497), 1, + STATE(2112), 1, sym_sym_lit, - STATE(2625), 1, + STATE(2589), 1, sym__bare_set_lit, - STATE(2834), 1, + STATE(2824), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(98), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(123), 2, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(127), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(129), 2, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6559), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(5081), 3, + ACTIONS(5925), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5937), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5863), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(728), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(2584), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2587), 19, + STATE(2616), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -82261,78 +81833,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2728), 1, - anon_sym_POUND, - ACTIONS(2732), 1, - aux_sym_num_lit_token1, - ACTIONS(2737), 1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(2739), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(2741), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(2756), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(2758), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2760), 1, + ACTIONS(4767), 1, + anon_sym_COLON, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, + anon_sym_cl, + ACTIONS(5871), 1, + sym_self_referential_reader_macro, + ACTIONS(5921), 1, + anon_sym_POUND, + ACTIONS(5923), 1, + aux_sym_num_lit_token1, + ACTIONS(5927), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2762), 1, + ACTIONS(5929), 1, anon_sym_SQUOTE, - ACTIONS(2764), 1, + ACTIONS(5931), 1, anon_sym_BQUOTE, - ACTIONS(2766), 1, + ACTIONS(5933), 1, anon_sym_COMMA_AT, - ACTIONS(2768), 1, + ACTIONS(5935), 1, anon_sym_COMMA, - ACTIONS(4793), 1, - anon_sym_COLON, - ACTIONS(4795), 1, - anon_sym_LPAREN, - ACTIONS(4797), 1, - anon_sym_cl, - ACTIONS(6563), 1, - sym_self_referential_reader_macro, - STATE(1482), 1, - sym__bare_set_lit, - STATE(1484), 1, + STATE(2112), 1, sym_sym_lit, - STATE(2813), 1, + STATE(2589), 1, + sym__bare_set_lit, + STATE(2824), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(2754), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(2775), 2, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2779), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(2781), 2, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(5925), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5937), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6397), 2, sym__ws, sym_comment, - ACTIONS(6561), 3, + ACTIONS(5869), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1483), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(759), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1425), 19, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2617), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -82361,78 +81933,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4747), 1, - anon_sym_POUND, - ACTIONS(4751), 1, - aux_sym_num_lit_token1, - ACTIONS(4753), 1, - anon_sym_COLON, - ACTIONS(4755), 1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(4757), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(4759), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(4761), 1, - anon_sym_LPAREN, - ACTIONS(4765), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(4767), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, + ACTIONS(4767), 1, + anon_sym_COLON, ACTIONS(4769), 1, - anon_sym_POUND_SQUOTE, + anon_sym_LPAREN, ACTIONS(4771), 1, + anon_sym_cl, + ACTIONS(5875), 1, + sym_self_referential_reader_macro, + ACTIONS(5921), 1, + anon_sym_POUND, + ACTIONS(5923), 1, + aux_sym_num_lit_token1, + ACTIONS(5927), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(5929), 1, anon_sym_SQUOTE, - ACTIONS(4773), 1, + ACTIONS(5931), 1, anon_sym_BQUOTE, - ACTIONS(4775), 1, + ACTIONS(5933), 1, anon_sym_COMMA_AT, - ACTIONS(4777), 1, + ACTIONS(5935), 1, anon_sym_COMMA, - ACTIONS(4779), 1, - anon_sym_cl, - ACTIONS(6567), 1, - sym_self_referential_reader_macro, - STATE(1489), 1, + STATE(2112), 1, sym_sym_lit, - STATE(1557), 1, + STATE(2589), 1, sym__bare_set_lit, - STATE(2841), 1, + STATE(2824), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(4763), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(4781), 2, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4785), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(4787), 2, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(6565), 3, + ACTIONS(5925), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5937), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5873), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1612), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1561), 19, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2618), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -82461,78 +82033,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5029), 1, - anon_sym_COLON, - ACTIONS(5031), 1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(5033), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(5035), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(5053), 1, + ACTIONS(207), 1, + anon_sym_POUND_QMARK, + ACTIONS(209), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(4767), 1, + anon_sym_COLON, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, anon_sym_cl, - ACTIONS(5175), 1, + ACTIONS(5881), 1, + sym_self_referential_reader_macro, + ACTIONS(5921), 1, anon_sym_POUND, - ACTIONS(5179), 1, + ACTIONS(5923), 1, aux_sym_num_lit_token1, - ACTIONS(5181), 1, - anon_sym_LPAREN, - ACTIONS(5185), 1, - anon_sym_POUND_QMARK, - ACTIONS(5187), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(5189), 1, + ACTIONS(5927), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5191), 1, + ACTIONS(5929), 1, anon_sym_SQUOTE, - ACTIONS(5193), 1, + ACTIONS(5931), 1, anon_sym_BQUOTE, - ACTIONS(5195), 1, + ACTIONS(5933), 1, anon_sym_COMMA_AT, - ACTIONS(5197), 1, + ACTIONS(5935), 1, anon_sym_COMMA, - ACTIONS(5285), 1, - sym_self_referential_reader_macro, - STATE(2839), 1, + STATE(2112), 1, + sym_sym_lit, + STATE(2589), 1, + sym__bare_set_lit, + STATE(2824), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, - sym__bare_set_lit, - STATE(3078), 1, - sym_sym_lit, - ACTIONS(5055), 2, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(5061), 2, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5183), 2, + ACTIONS(5925), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5201), 2, + ACTIONS(5937), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6569), 2, + ACTIONS(6399), 2, sym__ws, sym_comment, - ACTIONS(5283), 3, + ACTIONS(5879), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(775), 3, + STATE(760), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2991), 3, + STATE(2584), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2940), 19, + STATE(2619), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -82561,78 +82133,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(67), 1, - anon_sym_POUND, - ACTIONS(71), 1, - aux_sym_num_lit_token1, - ACTIONS(77), 1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(104), 1, + ACTIONS(4767), 1, + anon_sym_COLON, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, + anon_sym_cl, + ACTIONS(5885), 1, + sym_self_referential_reader_macro, + ACTIONS(5921), 1, + anon_sym_POUND, + ACTIONS(5923), 1, + aux_sym_num_lit_token1, + ACTIONS(5927), 1, anon_sym_POUND_SQUOTE, - ACTIONS(106), 1, + ACTIONS(5929), 1, anon_sym_SQUOTE, - ACTIONS(108), 1, + ACTIONS(5931), 1, anon_sym_BQUOTE, - ACTIONS(110), 1, + ACTIONS(5933), 1, anon_sym_COMMA_AT, - ACTIONS(112), 1, + ACTIONS(5935), 1, anon_sym_COMMA, - ACTIONS(4809), 1, - anon_sym_COLON, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4825), 1, - anon_sym_cl, - ACTIONS(4827), 1, - sym_self_referential_reader_macro, - STATE(2497), 1, + STATE(2112), 1, sym_sym_lit, - STATE(2625), 1, + STATE(2589), 1, sym__bare_set_lit, - STATE(2834), 1, + STATE(2824), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(98), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(123), 2, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(127), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(129), 2, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(4805), 3, + ACTIONS(5925), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5937), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5883), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(2584), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2589), 19, + STATE(2624), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -82661,78 +82233,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(67), 1, - anon_sym_POUND, - ACTIONS(71), 1, - aux_sym_num_lit_token1, - ACTIONS(77), 1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(104), 1, + ACTIONS(4767), 1, + anon_sym_COLON, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, + anon_sym_cl, + ACTIONS(5889), 1, + sym_self_referential_reader_macro, + ACTIONS(5921), 1, + anon_sym_POUND, + ACTIONS(5923), 1, + aux_sym_num_lit_token1, + ACTIONS(5927), 1, anon_sym_POUND_SQUOTE, - ACTIONS(106), 1, + ACTIONS(5929), 1, anon_sym_SQUOTE, - ACTIONS(108), 1, + ACTIONS(5931), 1, anon_sym_BQUOTE, - ACTIONS(110), 1, + ACTIONS(5933), 1, anon_sym_COMMA_AT, - ACTIONS(112), 1, + ACTIONS(5935), 1, anon_sym_COMMA, - ACTIONS(4809), 1, - anon_sym_COLON, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4825), 1, - anon_sym_cl, - ACTIONS(6573), 1, - sym_self_referential_reader_macro, - STATE(2497), 1, + STATE(2112), 1, sym_sym_lit, - STATE(2625), 1, + STATE(2589), 1, sym__bare_set_lit, - STATE(2834), 1, + STATE(2824), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(98), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(123), 2, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(127), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(129), 2, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(6571), 3, + ACTIONS(5925), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5937), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5887), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(2584), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2720), 19, + STATE(2625), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -82761,78 +82333,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4747), 1, + ACTIONS(1454), 1, anon_sym_POUND, - ACTIONS(4751), 1, + ACTIONS(1458), 1, aux_sym_num_lit_token1, - ACTIONS(4753), 1, - anon_sym_COLON, - ACTIONS(4755), 1, + ACTIONS(1462), 1, anon_sym_COLON_COLON, - ACTIONS(4757), 1, + ACTIONS(1464), 1, anon_sym_DQUOTE, - ACTIONS(4759), 1, + ACTIONS(1466), 1, aux_sym_sym_lit_token1, - ACTIONS(4761), 1, + ACTIONS(1468), 1, anon_sym_LPAREN, - ACTIONS(4765), 1, + ACTIONS(1472), 1, anon_sym_POUND_QMARK, - ACTIONS(4767), 1, + ACTIONS(1474), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4769), 1, + ACTIONS(1476), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4771), 1, + ACTIONS(1478), 1, anon_sym_SQUOTE, - ACTIONS(4773), 1, + ACTIONS(1480), 1, anon_sym_BQUOTE, - ACTIONS(4775), 1, + ACTIONS(1482), 1, anon_sym_COMMA_AT, - ACTIONS(4777), 1, + ACTIONS(1484), 1, anon_sym_COMMA, - ACTIONS(4779), 1, - anon_sym_cl, - ACTIONS(6579), 1, + ACTIONS(5589), 1, sym_self_referential_reader_macro, - STATE(1489), 1, - sym_sym_lit, - STATE(1557), 1, + ACTIONS(6403), 1, + anon_sym_COLON, + ACTIONS(6405), 1, + anon_sym_cl, + STATE(1976), 1, sym__bare_set_lit, - STATE(2841), 1, + STATE(2766), 1, + sym_sym_lit, + STATE(2830), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(4763), 2, + ACTIONS(1470), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4781), 2, + ACTIONS(1492), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4785), 2, + ACTIONS(1496), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4787), 2, + ACTIONS(1498), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6575), 2, + ACTIONS(6401), 2, sym__ws, sym_comment, - ACTIONS(6577), 3, + ACTIONS(5587), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(668), 3, + STATE(767), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1612), 3, + STATE(1975), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1562), 19, + STATE(1895), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -82855,84 +82427,84 @@ static const uint16_t ts_small_parse_table[] = { [48197] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, - anon_sym_POUND_QMARK, - ACTIONS(35), 1, - anon_sym_POUND_QMARK_AT, ACTIONS(47), 1, sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(5433), 1, - sym_self_referential_reader_macro, - ACTIONS(6583), 1, + ACTIONS(1454), 1, anon_sym_POUND, - ACTIONS(6585), 1, + ACTIONS(1458), 1, aux_sym_num_lit_token1, - ACTIONS(6589), 1, + ACTIONS(1462), 1, + anon_sym_COLON_COLON, + ACTIONS(1464), 1, + anon_sym_DQUOTE, + ACTIONS(1466), 1, + aux_sym_sym_lit_token1, + ACTIONS(1468), 1, + anon_sym_LPAREN, + ACTIONS(1472), 1, + anon_sym_POUND_QMARK, + ACTIONS(1474), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(1476), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6591), 1, + ACTIONS(1478), 1, anon_sym_SQUOTE, - ACTIONS(6593), 1, + ACTIONS(1480), 1, anon_sym_BQUOTE, - ACTIONS(6595), 1, + ACTIONS(1482), 1, anon_sym_COMMA_AT, - ACTIONS(6597), 1, + ACTIONS(1484), 1, anon_sym_COMMA, - STATE(1875), 1, + ACTIONS(5595), 1, + sym_self_referential_reader_macro, + ACTIONS(6403), 1, + anon_sym_COLON, + ACTIONS(6405), 1, + anon_sym_cl, + STATE(1976), 1, sym__bare_set_lit, - STATE(1878), 1, + STATE(2766), 1, sym_sym_lit, - STATE(2811), 1, + STATE(2830), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(51), 2, + ACTIONS(1470), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(1492), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(57), 2, + ACTIONS(1496), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1498), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6581), 2, + ACTIONS(6407), 2, sym__ws, sym_comment, - ACTIONS(6587), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(6599), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(5431), 3, + ACTIONS(5593), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(777), 3, + STATE(768), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1877), 3, + STATE(1975), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1867), 19, + STATE(1896), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -82961,78 +82533,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(67), 1, + ACTIONS(1454), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(1458), 1, aux_sym_num_lit_token1, - ACTIONS(77), 1, + ACTIONS(1462), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(1464), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(1466), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(1468), 1, + anon_sym_LPAREN, + ACTIONS(1472), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(1474), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(104), 1, + ACTIONS(1476), 1, anon_sym_POUND_SQUOTE, - ACTIONS(106), 1, + ACTIONS(1478), 1, anon_sym_SQUOTE, - ACTIONS(108), 1, + ACTIONS(1480), 1, anon_sym_BQUOTE, - ACTIONS(110), 1, + ACTIONS(1482), 1, anon_sym_COMMA_AT, - ACTIONS(112), 1, + ACTIONS(1484), 1, anon_sym_COMMA, - ACTIONS(4809), 1, + ACTIONS(5601), 1, + sym_self_referential_reader_macro, + ACTIONS(6403), 1, anon_sym_COLON, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4825), 1, + ACTIONS(6405), 1, anon_sym_cl, - ACTIONS(4833), 1, - sym_self_referential_reader_macro, - STATE(2497), 1, - sym_sym_lit, - STATE(2625), 1, + STATE(1976), 1, sym__bare_set_lit, - STATE(2834), 1, + STATE(2766), 1, + sym_sym_lit, + STATE(2830), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(98), 2, + ACTIONS(1470), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(123), 2, + ACTIONS(1492), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(127), 2, + ACTIONS(1496), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(129), 2, + ACTIONS(1498), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(6409), 2, sym__ws, sym_comment, - ACTIONS(4831), 3, + ACTIONS(5599), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, + STATE(769), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(1975), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2590), 19, + STATE(1890), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -83061,78 +82633,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(67), 1, + ACTIONS(1454), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(1458), 1, aux_sym_num_lit_token1, - ACTIONS(77), 1, + ACTIONS(1462), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(1464), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(1466), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(1468), 1, + anon_sym_LPAREN, + ACTIONS(1472), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(1474), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(104), 1, + ACTIONS(1476), 1, anon_sym_POUND_SQUOTE, - ACTIONS(106), 1, + ACTIONS(1478), 1, anon_sym_SQUOTE, - ACTIONS(108), 1, + ACTIONS(1480), 1, anon_sym_BQUOTE, - ACTIONS(110), 1, + ACTIONS(1482), 1, anon_sym_COMMA_AT, - ACTIONS(112), 1, + ACTIONS(1484), 1, anon_sym_COMMA, - ACTIONS(4809), 1, + ACTIONS(6403), 1, anon_sym_COLON, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4825), 1, + ACTIONS(6405), 1, anon_sym_cl, - ACTIONS(6603), 1, + ACTIONS(6415), 1, sym_self_referential_reader_macro, - STATE(2497), 1, - sym_sym_lit, - STATE(2625), 1, + STATE(1976), 1, sym__bare_set_lit, - STATE(2834), 1, + STATE(2766), 1, + sym_sym_lit, + STATE(2830), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(98), 2, + ACTIONS(1470), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(123), 2, + ACTIONS(1492), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(127), 2, + ACTIONS(1496), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(129), 2, + ACTIONS(1498), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(6411), 2, sym__ws, sym_comment, - ACTIONS(6601), 3, + ACTIONS(6413), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, + STATE(770), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(1975), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2675), 19, + STATE(2780), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -83155,84 +82727,84 @@ static const uint16_t ts_small_parse_table[] = { [48602] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, - anon_sym_POUND_QMARK, - ACTIONS(35), 1, - anon_sym_POUND_QMARK_AT, ACTIONS(47), 1, sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(5449), 1, - sym_self_referential_reader_macro, - ACTIONS(6583), 1, + ACTIONS(1454), 1, anon_sym_POUND, - ACTIONS(6585), 1, + ACTIONS(1458), 1, aux_sym_num_lit_token1, - ACTIONS(6589), 1, + ACTIONS(1462), 1, + anon_sym_COLON_COLON, + ACTIONS(1464), 1, + anon_sym_DQUOTE, + ACTIONS(1466), 1, + aux_sym_sym_lit_token1, + ACTIONS(1468), 1, + anon_sym_LPAREN, + ACTIONS(1472), 1, + anon_sym_POUND_QMARK, + ACTIONS(1474), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(1476), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6591), 1, + ACTIONS(1478), 1, anon_sym_SQUOTE, - ACTIONS(6593), 1, + ACTIONS(1480), 1, anon_sym_BQUOTE, - ACTIONS(6595), 1, + ACTIONS(1482), 1, anon_sym_COMMA_AT, - ACTIONS(6597), 1, + ACTIONS(1484), 1, anon_sym_COMMA, - STATE(1875), 1, + ACTIONS(6403), 1, + anon_sym_COLON, + ACTIONS(6405), 1, + anon_sym_cl, + ACTIONS(6421), 1, + sym_self_referential_reader_macro, + STATE(1976), 1, sym__bare_set_lit, - STATE(1878), 1, + STATE(2766), 1, sym_sym_lit, - STATE(2811), 1, + STATE(2830), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(57), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(6587), 2, + ACTIONS(1470), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(6599), 2, + ACTIONS(1492), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(1496), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6605), 2, + ACTIONS(1498), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6417), 2, sym__ws, sym_comment, - ACTIONS(5447), 3, + ACTIONS(6419), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(780), 3, + STATE(771), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1877), 3, + STATE(1975), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1866), 19, + STATE(2781), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -83261,78 +82833,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(67), 1, + ACTIONS(1454), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(1458), 1, aux_sym_num_lit_token1, - ACTIONS(77), 1, + ACTIONS(1462), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(1464), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(1466), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(1468), 1, + anon_sym_LPAREN, + ACTIONS(1472), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(1474), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(104), 1, + ACTIONS(1476), 1, anon_sym_POUND_SQUOTE, - ACTIONS(106), 1, + ACTIONS(1478), 1, anon_sym_SQUOTE, - ACTIONS(108), 1, + ACTIONS(1480), 1, anon_sym_BQUOTE, - ACTIONS(110), 1, + ACTIONS(1482), 1, anon_sym_COMMA_AT, - ACTIONS(112), 1, + ACTIONS(1484), 1, anon_sym_COMMA, - ACTIONS(4809), 1, + ACTIONS(6403), 1, anon_sym_COLON, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4825), 1, + ACTIONS(6405), 1, anon_sym_cl, - ACTIONS(6609), 1, + ACTIONS(6425), 1, sym_self_referential_reader_macro, - STATE(2497), 1, - sym_sym_lit, - STATE(2625), 1, + STATE(1976), 1, sym__bare_set_lit, - STATE(2834), 1, + STATE(2766), 1, + sym_sym_lit, + STATE(2830), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(98), 2, + ACTIONS(1470), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(123), 2, + ACTIONS(1492), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(127), 2, + ACTIONS(1496), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(129), 2, + ACTIONS(1498), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(6607), 3, + ACTIONS(6423), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(1975), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2745), 19, + STATE(2795), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -83361,78 +82933,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4747), 1, + ACTIONS(1454), 1, anon_sym_POUND, - ACTIONS(4751), 1, + ACTIONS(1458), 1, aux_sym_num_lit_token1, - ACTIONS(4753), 1, - anon_sym_COLON, - ACTIONS(4755), 1, + ACTIONS(1462), 1, anon_sym_COLON_COLON, - ACTIONS(4757), 1, + ACTIONS(1464), 1, anon_sym_DQUOTE, - ACTIONS(4759), 1, + ACTIONS(1466), 1, aux_sym_sym_lit_token1, - ACTIONS(4761), 1, + ACTIONS(1468), 1, anon_sym_LPAREN, - ACTIONS(4765), 1, + ACTIONS(1472), 1, anon_sym_POUND_QMARK, - ACTIONS(4767), 1, + ACTIONS(1474), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4769), 1, + ACTIONS(1476), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4771), 1, + ACTIONS(1478), 1, anon_sym_SQUOTE, - ACTIONS(4773), 1, + ACTIONS(1480), 1, anon_sym_BQUOTE, - ACTIONS(4775), 1, + ACTIONS(1482), 1, anon_sym_COMMA_AT, - ACTIONS(4777), 1, + ACTIONS(1484), 1, anon_sym_COMMA, - ACTIONS(4779), 1, - anon_sym_cl, - ACTIONS(6613), 1, + ACTIONS(5621), 1, sym_self_referential_reader_macro, - STATE(1489), 1, - sym_sym_lit, - STATE(1557), 1, + ACTIONS(6403), 1, + anon_sym_COLON, + ACTIONS(6405), 1, + anon_sym_cl, + STATE(1976), 1, sym__bare_set_lit, - STATE(2841), 1, + STATE(2766), 1, + sym_sym_lit, + STATE(2830), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(4763), 2, + ACTIONS(1470), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4781), 2, + ACTIONS(1492), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4785), 2, + ACTIONS(1496), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4787), 2, + ACTIONS(1498), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(6611), 3, + ACTIONS(5619), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1612), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1568), 19, + STATE(1975), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1906), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -83455,84 +83027,84 @@ static const uint16_t ts_small_parse_table[] = { [49007] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, - anon_sym_POUND_QMARK, - ACTIONS(35), 1, - anon_sym_POUND_QMARK_AT, ACTIONS(47), 1, sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(5993), 1, - sym_self_referential_reader_macro, - ACTIONS(6583), 1, + ACTIONS(1454), 1, anon_sym_POUND, - ACTIONS(6585), 1, + ACTIONS(1458), 1, aux_sym_num_lit_token1, - ACTIONS(6589), 1, + ACTIONS(1462), 1, + anon_sym_COLON_COLON, + ACTIONS(1464), 1, + anon_sym_DQUOTE, + ACTIONS(1466), 1, + aux_sym_sym_lit_token1, + ACTIONS(1468), 1, + anon_sym_LPAREN, + ACTIONS(1472), 1, + anon_sym_POUND_QMARK, + ACTIONS(1474), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(1476), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6591), 1, + ACTIONS(1478), 1, anon_sym_SQUOTE, - ACTIONS(6593), 1, + ACTIONS(1480), 1, anon_sym_BQUOTE, - ACTIONS(6595), 1, + ACTIONS(1482), 1, anon_sym_COMMA_AT, - ACTIONS(6597), 1, + ACTIONS(1484), 1, anon_sym_COMMA, - STATE(1875), 1, + ACTIONS(5625), 1, + sym_self_referential_reader_macro, + ACTIONS(6403), 1, + anon_sym_COLON, + ACTIONS(6405), 1, + anon_sym_cl, + STATE(1976), 1, sym__bare_set_lit, - STATE(1878), 1, + STATE(2766), 1, sym_sym_lit, - STATE(2811), 1, + STATE(2830), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(51), 2, + ACTIONS(1470), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(1492), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(57), 2, + ACTIONS(1496), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1498), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(6587), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(6599), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(5991), 3, + ACTIONS(5623), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1877), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1860), 19, + STATE(1975), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1907), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -83561,78 +83133,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(67), 1, + ACTIONS(1454), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(1458), 1, aux_sym_num_lit_token1, - ACTIONS(77), 1, + ACTIONS(1462), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(1464), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(1466), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(1468), 1, + anon_sym_LPAREN, + ACTIONS(1472), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(1474), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(104), 1, + ACTIONS(1476), 1, anon_sym_POUND_SQUOTE, - ACTIONS(106), 1, + ACTIONS(1478), 1, anon_sym_SQUOTE, - ACTIONS(108), 1, + ACTIONS(1480), 1, anon_sym_BQUOTE, - ACTIONS(110), 1, + ACTIONS(1482), 1, anon_sym_COMMA_AT, - ACTIONS(112), 1, + ACTIONS(1484), 1, anon_sym_COMMA, - ACTIONS(4809), 1, + ACTIONS(5629), 1, + sym_self_referential_reader_macro, + ACTIONS(6403), 1, anon_sym_COLON, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4825), 1, + ACTIONS(6405), 1, anon_sym_cl, - ACTIONS(4871), 1, - sym_self_referential_reader_macro, - STATE(2497), 1, - sym_sym_lit, - STATE(2625), 1, + STATE(1976), 1, sym__bare_set_lit, - STATE(2834), 1, + STATE(2766), 1, + sym_sym_lit, + STATE(2830), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(98), 2, + ACTIONS(1470), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(123), 2, + ACTIONS(1492), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(127), 2, + ACTIONS(1496), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(129), 2, + ACTIONS(1498), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6615), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(4869), 3, + ACTIONS(5627), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(739), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(1975), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2601), 19, + STATE(1908), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -83661,78 +83233,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(67), 1, + ACTIONS(1454), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(1458), 1, aux_sym_num_lit_token1, - ACTIONS(77), 1, + ACTIONS(1462), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(1464), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(1466), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(1468), 1, + anon_sym_LPAREN, + ACTIONS(1472), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(1474), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(104), 1, + ACTIONS(1476), 1, anon_sym_POUND_SQUOTE, - ACTIONS(106), 1, + ACTIONS(1478), 1, anon_sym_SQUOTE, - ACTIONS(108), 1, + ACTIONS(1480), 1, anon_sym_BQUOTE, - ACTIONS(110), 1, + ACTIONS(1482), 1, anon_sym_COMMA_AT, - ACTIONS(112), 1, + ACTIONS(1484), 1, anon_sym_COMMA, - ACTIONS(4809), 1, + ACTIONS(6403), 1, anon_sym_COLON, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4825), 1, + ACTIONS(6405), 1, anon_sym_cl, - ACTIONS(4879), 1, + ACTIONS(6429), 1, sym_self_referential_reader_macro, - STATE(2497), 1, - sym_sym_lit, - STATE(2625), 1, + STATE(1976), 1, sym__bare_set_lit, - STATE(2834), 1, + STATE(2766), 1, + sym_sym_lit, + STATE(2830), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(98), 2, + ACTIONS(1470), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(123), 2, + ACTIONS(1492), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(127), 2, + ACTIONS(1496), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(129), 2, + ACTIONS(1498), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(4877), 3, + ACTIONS(6427), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(1975), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2602), 19, + STATE(2768), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -83761,78 +83333,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(67), 1, + ACTIONS(1454), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(1458), 1, aux_sym_num_lit_token1, - ACTIONS(77), 1, + ACTIONS(1462), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(1464), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(1466), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(1468), 1, + anon_sym_LPAREN, + ACTIONS(1472), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(1474), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(104), 1, + ACTIONS(1476), 1, anon_sym_POUND_SQUOTE, - ACTIONS(106), 1, + ACTIONS(1478), 1, anon_sym_SQUOTE, - ACTIONS(108), 1, + ACTIONS(1480), 1, anon_sym_BQUOTE, - ACTIONS(110), 1, + ACTIONS(1482), 1, anon_sym_COMMA_AT, - ACTIONS(112), 1, + ACTIONS(1484), 1, anon_sym_COMMA, - ACTIONS(4809), 1, + ACTIONS(6403), 1, anon_sym_COLON, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4825), 1, + ACTIONS(6405), 1, anon_sym_cl, - ACTIONS(6619), 1, + ACTIONS(6433), 1, sym_self_referential_reader_macro, - STATE(2497), 1, - sym_sym_lit, - STATE(2625), 1, + STATE(1976), 1, sym__bare_set_lit, - STATE(2834), 1, + STATE(2766), 1, + sym_sym_lit, + STATE(2830), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(98), 2, + ACTIONS(1470), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(123), 2, + ACTIONS(1492), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(127), 2, + ACTIONS(1496), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(129), 2, + ACTIONS(1498), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(6617), 3, + ACTIONS(6431), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(1975), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2723), 19, + STATE(2777), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -83861,78 +83433,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5029), 1, - anon_sym_COLON, - ACTIONS(5031), 1, + ACTIONS(1454), 1, + anon_sym_POUND, + ACTIONS(1458), 1, + aux_sym_num_lit_token1, + ACTIONS(1462), 1, anon_sym_COLON_COLON, - ACTIONS(5033), 1, + ACTIONS(1464), 1, anon_sym_DQUOTE, - ACTIONS(5035), 1, + ACTIONS(1466), 1, aux_sym_sym_lit_token1, - ACTIONS(5053), 1, - anon_sym_cl, - ACTIONS(5175), 1, - anon_sym_POUND, - ACTIONS(5179), 1, - aux_sym_num_lit_token1, - ACTIONS(5181), 1, + ACTIONS(1468), 1, anon_sym_LPAREN, - ACTIONS(5185), 1, + ACTIONS(1472), 1, anon_sym_POUND_QMARK, - ACTIONS(5187), 1, + ACTIONS(1474), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5189), 1, + ACTIONS(1476), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5191), 1, + ACTIONS(1478), 1, anon_sym_SQUOTE, - ACTIONS(5193), 1, + ACTIONS(1480), 1, anon_sym_BQUOTE, - ACTIONS(5195), 1, + ACTIONS(1482), 1, anon_sym_COMMA_AT, - ACTIONS(5197), 1, + ACTIONS(1484), 1, anon_sym_COMMA, - ACTIONS(5263), 1, + ACTIONS(5643), 1, sym_self_referential_reader_macro, - STATE(2839), 1, + ACTIONS(6403), 1, + anon_sym_COLON, + ACTIONS(6405), 1, + anon_sym_cl, + STATE(1976), 1, + sym__bare_set_lit, + STATE(2766), 1, + sym_sym_lit, + STATE(2830), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, - sym__bare_set_lit, - STATE(3078), 1, - sym_sym_lit, - ACTIONS(4801), 2, - sym__ws, - sym_comment, - ACTIONS(5055), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(5061), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5183), 2, + ACTIONS(1470), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5201), 2, + ACTIONS(1492), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(1496), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5261), 3, + ACTIONS(1498), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6435), 2, + sym__ws, + sym_comment, + ACTIONS(5641), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, + STATE(776), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2991), 3, + STATE(1975), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2981), 19, + STATE(1910), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -83955,84 +83527,84 @@ static const uint16_t ts_small_parse_table[] = { [49682] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(1454), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(1458), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(1462), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(1464), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(1466), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(1468), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(1472), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(1474), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(1476), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(1478), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(1480), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(1482), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(1484), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(6625), 1, + ACTIONS(5649), 1, sym_self_referential_reader_macro, - STATE(1875), 1, + ACTIONS(6403), 1, + anon_sym_COLON, + ACTIONS(6405), 1, + anon_sym_cl, + STATE(1976), 1, sym__bare_set_lit, - STATE(1878), 1, + STATE(2766), 1, sym_sym_lit, - STATE(2808), 1, + STATE(2830), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(1470), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(1492), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(1496), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(1498), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6621), 2, + ACTIONS(6437), 2, sym__ws, sym_comment, - ACTIONS(6623), 3, + ACTIONS(5647), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(884), 3, + STATE(778), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1877), 3, + STATE(1975), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(734), 19, + STATE(1912), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -84061,78 +83633,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5029), 1, - anon_sym_COLON, - ACTIONS(5031), 1, + ACTIONS(1454), 1, + anon_sym_POUND, + ACTIONS(1458), 1, + aux_sym_num_lit_token1, + ACTIONS(1462), 1, anon_sym_COLON_COLON, - ACTIONS(5033), 1, + ACTIONS(1464), 1, anon_sym_DQUOTE, - ACTIONS(5035), 1, + ACTIONS(1466), 1, aux_sym_sym_lit_token1, - ACTIONS(5053), 1, - anon_sym_cl, - ACTIONS(5175), 1, - anon_sym_POUND, - ACTIONS(5179), 1, - aux_sym_num_lit_token1, - ACTIONS(5181), 1, + ACTIONS(1468), 1, anon_sym_LPAREN, - ACTIONS(5185), 1, + ACTIONS(1472), 1, anon_sym_POUND_QMARK, - ACTIONS(5187), 1, + ACTIONS(1474), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5189), 1, + ACTIONS(1476), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5191), 1, + ACTIONS(1478), 1, anon_sym_SQUOTE, - ACTIONS(5193), 1, + ACTIONS(1480), 1, anon_sym_BQUOTE, - ACTIONS(5195), 1, + ACTIONS(1482), 1, anon_sym_COMMA_AT, - ACTIONS(5197), 1, + ACTIONS(1484), 1, anon_sym_COMMA, - ACTIONS(5259), 1, + ACTIONS(5655), 1, sym_self_referential_reader_macro, - STATE(2839), 1, + ACTIONS(6403), 1, + anon_sym_COLON, + ACTIONS(6405), 1, + anon_sym_cl, + STATE(1976), 1, + sym__bare_set_lit, + STATE(2766), 1, + sym_sym_lit, + STATE(2830), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, - sym__bare_set_lit, - STATE(3078), 1, - sym_sym_lit, - ACTIONS(4801), 2, - sym__ws, - sym_comment, - ACTIONS(5055), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(5061), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5183), 2, + ACTIONS(1470), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5201), 2, + ACTIONS(1492), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(1496), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5257), 3, + ACTIONS(1498), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6439), 2, + sym__ws, + sym_comment, + ACTIONS(5653), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, + STATE(779), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2991), 3, + STATE(1975), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2979), 19, + STATE(1913), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -84161,78 +83733,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5029), 1, - anon_sym_COLON, - ACTIONS(5031), 1, + ACTIONS(1454), 1, + anon_sym_POUND, + ACTIONS(1458), 1, + aux_sym_num_lit_token1, + ACTIONS(1462), 1, anon_sym_COLON_COLON, - ACTIONS(5033), 1, + ACTIONS(1464), 1, anon_sym_DQUOTE, - ACTIONS(5035), 1, + ACTIONS(1466), 1, aux_sym_sym_lit_token1, - ACTIONS(5053), 1, - anon_sym_cl, - ACTIONS(5175), 1, - anon_sym_POUND, - ACTIONS(5179), 1, - aux_sym_num_lit_token1, - ACTIONS(5181), 1, + ACTIONS(1468), 1, anon_sym_LPAREN, - ACTIONS(5185), 1, + ACTIONS(1472), 1, anon_sym_POUND_QMARK, - ACTIONS(5187), 1, + ACTIONS(1474), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5189), 1, + ACTIONS(1476), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5191), 1, + ACTIONS(1478), 1, anon_sym_SQUOTE, - ACTIONS(5193), 1, + ACTIONS(1480), 1, anon_sym_BQUOTE, - ACTIONS(5195), 1, + ACTIONS(1482), 1, anon_sym_COMMA_AT, - ACTIONS(5197), 1, + ACTIONS(1484), 1, anon_sym_COMMA, - ACTIONS(5255), 1, + ACTIONS(6403), 1, + anon_sym_COLON, + ACTIONS(6405), 1, + anon_sym_cl, + ACTIONS(6445), 1, sym_self_referential_reader_macro, - STATE(2839), 1, + STATE(1976), 1, + sym__bare_set_lit, + STATE(2766), 1, + sym_sym_lit, + STATE(2830), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, - sym__bare_set_lit, - STATE(3078), 1, - sym_sym_lit, - ACTIONS(4801), 2, - sym__ws, - sym_comment, - ACTIONS(5055), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(5061), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5183), 2, + ACTIONS(1470), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5201), 2, + ACTIONS(1492), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(1496), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5253), 3, + ACTIONS(1498), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6441), 2, + sym__ws, + sym_comment, + ACTIONS(6443), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, + STATE(780), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2991), 3, + STATE(1975), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2977), 19, + STATE(2769), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -84261,78 +83833,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(67), 1, + ACTIONS(1454), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(1458), 1, aux_sym_num_lit_token1, - ACTIONS(77), 1, + ACTIONS(1462), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(1464), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(1466), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(1468), 1, + anon_sym_LPAREN, + ACTIONS(1472), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(1474), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(104), 1, + ACTIONS(1476), 1, anon_sym_POUND_SQUOTE, - ACTIONS(106), 1, + ACTIONS(1478), 1, anon_sym_SQUOTE, - ACTIONS(108), 1, + ACTIONS(1480), 1, anon_sym_BQUOTE, - ACTIONS(110), 1, + ACTIONS(1482), 1, anon_sym_COMMA_AT, - ACTIONS(112), 1, + ACTIONS(1484), 1, anon_sym_COMMA, - ACTIONS(4809), 1, + ACTIONS(5665), 1, + sym_self_referential_reader_macro, + ACTIONS(6403), 1, anon_sym_COLON, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4825), 1, + ACTIONS(6405), 1, anon_sym_cl, - ACTIONS(6629), 1, - sym_self_referential_reader_macro, - STATE(2497), 1, - sym_sym_lit, - STATE(2625), 1, + STATE(1976), 1, sym__bare_set_lit, - STATE(2834), 1, + STATE(2766), 1, + sym_sym_lit, + STATE(2830), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(98), 2, + ACTIONS(1470), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(123), 2, + ACTIONS(1492), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(127), 2, + ACTIONS(1496), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(129), 2, + ACTIONS(1498), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(6627), 3, + ACTIONS(5663), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(1975), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2729), 19, + STATE(1916), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -84355,84 +83927,84 @@ static const uint16_t ts_small_parse_table[] = { [50222] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, - anon_sym_POUND_QMARK, - ACTIONS(35), 1, - anon_sym_POUND_QMARK_AT, ACTIONS(47), 1, sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(6335), 1, - sym_self_referential_reader_macro, - ACTIONS(6583), 1, + ACTIONS(1454), 1, anon_sym_POUND, - ACTIONS(6585), 1, + ACTIONS(1458), 1, aux_sym_num_lit_token1, - ACTIONS(6589), 1, + ACTIONS(1462), 1, + anon_sym_COLON_COLON, + ACTIONS(1464), 1, + anon_sym_DQUOTE, + ACTIONS(1466), 1, + aux_sym_sym_lit_token1, + ACTIONS(1468), 1, + anon_sym_LPAREN, + ACTIONS(1472), 1, + anon_sym_POUND_QMARK, + ACTIONS(1474), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(1476), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6591), 1, + ACTIONS(1478), 1, anon_sym_SQUOTE, - ACTIONS(6593), 1, + ACTIONS(1480), 1, anon_sym_BQUOTE, - ACTIONS(6595), 1, + ACTIONS(1482), 1, anon_sym_COMMA_AT, - ACTIONS(6597), 1, + ACTIONS(1484), 1, anon_sym_COMMA, - STATE(1875), 1, + ACTIONS(5671), 1, + sym_self_referential_reader_macro, + ACTIONS(6403), 1, + anon_sym_COLON, + ACTIONS(6405), 1, + anon_sym_cl, + STATE(1976), 1, sym__bare_set_lit, - STATE(1878), 1, + STATE(2766), 1, sym_sym_lit, - STATE(2811), 1, + STATE(2830), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(51), 2, + ACTIONS(1470), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(1492), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(57), 2, + ACTIONS(1496), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1498), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(6447), 2, sym__ws, sym_comment, - ACTIONS(6587), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(6599), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(6333), 3, + ACTIONS(5669), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1877), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(783), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1767), 19, + STATE(1975), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1917), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -84455,84 +84027,84 @@ static const uint16_t ts_small_parse_table[] = { [50357] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(1454), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(1458), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(1462), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(1464), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(1466), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(1468), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(1472), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(1474), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(1476), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(1478), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(1480), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(1482), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(1484), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(6633), 1, + ACTIONS(5675), 1, sym_self_referential_reader_macro, - STATE(1875), 1, + ACTIONS(6403), 1, + anon_sym_COLON, + ACTIONS(6405), 1, + anon_sym_cl, + STATE(1976), 1, sym__bare_set_lit, - STATE(1878), 1, + STATE(2766), 1, sym_sym_lit, - STATE(2808), 1, + STATE(2830), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(1470), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(1492), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(1496), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(1498), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(6631), 3, + ACTIONS(5673), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1877), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(555), 19, + STATE(1975), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1919), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -84561,78 +84133,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5179), 1, - aux_sym_num_lit_token1, - ACTIONS(6039), 1, + ACTIONS(1454), 1, anon_sym_POUND, - ACTIONS(6041), 1, - anon_sym_COLON, - ACTIONS(6043), 1, + ACTIONS(1458), 1, + aux_sym_num_lit_token1, + ACTIONS(1462), 1, anon_sym_COLON_COLON, - ACTIONS(6045), 1, + ACTIONS(1464), 1, anon_sym_DQUOTE, - ACTIONS(6047), 1, + ACTIONS(1466), 1, aux_sym_sym_lit_token1, - ACTIONS(6049), 1, + ACTIONS(1468), 1, anon_sym_LPAREN, - ACTIONS(6051), 1, + ACTIONS(1472), 1, anon_sym_POUND_QMARK, - ACTIONS(6053), 1, + ACTIONS(1474), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(6055), 1, + ACTIONS(1476), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6057), 1, + ACTIONS(1478), 1, anon_sym_SQUOTE, - ACTIONS(6059), 1, + ACTIONS(1480), 1, anon_sym_BQUOTE, - ACTIONS(6061), 1, + ACTIONS(1482), 1, anon_sym_COMMA_AT, - ACTIONS(6063), 1, + ACTIONS(1484), 1, anon_sym_COMMA, - ACTIONS(6065), 1, - anon_sym_cl, - ACTIONS(6639), 1, + ACTIONS(5679), 1, sym_self_referential_reader_macro, - STATE(2815), 1, + ACTIONS(6403), 1, + anon_sym_COLON, + ACTIONS(6405), 1, + anon_sym_cl, + STATE(1976), 1, + sym__bare_set_lit, + STATE(2766), 1, + sym_sym_lit, + STATE(2830), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, - sym__bare_set_lit, - STATE(3039), 1, - sym_sym_lit, - ACTIONS(5055), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(5061), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5183), 2, + ACTIONS(1470), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(6067), 2, + ACTIONS(1492), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(1496), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6635), 2, + ACTIONS(1498), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(6637), 3, + ACTIONS(5677), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(645), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2991), 3, + STATE(1975), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2831), 19, + STATE(1920), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -84655,84 +84227,84 @@ static const uint16_t ts_small_parse_table[] = { [50627] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, - anon_sym_POUND_QMARK, - ACTIONS(35), 1, - anon_sym_POUND_QMARK_AT, ACTIONS(47), 1, sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(6347), 1, - sym_self_referential_reader_macro, - ACTIONS(6583), 1, + ACTIONS(1454), 1, anon_sym_POUND, - ACTIONS(6585), 1, + ACTIONS(1458), 1, aux_sym_num_lit_token1, - ACTIONS(6589), 1, + ACTIONS(1462), 1, + anon_sym_COLON_COLON, + ACTIONS(1464), 1, + anon_sym_DQUOTE, + ACTIONS(1466), 1, + aux_sym_sym_lit_token1, + ACTIONS(1468), 1, + anon_sym_LPAREN, + ACTIONS(1472), 1, + anon_sym_POUND_QMARK, + ACTIONS(1474), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(1476), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6591), 1, + ACTIONS(1478), 1, anon_sym_SQUOTE, - ACTIONS(6593), 1, + ACTIONS(1480), 1, anon_sym_BQUOTE, - ACTIONS(6595), 1, + ACTIONS(1482), 1, anon_sym_COMMA_AT, - ACTIONS(6597), 1, + ACTIONS(1484), 1, anon_sym_COMMA, - STATE(1875), 1, + ACTIONS(6403), 1, + anon_sym_COLON, + ACTIONS(6405), 1, + anon_sym_cl, + ACTIONS(6451), 1, + sym_self_referential_reader_macro, + STATE(1976), 1, sym__bare_set_lit, - STATE(1878), 1, + STATE(2766), 1, sym_sym_lit, - STATE(2811), 1, + STATE(2830), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(51), 2, + ACTIONS(1470), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(1492), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(57), 2, + ACTIONS(1496), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1498), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(6587), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(6599), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(6345), 3, + ACTIONS(6449), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1877), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1833), 19, + STATE(1975), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2794), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -84761,78 +84333,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(137), 1, + ACTIONS(1454), 1, anon_sym_POUND, - ACTIONS(141), 1, + ACTIONS(1458), 1, aux_sym_num_lit_token1, - ACTIONS(146), 1, + ACTIONS(1462), 1, anon_sym_COLON_COLON, - ACTIONS(148), 1, + ACTIONS(1464), 1, anon_sym_DQUOTE, - ACTIONS(150), 1, + ACTIONS(1466), 1, aux_sym_sym_lit_token1, - ACTIONS(165), 1, + ACTIONS(1468), 1, + anon_sym_LPAREN, + ACTIONS(1472), 1, anon_sym_POUND_QMARK, - ACTIONS(167), 1, + ACTIONS(1474), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(169), 1, + ACTIONS(1476), 1, anon_sym_POUND_SQUOTE, - ACTIONS(171), 1, + ACTIONS(1478), 1, anon_sym_SQUOTE, - ACTIONS(173), 1, + ACTIONS(1480), 1, anon_sym_BQUOTE, - ACTIONS(175), 1, + ACTIONS(1482), 1, anon_sym_COMMA_AT, - ACTIONS(177), 1, + ACTIONS(1484), 1, anon_sym_COMMA, - ACTIONS(4855), 1, + ACTIONS(5689), 1, + sym_self_referential_reader_macro, + ACTIONS(6403), 1, anon_sym_COLON, - ACTIONS(4857), 1, - anon_sym_LPAREN, - ACTIONS(4859), 1, + ACTIONS(6405), 1, anon_sym_cl, - ACTIONS(6643), 1, - sym_self_referential_reader_macro, - STATE(1069), 1, + STATE(1976), 1, sym__bare_set_lit, - STATE(1073), 1, + STATE(2766), 1, sym_sym_lit, - STATE(2804), 1, + STATE(2830), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(163), 2, + ACTIONS(1470), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(186), 2, + ACTIONS(1492), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(190), 2, + ACTIONS(1496), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(192), 2, + ACTIONS(1498), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(6453), 2, sym__ws, sym_comment, - ACTIONS(6641), 3, + ACTIONS(5687), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1070), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(784), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(5), 19, + STATE(1975), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1921), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -84861,78 +84433,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5029), 1, - anon_sym_COLON, - ACTIONS(5031), 1, + ACTIONS(1454), 1, + anon_sym_POUND, + ACTIONS(1458), 1, + aux_sym_num_lit_token1, + ACTIONS(1462), 1, anon_sym_COLON_COLON, - ACTIONS(5033), 1, + ACTIONS(1464), 1, anon_sym_DQUOTE, - ACTIONS(5035), 1, + ACTIONS(1466), 1, aux_sym_sym_lit_token1, - ACTIONS(5053), 1, - anon_sym_cl, - ACTIONS(5175), 1, - anon_sym_POUND, - ACTIONS(5179), 1, - aux_sym_num_lit_token1, - ACTIONS(5181), 1, + ACTIONS(1468), 1, anon_sym_LPAREN, - ACTIONS(5185), 1, + ACTIONS(1472), 1, anon_sym_POUND_QMARK, - ACTIONS(5187), 1, + ACTIONS(1474), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5189), 1, + ACTIONS(1476), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5191), 1, + ACTIONS(1478), 1, anon_sym_SQUOTE, - ACTIONS(5193), 1, + ACTIONS(1480), 1, anon_sym_BQUOTE, - ACTIONS(5195), 1, + ACTIONS(1482), 1, anon_sym_COMMA_AT, - ACTIONS(5197), 1, + ACTIONS(1484), 1, anon_sym_COMMA, - ACTIONS(5243), 1, + ACTIONS(5695), 1, sym_self_referential_reader_macro, - STATE(2839), 1, + ACTIONS(6403), 1, + anon_sym_COLON, + ACTIONS(6405), 1, + anon_sym_cl, + STATE(1976), 1, + sym__bare_set_lit, + STATE(2766), 1, + sym_sym_lit, + STATE(2830), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, - sym__bare_set_lit, - STATE(3078), 1, - sym_sym_lit, - ACTIONS(5055), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(5061), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5183), 2, + ACTIONS(1470), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5201), 2, + ACTIONS(1492), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(1496), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6645), 2, + ACTIONS(1498), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6455), 2, sym__ws, sym_comment, - ACTIONS(5241), 3, + ACTIONS(5693), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(795), 3, + STATE(786), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2991), 3, + STATE(1975), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2963), 19, + STATE(1922), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -84955,84 +84527,84 @@ static const uint16_t ts_small_parse_table[] = { [51032] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(1454), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(1458), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(1462), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(1464), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(1466), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(1468), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(1472), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(1474), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(1476), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(1478), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(1480), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(1482), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(1484), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(6651), 1, + ACTIONS(5699), 1, sym_self_referential_reader_macro, - STATE(1875), 1, + ACTIONS(6403), 1, + anon_sym_COLON, + ACTIONS(6405), 1, + anon_sym_cl, + STATE(1976), 1, sym__bare_set_lit, - STATE(1878), 1, + STATE(2766), 1, sym_sym_lit, - STATE(2808), 1, + STATE(2830), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(1470), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(1492), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(1496), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(1498), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6647), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(6649), 3, + ACTIONS(5697), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(778), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1877), 3, + STATE(1975), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(560), 19, + STATE(1923), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -85061,78 +84633,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(67), 1, + ACTIONS(1454), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(1458), 1, aux_sym_num_lit_token1, - ACTIONS(77), 1, + ACTIONS(1462), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(1464), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(1466), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(1468), 1, + anon_sym_LPAREN, + ACTIONS(1472), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(1474), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(104), 1, + ACTIONS(1476), 1, anon_sym_POUND_SQUOTE, - ACTIONS(106), 1, + ACTIONS(1478), 1, anon_sym_SQUOTE, - ACTIONS(108), 1, + ACTIONS(1480), 1, anon_sym_BQUOTE, - ACTIONS(110), 1, + ACTIONS(1482), 1, anon_sym_COMMA_AT, - ACTIONS(112), 1, + ACTIONS(1484), 1, anon_sym_COMMA, - ACTIONS(4809), 1, + ACTIONS(5703), 1, + sym_self_referential_reader_macro, + ACTIONS(6403), 1, anon_sym_COLON, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4825), 1, + ACTIONS(6405), 1, anon_sym_cl, - ACTIONS(6655), 1, - sym_self_referential_reader_macro, - STATE(2497), 1, - sym_sym_lit, - STATE(2625), 1, + STATE(1976), 1, sym__bare_set_lit, - STATE(2834), 1, + STATE(2766), 1, + sym_sym_lit, + STATE(2830), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(98), 2, + ACTIONS(1470), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(123), 2, + ACTIONS(1492), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(127), 2, + ACTIONS(1496), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(129), 2, + ACTIONS(1498), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(6653), 3, + ACTIONS(5701), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(1975), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2674), 19, + STATE(1925), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -85161,78 +84733,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5029), 1, - anon_sym_COLON, - ACTIONS(5031), 1, + ACTIONS(1454), 1, + anon_sym_POUND, + ACTIONS(1458), 1, + aux_sym_num_lit_token1, + ACTIONS(1462), 1, anon_sym_COLON_COLON, - ACTIONS(5033), 1, + ACTIONS(1464), 1, anon_sym_DQUOTE, - ACTIONS(5035), 1, + ACTIONS(1466), 1, aux_sym_sym_lit_token1, - ACTIONS(5053), 1, - anon_sym_cl, - ACTIONS(5175), 1, - anon_sym_POUND, - ACTIONS(5179), 1, - aux_sym_num_lit_token1, - ACTIONS(5181), 1, + ACTIONS(1468), 1, anon_sym_LPAREN, - ACTIONS(5185), 1, + ACTIONS(1472), 1, anon_sym_POUND_QMARK, - ACTIONS(5187), 1, + ACTIONS(1474), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5189), 1, + ACTIONS(1476), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5191), 1, + ACTIONS(1478), 1, anon_sym_SQUOTE, - ACTIONS(5193), 1, + ACTIONS(1480), 1, anon_sym_BQUOTE, - ACTIONS(5195), 1, + ACTIONS(1482), 1, anon_sym_COMMA_AT, - ACTIONS(5197), 1, + ACTIONS(1484), 1, anon_sym_COMMA, - ACTIONS(5237), 1, + ACTIONS(5709), 1, sym_self_referential_reader_macro, - STATE(2839), 1, + ACTIONS(6403), 1, + anon_sym_COLON, + ACTIONS(6405), 1, + anon_sym_cl, + STATE(1976), 1, + sym__bare_set_lit, + STATE(2766), 1, + sym_sym_lit, + STATE(2830), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, - sym__bare_set_lit, - STATE(3078), 1, - sym_sym_lit, - ACTIONS(5055), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(5061), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5183), 2, + ACTIONS(1470), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5201), 2, + ACTIONS(1492), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(1496), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6657), 2, + ACTIONS(1498), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6457), 2, sym__ws, sym_comment, - ACTIONS(5235), 3, + ACTIONS(5707), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(798), 3, + STATE(788), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2991), 3, + STATE(1975), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2948), 19, + STATE(1926), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -85261,78 +84833,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(67), 1, + ACTIONS(1454), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(1458), 1, aux_sym_num_lit_token1, - ACTIONS(77), 1, + ACTIONS(1462), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(1464), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(1466), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(1468), 1, + anon_sym_LPAREN, + ACTIONS(1472), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(1474), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(104), 1, + ACTIONS(1476), 1, anon_sym_POUND_SQUOTE, - ACTIONS(106), 1, + ACTIONS(1478), 1, anon_sym_SQUOTE, - ACTIONS(108), 1, + ACTIONS(1480), 1, anon_sym_BQUOTE, - ACTIONS(110), 1, + ACTIONS(1482), 1, anon_sym_COMMA_AT, - ACTIONS(112), 1, + ACTIONS(1484), 1, anon_sym_COMMA, - ACTIONS(4809), 1, + ACTIONS(5713), 1, + sym_self_referential_reader_macro, + ACTIONS(6403), 1, anon_sym_COLON, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4825), 1, + ACTIONS(6405), 1, anon_sym_cl, - ACTIONS(6661), 1, - sym_self_referential_reader_macro, - STATE(2497), 1, - sym_sym_lit, - STATE(2625), 1, + STATE(1976), 1, sym__bare_set_lit, - STATE(2834), 1, + STATE(2766), 1, + sym_sym_lit, + STATE(2830), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(98), 2, + ACTIONS(1470), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(123), 2, + ACTIONS(1492), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(127), 2, + ACTIONS(1496), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(129), 2, + ACTIONS(1498), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(6659), 3, + ACTIONS(5711), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(1975), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2740), 19, + STATE(1927), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -85361,78 +84933,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(67), 1, + ACTIONS(1454), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(1458), 1, aux_sym_num_lit_token1, - ACTIONS(77), 1, + ACTIONS(1462), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(1464), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(1466), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(1468), 1, + anon_sym_LPAREN, + ACTIONS(1472), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(1474), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(104), 1, + ACTIONS(1476), 1, anon_sym_POUND_SQUOTE, - ACTIONS(106), 1, + ACTIONS(1478), 1, anon_sym_SQUOTE, - ACTIONS(108), 1, + ACTIONS(1480), 1, anon_sym_BQUOTE, - ACTIONS(110), 1, + ACTIONS(1482), 1, anon_sym_COMMA_AT, - ACTIONS(112), 1, + ACTIONS(1484), 1, anon_sym_COMMA, - ACTIONS(4809), 1, + ACTIONS(5719), 1, + sym_self_referential_reader_macro, + ACTIONS(6403), 1, anon_sym_COLON, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4825), 1, + ACTIONS(6405), 1, anon_sym_cl, - ACTIONS(6667), 1, - sym_self_referential_reader_macro, - STATE(2497), 1, - sym_sym_lit, - STATE(2625), 1, + STATE(1976), 1, sym__bare_set_lit, - STATE(2834), 1, + STATE(2766), 1, + sym_sym_lit, + STATE(2830), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(98), 2, + ACTIONS(1470), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(123), 2, + ACTIONS(1492), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(127), 2, + ACTIONS(1496), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(129), 2, + ACTIONS(1498), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6663), 2, + ACTIONS(6459), 2, sym__ws, sym_comment, - ACTIONS(6665), 3, + ACTIONS(5717), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(975), 3, + STATE(789), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(1975), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2737), 19, + STATE(1928), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -85461,78 +85033,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5029), 1, - anon_sym_COLON, - ACTIONS(5031), 1, + ACTIONS(1454), 1, + anon_sym_POUND, + ACTIONS(1458), 1, + aux_sym_num_lit_token1, + ACTIONS(1462), 1, anon_sym_COLON_COLON, - ACTIONS(5033), 1, + ACTIONS(1464), 1, anon_sym_DQUOTE, - ACTIONS(5035), 1, + ACTIONS(1466), 1, aux_sym_sym_lit_token1, - ACTIONS(5053), 1, - anon_sym_cl, - ACTIONS(5175), 1, - anon_sym_POUND, - ACTIONS(5179), 1, - aux_sym_num_lit_token1, - ACTIONS(5181), 1, + ACTIONS(1468), 1, anon_sym_LPAREN, - ACTIONS(5185), 1, + ACTIONS(1472), 1, anon_sym_POUND_QMARK, - ACTIONS(5187), 1, + ACTIONS(1474), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5189), 1, + ACTIONS(1476), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5191), 1, + ACTIONS(1478), 1, anon_sym_SQUOTE, - ACTIONS(5193), 1, + ACTIONS(1480), 1, anon_sym_BQUOTE, - ACTIONS(5195), 1, + ACTIONS(1482), 1, anon_sym_COMMA_AT, - ACTIONS(5197), 1, + ACTIONS(1484), 1, anon_sym_COMMA, - ACTIONS(5231), 1, + ACTIONS(5723), 1, sym_self_referential_reader_macro, - STATE(2839), 1, + ACTIONS(6403), 1, + anon_sym_COLON, + ACTIONS(6405), 1, + anon_sym_cl, + STATE(1976), 1, + sym__bare_set_lit, + STATE(2766), 1, + sym_sym_lit, + STATE(2830), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, - sym__bare_set_lit, - STATE(3078), 1, - sym_sym_lit, - ACTIONS(5055), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(5061), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5183), 2, + ACTIONS(1470), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5201), 2, + ACTIONS(1492), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(1496), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6669), 2, + ACTIONS(1498), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(5229), 3, + ACTIONS(5721), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(799), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2991), 3, + STATE(1975), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2944), 19, + STATE(1932), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -85555,84 +85127,84 @@ static const uint16_t ts_small_parse_table[] = { [51842] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(1454), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(1458), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(1462), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(1464), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(1466), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(1468), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(1472), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(1474), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(1476), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(1478), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(1480), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(1482), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(1484), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(6675), 1, + ACTIONS(5727), 1, sym_self_referential_reader_macro, - STATE(1875), 1, + ACTIONS(6403), 1, + anon_sym_COLON, + ACTIONS(6405), 1, + anon_sym_cl, + STATE(1976), 1, sym__bare_set_lit, - STATE(1878), 1, + STATE(2766), 1, sym_sym_lit, - STATE(2808), 1, + STATE(2830), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(1470), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(1492), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(1496), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(1498), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6671), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(6673), 3, + ACTIONS(5725), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(943), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1877), 3, + STATE(1975), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1826), 19, + STATE(1933), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -85661,78 +85233,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(67), 1, + ACTIONS(4843), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(4847), 1, aux_sym_num_lit_token1, - ACTIONS(77), 1, + ACTIONS(4849), 1, + anon_sym_COLON, + ACTIONS(4851), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(4853), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(4855), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4861), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(4863), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(104), 1, + ACTIONS(4865), 1, anon_sym_POUND_SQUOTE, - ACTIONS(106), 1, + ACTIONS(4867), 1, anon_sym_SQUOTE, - ACTIONS(108), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(110), 1, + ACTIONS(4871), 1, anon_sym_COMMA_AT, - ACTIONS(112), 1, + ACTIONS(4873), 1, anon_sym_COMMA, - ACTIONS(4809), 1, - anon_sym_COLON, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4825), 1, + ACTIONS(4875), 1, anon_sym_cl, - ACTIONS(6679), 1, + ACTIONS(6465), 1, sym_self_referential_reader_macro, - STATE(2497), 1, + STATE(1491), 1, sym_sym_lit, - STATE(2625), 1, + STATE(1507), 1, sym__bare_set_lit, - STATE(2834), 1, + STATE(2832), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(98), 2, + ACTIONS(4859), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(123), 2, + ACTIONS(4877), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(127), 2, + ACTIONS(4881), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(129), 2, + ACTIONS(4883), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(6461), 2, sym__ws, sym_comment, - ACTIONS(6677), 3, + ACTIONS(6463), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, + STATE(795), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(1504), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2693), 19, + STATE(1519), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -85761,78 +85333,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(67), 1, + ACTIONS(4843), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(4847), 1, aux_sym_num_lit_token1, - ACTIONS(77), 1, + ACTIONS(4849), 1, + anon_sym_COLON, + ACTIONS(4851), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(4853), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(4855), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4861), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(4863), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(104), 1, + ACTIONS(4865), 1, anon_sym_POUND_SQUOTE, - ACTIONS(106), 1, + ACTIONS(4867), 1, anon_sym_SQUOTE, - ACTIONS(108), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(110), 1, + ACTIONS(4871), 1, anon_sym_COMMA_AT, - ACTIONS(112), 1, + ACTIONS(4873), 1, anon_sym_COMMA, - ACTIONS(4809), 1, - anon_sym_COLON, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4825), 1, + ACTIONS(4875), 1, anon_sym_cl, - ACTIONS(6685), 1, + ACTIONS(6471), 1, sym_self_referential_reader_macro, - STATE(2497), 1, + STATE(1491), 1, sym_sym_lit, - STATE(2625), 1, + STATE(1507), 1, sym__bare_set_lit, - STATE(2834), 1, + STATE(2832), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(98), 2, + ACTIONS(4859), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(123), 2, + ACTIONS(4877), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(127), 2, + ACTIONS(4881), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(129), 2, + ACTIONS(4883), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6681), 2, + ACTIONS(6467), 2, sym__ws, sym_comment, - ACTIONS(6683), 3, + ACTIONS(6469), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(972), 3, + STATE(796), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(1504), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2700), 19, + STATE(1521), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -85855,84 +85427,84 @@ static const uint16_t ts_small_parse_table[] = { [52247] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, - anon_sym_POUND_QMARK, - ACTIONS(35), 1, - anon_sym_POUND_QMARK_AT, ACTIONS(47), 1, sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(6583), 1, + ACTIONS(4843), 1, anon_sym_POUND, - ACTIONS(6585), 1, + ACTIONS(4847), 1, aux_sym_num_lit_token1, - ACTIONS(6589), 1, + ACTIONS(4849), 1, + anon_sym_COLON, + ACTIONS(4851), 1, + anon_sym_COLON_COLON, + ACTIONS(4853), 1, + anon_sym_DQUOTE, + ACTIONS(4855), 1, + aux_sym_sym_lit_token1, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4861), 1, + anon_sym_POUND_QMARK, + ACTIONS(4863), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(4865), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6591), 1, + ACTIONS(4867), 1, anon_sym_SQUOTE, - ACTIONS(6593), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(6595), 1, + ACTIONS(4871), 1, anon_sym_COMMA_AT, - ACTIONS(6597), 1, + ACTIONS(4873), 1, anon_sym_COMMA, - ACTIONS(6691), 1, + ACTIONS(4875), 1, + anon_sym_cl, + ACTIONS(6477), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(1491), 1, sym_sym_lit, - STATE(2811), 1, + STATE(1507), 1, + sym__bare_set_lit, + STATE(2832), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(57), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(6587), 2, + ACTIONS(4859), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(6599), 2, + ACTIONS(4877), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(4881), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6687), 2, + ACTIONS(4883), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6473), 2, sym__ws, sym_comment, - ACTIONS(6689), 3, + ACTIONS(6475), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(800), 3, + STATE(797), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1877), 3, + STATE(1504), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1824), 19, + STATE(1522), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -85961,78 +85533,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(67), 1, + ACTIONS(4843), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(4847), 1, aux_sym_num_lit_token1, - ACTIONS(77), 1, + ACTIONS(4849), 1, + anon_sym_COLON, + ACTIONS(4851), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(4853), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(4855), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4861), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(4863), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(104), 1, + ACTIONS(4865), 1, anon_sym_POUND_SQUOTE, - ACTIONS(106), 1, + ACTIONS(4867), 1, anon_sym_SQUOTE, - ACTIONS(108), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(110), 1, + ACTIONS(4871), 1, anon_sym_COMMA_AT, - ACTIONS(112), 1, + ACTIONS(4873), 1, anon_sym_COMMA, - ACTIONS(4809), 1, - anon_sym_COLON, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4825), 1, + ACTIONS(4875), 1, anon_sym_cl, - ACTIONS(6697), 1, + ACTIONS(6483), 1, sym_self_referential_reader_macro, - STATE(2497), 1, + STATE(1491), 1, sym_sym_lit, - STATE(2625), 1, + STATE(1507), 1, sym__bare_set_lit, - STATE(2834), 1, + STATE(2832), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(98), 2, + ACTIONS(4859), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(123), 2, + ACTIONS(4877), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(127), 2, + ACTIONS(4881), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(129), 2, + ACTIONS(4883), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6693), 2, + ACTIONS(6479), 2, sym__ws, sym_comment, - ACTIONS(6695), 3, + ACTIONS(6481), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(970), 3, + STATE(798), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(1504), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2735), 19, + STATE(1523), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -86055,84 +85627,84 @@ static const uint16_t ts_small_parse_table[] = { [52517] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4843), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(4847), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(4849), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(4851), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(4853), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(4855), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(4861), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(4863), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(4865), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(4867), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(4871), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(4873), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4875), 1, anon_sym_cl, - ACTIONS(6703), 1, + ACTIONS(6489), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(1491), 1, sym_sym_lit, - STATE(2808), 1, + STATE(1507), 1, + sym__bare_set_lit, + STATE(2832), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(4859), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(4877), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(4881), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(4883), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6699), 2, + ACTIONS(6485), 2, sym__ws, sym_comment, - ACTIONS(6701), 3, + ACTIONS(6487), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(946), 3, + STATE(799), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1877), 3, + STATE(1504), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1825), 19, + STATE(1524), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -86161,78 +85733,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5029), 1, + ACTIONS(4843), 1, + anon_sym_POUND, + ACTIONS(4847), 1, + aux_sym_num_lit_token1, + ACTIONS(4849), 1, anon_sym_COLON, - ACTIONS(5031), 1, + ACTIONS(4851), 1, anon_sym_COLON_COLON, - ACTIONS(5033), 1, + ACTIONS(4853), 1, anon_sym_DQUOTE, - ACTIONS(5035), 1, + ACTIONS(4855), 1, aux_sym_sym_lit_token1, - ACTIONS(5053), 1, - anon_sym_cl, - ACTIONS(5175), 1, - anon_sym_POUND, - ACTIONS(5179), 1, - aux_sym_num_lit_token1, - ACTIONS(5181), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(5185), 1, + ACTIONS(4861), 1, anon_sym_POUND_QMARK, - ACTIONS(5187), 1, + ACTIONS(4863), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5189), 1, + ACTIONS(4865), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5191), 1, + ACTIONS(4867), 1, anon_sym_SQUOTE, - ACTIONS(5193), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(5195), 1, + ACTIONS(4871), 1, anon_sym_COMMA_AT, - ACTIONS(5197), 1, + ACTIONS(4873), 1, anon_sym_COMMA, - ACTIONS(5219), 1, + ACTIONS(4875), 1, + anon_sym_cl, + ACTIONS(6493), 1, sym_self_referential_reader_macro, - STATE(2839), 1, + STATE(1491), 1, + sym_sym_lit, + STATE(1507), 1, + sym__bare_set_lit, + STATE(2832), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, - sym__bare_set_lit, - STATE(3078), 1, - sym_sym_lit, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(5055), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(5061), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5183), 2, + ACTIONS(4859), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5201), 2, + ACTIONS(4877), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(4881), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5217), 3, + ACTIONS(4883), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6491), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2991), 3, + STATE(1504), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2950), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1538), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -86261,78 +85833,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(67), 1, + ACTIONS(4843), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(4847), 1, aux_sym_num_lit_token1, - ACTIONS(77), 1, + ACTIONS(4849), 1, + anon_sym_COLON, + ACTIONS(4851), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(4853), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(4855), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4861), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(4863), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(104), 1, + ACTIONS(4865), 1, anon_sym_POUND_SQUOTE, - ACTIONS(106), 1, + ACTIONS(4867), 1, anon_sym_SQUOTE, - ACTIONS(108), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(110), 1, + ACTIONS(4871), 1, anon_sym_COMMA_AT, - ACTIONS(112), 1, + ACTIONS(4873), 1, anon_sym_COMMA, - ACTIONS(4809), 1, - anon_sym_COLON, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4825), 1, + ACTIONS(4875), 1, anon_sym_cl, - ACTIONS(6707), 1, + ACTIONS(6497), 1, sym_self_referential_reader_macro, - STATE(2497), 1, + STATE(1491), 1, sym_sym_lit, - STATE(2625), 1, + STATE(1507), 1, sym__bare_set_lit, - STATE(2834), 1, + STATE(2832), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(98), 2, + ACTIONS(4763), 2, + sym__ws, + sym_comment, + ACTIONS(4859), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(123), 2, + ACTIONS(4877), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(127), 2, + ACTIONS(4881), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(129), 2, + ACTIONS(4883), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, - sym__ws, - sym_comment, - ACTIONS(6705), 3, + ACTIONS(6495), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(1504), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2711), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1539), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -86361,78 +85933,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5029), 1, + ACTIONS(4843), 1, + anon_sym_POUND, + ACTIONS(4847), 1, + aux_sym_num_lit_token1, + ACTIONS(4849), 1, anon_sym_COLON, - ACTIONS(5031), 1, + ACTIONS(4851), 1, anon_sym_COLON_COLON, - ACTIONS(5033), 1, + ACTIONS(4853), 1, anon_sym_DQUOTE, - ACTIONS(5035), 1, + ACTIONS(4855), 1, aux_sym_sym_lit_token1, - ACTIONS(5053), 1, - anon_sym_cl, - ACTIONS(5175), 1, - anon_sym_POUND, - ACTIONS(5179), 1, - aux_sym_num_lit_token1, - ACTIONS(5181), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(5185), 1, + ACTIONS(4861), 1, anon_sym_POUND_QMARK, - ACTIONS(5187), 1, + ACTIONS(4863), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5189), 1, + ACTIONS(4865), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5191), 1, + ACTIONS(4867), 1, anon_sym_SQUOTE, - ACTIONS(5193), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(5195), 1, + ACTIONS(4871), 1, anon_sym_COMMA_AT, - ACTIONS(5197), 1, + ACTIONS(4873), 1, anon_sym_COMMA, - ACTIONS(5215), 1, + ACTIONS(4875), 1, + anon_sym_cl, + ACTIONS(6501), 1, sym_self_referential_reader_macro, - STATE(2839), 1, + STATE(1491), 1, + sym_sym_lit, + STATE(1507), 1, + sym__bare_set_lit, + STATE(2832), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, - sym__bare_set_lit, - STATE(3078), 1, - sym_sym_lit, - ACTIONS(5055), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(5061), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5183), 2, + ACTIONS(4763), 2, + sym__ws, + sym_comment, + ACTIONS(4859), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5201), 2, + ACTIONS(4877), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(4881), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6709), 2, - sym__ws, - sym_comment, - ACTIONS(5213), 3, + ACTIONS(4883), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6499), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(813), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2991), 3, + STATE(1504), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2905), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1541), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -86461,78 +86033,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5029), 1, + ACTIONS(4843), 1, + anon_sym_POUND, + ACTIONS(4847), 1, + aux_sym_num_lit_token1, + ACTIONS(4849), 1, anon_sym_COLON, - ACTIONS(5031), 1, + ACTIONS(4851), 1, anon_sym_COLON_COLON, - ACTIONS(5033), 1, + ACTIONS(4853), 1, anon_sym_DQUOTE, - ACTIONS(5035), 1, + ACTIONS(4855), 1, aux_sym_sym_lit_token1, - ACTIONS(5053), 1, - anon_sym_cl, - ACTIONS(5175), 1, - anon_sym_POUND, - ACTIONS(5179), 1, - aux_sym_num_lit_token1, - ACTIONS(5181), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(5185), 1, + ACTIONS(4861), 1, anon_sym_POUND_QMARK, - ACTIONS(5187), 1, + ACTIONS(4863), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5189), 1, + ACTIONS(4865), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5191), 1, + ACTIONS(4867), 1, anon_sym_SQUOTE, - ACTIONS(5193), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(5195), 1, + ACTIONS(4871), 1, anon_sym_COMMA_AT, - ACTIONS(5197), 1, + ACTIONS(4873), 1, anon_sym_COMMA, - ACTIONS(5209), 1, + ACTIONS(4875), 1, + anon_sym_cl, + ACTIONS(6505), 1, sym_self_referential_reader_macro, - STATE(2839), 1, + STATE(1491), 1, + sym_sym_lit, + STATE(1507), 1, + sym__bare_set_lit, + STATE(2832), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, - sym__bare_set_lit, - STATE(3078), 1, - sym_sym_lit, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(5055), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(5061), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5183), 2, + ACTIONS(4859), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5201), 2, + ACTIONS(4877), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(4881), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5207), 3, + ACTIONS(4883), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6503), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2991), 3, + STATE(1504), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2960), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1543), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -86561,78 +86133,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5029), 1, + ACTIONS(4843), 1, + anon_sym_POUND, + ACTIONS(4847), 1, + aux_sym_num_lit_token1, + ACTIONS(4849), 1, anon_sym_COLON, - ACTIONS(5031), 1, + ACTIONS(4851), 1, anon_sym_COLON_COLON, - ACTIONS(5033), 1, + ACTIONS(4853), 1, anon_sym_DQUOTE, - ACTIONS(5035), 1, + ACTIONS(4855), 1, aux_sym_sym_lit_token1, - ACTIONS(5053), 1, - anon_sym_cl, - ACTIONS(5175), 1, - anon_sym_POUND, - ACTIONS(5179), 1, - aux_sym_num_lit_token1, - ACTIONS(5181), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(5185), 1, + ACTIONS(4861), 1, anon_sym_POUND_QMARK, - ACTIONS(5187), 1, + ACTIONS(4863), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5189), 1, + ACTIONS(4865), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5191), 1, + ACTIONS(4867), 1, anon_sym_SQUOTE, - ACTIONS(5193), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(5195), 1, + ACTIONS(4871), 1, anon_sym_COMMA_AT, - ACTIONS(5197), 1, + ACTIONS(4873), 1, anon_sym_COMMA, - ACTIONS(5205), 1, + ACTIONS(4875), 1, + anon_sym_cl, + ACTIONS(6509), 1, sym_self_referential_reader_macro, - STATE(2839), 1, + STATE(1491), 1, + sym_sym_lit, + STATE(1507), 1, + sym__bare_set_lit, + STATE(2832), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, - sym__bare_set_lit, - STATE(3078), 1, - sym_sym_lit, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(5055), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(5061), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5183), 2, + ACTIONS(4859), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5201), 2, + ACTIONS(4877), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(4881), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5203), 3, + ACTIONS(4883), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6507), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2991), 3, + STATE(1504), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2961), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1545), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -86655,84 +86227,84 @@ static const uint16_t ts_small_parse_table[] = { [53327] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, - anon_sym_POUND_QMARK, - ACTIONS(35), 1, - anon_sym_POUND_QMARK_AT, ACTIONS(47), 1, sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(6583), 1, + ACTIONS(4843), 1, anon_sym_POUND, - ACTIONS(6585), 1, + ACTIONS(4847), 1, aux_sym_num_lit_token1, - ACTIONS(6589), 1, + ACTIONS(4849), 1, + anon_sym_COLON, + ACTIONS(4851), 1, + anon_sym_COLON_COLON, + ACTIONS(4853), 1, + anon_sym_DQUOTE, + ACTIONS(4855), 1, + aux_sym_sym_lit_token1, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4861), 1, + anon_sym_POUND_QMARK, + ACTIONS(4863), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(4865), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6591), 1, + ACTIONS(4867), 1, anon_sym_SQUOTE, - ACTIONS(6593), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(6595), 1, + ACTIONS(4871), 1, anon_sym_COMMA_AT, - ACTIONS(6597), 1, + ACTIONS(4873), 1, anon_sym_COMMA, - ACTIONS(6713), 1, + ACTIONS(4875), 1, + anon_sym_cl, + ACTIONS(6515), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(1491), 1, sym_sym_lit, - STATE(2811), 1, + STATE(1507), 1, + sym__bare_set_lit, + STATE(2832), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(51), 2, + ACTIONS(4859), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4877), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(57), 2, + ACTIONS(4881), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4883), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(6511), 2, sym__ws, sym_comment, - ACTIONS(6587), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(6599), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(6711), 3, + ACTIONS(6513), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1877), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(804), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1786), 19, + STATE(1504), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1547), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -86755,84 +86327,84 @@ static const uint16_t ts_small_parse_table[] = { [53462] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4843), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(4847), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(4849), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(4851), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(4853), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(4855), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(4861), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(4863), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(4865), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(4867), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(4871), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(4873), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4875), 1, anon_sym_cl, - ACTIONS(6691), 1, + ACTIONS(6521), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(1491), 1, sym_sym_lit, - STATE(2808), 1, + STATE(1507), 1, + sym__bare_set_lit, + STATE(2832), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(4859), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(4877), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(4881), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(4883), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6715), 2, + ACTIONS(6517), 2, sym__ws, sym_comment, - ACTIONS(6689), 3, + ACTIONS(6519), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(948), 3, + STATE(806), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1877), 3, + STATE(1504), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1824), 19, + STATE(1549), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -86855,84 +86427,84 @@ static const uint16_t ts_small_parse_table[] = { [53597] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4843), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(4847), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(4849), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(4851), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(4853), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(4855), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(4861), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(4863), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(4865), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(4867), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(4871), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(4873), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4875), 1, anon_sym_cl, - ACTIONS(6721), 1, + ACTIONS(6527), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(1491), 1, sym_sym_lit, - STATE(2808), 1, + STATE(1507), 1, + sym__bare_set_lit, + STATE(2832), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(4859), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(4877), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(4881), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(4883), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6717), 2, + ACTIONS(6523), 2, sym__ws, sym_comment, - ACTIONS(6719), 3, + ACTIONS(6525), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(956), 3, + STATE(807), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1877), 3, + STATE(1504), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(954), 19, + STATE(1551), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -86961,78 +86533,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2728), 1, + ACTIONS(4843), 1, anon_sym_POUND, - ACTIONS(2732), 1, + ACTIONS(4847), 1, aux_sym_num_lit_token1, - ACTIONS(2737), 1, + ACTIONS(4849), 1, + anon_sym_COLON, + ACTIONS(4851), 1, anon_sym_COLON_COLON, - ACTIONS(2739), 1, + ACTIONS(4853), 1, anon_sym_DQUOTE, - ACTIONS(2741), 1, + ACTIONS(4855), 1, aux_sym_sym_lit_token1, - ACTIONS(2756), 1, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4861), 1, anon_sym_POUND_QMARK, - ACTIONS(2758), 1, + ACTIONS(4863), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2760), 1, + ACTIONS(4865), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2762), 1, + ACTIONS(4867), 1, anon_sym_SQUOTE, - ACTIONS(2764), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(2766), 1, + ACTIONS(4871), 1, anon_sym_COMMA_AT, - ACTIONS(2768), 1, + ACTIONS(4873), 1, anon_sym_COMMA, - ACTIONS(4793), 1, - anon_sym_COLON, - ACTIONS(4795), 1, - anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4875), 1, anon_sym_cl, - ACTIONS(6727), 1, + ACTIONS(6533), 1, sym_self_referential_reader_macro, - STATE(1482), 1, - sym__bare_set_lit, - STATE(1484), 1, + STATE(1491), 1, sym_sym_lit, - STATE(2813), 1, + STATE(1507), 1, + sym__bare_set_lit, + STATE(2832), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(2754), 2, + ACTIONS(4859), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2775), 2, + ACTIONS(4877), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2779), 2, + ACTIONS(4881), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2781), 2, + ACTIONS(4883), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6723), 2, + ACTIONS(6529), 2, sym__ws, sym_comment, - ACTIONS(6725), 3, + ACTIONS(6531), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(756), 3, + STATE(808), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1483), 3, + STATE(1504), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1438), 19, + STATE(1552), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -87061,78 +86633,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(67), 1, + ACTIONS(4843), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(4847), 1, aux_sym_num_lit_token1, - ACTIONS(77), 1, + ACTIONS(4849), 1, + anon_sym_COLON, + ACTIONS(4851), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(4853), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(4855), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4861), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(4863), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(104), 1, + ACTIONS(4865), 1, anon_sym_POUND_SQUOTE, - ACTIONS(106), 1, + ACTIONS(4867), 1, anon_sym_SQUOTE, - ACTIONS(108), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(110), 1, + ACTIONS(4871), 1, anon_sym_COMMA_AT, - ACTIONS(112), 1, + ACTIONS(4873), 1, anon_sym_COMMA, - ACTIONS(4809), 1, - anon_sym_COLON, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4825), 1, + ACTIONS(4875), 1, anon_sym_cl, - ACTIONS(4899), 1, + ACTIONS(6537), 1, sym_self_referential_reader_macro, - STATE(2497), 1, + STATE(1491), 1, sym_sym_lit, - STATE(2625), 1, + STATE(1507), 1, sym__bare_set_lit, - STATE(2834), 1, + STATE(2832), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(98), 2, + ACTIONS(4763), 2, + sym__ws, + sym_comment, + ACTIONS(4859), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(123), 2, + ACTIONS(4877), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(127), 2, + ACTIONS(4881), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(129), 2, + ACTIONS(4883), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6729), 2, - sym__ws, - sym_comment, - ACTIONS(4897), 3, + ACTIONS(6535), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(759), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(1504), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2623), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1561), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -87161,78 +86733,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(67), 1, + ACTIONS(4843), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(4847), 1, aux_sym_num_lit_token1, - ACTIONS(77), 1, + ACTIONS(4849), 1, + anon_sym_COLON, + ACTIONS(4851), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(4853), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(4855), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4861), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(4863), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(104), 1, + ACTIONS(4865), 1, anon_sym_POUND_SQUOTE, - ACTIONS(106), 1, + ACTIONS(4867), 1, anon_sym_SQUOTE, - ACTIONS(108), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(110), 1, + ACTIONS(4871), 1, anon_sym_COMMA_AT, - ACTIONS(112), 1, + ACTIONS(4873), 1, anon_sym_COMMA, - ACTIONS(4809), 1, - anon_sym_COLON, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4825), 1, + ACTIONS(4875), 1, anon_sym_cl, - ACTIONS(4909), 1, + ACTIONS(6543), 1, sym_self_referential_reader_macro, - STATE(2497), 1, + STATE(1491), 1, sym_sym_lit, - STATE(2625), 1, + STATE(1507), 1, sym__bare_set_lit, - STATE(2834), 1, + STATE(2832), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(98), 2, + ACTIONS(4859), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(123), 2, + ACTIONS(4877), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(127), 2, + ACTIONS(4881), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(129), 2, + ACTIONS(4883), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6731), 2, + ACTIONS(6539), 2, sym__ws, sym_comment, - ACTIONS(4907), 3, + ACTIONS(6541), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(763), 3, + STATE(811), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(1504), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2626), 19, + STATE(1612), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -87261,78 +86833,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(67), 1, + ACTIONS(4843), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(4847), 1, aux_sym_num_lit_token1, - ACTIONS(77), 1, + ACTIONS(4849), 1, + anon_sym_COLON, + ACTIONS(4851), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(4853), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(4855), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4861), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(4863), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(104), 1, + ACTIONS(4865), 1, anon_sym_POUND_SQUOTE, - ACTIONS(106), 1, + ACTIONS(4867), 1, anon_sym_SQUOTE, - ACTIONS(108), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(110), 1, + ACTIONS(4871), 1, anon_sym_COMMA_AT, - ACTIONS(112), 1, + ACTIONS(4873), 1, anon_sym_COMMA, - ACTIONS(4809), 1, - anon_sym_COLON, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4825), 1, + ACTIONS(4875), 1, anon_sym_cl, - ACTIONS(4915), 1, + ACTIONS(6547), 1, sym_self_referential_reader_macro, - STATE(2497), 1, + STATE(1491), 1, sym_sym_lit, - STATE(2625), 1, + STATE(1507), 1, sym__bare_set_lit, - STATE(2834), 1, + STATE(2832), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(98), 2, + ACTIONS(4763), 2, + sym__ws, + sym_comment, + ACTIONS(4859), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(123), 2, + ACTIONS(4877), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(127), 2, + ACTIONS(4881), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(129), 2, + ACTIONS(4883), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6733), 2, - sym__ws, - sym_comment, - ACTIONS(4913), 3, + ACTIONS(6545), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(770), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(1504), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2633), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1564), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -87361,78 +86933,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5029), 1, + ACTIONS(4843), 1, + anon_sym_POUND, + ACTIONS(4847), 1, + aux_sym_num_lit_token1, + ACTIONS(4849), 1, anon_sym_COLON, - ACTIONS(5031), 1, + ACTIONS(4851), 1, anon_sym_COLON_COLON, - ACTIONS(5033), 1, + ACTIONS(4853), 1, anon_sym_DQUOTE, - ACTIONS(5035), 1, + ACTIONS(4855), 1, aux_sym_sym_lit_token1, - ACTIONS(5053), 1, - anon_sym_cl, - ACTIONS(5167), 1, - sym_self_referential_reader_macro, - ACTIONS(5175), 1, - anon_sym_POUND, - ACTIONS(5179), 1, - aux_sym_num_lit_token1, - ACTIONS(5181), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(5185), 1, + ACTIONS(4861), 1, anon_sym_POUND_QMARK, - ACTIONS(5187), 1, + ACTIONS(4863), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5189), 1, + ACTIONS(4865), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5191), 1, + ACTIONS(4867), 1, anon_sym_SQUOTE, - ACTIONS(5193), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(5195), 1, + ACTIONS(4871), 1, anon_sym_COMMA_AT, - ACTIONS(5197), 1, + ACTIONS(4873), 1, anon_sym_COMMA, - STATE(2839), 1, + ACTIONS(4875), 1, + anon_sym_cl, + ACTIONS(6551), 1, + sym_self_referential_reader_macro, + STATE(1491), 1, + sym_sym_lit, + STATE(1507), 1, + sym__bare_set_lit, + STATE(2832), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, - sym__bare_set_lit, - STATE(3078), 1, - sym_sym_lit, - ACTIONS(5055), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(5061), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5183), 2, + ACTIONS(4763), 2, + sym__ws, + sym_comment, + ACTIONS(4859), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5201), 2, + ACTIONS(4877), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(4881), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6735), 2, - sym__ws, - sym_comment, - ACTIONS(5165), 3, + ACTIONS(4883), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6549), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(815), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2991), 3, + STATE(1504), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2980), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1565), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -87461,78 +87033,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2728), 1, + ACTIONS(4843), 1, anon_sym_POUND, - ACTIONS(2732), 1, + ACTIONS(4847), 1, aux_sym_num_lit_token1, - ACTIONS(2737), 1, + ACTIONS(4849), 1, + anon_sym_COLON, + ACTIONS(4851), 1, anon_sym_COLON_COLON, - ACTIONS(2739), 1, + ACTIONS(4853), 1, anon_sym_DQUOTE, - ACTIONS(2741), 1, + ACTIONS(4855), 1, aux_sym_sym_lit_token1, - ACTIONS(2756), 1, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4861), 1, anon_sym_POUND_QMARK, - ACTIONS(2758), 1, + ACTIONS(4863), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2760), 1, + ACTIONS(4865), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2762), 1, + ACTIONS(4867), 1, anon_sym_SQUOTE, - ACTIONS(2764), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(2766), 1, + ACTIONS(4871), 1, anon_sym_COMMA_AT, - ACTIONS(2768), 1, + ACTIONS(4873), 1, anon_sym_COMMA, - ACTIONS(4793), 1, - anon_sym_COLON, - ACTIONS(4795), 1, - anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4875), 1, anon_sym_cl, - ACTIONS(6739), 1, + ACTIONS(6555), 1, sym_self_referential_reader_macro, - STATE(1482), 1, - sym__bare_set_lit, - STATE(1484), 1, + STATE(1491), 1, sym_sym_lit, - STATE(2813), 1, + STATE(1507), 1, + sym__bare_set_lit, + STATE(2832), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(2754), 2, + ACTIONS(4763), 2, + sym__ws, + sym_comment, + ACTIONS(4859), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2775), 2, + ACTIONS(4877), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2779), 2, + ACTIONS(4881), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2781), 2, + ACTIONS(4883), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, - sym__ws, - sym_comment, - ACTIONS(6737), 3, + ACTIONS(6553), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1483), 3, + STATE(1504), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1445), 19, + STATE(1567), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -87561,78 +87133,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5029), 1, + ACTIONS(4843), 1, + anon_sym_POUND, + ACTIONS(4847), 1, + aux_sym_num_lit_token1, + ACTIONS(4849), 1, anon_sym_COLON, - ACTIONS(5031), 1, + ACTIONS(4851), 1, anon_sym_COLON_COLON, - ACTIONS(5033), 1, + ACTIONS(4853), 1, anon_sym_DQUOTE, - ACTIONS(5035), 1, + ACTIONS(4855), 1, aux_sym_sym_lit_token1, - ACTIONS(5053), 1, - anon_sym_cl, - ACTIONS(5161), 1, - sym_self_referential_reader_macro, - ACTIONS(5175), 1, - anon_sym_POUND, - ACTIONS(5179), 1, - aux_sym_num_lit_token1, - ACTIONS(5181), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(5185), 1, + ACTIONS(4861), 1, anon_sym_POUND_QMARK, - ACTIONS(5187), 1, + ACTIONS(4863), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5189), 1, + ACTIONS(4865), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5191), 1, + ACTIONS(4867), 1, anon_sym_SQUOTE, - ACTIONS(5193), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(5195), 1, + ACTIONS(4871), 1, anon_sym_COMMA_AT, - ACTIONS(5197), 1, + ACTIONS(4873), 1, anon_sym_COMMA, - STATE(2839), 1, + ACTIONS(4875), 1, + anon_sym_cl, + ACTIONS(6561), 1, + sym_self_referential_reader_macro, + STATE(1491), 1, + sym_sym_lit, + STATE(1507), 1, + sym__bare_set_lit, + STATE(2832), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, - sym__bare_set_lit, - STATE(3078), 1, - sym_sym_lit, - ACTIONS(5055), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(5061), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5183), 2, + ACTIONS(4859), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5201), 2, + ACTIONS(4877), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(4881), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6741), 2, + ACTIONS(4883), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6557), 2, sym__ws, sym_comment, - ACTIONS(5159), 3, + ACTIONS(6559), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(818), 3, + STATE(812), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2991), 3, + STATE(1504), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2971), 19, + STATE(1568), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -87661,78 +87233,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2728), 1, + ACTIONS(4843), 1, anon_sym_POUND, - ACTIONS(2732), 1, + ACTIONS(4847), 1, aux_sym_num_lit_token1, - ACTIONS(2737), 1, + ACTIONS(4849), 1, + anon_sym_COLON, + ACTIONS(4851), 1, anon_sym_COLON_COLON, - ACTIONS(2739), 1, + ACTIONS(4853), 1, anon_sym_DQUOTE, - ACTIONS(2741), 1, + ACTIONS(4855), 1, aux_sym_sym_lit_token1, - ACTIONS(2756), 1, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4861), 1, anon_sym_POUND_QMARK, - ACTIONS(2758), 1, + ACTIONS(4863), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2760), 1, + ACTIONS(4865), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2762), 1, + ACTIONS(4867), 1, anon_sym_SQUOTE, - ACTIONS(2764), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(2766), 1, + ACTIONS(4871), 1, anon_sym_COMMA_AT, - ACTIONS(2768), 1, + ACTIONS(4873), 1, anon_sym_COMMA, - ACTIONS(4793), 1, - anon_sym_COLON, - ACTIONS(4795), 1, - anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4875), 1, anon_sym_cl, - ACTIONS(6745), 1, + ACTIONS(6567), 1, sym_self_referential_reader_macro, - STATE(1482), 1, - sym__bare_set_lit, - STATE(1484), 1, + STATE(1491), 1, sym_sym_lit, - STATE(2813), 1, + STATE(1507), 1, + sym__bare_set_lit, + STATE(2832), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(2754), 2, + ACTIONS(4859), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2775), 2, + ACTIONS(4877), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2779), 2, + ACTIONS(4881), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2781), 2, + ACTIONS(4883), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(6563), 2, sym__ws, sym_comment, - ACTIONS(6743), 3, + ACTIONS(6565), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1483), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(814), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1446), 19, + STATE(1504), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1569), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -87755,84 +87327,84 @@ static const uint16_t ts_small_parse_table[] = { [54812] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4843), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(4847), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(4849), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(4851), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(4853), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(4855), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(4861), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(4863), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(4865), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(4867), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(4871), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(4873), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4875), 1, anon_sym_cl, - ACTIONS(6751), 1, + ACTIONS(6571), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(1491), 1, sym_sym_lit, - STATE(2808), 1, + STATE(1507), 1, + sym__bare_set_lit, + STATE(2832), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(4763), 2, + sym__ws, + sym_comment, + ACTIONS(4859), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(4877), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(4881), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(4883), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6747), 2, - sym__ws, - sym_comment, - ACTIONS(6749), 3, + ACTIONS(6569), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(969), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1877), 3, + STATE(1504), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(973), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1576), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -87861,78 +87433,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(67), 1, + ACTIONS(4843), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(4847), 1, aux_sym_num_lit_token1, - ACTIONS(77), 1, + ACTIONS(4849), 1, + anon_sym_COLON, + ACTIONS(4851), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(4853), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(4855), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4861), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(4863), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(104), 1, + ACTIONS(4865), 1, anon_sym_POUND_SQUOTE, - ACTIONS(106), 1, + ACTIONS(4867), 1, anon_sym_SQUOTE, - ACTIONS(108), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(110), 1, + ACTIONS(4871), 1, anon_sym_COMMA_AT, - ACTIONS(112), 1, + ACTIONS(4873), 1, anon_sym_COMMA, - ACTIONS(4809), 1, - anon_sym_COLON, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4825), 1, + ACTIONS(4875), 1, anon_sym_cl, - ACTIONS(4927), 1, + ACTIONS(6575), 1, sym_self_referential_reader_macro, - STATE(2497), 1, + STATE(1491), 1, sym_sym_lit, - STATE(2625), 1, + STATE(1507), 1, sym__bare_set_lit, - STATE(2834), 1, + STATE(2832), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(98), 2, + ACTIONS(4763), 2, + sym__ws, + sym_comment, + ACTIONS(4859), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(123), 2, + ACTIONS(4877), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(127), 2, + ACTIONS(4881), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(129), 2, + ACTIONS(4883), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, - sym__ws, - sym_comment, - ACTIONS(4925), 3, + ACTIONS(6573), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(1504), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2638), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1578), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -87961,78 +87533,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5029), 1, + ACTIONS(4843), 1, + anon_sym_POUND, + ACTIONS(4847), 1, + aux_sym_num_lit_token1, + ACTIONS(4849), 1, anon_sym_COLON, - ACTIONS(5031), 1, + ACTIONS(4851), 1, anon_sym_COLON_COLON, - ACTIONS(5033), 1, + ACTIONS(4853), 1, anon_sym_DQUOTE, - ACTIONS(5035), 1, + ACTIONS(4855), 1, aux_sym_sym_lit_token1, - ACTIONS(5053), 1, - anon_sym_cl, - ACTIONS(5149), 1, - sym_self_referential_reader_macro, - ACTIONS(5175), 1, - anon_sym_POUND, - ACTIONS(5179), 1, - aux_sym_num_lit_token1, - ACTIONS(5181), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(5185), 1, + ACTIONS(4861), 1, anon_sym_POUND_QMARK, - ACTIONS(5187), 1, + ACTIONS(4863), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5189), 1, + ACTIONS(4865), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5191), 1, + ACTIONS(4867), 1, anon_sym_SQUOTE, - ACTIONS(5193), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(5195), 1, + ACTIONS(4871), 1, anon_sym_COMMA_AT, - ACTIONS(5197), 1, + ACTIONS(4873), 1, anon_sym_COMMA, - STATE(2839), 1, + ACTIONS(4875), 1, + anon_sym_cl, + ACTIONS(6581), 1, + sym_self_referential_reader_macro, + STATE(1491), 1, + sym_sym_lit, + STATE(1507), 1, + sym__bare_set_lit, + STATE(2832), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, - sym__bare_set_lit, - STATE(3078), 1, - sym_sym_lit, - ACTIONS(4801), 2, - sym__ws, - sym_comment, - ACTIONS(5055), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(5061), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5183), 2, + ACTIONS(4859), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5201), 2, + ACTIONS(4877), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(4881), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5147), 3, + ACTIONS(4883), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6577), 2, + sym__ws, + sym_comment, + ACTIONS(6579), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, + STATE(816), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2991), 3, + STATE(1504), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2925), 19, + STATE(1579), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -88061,78 +87633,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(67), 1, + ACTIONS(4843), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(4847), 1, aux_sym_num_lit_token1, - ACTIONS(77), 1, + ACTIONS(4849), 1, + anon_sym_COLON, + ACTIONS(4851), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(4853), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(4855), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4861), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(4863), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(104), 1, + ACTIONS(4865), 1, anon_sym_POUND_SQUOTE, - ACTIONS(106), 1, + ACTIONS(4867), 1, anon_sym_SQUOTE, - ACTIONS(108), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(110), 1, + ACTIONS(4871), 1, anon_sym_COMMA_AT, - ACTIONS(112), 1, + ACTIONS(4873), 1, anon_sym_COMMA, - ACTIONS(4809), 1, - anon_sym_COLON, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4825), 1, + ACTIONS(4875), 1, anon_sym_cl, - ACTIONS(4935), 1, + ACTIONS(6585), 1, sym_self_referential_reader_macro, - STATE(2497), 1, + STATE(1491), 1, sym_sym_lit, - STATE(2625), 1, + STATE(1507), 1, sym__bare_set_lit, - STATE(2834), 1, + STATE(2832), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(98), 2, + ACTIONS(4763), 2, + sym__ws, + sym_comment, + ACTIONS(4859), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(123), 2, + ACTIONS(4877), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(127), 2, + ACTIONS(4881), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(129), 2, + ACTIONS(4883), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, - sym__ws, - sym_comment, - ACTIONS(4933), 3, + ACTIONS(6583), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(1504), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2640), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1580), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -88161,78 +87733,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5029), 1, + ACTIONS(4843), 1, + anon_sym_POUND, + ACTIONS(4847), 1, + aux_sym_num_lit_token1, + ACTIONS(4849), 1, anon_sym_COLON, - ACTIONS(5031), 1, + ACTIONS(4851), 1, anon_sym_COLON_COLON, - ACTIONS(5033), 1, + ACTIONS(4853), 1, anon_sym_DQUOTE, - ACTIONS(5035), 1, + ACTIONS(4855), 1, aux_sym_sym_lit_token1, - ACTIONS(5053), 1, - anon_sym_cl, - ACTIONS(5145), 1, - sym_self_referential_reader_macro, - ACTIONS(5175), 1, - anon_sym_POUND, - ACTIONS(5179), 1, - aux_sym_num_lit_token1, - ACTIONS(5181), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(5185), 1, + ACTIONS(4861), 1, anon_sym_POUND_QMARK, - ACTIONS(5187), 1, + ACTIONS(4863), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5189), 1, + ACTIONS(4865), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5191), 1, + ACTIONS(4867), 1, anon_sym_SQUOTE, - ACTIONS(5193), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(5195), 1, + ACTIONS(4871), 1, anon_sym_COMMA_AT, - ACTIONS(5197), 1, + ACTIONS(4873), 1, anon_sym_COMMA, - STATE(2839), 1, + ACTIONS(4875), 1, + anon_sym_cl, + ACTIONS(6591), 1, + sym_self_referential_reader_macro, + STATE(1491), 1, + sym_sym_lit, + STATE(1507), 1, + sym__bare_set_lit, + STATE(2832), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, - sym__bare_set_lit, - STATE(3078), 1, - sym_sym_lit, - ACTIONS(4801), 2, - sym__ws, - sym_comment, - ACTIONS(5055), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(5061), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5183), 2, + ACTIONS(4859), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5201), 2, + ACTIONS(4877), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(4881), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5143), 3, + ACTIONS(4883), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6587), 2, + sym__ws, + sym_comment, + ACTIONS(6589), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, + STATE(817), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2991), 3, + STATE(1504), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2920), 19, + STATE(1581), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -88261,78 +87833,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(67), 1, + ACTIONS(4843), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(4847), 1, aux_sym_num_lit_token1, - ACTIONS(77), 1, + ACTIONS(4849), 1, + anon_sym_COLON, + ACTIONS(4851), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(4853), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(4855), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4861), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(4863), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(104), 1, + ACTIONS(4865), 1, anon_sym_POUND_SQUOTE, - ACTIONS(106), 1, + ACTIONS(4867), 1, anon_sym_SQUOTE, - ACTIONS(108), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(110), 1, + ACTIONS(4871), 1, anon_sym_COMMA_AT, - ACTIONS(112), 1, + ACTIONS(4873), 1, anon_sym_COMMA, - ACTIONS(4809), 1, - anon_sym_COLON, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4825), 1, + ACTIONS(4875), 1, anon_sym_cl, - ACTIONS(4943), 1, + ACTIONS(6595), 1, sym_self_referential_reader_macro, - STATE(2497), 1, + STATE(1491), 1, sym_sym_lit, - STATE(2625), 1, + STATE(1507), 1, sym__bare_set_lit, - STATE(2834), 1, + STATE(2832), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(98), 2, + ACTIONS(4763), 2, + sym__ws, + sym_comment, + ACTIONS(4859), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(123), 2, + ACTIONS(4877), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(127), 2, + ACTIONS(4881), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(129), 2, + ACTIONS(4883), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, - sym__ws, - sym_comment, - ACTIONS(4941), 3, + ACTIONS(6593), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(1504), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2641), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1587), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -88361,78 +87933,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5029), 1, + ACTIONS(4843), 1, + anon_sym_POUND, + ACTIONS(4847), 1, + aux_sym_num_lit_token1, + ACTIONS(4849), 1, anon_sym_COLON, - ACTIONS(5031), 1, + ACTIONS(4851), 1, anon_sym_COLON_COLON, - ACTIONS(5033), 1, + ACTIONS(4853), 1, anon_sym_DQUOTE, - ACTIONS(5035), 1, + ACTIONS(4855), 1, aux_sym_sym_lit_token1, - ACTIONS(5053), 1, - anon_sym_cl, - ACTIONS(5137), 1, - sym_self_referential_reader_macro, - ACTIONS(5175), 1, - anon_sym_POUND, - ACTIONS(5179), 1, - aux_sym_num_lit_token1, - ACTIONS(5181), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(5185), 1, + ACTIONS(4861), 1, anon_sym_POUND_QMARK, - ACTIONS(5187), 1, + ACTIONS(4863), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5189), 1, + ACTIONS(4865), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5191), 1, + ACTIONS(4867), 1, anon_sym_SQUOTE, - ACTIONS(5193), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(5195), 1, + ACTIONS(4871), 1, anon_sym_COMMA_AT, - ACTIONS(5197), 1, + ACTIONS(4873), 1, anon_sym_COMMA, - STATE(2839), 1, + ACTIONS(4875), 1, + anon_sym_cl, + ACTIONS(6599), 1, + sym_self_referential_reader_macro, + STATE(1491), 1, + sym_sym_lit, + STATE(1507), 1, + sym__bare_set_lit, + STATE(2832), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, - sym__bare_set_lit, - STATE(3078), 1, - sym_sym_lit, - ACTIONS(5055), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(5061), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5183), 2, + ACTIONS(4763), 2, + sym__ws, + sym_comment, + ACTIONS(4859), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5201), 2, + ACTIONS(4877), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(4881), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6753), 2, - sym__ws, - sym_comment, - ACTIONS(5135), 3, + ACTIONS(4883), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6597), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(820), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2991), 3, + STATE(1504), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2910), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1492), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -88461,78 +88033,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5029), 1, + ACTIONS(4995), 1, + aux_sym_num_lit_token1, + ACTIONS(5037), 1, + anon_sym_POUND, + ACTIONS(5041), 1, anon_sym_COLON, - ACTIONS(5031), 1, + ACTIONS(5043), 1, anon_sym_COLON_COLON, - ACTIONS(5033), 1, + ACTIONS(5045), 1, anon_sym_DQUOTE, - ACTIONS(5035), 1, + ACTIONS(5047), 1, aux_sym_sym_lit_token1, - ACTIONS(5053), 1, - anon_sym_cl, - ACTIONS(5131), 1, - sym_self_referential_reader_macro, - ACTIONS(5175), 1, - anon_sym_POUND, - ACTIONS(5179), 1, - aux_sym_num_lit_token1, - ACTIONS(5181), 1, + ACTIONS(5049), 1, anon_sym_LPAREN, - ACTIONS(5185), 1, + ACTIONS(5051), 1, anon_sym_POUND_QMARK, - ACTIONS(5187), 1, + ACTIONS(5053), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5189), 1, + ACTIONS(5055), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5191), 1, + ACTIONS(5057), 1, anon_sym_SQUOTE, - ACTIONS(5193), 1, + ACTIONS(5059), 1, anon_sym_BQUOTE, - ACTIONS(5195), 1, + ACTIONS(5061), 1, anon_sym_COMMA_AT, - ACTIONS(5197), 1, + ACTIONS(5063), 1, anon_sym_COMMA, - STATE(2839), 1, + ACTIONS(5065), 1, + anon_sym_cl, + ACTIONS(6605), 1, + sym_self_referential_reader_macro, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, + STATE(2986), 1, sym__bare_set_lit, - STATE(3078), 1, + STATE(3040), 1, sym_sym_lit, - ACTIONS(4801), 2, - sym__ws, - sym_comment, - ACTIONS(5055), 2, + ACTIONS(5007), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5021), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(5061), 2, + ACTIONS(5027), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5183), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(5201), 2, + ACTIONS(5069), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5129), 3, + ACTIONS(6601), 2, + sym__ws, + sym_comment, + ACTIONS(6603), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, + STATE(447), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2991), 3, + STATE(2985), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2908), 19, + STATE(2838), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -88561,78 +88133,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5029), 1, - anon_sym_COLON, - ACTIONS(5031), 1, + ACTIONS(1688), 1, + anon_sym_POUND, + ACTIONS(1692), 1, + aux_sym_num_lit_token1, + ACTIONS(1697), 1, anon_sym_COLON_COLON, - ACTIONS(5033), 1, + ACTIONS(1699), 1, anon_sym_DQUOTE, - ACTIONS(5035), 1, + ACTIONS(1701), 1, aux_sym_sym_lit_token1, - ACTIONS(5053), 1, - anon_sym_cl, - ACTIONS(5089), 1, - sym_self_referential_reader_macro, - ACTIONS(5175), 1, - anon_sym_POUND, - ACTIONS(5179), 1, - aux_sym_num_lit_token1, - ACTIONS(5181), 1, - anon_sym_LPAREN, - ACTIONS(5185), 1, + ACTIONS(1716), 1, anon_sym_POUND_QMARK, - ACTIONS(5187), 1, + ACTIONS(1718), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5189), 1, + ACTIONS(1720), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5191), 1, + ACTIONS(1722), 1, anon_sym_SQUOTE, - ACTIONS(5193), 1, + ACTIONS(1724), 1, anon_sym_BQUOTE, - ACTIONS(5195), 1, + ACTIONS(1726), 1, anon_sym_COMMA_AT, - ACTIONS(5197), 1, + ACTIONS(1728), 1, anon_sym_COMMA, - STATE(2839), 1, + ACTIONS(4791), 1, + anon_sym_COLON, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4795), 1, + anon_sym_cl, + ACTIONS(6609), 1, + sym_self_referential_reader_macro, + STATE(1288), 1, + sym_sym_lit, + STATE(1290), 1, + sym__bare_set_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, - sym__bare_set_lit, - STATE(3078), 1, - sym_sym_lit, - ACTIONS(5055), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(5061), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5183), 2, + ACTIONS(1714), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5201), 2, + ACTIONS(1735), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(1739), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6755), 2, + ACTIONS(1741), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(5087), 3, + ACTIONS(6607), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(821), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2991), 3, + STATE(1289), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2919), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(51), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -88655,84 +88227,84 @@ static const uint16_t ts_small_parse_table[] = { [56027] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5029), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(5031), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(5033), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(5035), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(5053), 1, - anon_sym_cl, - ACTIONS(5069), 1, - sym_self_referential_reader_macro, - ACTIONS(5175), 1, - anon_sym_POUND, - ACTIONS(5179), 1, - aux_sym_num_lit_token1, - ACTIONS(5181), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(5185), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(5187), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5189), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5191), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(5193), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(5195), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(5197), 1, + ACTIONS(45), 1, anon_sym_COMMA, - STATE(2839), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(6615), 1, + sym_self_referential_reader_macro, + STATE(1771), 1, + sym_sym_lit, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, - sym__bare_set_lit, - STATE(3078), 1, - sym_sym_lit, - ACTIONS(4801), 2, - sym__ws, - sym_comment, - ACTIONS(5055), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(5061), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5183), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5201), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5067), 3, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6611), 2, + sym__ws, + sym_comment, + ACTIONS(6613), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, + STATE(822), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2991), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2998), 19, + STATE(453), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -88761,78 +88333,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5029), 1, - anon_sym_COLON, - ACTIONS(5031), 1, + ACTIONS(65), 1, + anon_sym_POUND, + ACTIONS(69), 1, + aux_sym_num_lit_token1, + ACTIONS(74), 1, anon_sym_COLON_COLON, - ACTIONS(5033), 1, + ACTIONS(76), 1, anon_sym_DQUOTE, - ACTIONS(5035), 1, + ACTIONS(78), 1, aux_sym_sym_lit_token1, - ACTIONS(5053), 1, - anon_sym_cl, - ACTIONS(5057), 1, - sym_self_referential_reader_macro, - ACTIONS(5175), 1, - anon_sym_POUND, - ACTIONS(5179), 1, - aux_sym_num_lit_token1, - ACTIONS(5181), 1, - anon_sym_LPAREN, - ACTIONS(5185), 1, + ACTIONS(93), 1, anon_sym_POUND_QMARK, - ACTIONS(5187), 1, + ACTIONS(95), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5189), 1, + ACTIONS(97), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5191), 1, + ACTIONS(99), 1, anon_sym_SQUOTE, - ACTIONS(5193), 1, + ACTIONS(101), 1, anon_sym_BQUOTE, - ACTIONS(5195), 1, + ACTIONS(103), 1, anon_sym_COMMA_AT, - ACTIONS(5197), 1, + ACTIONS(105), 1, anon_sym_COMMA, - STATE(2839), 1, + ACTIONS(4749), 1, + anon_sym_COLON, + ACTIONS(4751), 1, + anon_sym_LPAREN, + ACTIONS(4753), 1, + anon_sym_cl, + ACTIONS(6619), 1, + sym_self_referential_reader_macro, + STATE(1101), 1, + sym_sym_lit, + STATE(1117), 1, + sym__bare_set_lit, + STATE(2812), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, - sym__bare_set_lit, - STATE(3078), 1, - sym_sym_lit, - ACTIONS(4801), 2, - sym__ws, - sym_comment, - ACTIONS(5055), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(5061), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5183), 2, + ACTIONS(91), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5201), 2, + ACTIONS(114), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(118), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5025), 3, + ACTIONS(120), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4763), 2, + sym__ws, + sym_comment, + ACTIONS(6617), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2991), 3, + STATE(1109), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2997), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(24), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -88855,6 +88427,10 @@ static const uint16_t ts_small_parse_table[] = { [56297] = 35, ACTIONS(9), 1, anon_sym_POUND_, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, ACTIONS(17), 1, anon_sym_COLON, ACTIONS(19), 1, @@ -88873,66 +88449,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(5095), 1, - sym_self_referential_reader_macro, - ACTIONS(6583), 1, - anon_sym_POUND, - ACTIONS(6585), 1, - aux_sym_num_lit_token1, - ACTIONS(6589), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6591), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(6593), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(6595), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(6597), 1, + ACTIONS(45), 1, anon_sym_COMMA, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(6623), 1, + sym_self_referential_reader_macro, + STATE(1771), 1, sym_sym_lit, - STATE(2811), 1, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, + ACTIONS(31), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, + ACTIONS(55), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6587), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(6599), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(6757), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(5093), 3, + ACTIONS(6621), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(832), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1877), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1870), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(458), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -88955,84 +88527,84 @@ static const uint16_t ts_small_parse_table[] = { [56432] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5029), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(5031), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(5033), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(5035), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(5053), 1, - anon_sym_cl, - ACTIONS(5175), 1, - anon_sym_POUND, - ACTIONS(5179), 1, - aux_sym_num_lit_token1, - ACTIONS(5181), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(5185), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(5187), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5189), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5191), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(5193), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(5195), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(5197), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(6763), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(6629), 1, sym_self_referential_reader_macro, - STATE(2839), 1, + STATE(1771), 1, + sym_sym_lit, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, - sym__bare_set_lit, - STATE(3078), 1, - sym_sym_lit, - ACTIONS(5055), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(5061), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5183), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5201), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6759), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6625), 2, sym__ws, sym_comment, - ACTIONS(6761), 3, + ACTIONS(6627), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(572), 3, + STATE(829), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2991), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(3089), 19, + STATE(462), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -89091,19 +88663,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(6767), 1, + ACTIONS(6635), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2808), 1, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -89117,22 +88689,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(6631), 2, sym__ws, sym_comment, - ACTIONS(6765), 3, + ACTIONS(6633), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1877), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(830), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(586), 19, + STATE(1790), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(463), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -89155,6 +88727,10 @@ static const uint16_t ts_small_parse_table[] = { [56702] = 35, ACTIONS(9), 1, anon_sym_POUND_, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, ACTIONS(17), 1, anon_sym_COLON, ACTIONS(19), 1, @@ -89173,66 +88749,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(5121), 1, - sym_self_referential_reader_macro, - ACTIONS(6583), 1, - anon_sym_POUND, - ACTIONS(6585), 1, - aux_sym_num_lit_token1, - ACTIONS(6589), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6591), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(6593), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(6595), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(6597), 1, + ACTIONS(45), 1, anon_sym_COMMA, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(5533), 1, + sym_self_referential_reader_macro, + STATE(1771), 1, sym_sym_lit, - STATE(2811), 1, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, + ACTIONS(31), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, + ACTIONS(55), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6587), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(6599), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(6769), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(5119), 3, + ACTIONS(5531), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(835), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1877), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1869), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1792), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -89255,84 +88827,84 @@ static const uint16_t ts_small_parse_table[] = { [56837] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, - anon_sym_POUND_QMARK, - ACTIONS(35), 1, - anon_sym_POUND_QMARK_AT, ACTIONS(47), 1, sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(5427), 1, - sym_self_referential_reader_macro, - ACTIONS(6583), 1, + ACTIONS(174), 1, anon_sym_POUND, - ACTIONS(6585), 1, + ACTIONS(178), 1, aux_sym_num_lit_token1, - ACTIONS(6589), 1, + ACTIONS(184), 1, + anon_sym_COLON_COLON, + ACTIONS(186), 1, + anon_sym_DQUOTE, + ACTIONS(188), 1, + aux_sym_sym_lit_token1, + ACTIONS(207), 1, + anon_sym_POUND_QMARK, + ACTIONS(209), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(211), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6591), 1, + ACTIONS(213), 1, anon_sym_SQUOTE, - ACTIONS(6593), 1, + ACTIONS(215), 1, anon_sym_BQUOTE, - ACTIONS(6595), 1, + ACTIONS(217), 1, anon_sym_COMMA_AT, - ACTIONS(6597), 1, + ACTIONS(219), 1, anon_sym_COMMA, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + ACTIONS(4767), 1, + anon_sym_COLON, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, + anon_sym_cl, + ACTIONS(6639), 1, + sym_self_referential_reader_macro, + STATE(2112), 1, sym_sym_lit, - STATE(2811), 1, + STATE(2589), 1, + sym__bare_set_lit, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(57), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(6587), 2, + ACTIONS(205), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(6599), 2, + ACTIONS(230), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(234), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6771), 2, + ACTIONS(236), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(5425), 3, + ACTIONS(6637), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(837), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1877), 3, + STATE(2584), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1868), 19, + STATE(2725), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -89355,84 +88927,84 @@ static const uint16_t ts_small_parse_table[] = { [56972] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(174), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(178), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(211), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(213), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(215), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(217), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(219), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4767), 1, + anon_sym_COLON, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, anon_sym_cl, - ACTIONS(6775), 1, + ACTIONS(6643), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(2112), 1, sym_sym_lit, - STATE(2808), 1, + STATE(2589), 1, + sym__bare_set_lit, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(205), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(234), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(6773), 3, + ACTIONS(6641), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1877), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(589), 19, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2726), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -89461,78 +89033,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6041), 1, - anon_sym_COLON, - ACTIONS(6043), 1, + ACTIONS(174), 1, + anon_sym_POUND, + ACTIONS(178), 1, + aux_sym_num_lit_token1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(6045), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(6047), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(6049), 1, - anon_sym_LPAREN, - ACTIONS(6051), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(6077), 1, - sym_self_referential_reader_macro, - ACTIONS(6779), 1, - anon_sym_POUND, - ACTIONS(6781), 1, - aux_sym_num_lit_token1, - ACTIONS(6785), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(6787), 1, + ACTIONS(211), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6789), 1, + ACTIONS(213), 1, anon_sym_SQUOTE, - ACTIONS(6791), 1, + ACTIONS(215), 1, anon_sym_BQUOTE, - ACTIONS(6793), 1, + ACTIONS(217), 1, anon_sym_COMMA_AT, - ACTIONS(6795), 1, + ACTIONS(219), 1, anon_sym_COMMA, - ACTIONS(6797), 1, + ACTIONS(4767), 1, + anon_sym_COLON, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, anon_sym_cl, - STATE(1893), 1, + ACTIONS(6647), 1, + sym_self_referential_reader_macro, + STATE(2112), 1, + sym_sym_lit, + STATE(2589), 1, sym__bare_set_lit, - STATE(2832), 1, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2874), 1, - sym_sym_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(1636), 2, + ACTIONS(205), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(1642), 2, + ACTIONS(234), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6777), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(6783), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(6799), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(6075), 3, + ACTIONS(6645), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(838), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1892), 3, + STATE(2584), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2800), 19, + STATE(2727), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -89555,84 +89127,84 @@ static const uint16_t ts_small_parse_table[] = { [57242] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(2728), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(2732), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(2737), 1, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(2739), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(2741), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(2756), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(2758), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2760), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2762), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(2764), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(2766), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(2768), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(4793), 1, - anon_sym_COLON, - ACTIONS(4795), 1, - anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(6803), 1, + ACTIONS(6651), 1, sym_self_referential_reader_macro, - STATE(1482), 1, - sym__bare_set_lit, - STATE(1484), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2813), 1, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(2754), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2775), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2779), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2781), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(6801), 3, + ACTIONS(6649), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1483), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(69), 19, + STATE(466), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -89655,84 +89227,84 @@ static const uint16_t ts_small_parse_table[] = { [57377] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(6041), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(6043), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(6045), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(6047), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(6049), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(6051), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(6087), 1, - sym_self_referential_reader_macro, - ACTIONS(6779), 1, - anon_sym_POUND, - ACTIONS(6781), 1, - aux_sym_num_lit_token1, - ACTIONS(6785), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(6787), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6789), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(6791), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(6793), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(6795), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(6797), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - STATE(1893), 1, + ACTIONS(6655), 1, + sym_self_referential_reader_macro, + STATE(1771), 1, + sym_sym_lit, + STATE(1801), 1, sym__bare_set_lit, - STATE(2832), 1, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2874), 1, - sym_sym_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(1636), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(1642), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(6783), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(6799), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6805), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(6085), 3, + ACTIONS(6653), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(841), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1892), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2801), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(468), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -89761,78 +89333,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6041), 1, - anon_sym_COLON, - ACTIONS(6043), 1, + ACTIONS(174), 1, + anon_sym_POUND, + ACTIONS(178), 1, + aux_sym_num_lit_token1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(6045), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(6047), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(6049), 1, - anon_sym_LPAREN, - ACTIONS(6051), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(6091), 1, - sym_self_referential_reader_macro, - ACTIONS(6779), 1, - anon_sym_POUND, - ACTIONS(6781), 1, - aux_sym_num_lit_token1, - ACTIONS(6785), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(6787), 1, + ACTIONS(211), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6789), 1, + ACTIONS(213), 1, anon_sym_SQUOTE, - ACTIONS(6791), 1, + ACTIONS(215), 1, anon_sym_BQUOTE, - ACTIONS(6793), 1, + ACTIONS(217), 1, anon_sym_COMMA_AT, - ACTIONS(6795), 1, + ACTIONS(219), 1, anon_sym_COMMA, - ACTIONS(6797), 1, + ACTIONS(4767), 1, + anon_sym_COLON, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, anon_sym_cl, - STATE(1893), 1, + ACTIONS(6659), 1, + sym_self_referential_reader_macro, + STATE(2112), 1, + sym_sym_lit, + STATE(2589), 1, sym__bare_set_lit, - STATE(2832), 1, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2874), 1, - sym_sym_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(1636), 2, + ACTIONS(205), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(1642), 2, + ACTIONS(234), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(6783), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(6799), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(6089), 3, + ACTIONS(6657), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1892), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2829), 19, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2728), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -89855,84 +89427,84 @@ static const uint16_t ts_small_parse_table[] = { [57647] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, - anon_sym_POUND_QMARK, - ACTIONS(35), 1, - anon_sym_POUND_QMARK_AT, ACTIONS(47), 1, sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(6203), 1, - sym_self_referential_reader_macro, - ACTIONS(6583), 1, + ACTIONS(4843), 1, anon_sym_POUND, - ACTIONS(6585), 1, + ACTIONS(4847), 1, aux_sym_num_lit_token1, - ACTIONS(6589), 1, + ACTIONS(4849), 1, + anon_sym_COLON, + ACTIONS(4851), 1, + anon_sym_COLON_COLON, + ACTIONS(4853), 1, + anon_sym_DQUOTE, + ACTIONS(4855), 1, + aux_sym_sym_lit_token1, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4861), 1, + anon_sym_POUND_QMARK, + ACTIONS(4863), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(4865), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6591), 1, + ACTIONS(4867), 1, anon_sym_SQUOTE, - ACTIONS(6593), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(6595), 1, + ACTIONS(4871), 1, anon_sym_COMMA_AT, - ACTIONS(6597), 1, + ACTIONS(4873), 1, anon_sym_COMMA, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + ACTIONS(4875), 1, + anon_sym_cl, + ACTIONS(6663), 1, + sym_self_referential_reader_macro, + STATE(1491), 1, sym_sym_lit, - STATE(2811), 1, + STATE(1507), 1, + sym__bare_set_lit, + STATE(2832), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(57), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(6587), 2, + ACTIONS(4859), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(6599), 2, + ACTIONS(4877), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(4881), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6201), 3, + ACTIONS(4883), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6661), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1877), 3, + STATE(1504), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1839), 19, + STATE(1542), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -89955,84 +89527,84 @@ static const uint16_t ts_small_parse_table[] = { [57782] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(5213), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(5217), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(5219), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(5221), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(5223), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(5225), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(5231), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(5233), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(5235), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(5237), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(5239), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(5241), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(5243), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(5245), 1, anon_sym_cl, - ACTIONS(6811), 1, + ACTIONS(6669), 1, sym_self_referential_reader_macro, - STATE(1875), 1, + STATE(1687), 1, sym__bare_set_lit, - STATE(1878), 1, + STATE(1734), 1, sym_sym_lit, - STATE(2808), 1, + STATE(2799), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(5229), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(5247), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(5251), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(5253), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6807), 2, + ACTIONS(6665), 2, sym__ws, sym_comment, - ACTIONS(6809), 3, + ACTIONS(6667), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(836), 3, + STATE(476), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1877), 3, + STATE(1680), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(655), 19, + STATE(1693), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -90061,78 +89633,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(5023), 1, + ACTIONS(4843), 1, anon_sym_POUND, - ACTIONS(5027), 1, + ACTIONS(4847), 1, aux_sym_num_lit_token1, - ACTIONS(5029), 1, + ACTIONS(4849), 1, anon_sym_COLON, - ACTIONS(5031), 1, + ACTIONS(4851), 1, anon_sym_COLON_COLON, - ACTIONS(5033), 1, + ACTIONS(4853), 1, anon_sym_DQUOTE, - ACTIONS(5035), 1, + ACTIONS(4855), 1, aux_sym_sym_lit_token1, - ACTIONS(5039), 1, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4861), 1, anon_sym_POUND_QMARK, - ACTIONS(5041), 1, + ACTIONS(4863), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5043), 1, + ACTIONS(4865), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5045), 1, + ACTIONS(4867), 1, anon_sym_SQUOTE, - ACTIONS(5047), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(5049), 1, + ACTIONS(4871), 1, anon_sym_COMMA_AT, - ACTIONS(5051), 1, + ACTIONS(4873), 1, anon_sym_COMMA, - ACTIONS(5053), 1, + ACTIONS(4875), 1, anon_sym_cl, - ACTIONS(5953), 1, + ACTIONS(6675), 1, sym_self_referential_reader_macro, - STATE(2823), 1, + STATE(1491), 1, + sym_sym_lit, + STATE(1507), 1, + sym__bare_set_lit, + STATE(2832), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, - sym__bare_set_lit, - STATE(3078), 1, - sym_sym_lit, - ACTIONS(4801), 2, - sym__ws, - sym_comment, - ACTIONS(5037), 2, + ACTIONS(4859), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5055), 2, + ACTIONS(4877), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(5059), 2, + ACTIONS(4881), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5061), 2, + ACTIONS(4883), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5951), 3, + ACTIONS(6671), 2, + sym__ws, + sym_comment, + ACTIONS(6673), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, + STATE(901), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2991), 3, + STATE(1504), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2511), 19, + STATE(1544), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -90155,6 +89727,10 @@ static const uint16_t ts_small_parse_table[] = { [58052] = 35, ACTIONS(9), 1, anon_sym_POUND_, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, ACTIONS(17), 1, anon_sym_COLON, ACTIONS(19), 1, @@ -90173,66 +89749,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(6259), 1, - sym_self_referential_reader_macro, - ACTIONS(6583), 1, - anon_sym_POUND, - ACTIONS(6585), 1, - aux_sym_num_lit_token1, - ACTIONS(6589), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6591), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(6593), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(6595), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(6597), 1, + ACTIONS(45), 1, anon_sym_COMMA, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(6681), 1, + sym_self_referential_reader_macro, + STATE(1771), 1, sym_sym_lit, - STATE(2811), 1, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, + ACTIONS(31), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, + ACTIONS(55), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(6677), 2, sym__ws, sym_comment, - ACTIONS(6587), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(6599), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(6257), 3, + ACTIONS(6679), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1877), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(836), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1837), 19, + STATE(1790), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(482), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -90291,19 +89863,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(6815), 1, + ACTIONS(6685), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2808), 1, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -90317,22 +89889,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(6813), 3, + ACTIONS(6683), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1877), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(661), 19, + STATE(487), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -90355,6 +89927,10 @@ static const uint16_t ts_small_parse_table[] = { [58322] = 35, ACTIONS(9), 1, anon_sym_POUND_, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, ACTIONS(17), 1, anon_sym_COLON, ACTIONS(19), 1, @@ -90373,66 +89949,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(6331), 1, - sym_self_referential_reader_macro, - ACTIONS(6583), 1, - anon_sym_POUND, - ACTIONS(6585), 1, - aux_sym_num_lit_token1, - ACTIONS(6589), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6591), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(6593), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(6595), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(6597), 1, + ACTIONS(45), 1, anon_sym_COMMA, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(6691), 1, + sym_self_referential_reader_macro, + STATE(1771), 1, sym_sym_lit, - STATE(2811), 1, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, + ACTIONS(31), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, + ACTIONS(55), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(6687), 2, sym__ws, sym_comment, - ACTIONS(6587), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(6599), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(6329), 3, + ACTIONS(6689), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1877), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(840), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1836), 19, + STATE(1790), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(491), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -90455,84 +90027,84 @@ static const uint16_t ts_small_parse_table[] = { [58457] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(6041), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(6043), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(6045), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(6047), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(6049), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(6051), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(6111), 1, - sym_self_referential_reader_macro, - ACTIONS(6779), 1, - anon_sym_POUND, - ACTIONS(6781), 1, - aux_sym_num_lit_token1, - ACTIONS(6785), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(6787), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6789), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(6791), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(6793), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(6795), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(6797), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - STATE(1893), 1, + ACTIONS(6697), 1, + sym_self_referential_reader_macro, + STATE(1771), 1, + sym_sym_lit, + STATE(1801), 1, sym__bare_set_lit, - STATE(2832), 1, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2874), 1, - sym_sym_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(1636), 2, + ACTIONS(31), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(1642), 2, + ACTIONS(55), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(6693), 2, sym__ws, sym_comment, - ACTIONS(6783), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(6799), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(6109), 3, + ACTIONS(6695), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1892), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(841), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2822), 19, + STATE(1790), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(492), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -90591,19 +90163,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(6821), 1, + ACTIONS(5539), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2808), 1, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -90617,22 +90189,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6817), 2, + ACTIONS(6699), 2, sym__ws, sym_comment, - ACTIONS(6819), 3, + ACTIONS(5537), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(849), 3, + STATE(916), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1877), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(666), 19, + STATE(1793), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -90691,19 +90263,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(6827), 1, + ACTIONS(6703), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2808), 1, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -90717,22 +90289,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6823), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(6825), 3, + ACTIONS(6701), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(824), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1877), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(595), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(495), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -90755,84 +90327,84 @@ static const uint16_t ts_small_parse_table[] = { [58862] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(6041), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(6043), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(6045), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(6047), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(6049), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(6051), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(6119), 1, - sym_self_referential_reader_macro, - ACTIONS(6779), 1, - anon_sym_POUND, - ACTIONS(6781), 1, - aux_sym_num_lit_token1, - ACTIONS(6785), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(6787), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6789), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(6791), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(6793), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(6795), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(6797), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - STATE(1893), 1, + ACTIONS(6707), 1, + sym_self_referential_reader_macro, + STATE(1771), 1, + sym_sym_lit, + STATE(1801), 1, sym__bare_set_lit, - STATE(2832), 1, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2874), 1, - sym_sym_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(1636), 2, + ACTIONS(31), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(1642), 2, + ACTIONS(55), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(6783), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(6799), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(6117), 3, + ACTIONS(6705), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1892), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2830), 19, + STATE(497), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -90891,19 +90463,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(6833), 1, + ACTIONS(5543), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2808), 1, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -90917,22 +90489,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6829), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(6831), 3, + ACTIONS(5541), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(857), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1877), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(667), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1796), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -90991,19 +90563,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(6839), 1, + ACTIONS(5547), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2808), 1, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -91017,22 +90589,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6835), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(6837), 3, + ACTIONS(5545), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(536), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1877), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1863), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1797), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -91055,84 +90627,84 @@ static const uint16_t ts_small_parse_table[] = { [59267] = 35, ACTIONS(9), 1, anon_sym_POUND_, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, + anon_sym_COLON_COLON, + ACTIONS(21), 1, + anon_sym_DQUOTE, + ACTIONS(23), 1, + aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(77), 1, - anon_sym_COLON_COLON, - ACTIONS(79), 1, - anon_sym_DQUOTE, - ACTIONS(81), 1, - aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4803), 1, - anon_sym_POUND, - ACTIONS(4807), 1, - aux_sym_num_lit_token1, - ACTIONS(4809), 1, - anon_sym_COLON, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4817), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(4819), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(4821), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(4823), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(4825), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(5345), 1, + ACTIONS(5453), 1, sym_self_referential_reader_macro, - STATE(2497), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2625), 1, + STATE(1801), 1, sym__bare_set_lit, - STATE(2828), 1, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(123), 2, + ACTIONS(31), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(129), 2, + ACTIONS(55), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(4813), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(4829), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(5343), 3, + ACTIONS(5451), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2537), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1798), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -91155,84 +90727,84 @@ static const uint16_t ts_small_parse_table[] = { [59402] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(2728), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(2732), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(2737), 1, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(2739), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(2741), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(2756), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(2758), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2760), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2762), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(2764), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(2766), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(2768), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(4793), 1, - anon_sym_COLON, - ACTIONS(4795), 1, - anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(6845), 1, + ACTIONS(5553), 1, sym_self_referential_reader_macro, - STATE(1482), 1, - sym__bare_set_lit, - STATE(1484), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2813), 1, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(2754), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2775), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2779), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2781), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6841), 2, + ACTIONS(6709), 2, sym__ws, sym_comment, - ACTIONS(6843), 3, + ACTIONS(5551), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(810), 3, + STATE(918), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1483), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1465), 19, + STATE(1799), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -91255,10 +90827,6 @@ static const uint16_t ts_small_parse_table[] = { [59537] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, - anon_sym_POUND, - ACTIONS(15), 1, - aux_sym_num_lit_token1, ACTIONS(17), 1, anon_sym_COLON, ACTIONS(19), 1, @@ -91277,62 +90845,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, - anon_sym_SQUOTE, - ACTIONS(41), 1, - anon_sym_BQUOTE, - ACTIONS(43), 1, - anon_sym_COMMA_AT, - ACTIONS(45), 1, - anon_sym_COMMA, ACTIONS(47), 1, sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(6849), 1, + ACTIONS(5185), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + ACTIONS(5405), 1, + anon_sym_POUND, + ACTIONS(5409), 1, + aux_sym_num_lit_token1, + ACTIONS(5413), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(5415), 1, + anon_sym_SQUOTE, + ACTIONS(5417), 1, + anon_sym_BQUOTE, + ACTIONS(5419), 1, + anon_sym_COMMA_AT, + ACTIONS(5421), 1, + anon_sym_COMMA, + STATE(1771), 1, sym_sym_lit, - STATE(2808), 1, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2810), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(5411), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5425), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6711), 2, sym__ws, sym_comment, - ACTIONS(6847), 3, + ACTIONS(5183), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1877), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(505), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1865), 19, + STATE(1790), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1803), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -91355,84 +90927,84 @@ static const uint16_t ts_small_parse_table[] = { [59672] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(67), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(77), 1, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(104), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(106), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(108), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(110), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(112), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(4809), 1, - anon_sym_COLON, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4825), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(4999), 1, + ACTIONS(6717), 1, sym_self_referential_reader_macro, - STATE(2497), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2625), 1, + STATE(1801), 1, sym__bare_set_lit, - STATE(2834), 1, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(98), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(123), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(127), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(129), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6851), 2, + ACTIONS(6713), 2, sym__ws, sym_comment, - ACTIONS(4997), 3, + ACTIONS(6715), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(812), 3, + STATE(850), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2585), 19, + STATE(511), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -91455,84 +91027,84 @@ static const uint16_t ts_small_parse_table[] = { [59807] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(67), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(77), 1, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(104), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(106), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(108), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(110), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(112), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(4809), 1, - anon_sym_COLON, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4825), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(5011), 1, + ACTIONS(6721), 1, sym_self_referential_reader_macro, - STATE(2497), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2625), 1, + STATE(1801), 1, sym__bare_set_lit, - STATE(2834), 1, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(98), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(123), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(127), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(129), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6853), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(5009), 3, + ACTIONS(6719), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(814), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2575), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(920), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -91591,19 +91163,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(6857), 1, + ACTIONS(5559), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2808), 1, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -91617,22 +91189,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(6723), 2, sym__ws, sym_comment, - ACTIONS(6855), 3, + ACTIONS(5557), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1877), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(921), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(674), 19, + STATE(1790), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1800), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -91655,84 +91227,84 @@ static const uint16_t ts_small_parse_table[] = { [60077] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(67), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(77), 1, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(104), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(106), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(108), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(110), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(112), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(4809), 1, - anon_sym_COLON, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4825), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(5017), 1, + ACTIONS(6727), 1, sym_self_referential_reader_macro, - STATE(2497), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2625), 1, + STATE(1801), 1, sym__bare_set_lit, - STATE(2834), 1, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(98), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(123), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(127), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(129), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6859), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(5015), 3, + ACTIONS(6725), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(816), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2572), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(516), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -91755,6 +91327,10 @@ static const uint16_t ts_small_parse_table[] = { [60212] = 35, ACTIONS(9), 1, anon_sym_POUND_, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, ACTIONS(17), 1, anon_sym_COLON, ACTIONS(19), 1, @@ -91773,66 +91349,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(6443), 1, - sym_self_referential_reader_macro, - ACTIONS(6583), 1, - anon_sym_POUND, - ACTIONS(6585), 1, - aux_sym_num_lit_token1, - ACTIONS(6589), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6591), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(6593), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(6595), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(6597), 1, + ACTIONS(45), 1, anon_sym_COMMA, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(6733), 1, + sym_self_referential_reader_macro, + STATE(1771), 1, sym_sym_lit, - STATE(2811), 1, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, + ACTIONS(31), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, + ACTIONS(55), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6587), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(6599), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(6861), 2, + ACTIONS(6729), 2, sym__ws, sym_comment, - ACTIONS(6441), 3, + ACTIONS(6731), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(858), 3, + STATE(854), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1877), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1831), 19, + STATE(520), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -91855,6 +91427,10 @@ static const uint16_t ts_small_parse_table[] = { [60347] = 35, ACTIONS(9), 1, anon_sym_POUND_, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, ACTIONS(17), 1, anon_sym_COLON, ACTIONS(19), 1, @@ -91873,66 +91449,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(6583), 1, - anon_sym_POUND, - ACTIONS(6585), 1, - aux_sym_num_lit_token1, - ACTIONS(6589), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6591), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(6593), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(6595), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(6597), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(6675), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(6739), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2811), 1, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, + ACTIONS(31), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, + ACTIONS(55), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6587), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(6599), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(6863), 2, + ACTIONS(6735), 2, sym__ws, sym_comment, - ACTIONS(6673), 3, + ACTIONS(6737), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(863), 3, + STATE(855), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1877), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1826), 19, + STATE(521), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -91991,19 +91563,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(6869), 1, + ACTIONS(6743), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2808), 1, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -92017,22 +91589,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6865), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(6867), 3, + ACTIONS(6741), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(541), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1877), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1876), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(925), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -92055,6 +91627,10 @@ static const uint16_t ts_small_parse_table[] = { [60617] = 35, ACTIONS(9), 1, anon_sym_POUND_, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, ACTIONS(17), 1, anon_sym_COLON, ACTIONS(19), 1, @@ -92073,66 +91649,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(6583), 1, - anon_sym_POUND, - ACTIONS(6585), 1, - aux_sym_num_lit_token1, - ACTIONS(6589), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6591), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(6593), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(6595), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(6597), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(6703), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(6747), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2811), 1, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, + ACTIONS(31), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, + ACTIONS(55), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6587), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(6599), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(6871), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(6701), 3, + ACTIONS(6745), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(864), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1877), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1825), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(524), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -92155,84 +91727,84 @@ static const uint16_t ts_small_parse_table[] = { [60752] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(6041), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(6043), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(6045), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(6047), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(6049), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(6051), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(6131), 1, - sym_self_referential_reader_macro, - ACTIONS(6779), 1, - anon_sym_POUND, - ACTIONS(6781), 1, - aux_sym_num_lit_token1, - ACTIONS(6785), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(6787), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6789), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(6791), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(6793), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(6795), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(6797), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - STATE(1893), 1, + ACTIONS(6751), 1, + sym_self_referential_reader_macro, + STATE(1771), 1, + sym_sym_lit, + STATE(1801), 1, sym__bare_set_lit, - STATE(2832), 1, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2874), 1, - sym_sym_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(1636), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(1642), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(6783), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(6799), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6873), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(6129), 3, + ACTIONS(6749), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(866), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1892), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2799), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(526), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -92255,84 +91827,84 @@ static const uint16_t ts_small_parse_table[] = { [60887] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(174), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(178), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(211), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(213), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(215), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(217), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(219), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4767), 1, + anon_sym_COLON, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, anon_sym_cl, - ACTIONS(6877), 1, + ACTIONS(6757), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(2112), 1, sym_sym_lit, - STATE(2808), 1, + STATE(2589), 1, + sym__bare_set_lit, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(205), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(234), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(6753), 2, sym__ws, sym_comment, - ACTIONS(6875), 3, + ACTIONS(6755), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1877), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(926), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1880), 19, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2742), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -92355,84 +91927,84 @@ static const uint16_t ts_small_parse_table[] = { [61022] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(174), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(178), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(211), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(213), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(215), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(217), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(219), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4767), 1, + anon_sym_COLON, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, anon_sym_cl, - ACTIONS(6881), 1, + ACTIONS(6761), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(2112), 1, sym_sym_lit, - STATE(2808), 1, + STATE(2589), 1, + sym__bare_set_lit, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(205), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(234), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(6879), 3, + ACTIONS(6759), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1877), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(678), 19, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2678), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -92455,84 +92027,84 @@ static const uint16_t ts_small_parse_table[] = { [61157] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, - anon_sym_POUND_QMARK, - ACTIONS(35), 1, - anon_sym_POUND_QMARK_AT, ACTIONS(47), 1, sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(6583), 1, + ACTIONS(174), 1, anon_sym_POUND, - ACTIONS(6585), 1, + ACTIONS(178), 1, aux_sym_num_lit_token1, - ACTIONS(6589), 1, + ACTIONS(184), 1, + anon_sym_COLON_COLON, + ACTIONS(186), 1, + anon_sym_DQUOTE, + ACTIONS(188), 1, + aux_sym_sym_lit_token1, + ACTIONS(207), 1, + anon_sym_POUND_QMARK, + ACTIONS(209), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(211), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6591), 1, + ACTIONS(213), 1, anon_sym_SQUOTE, - ACTIONS(6593), 1, + ACTIONS(215), 1, anon_sym_BQUOTE, - ACTIONS(6595), 1, + ACTIONS(217), 1, anon_sym_COMMA_AT, - ACTIONS(6597), 1, + ACTIONS(219), 1, anon_sym_COMMA, - ACTIONS(6885), 1, + ACTIONS(4767), 1, + anon_sym_COLON, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, + anon_sym_cl, + ACTIONS(6767), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(2112), 1, sym_sym_lit, - STATE(2811), 1, + STATE(2589), 1, + sym__bare_set_lit, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(51), 2, + ACTIONS(205), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(57), 2, + ACTIONS(234), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(6763), 2, sym__ws, sym_comment, - ACTIONS(6587), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(6599), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(6883), 3, + ACTIONS(6765), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1877), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(931), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1780), 19, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2689), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -92555,84 +92127,84 @@ static const uint16_t ts_small_parse_table[] = { [61292] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, - anon_sym_POUND, - ACTIONS(15), 1, - aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(5041), 1, + anon_sym_COLON, + ACTIONS(5043), 1, + anon_sym_COLON_COLON, + ACTIONS(5045), 1, + anon_sym_DQUOTE, + ACTIONS(5047), 1, + aux_sym_sym_lit_token1, + ACTIONS(5049), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(5051), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(5479), 1, + anon_sym_POUND, + ACTIONS(5481), 1, + aux_sym_num_lit_token1, + ACTIONS(5485), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(5487), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(5489), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(5491), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(5493), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(5495), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(5497), 1, anon_sym_cl, - ACTIONS(6891), 1, + ACTIONS(6605), 1, sym_self_referential_reader_macro, - STATE(1875), 1, + STATE(1976), 1, sym__bare_set_lit, - STATE(1878), 1, - sym_sym_lit, - STATE(2808), 1, + STATE(2842), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2875), 1, + sym_sym_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(1492), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(1498), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6887), 2, + ACTIONS(5483), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5499), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6769), 2, sym__ws, sym_comment, - ACTIONS(6889), 3, + ACTIONS(6603), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(827), 3, + STATE(534), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1877), 3, + STATE(1975), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(596), 19, + STATE(2838), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -92661,78 +92233,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6211), 1, + ACTIONS(174), 1, anon_sym_POUND, - ACTIONS(6215), 1, + ACTIONS(178), 1, aux_sym_num_lit_token1, - ACTIONS(6217), 1, - anon_sym_COLON, - ACTIONS(6219), 1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(6221), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(6223), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(6225), 1, - anon_sym_LPAREN, - ACTIONS(6229), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(6231), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(6233), 1, + ACTIONS(211), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6235), 1, + ACTIONS(213), 1, anon_sym_SQUOTE, - ACTIONS(6237), 1, + ACTIONS(215), 1, anon_sym_BQUOTE, - ACTIONS(6239), 1, + ACTIONS(217), 1, anon_sym_COMMA_AT, - ACTIONS(6241), 1, + ACTIONS(219), 1, anon_sym_COMMA, - ACTIONS(6243), 1, + ACTIONS(4767), 1, + anon_sym_COLON, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, anon_sym_cl, - ACTIONS(6897), 1, + ACTIONS(6775), 1, sym_self_referential_reader_macro, - STATE(1675), 1, + STATE(2112), 1, sym_sym_lit, - STATE(1677), 1, + STATE(2589), 1, sym__bare_set_lit, - STATE(2833), 1, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(6227), 2, + ACTIONS(205), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(6245), 2, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(6249), 2, + ACTIONS(234), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6251), 2, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6893), 2, + ACTIONS(6771), 2, sym__ws, sym_comment, - ACTIONS(6895), 3, + ACTIONS(6773), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(700), 3, + STATE(933), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1676), 3, + STATE(2584), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1678), 19, + STATE(2703), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -92755,6 +92327,10 @@ static const uint16_t ts_small_parse_table[] = { [61562] = 35, ACTIONS(9), 1, anon_sym_POUND_, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, ACTIONS(17), 1, anon_sym_COLON, ACTIONS(19), 1, @@ -92773,66 +92349,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(6583), 1, - anon_sym_POUND, - ACTIONS(6585), 1, - aux_sym_num_lit_token1, - ACTIONS(6589), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6591), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(6593), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(6595), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(6597), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(6903), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(6781), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2811), 1, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, + ACTIONS(31), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, + ACTIONS(55), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6587), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(6599), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(6899), 2, + ACTIONS(6777), 2, sym__ws, sym_comment, - ACTIONS(6901), 3, + ACTIONS(6779), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(873), 3, + STATE(863), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1877), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1781), 19, + STATE(540), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -92855,84 +92427,84 @@ static const uint16_t ts_small_parse_table[] = { [61697] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(1688), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(1692), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(1697), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(1699), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(1701), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(1716), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(1718), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(1720), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(1722), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(1724), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(1726), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(1728), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4791), 1, + anon_sym_COLON, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4795), 1, anon_sym_cl, - ACTIONS(6907), 1, + ACTIONS(6787), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(1288), 1, sym_sym_lit, + STATE(1290), 1, + sym__bare_set_lit, STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(1714), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(1735), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(1739), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(1741), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(6783), 2, sym__ws, sym_comment, - ACTIONS(6905), 3, + ACTIONS(6785), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1877), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(941), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(607), 19, + STATE(1289), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(48), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -92955,6 +92527,10 @@ static const uint16_t ts_small_parse_table[] = { [61832] = 35, ACTIONS(9), 1, anon_sym_POUND_, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, ACTIONS(17), 1, anon_sym_COLON, ACTIONS(19), 1, @@ -92973,66 +92549,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(6583), 1, - anon_sym_POUND, - ACTIONS(6585), 1, - aux_sym_num_lit_token1, - ACTIONS(6589), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6591), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(6593), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(6595), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(6597), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(6911), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(6791), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2811), 1, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, + ACTIONS(31), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, + ACTIONS(55), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(6587), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(6599), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(6909), 3, + ACTIONS(6789), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1877), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1784), 19, + STATE(545), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -93055,6 +92627,10 @@ static const uint16_t ts_small_parse_table[] = { [61967] = 35, ACTIONS(9), 1, anon_sym_POUND_, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, ACTIONS(17), 1, anon_sym_COLON, ACTIONS(19), 1, @@ -93073,66 +92649,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(6583), 1, - anon_sym_POUND, - ACTIONS(6585), 1, - aux_sym_num_lit_token1, - ACTIONS(6589), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6591), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(6593), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(6595), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(6597), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(6915), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(6797), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2811), 1, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, + ACTIONS(31), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, + ACTIONS(55), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(6793), 2, sym__ws, sym_comment, - ACTIONS(6587), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(6599), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(6913), 3, + ACTIONS(6795), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1877), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(868), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1785), 19, + STATE(1790), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(549), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -93191,19 +92763,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(6921), 1, + ACTIONS(6803), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2808), 1, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -93217,22 +92789,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6917), 2, + ACTIONS(6799), 2, sym__ws, sym_comment, - ACTIONS(6919), 3, + ACTIONS(6801), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(862), 3, + STATE(869), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1877), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(616), 19, + STATE(550), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -93252,87 +92824,90 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [62237] = 35, + [62237] = 36, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, + ACTIONS(43), 1, + anon_sym_COMMA_AT, + ACTIONS(45), 1, + anon_sym_COMMA, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6041), 1, + ACTIONS(4991), 1, + anon_sym_POUND, + ACTIONS(4995), 1, + aux_sym_num_lit_token1, + ACTIONS(4997), 1, anon_sym_COLON, - ACTIONS(6043), 1, + ACTIONS(4999), 1, anon_sym_COLON_COLON, - ACTIONS(6045), 1, + ACTIONS(5001), 1, anon_sym_DQUOTE, - ACTIONS(6047), 1, + ACTIONS(5003), 1, aux_sym_sym_lit_token1, - ACTIONS(6049), 1, + ACTIONS(5005), 1, anon_sym_LPAREN, - ACTIONS(6051), 1, + ACTIONS(5009), 1, anon_sym_POUND_QMARK, - ACTIONS(6149), 1, - sym_self_referential_reader_macro, - ACTIONS(6779), 1, - anon_sym_POUND, - ACTIONS(6781), 1, - aux_sym_num_lit_token1, - ACTIONS(6785), 1, + ACTIONS(5011), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(6787), 1, + ACTIONS(5013), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6789), 1, + ACTIONS(5015), 1, anon_sym_SQUOTE, - ACTIONS(6791), 1, + ACTIONS(5017), 1, anon_sym_BQUOTE, - ACTIONS(6793), 1, - anon_sym_COMMA_AT, - ACTIONS(6795), 1, - anon_sym_COMMA, - ACTIONS(6797), 1, + ACTIONS(5019), 1, anon_sym_cl, - STATE(1893), 1, - sym__bare_set_lit, - STATE(2832), 1, + ACTIONS(6809), 1, + sym_self_referential_reader_macro, + STATE(2840), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2874), 1, - sym_sym_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(1636), 2, + STATE(2986), 1, + sym__bare_set_lit, + STATE(3094), 1, + sym_sym_lit, + ACTIONS(5007), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5021), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(1642), 2, + ACTIONS(5025), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5027), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(6805), 2, sym__ws, sym_comment, - ACTIONS(6783), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(6799), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(6147), 3, + STATE(1982), 2, + sym_unquote_splicing_lit, + sym_unquoting_lit, + ACTIONS(6807), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1892), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(440), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2837), 19, + STATE(2985), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2754), 17, sym__form, sym_num_lit, sym_kwd_lit, @@ -93346,93 +92921,91 @@ static const uint16_t ts_small_parse_table[] = { sym_var_quoting_lit, sym_quoting_lit, sym_syn_quoting_lit, - sym_unquote_splicing_lit, - sym_unquoting_lit, sym_path_lit, sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [62372] = 35, + [62374] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(65), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(69), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(74), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(76), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(78), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(93), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(95), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(97), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(99), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(101), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(103), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(105), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4749), 1, + anon_sym_COLON, + ACTIONS(4751), 1, + anon_sym_LPAREN, + ACTIONS(4753), 1, anon_sym_cl, - ACTIONS(6927), 1, + ACTIONS(6815), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(1101), 1, sym_sym_lit, - STATE(2808), 1, + STATE(1117), 1, + sym__bare_set_lit, + STATE(2812), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(91), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(114), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(118), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(120), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6923), 2, + ACTIONS(6811), 2, sym__ws, sym_comment, - ACTIONS(6925), 3, + ACTIONS(6813), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(872), 3, + STATE(946), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1877), 3, + STATE(1109), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(711), 19, + STATE(34), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -93452,9 +93025,13 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [62507] = 35, + [62509] = 35, ACTIONS(9), 1, anon_sym_POUND_, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, ACTIONS(17), 1, anon_sym_COLON, ACTIONS(19), 1, @@ -93473,66 +93050,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(6583), 1, - anon_sym_POUND, - ACTIONS(6585), 1, - aux_sym_num_lit_token1, - ACTIONS(6589), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6591), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(6593), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(6595), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(6597), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(6933), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(6819), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2811), 1, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, + ACTIONS(31), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, + ACTIONS(55), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6587), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(6599), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(6929), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(6931), 3, + ACTIONS(6817), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(874), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1877), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1787), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(553), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -93552,7 +93125,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [62642] = 35, + [62644] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -93591,19 +93164,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(6937), 1, + ACTIONS(6823), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2808), 1, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -93617,22 +93190,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(6935), 3, + ACTIONS(6821), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1877), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1771), 19, + STATE(555), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -93652,9 +93225,13 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [62777] = 35, + [62779] = 35, ACTIONS(9), 1, anon_sym_POUND_, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, ACTIONS(17), 1, anon_sym_COLON, ACTIONS(19), 1, @@ -93673,66 +93250,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(6583), 1, - anon_sym_POUND, - ACTIONS(6585), 1, - aux_sym_num_lit_token1, - ACTIONS(6589), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6591), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(6593), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(6595), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(6597), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(6943), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(5475), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2811), 1, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, + ACTIONS(31), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, + ACTIONS(55), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6587), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(6599), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(6939), 2, + ACTIONS(6825), 2, sym__ws, sym_comment, - ACTIONS(6941), 3, + ACTIONS(5473), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(879), 3, + STATE(897), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1877), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1788), 19, + STATE(1769), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -93752,7 +93325,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [62912] = 35, + [62914] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -93761,78 +93334,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(77), 1, + ACTIONS(174), 1, + anon_sym_POUND, + ACTIONS(178), 1, + aux_sym_num_lit_token1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4803), 1, - anon_sym_POUND, - ACTIONS(4807), 1, - aux_sym_num_lit_token1, - ACTIONS(4809), 1, - anon_sym_COLON, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(211), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4817), 1, + ACTIONS(213), 1, anon_sym_SQUOTE, - ACTIONS(4819), 1, + ACTIONS(215), 1, anon_sym_BQUOTE, - ACTIONS(4821), 1, + ACTIONS(217), 1, anon_sym_COMMA_AT, - ACTIONS(4823), 1, + ACTIONS(219), 1, anon_sym_COMMA, - ACTIONS(4825), 1, + ACTIONS(4767), 1, + anon_sym_COLON, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, anon_sym_cl, - ACTIONS(6949), 1, + ACTIONS(6831), 1, sym_self_referential_reader_macro, - STATE(2497), 1, + STATE(2112), 1, sym_sym_lit, - STATE(2625), 1, + STATE(2589), 1, sym__bare_set_lit, - STATE(2828), 1, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(123), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(129), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4813), 2, + ACTIONS(205), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4829), 2, + ACTIONS(230), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(234), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6945), 2, + ACTIONS(236), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6827), 2, sym__ws, sym_comment, - ACTIONS(6947), 3, + ACTIONS(6829), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(623), 3, + STATE(407), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(2584), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2498), 19, + STATE(2712), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -93852,87 +93425,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [63047] = 35, + [63049] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(174), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(178), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(211), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(213), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(215), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(217), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(219), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4767), 1, + anon_sym_COLON, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, anon_sym_cl, - ACTIONS(6953), 1, + ACTIONS(6837), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(2112), 1, sym_sym_lit, - STATE(2808), 1, + STATE(2589), 1, + sym__bare_set_lit, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(205), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(234), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(6833), 2, sym__ws, sym_comment, - ACTIONS(6951), 3, + ACTIONS(6835), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1877), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(408), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(722), 19, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2716), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -93952,87 +93525,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [63182] = 35, + [63184] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, - anon_sym_POUND_QMARK, - ACTIONS(35), 1, - anon_sym_POUND_QMARK_AT, ACTIONS(47), 1, sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(6583), 1, + ACTIONS(174), 1, anon_sym_POUND, - ACTIONS(6585), 1, + ACTIONS(178), 1, aux_sym_num_lit_token1, - ACTIONS(6589), 1, + ACTIONS(184), 1, + anon_sym_COLON_COLON, + ACTIONS(186), 1, + anon_sym_DQUOTE, + ACTIONS(188), 1, + aux_sym_sym_lit_token1, + ACTIONS(207), 1, + anon_sym_POUND_QMARK, + ACTIONS(209), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(211), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6591), 1, + ACTIONS(213), 1, anon_sym_SQUOTE, - ACTIONS(6593), 1, + ACTIONS(215), 1, anon_sym_BQUOTE, - ACTIONS(6595), 1, + ACTIONS(217), 1, anon_sym_COMMA_AT, - ACTIONS(6597), 1, + ACTIONS(219), 1, anon_sym_COMMA, - ACTIONS(6937), 1, + ACTIONS(4767), 1, + anon_sym_COLON, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, + anon_sym_cl, + ACTIONS(6843), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(2112), 1, sym_sym_lit, - STATE(2811), 1, + STATE(2589), 1, + sym__bare_set_lit, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(51), 2, + ACTIONS(205), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(57), 2, + ACTIONS(234), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(6839), 2, sym__ws, sym_comment, - ACTIONS(6587), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(6599), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(6935), 3, + ACTIONS(6841), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1877), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(563), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1771), 19, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2119), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -94052,87 +93625,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [63317] = 35, + [63319] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, - anon_sym_POUND_QMARK, - ACTIONS(35), 1, - anon_sym_POUND_QMARK_AT, ACTIONS(47), 1, sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(6583), 1, + ACTIONS(174), 1, anon_sym_POUND, - ACTIONS(6585), 1, + ACTIONS(178), 1, aux_sym_num_lit_token1, - ACTIONS(6589), 1, + ACTIONS(184), 1, + anon_sym_COLON_COLON, + ACTIONS(186), 1, + anon_sym_DQUOTE, + ACTIONS(188), 1, + aux_sym_sym_lit_token1, + ACTIONS(207), 1, + anon_sym_POUND_QMARK, + ACTIONS(209), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(211), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6591), 1, + ACTIONS(213), 1, anon_sym_SQUOTE, - ACTIONS(6593), 1, + ACTIONS(215), 1, anon_sym_BQUOTE, - ACTIONS(6595), 1, + ACTIONS(217), 1, anon_sym_COMMA_AT, - ACTIONS(6597), 1, + ACTIONS(219), 1, anon_sym_COMMA, - ACTIONS(6877), 1, + ACTIONS(4767), 1, + anon_sym_COLON, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, + anon_sym_cl, + ACTIONS(6849), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(2112), 1, sym_sym_lit, - STATE(2811), 1, + STATE(2589), 1, + sym__bare_set_lit, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(51), 2, + ACTIONS(205), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(57), 2, + ACTIONS(234), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(6845), 2, sym__ws, sym_comment, - ACTIONS(6587), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(6599), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(6875), 3, + ACTIONS(6847), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1877), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(409), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1880), 19, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2720), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -94152,7 +93725,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [63452] = 35, + [63454] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -94191,19 +93764,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(6959), 1, + ACTIONS(6855), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2808), 1, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -94217,22 +93790,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6955), 2, + ACTIONS(6851), 2, sym__ws, sym_comment, - ACTIONS(6957), 3, + ACTIONS(6853), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(883), 3, + STATE(878), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1877), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(732), 19, + STATE(569), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -94252,87 +93825,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [63587] = 35, + [63589] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, - anon_sym_POUND_QMARK, - ACTIONS(35), 1, - anon_sym_POUND_QMARK_AT, ACTIONS(47), 1, sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(6583), 1, + ACTIONS(174), 1, anon_sym_POUND, - ACTIONS(6585), 1, + ACTIONS(178), 1, aux_sym_num_lit_token1, - ACTIONS(6589), 1, + ACTIONS(184), 1, + anon_sym_COLON_COLON, + ACTIONS(186), 1, + anon_sym_DQUOTE, + ACTIONS(188), 1, + aux_sym_sym_lit_token1, + ACTIONS(207), 1, + anon_sym_POUND_QMARK, + ACTIONS(209), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(211), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6591), 1, + ACTIONS(213), 1, anon_sym_SQUOTE, - ACTIONS(6593), 1, + ACTIONS(215), 1, anon_sym_BQUOTE, - ACTIONS(6595), 1, + ACTIONS(217), 1, anon_sym_COMMA_AT, - ACTIONS(6597), 1, + ACTIONS(219), 1, anon_sym_COMMA, - ACTIONS(6869), 1, + ACTIONS(4767), 1, + anon_sym_COLON, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, + anon_sym_cl, + ACTIONS(6861), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(2112), 1, sym_sym_lit, - STATE(2811), 1, + STATE(2589), 1, + sym__bare_set_lit, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(57), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(6587), 2, + ACTIONS(205), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(6599), 2, + ACTIONS(230), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(234), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6961), 2, + ACTIONS(236), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6857), 2, sym__ws, sym_comment, - ACTIONS(6867), 3, + ACTIONS(6859), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(882), 3, + STATE(410), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1877), 3, + STATE(2584), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1876), 19, + STATE(2732), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -94352,87 +93925,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [63722] = 35, + [63724] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(174), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(178), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(211), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(213), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(215), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(217), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(219), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4767), 1, + anon_sym_COLON, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, anon_sym_cl, - ACTIONS(6967), 1, + ACTIONS(6865), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(2112), 1, sym_sym_lit, - STATE(2808), 1, + STATE(2589), 1, + sym__bare_set_lit, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(205), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(234), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6963), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(6965), 3, + ACTIONS(6863), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(924), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1877), 3, + STATE(2584), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(782), 19, + STATE(2702), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -94452,7 +94025,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [63857] = 35, + [63859] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -94491,19 +94064,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(6971), 1, + ACTIONS(6869), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2808), 1, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -94517,22 +94090,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(6969), 3, + ACTIONS(6867), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1877), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(715), 19, + STATE(574), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -94552,9 +94125,13 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [63992] = 35, + [63994] = 35, ACTIONS(9), 1, anon_sym_POUND_, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, ACTIONS(17), 1, anon_sym_COLON, ACTIONS(19), 1, @@ -94573,66 +94150,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(6583), 1, - anon_sym_POUND, - ACTIONS(6585), 1, - aux_sym_num_lit_token1, - ACTIONS(6589), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6591), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(6593), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(6595), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(6597), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(6849), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(6875), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2811), 1, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, + ACTIONS(31), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, + ACTIONS(55), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(6871), 2, sym__ws, sym_comment, - ACTIONS(6587), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(6599), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(6847), 3, + ACTIONS(6873), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1877), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(885), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1865), 19, + STATE(1790), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(578), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -94652,9 +94225,13 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [64127] = 35, + [64129] = 35, ACTIONS(9), 1, anon_sym_POUND_, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, ACTIONS(17), 1, anon_sym_COLON, ACTIONS(19), 1, @@ -94673,66 +94250,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(6583), 1, - anon_sym_POUND, - ACTIONS(6585), 1, - aux_sym_num_lit_token1, - ACTIONS(6589), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6591), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(6593), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(6595), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(6597), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(6839), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(6881), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2811), 1, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, + ACTIONS(31), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, + ACTIONS(55), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6587), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(6599), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(6973), 2, + ACTIONS(6877), 2, sym__ws, sym_comment, - ACTIONS(6837), 3, + ACTIONS(6879), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(889), 3, + STATE(886), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1877), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1863), 19, + STATE(579), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -94752,87 +94325,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [64262] = 35, + [64264] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(174), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(178), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(211), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(213), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(215), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(217), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(219), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4767), 1, + anon_sym_COLON, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, anon_sym_cl, - ACTIONS(6977), 1, + ACTIONS(6885), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(2112), 1, sym_sym_lit, - STATE(2808), 1, + STATE(2589), 1, + sym__bare_set_lit, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(205), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(234), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(6975), 3, + ACTIONS(6883), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1877), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(723), 19, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2706), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -94852,87 +94425,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [64397] = 35, + [64399] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, - anon_sym_POUND_QMARK, - ACTIONS(35), 1, - anon_sym_POUND_QMARK_AT, ACTIONS(47), 1, sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(5549), 1, - sym_self_referential_reader_macro, - ACTIONS(6583), 1, + ACTIONS(174), 1, anon_sym_POUND, - ACTIONS(6585), 1, + ACTIONS(178), 1, aux_sym_num_lit_token1, - ACTIONS(6589), 1, + ACTIONS(184), 1, + anon_sym_COLON_COLON, + ACTIONS(186), 1, + anon_sym_DQUOTE, + ACTIONS(188), 1, + aux_sym_sym_lit_token1, + ACTIONS(207), 1, + anon_sym_POUND_QMARK, + ACTIONS(209), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(211), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6591), 1, + ACTIONS(213), 1, anon_sym_SQUOTE, - ACTIONS(6593), 1, + ACTIONS(215), 1, anon_sym_BQUOTE, - ACTIONS(6595), 1, + ACTIONS(217), 1, anon_sym_COMMA_AT, - ACTIONS(6597), 1, + ACTIONS(219), 1, anon_sym_COMMA, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + ACTIONS(4767), 1, + anon_sym_COLON, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, + anon_sym_cl, + ACTIONS(6889), 1, + sym_self_referential_reader_macro, + STATE(2112), 1, sym_sym_lit, - STATE(2811), 1, + STATE(2589), 1, + sym__bare_set_lit, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(51), 2, + ACTIONS(205), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(57), 2, + ACTIONS(234), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(6587), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(6599), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(5547), 3, + ACTIONS(6887), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1877), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1805), 19, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2707), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -94952,87 +94525,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [64532] = 35, + [64534] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(174), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(178), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(211), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(213), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(215), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(217), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(219), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4767), 1, + anon_sym_COLON, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, anon_sym_cl, - ACTIONS(6981), 1, + ACTIONS(6895), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(2112), 1, sym_sym_lit, - STATE(2808), 1, + STATE(2589), 1, + sym__bare_set_lit, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(205), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(234), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(6891), 2, sym__ws, sym_comment, - ACTIONS(6979), 3, + ACTIONS(6893), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1877), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(947), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(741), 19, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2710), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -95052,7 +94625,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [64667] = 35, + [64669] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -95091,19 +94664,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(6985), 1, + ACTIONS(5423), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2808), 1, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -95117,22 +94690,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(6897), 2, sym__ws, sym_comment, - ACTIONS(6983), 3, + ACTIONS(5407), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1877), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(913), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(745), 19, + STATE(1790), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1770), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -95152,7 +94725,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [64802] = 35, + [64804] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -95191,19 +94764,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(6989), 1, + ACTIONS(6901), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2808), 1, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -95217,22 +94790,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(6987), 3, + ACTIONS(6899), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1877), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(926), 19, + STATE(582), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -95252,7 +94825,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [64937] = 35, + [64939] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -95291,19 +94864,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(6995), 1, + ACTIONS(6905), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2808), 1, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -95317,22 +94890,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6991), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(6993), 3, + ACTIONS(6903), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(881), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1877), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(755), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(584), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -95352,87 +94925,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [65072] = 35, + [65074] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, - anon_sym_POUND_QMARK, - ACTIONS(35), 1, - anon_sym_POUND_QMARK_AT, ACTIONS(47), 1, sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(6503), 1, - sym_self_referential_reader_macro, - ACTIONS(6583), 1, + ACTIONS(1688), 1, anon_sym_POUND, - ACTIONS(6585), 1, + ACTIONS(1692), 1, aux_sym_num_lit_token1, - ACTIONS(6589), 1, + ACTIONS(1697), 1, + anon_sym_COLON_COLON, + ACTIONS(1699), 1, + anon_sym_DQUOTE, + ACTIONS(1701), 1, + aux_sym_sym_lit_token1, + ACTIONS(1716), 1, + anon_sym_POUND_QMARK, + ACTIONS(1718), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(1720), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6591), 1, + ACTIONS(1722), 1, anon_sym_SQUOTE, - ACTIONS(6593), 1, + ACTIONS(1724), 1, anon_sym_BQUOTE, - ACTIONS(6595), 1, + ACTIONS(1726), 1, anon_sym_COMMA_AT, - ACTIONS(6597), 1, + ACTIONS(1728), 1, anon_sym_COMMA, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + ACTIONS(4791), 1, + anon_sym_COLON, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4795), 1, + anon_sym_cl, + ACTIONS(6909), 1, + sym_self_referential_reader_macro, + STATE(1288), 1, sym_sym_lit, - STATE(2811), 1, + STATE(1290), 1, + sym__bare_set_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(57), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(6587), 2, + ACTIONS(1714), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(6599), 2, + ACTIONS(1735), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(1739), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6997), 2, + ACTIONS(1741), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(6501), 3, + ACTIONS(6907), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(768), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1877), 3, + STATE(1289), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1859), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(129), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -95452,7 +95025,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [65207] = 35, + [65209] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -95491,19 +95064,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(7001), 1, + ACTIONS(5505), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2808), 1, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -95517,22 +95090,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(6999), 3, + ACTIONS(5503), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1877), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(769), 19, + STATE(1862), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -95552,9 +95125,13 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [65342] = 35, + [65344] = 35, ACTIONS(9), 1, anon_sym_POUND_, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, ACTIONS(17), 1, anon_sym_COLON, ACTIONS(19), 1, @@ -95573,66 +95150,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(5525), 1, - sym_self_referential_reader_macro, - ACTIONS(6583), 1, - anon_sym_POUND, - ACTIONS(6585), 1, - aux_sym_num_lit_token1, - ACTIONS(6589), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6591), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(6593), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(6595), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(6597), 1, + ACTIONS(45), 1, anon_sym_COMMA, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(5509), 1, + sym_self_referential_reader_macro, + STATE(1771), 1, sym_sym_lit, - STATE(2811), 1, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, + ACTIONS(31), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, + ACTIONS(55), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(6587), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(6599), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(5523), 3, + ACTIONS(5507), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1877), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1804), 19, + STATE(1863), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -95652,7 +95225,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [65477] = 35, + [65479] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -95661,78 +95234,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(67), 1, - anon_sym_POUND, - ACTIONS(71), 1, - aux_sym_num_lit_token1, - ACTIONS(77), 1, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4997), 1, + anon_sym_COLON, + ACTIONS(4999), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(5001), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(5003), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(5019), 1, + anon_sym_cl, + ACTIONS(5759), 1, + anon_sym_POUND, + ACTIONS(5761), 1, + aux_sym_num_lit_token1, + ACTIONS(5765), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(5767), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(104), 1, + ACTIONS(5769), 1, anon_sym_POUND_SQUOTE, - ACTIONS(106), 1, + ACTIONS(5771), 1, anon_sym_SQUOTE, - ACTIONS(108), 1, + ACTIONS(5773), 1, anon_sym_BQUOTE, - ACTIONS(110), 1, + ACTIONS(5775), 1, anon_sym_COMMA_AT, - ACTIONS(112), 1, + ACTIONS(5777), 1, anon_sym_COMMA, - ACTIONS(4809), 1, - anon_sym_COLON, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4825), 1, - anon_sym_cl, - ACTIONS(7005), 1, + ACTIONS(6843), 1, sym_self_referential_reader_macro, - STATE(2497), 1, - sym_sym_lit, - STATE(2625), 1, - sym__bare_set_lit, - STATE(2834), 1, + STATE(2814), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(98), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(123), 2, + STATE(2986), 1, + sym__bare_set_lit, + STATE(3094), 1, + sym_sym_lit, + ACTIONS(5021), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(127), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(129), 2, + ACTIONS(5027), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(5763), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5779), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6911), 2, sym__ws, sym_comment, - ACTIONS(7003), 3, + ACTIONS(6841), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, + STATE(592), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(2985), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2037), 19, + STATE(2119), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -95752,7 +95325,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [65612] = 35, + [65614] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -95761,78 +95334,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2728), 1, + ACTIONS(65), 1, anon_sym_POUND, - ACTIONS(2732), 1, + ACTIONS(69), 1, aux_sym_num_lit_token1, - ACTIONS(2737), 1, + ACTIONS(74), 1, anon_sym_COLON_COLON, - ACTIONS(2739), 1, + ACTIONS(76), 1, anon_sym_DQUOTE, - ACTIONS(2741), 1, + ACTIONS(78), 1, aux_sym_sym_lit_token1, - ACTIONS(2756), 1, + ACTIONS(93), 1, anon_sym_POUND_QMARK, - ACTIONS(2758), 1, + ACTIONS(95), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2760), 1, + ACTIONS(97), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2762), 1, + ACTIONS(99), 1, anon_sym_SQUOTE, - ACTIONS(2764), 1, + ACTIONS(101), 1, anon_sym_BQUOTE, - ACTIONS(2766), 1, + ACTIONS(103), 1, anon_sym_COMMA_AT, - ACTIONS(2768), 1, + ACTIONS(105), 1, anon_sym_COMMA, - ACTIONS(4793), 1, + ACTIONS(4749), 1, anon_sym_COLON, - ACTIONS(4795), 1, + ACTIONS(4751), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4753), 1, anon_sym_cl, - ACTIONS(7011), 1, + ACTIONS(6915), 1, sym_self_referential_reader_macro, - STATE(1482), 1, - sym__bare_set_lit, - STATE(1484), 1, + STATE(1101), 1, sym_sym_lit, - STATE(2813), 1, + STATE(1117), 1, + sym__bare_set_lit, + STATE(2812), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(2754), 2, + ACTIONS(91), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2775), 2, + ACTIONS(114), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2779), 2, + ACTIONS(118), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2781), 2, + ACTIONS(120), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7007), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(7009), 3, + ACTIONS(6913), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(916), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1483), 3, + STATE(1109), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(227), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(7), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -95852,87 +95425,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [65747] = 35, + [65749] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5105), 1, - sym_self_referential_reader_macro, - ACTIONS(6041), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(6043), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(6045), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(6047), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(6049), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(6051), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(6779), 1, - anon_sym_POUND, - ACTIONS(6781), 1, - aux_sym_num_lit_token1, - ACTIONS(6785), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(6787), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6789), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(6791), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(6793), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(6795), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(6797), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - STATE(1893), 1, + ACTIONS(6921), 1, + sym_self_referential_reader_macro, + STATE(1771), 1, + sym_sym_lit, + STATE(1801), 1, sym__bare_set_lit, - STATE(2832), 1, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2874), 1, - sym_sym_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(1636), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(1642), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(6783), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(6799), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(7013), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6917), 2, sym__ws, sym_comment, - ACTIONS(5099), 3, + ACTIONS(6919), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(915), 3, + STATE(893), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1892), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1900), 19, + STATE(598), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -95952,87 +95525,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [65882] = 35, + [65884] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5115), 1, - sym_self_referential_reader_macro, - ACTIONS(6041), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(6043), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(6045), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(6047), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(6049), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(6051), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(6779), 1, - anon_sym_POUND, - ACTIONS(6781), 1, - aux_sym_num_lit_token1, - ACTIONS(6785), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(6787), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6789), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(6791), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(6793), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(6795), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(6797), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - STATE(1893), 1, + ACTIONS(6925), 1, + sym_self_referential_reader_macro, + STATE(1771), 1, + sym_sym_lit, + STATE(1801), 1, sym__bare_set_lit, - STATE(2832), 1, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2874), 1, - sym_sym_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(1636), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(1642), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(6783), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(6799), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(7015), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(5113), 3, + ACTIONS(6923), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(920), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1892), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1901), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(603), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -96052,87 +95625,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [66017] = 35, + [66019] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5465), 1, - sym_self_referential_reader_macro, - ACTIONS(6041), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(6043), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(6045), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(6047), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(6049), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(6051), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(6779), 1, - anon_sym_POUND, - ACTIONS(6781), 1, - aux_sym_num_lit_token1, - ACTIONS(6785), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(6787), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6789), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(6791), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(6793), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(6795), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(6797), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - STATE(1893), 1, + ACTIONS(6931), 1, + sym_self_referential_reader_macro, + STATE(1771), 1, + sym_sym_lit, + STATE(1801), 1, sym__bare_set_lit, - STATE(2832), 1, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2874), 1, - sym_sym_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(1636), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(1642), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(6783), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(6799), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(7017), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6927), 2, sym__ws, sym_comment, - ACTIONS(5463), 3, + ACTIONS(6929), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(922), 3, + STATE(899), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1892), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1902), 19, + STATE(607), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -96152,87 +95725,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [66152] = 35, + [66154] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(137), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(141), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(146), 1, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(148), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(150), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(165), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(167), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(169), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(171), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(173), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(175), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(177), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(4855), 1, - anon_sym_COLON, - ACTIONS(4857), 1, - anon_sym_LPAREN, - ACTIONS(4859), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(7023), 1, + ACTIONS(6937), 1, sym_self_referential_reader_macro, - STATE(1069), 1, - sym__bare_set_lit, - STATE(1073), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2804), 1, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(163), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(186), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(190), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(192), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7019), 2, + ACTIONS(6933), 2, sym__ws, sym_comment, - ACTIONS(7021), 3, + ACTIONS(6935), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(913), 3, + STATE(900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1070), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(38), 19, + STATE(608), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -96252,7 +95825,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [66287] = 35, + [66289] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -96261,78 +95834,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(67), 1, + ACTIONS(124), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(128), 1, aux_sym_num_lit_token1, - ACTIONS(77), 1, + ACTIONS(132), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(134), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(136), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(140), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(142), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(104), 1, + ACTIONS(144), 1, anon_sym_POUND_SQUOTE, - ACTIONS(106), 1, + ACTIONS(146), 1, anon_sym_SQUOTE, - ACTIONS(108), 1, + ACTIONS(148), 1, anon_sym_BQUOTE, - ACTIONS(110), 1, + ACTIONS(150), 1, anon_sym_COMMA_AT, - ACTIONS(112), 1, + ACTIONS(152), 1, anon_sym_COMMA, - ACTIONS(4809), 1, + ACTIONS(4378), 1, anon_sym_COLON, - ACTIONS(4811), 1, + ACTIONS(4380), 1, anon_sym_LPAREN, - ACTIONS(4825), 1, + ACTIONS(4382), 1, anon_sym_cl, - ACTIONS(7027), 1, + ACTIONS(6941), 1, sym_self_referential_reader_macro, - STATE(2497), 1, + STATE(1136), 1, sym_sym_lit, - STATE(2625), 1, + STATE(1138), 1, sym__bare_set_lit, - STATE(2834), 1, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(98), 2, + ACTIONS(138), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(123), 2, + ACTIONS(154), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(127), 2, + ACTIONS(158), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(129), 2, + ACTIONS(160), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(7025), 3, + ACTIONS(6939), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(1137), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2736), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(992), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -96352,87 +95925,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [66422] = 35, + [66424] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(67), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(77), 1, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(104), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(106), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(108), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(110), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(112), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(4809), 1, - anon_sym_COLON, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4825), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(4993), 1, + ACTIONS(5513), 1, sym_self_referential_reader_macro, - STATE(2497), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2625), 1, + STATE(1801), 1, sym__bare_set_lit, - STATE(2834), 1, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(98), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(123), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(127), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(129), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7029), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(4991), 3, + ACTIONS(5511), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(925), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2504), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1864), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -96452,7 +96025,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [66557] = 35, + [66559] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -96461,78 +96034,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(67), 1, + ACTIONS(174), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(178), 1, aux_sym_num_lit_token1, - ACTIONS(77), 1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(104), 1, + ACTIONS(211), 1, anon_sym_POUND_SQUOTE, - ACTIONS(106), 1, + ACTIONS(213), 1, anon_sym_SQUOTE, - ACTIONS(108), 1, + ACTIONS(215), 1, anon_sym_BQUOTE, - ACTIONS(110), 1, + ACTIONS(217), 1, anon_sym_COMMA_AT, - ACTIONS(112), 1, + ACTIONS(219), 1, anon_sym_COMMA, - ACTIONS(4809), 1, + ACTIONS(4767), 1, anon_sym_COLON, - ACTIONS(4811), 1, + ACTIONS(4769), 1, anon_sym_LPAREN, - ACTIONS(4825), 1, + ACTIONS(4771), 1, anon_sym_cl, - ACTIONS(4981), 1, + ACTIONS(6945), 1, sym_self_referential_reader_macro, - STATE(2497), 1, + STATE(2112), 1, sym_sym_lit, - STATE(2625), 1, + STATE(2589), 1, sym__bare_set_lit, - STATE(2834), 1, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(98), 2, + ACTIONS(205), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(123), 2, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(127), 2, + ACTIONS(234), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(129), 2, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7031), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(4979), 3, + ACTIONS(6943), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(930), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(2584), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2505), 19, + STATE(2681), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -96552,87 +96125,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [66692] = 35, + [66694] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(67), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(77), 1, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(104), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(106), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(108), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(110), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(112), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(4809), 1, - anon_sym_COLON, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4825), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(7035), 1, + ACTIONS(6949), 1, sym_self_referential_reader_macro, - STATE(2497), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2625), 1, + STATE(1801), 1, sym__bare_set_lit, - STATE(2834), 1, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(98), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(123), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(127), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(129), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(7033), 3, + ACTIONS(6947), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2725), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(611), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -96652,87 +96225,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [66827] = 35, + [66829] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(67), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(77), 1, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(104), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(106), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(108), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(110), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(112), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(4809), 1, - anon_sym_COLON, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4825), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(7041), 1, + ACTIONS(6953), 1, sym_self_referential_reader_macro, - STATE(2497), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2625), 1, + STATE(1801), 1, sym__bare_set_lit, - STATE(2834), 1, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(98), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(123), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(127), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(129), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7037), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(7039), 3, + ACTIONS(6951), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(905), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2708), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(613), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -96752,7 +96325,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [66962] = 35, + [66964] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -96761,78 +96334,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(67), 1, + ACTIONS(4843), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(4847), 1, aux_sym_num_lit_token1, - ACTIONS(77), 1, + ACTIONS(4849), 1, + anon_sym_COLON, + ACTIONS(4851), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(4853), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(4855), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4861), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(4863), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(104), 1, + ACTIONS(4865), 1, anon_sym_POUND_SQUOTE, - ACTIONS(106), 1, + ACTIONS(4867), 1, anon_sym_SQUOTE, - ACTIONS(108), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(110), 1, + ACTIONS(4871), 1, anon_sym_COMMA_AT, - ACTIONS(112), 1, + ACTIONS(4873), 1, anon_sym_COMMA, - ACTIONS(4809), 1, - anon_sym_COLON, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4825), 1, + ACTIONS(4875), 1, anon_sym_cl, - ACTIONS(7047), 1, + ACTIONS(6957), 1, sym_self_referential_reader_macro, - STATE(2497), 1, + STATE(1491), 1, sym_sym_lit, - STATE(2625), 1, + STATE(1507), 1, sym__bare_set_lit, - STATE(2834), 1, + STATE(2832), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(98), 2, + ACTIONS(4763), 2, + sym__ws, + sym_comment, + ACTIONS(4859), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(123), 2, + ACTIONS(4877), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(127), 2, + ACTIONS(4881), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(129), 2, + ACTIONS(4883), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7043), 2, - sym__ws, - sym_comment, - ACTIONS(7045), 3, + ACTIONS(6955), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(904), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(1504), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2718), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1500), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -96852,7 +96425,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [67097] = 35, + [67099] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -96861,78 +96434,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(67), 1, - anon_sym_POUND, - ACTIONS(71), 1, - aux_sym_num_lit_token1, - ACTIONS(77), 1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(104), 1, + ACTIONS(4767), 1, + anon_sym_COLON, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, + anon_sym_cl, + ACTIONS(5921), 1, + anon_sym_POUND, + ACTIONS(5923), 1, + aux_sym_num_lit_token1, + ACTIONS(5927), 1, anon_sym_POUND_SQUOTE, - ACTIONS(106), 1, + ACTIONS(5929), 1, anon_sym_SQUOTE, - ACTIONS(108), 1, + ACTIONS(5931), 1, anon_sym_BQUOTE, - ACTIONS(110), 1, + ACTIONS(5933), 1, anon_sym_COMMA_AT, - ACTIONS(112), 1, + ACTIONS(5935), 1, anon_sym_COMMA, - ACTIONS(4809), 1, - anon_sym_COLON, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4825), 1, - anon_sym_cl, - ACTIONS(7053), 1, + ACTIONS(6843), 1, sym_self_referential_reader_macro, - STATE(2497), 1, + STATE(2112), 1, sym_sym_lit, - STATE(2625), 1, + STATE(2589), 1, sym__bare_set_lit, - STATE(2834), 1, + STATE(2824), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(98), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(123), 2, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(127), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(129), 2, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7049), 2, + ACTIONS(5925), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5937), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6959), 2, sym__ws, sym_comment, - ACTIONS(7051), 3, + ACTIONS(6841), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(899), 3, + STATE(621), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(2584), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2741), 19, + STATE(2119), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -96952,87 +96525,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [67232] = 35, + [67234] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(67), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(77), 1, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(104), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(106), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(108), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(110), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(112), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(4809), 1, - anon_sym_COLON, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4825), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(7059), 1, + ACTIONS(6965), 1, sym_self_referential_reader_macro, - STATE(2497), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2625), 1, + STATE(1801), 1, sym__bare_set_lit, - STATE(2834), 1, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(98), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(123), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(127), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(129), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7055), 2, + ACTIONS(6961), 2, sym__ws, sym_comment, - ACTIONS(7057), 3, + ACTIONS(6963), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(896), 3, + STATE(906), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2738), 19, + STATE(627), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -97052,7 +96625,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [67367] = 35, + [67369] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -97061,78 +96634,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(67), 1, + ACTIONS(174), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(178), 1, aux_sym_num_lit_token1, - ACTIONS(77), 1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(104), 1, + ACTIONS(211), 1, anon_sym_POUND_SQUOTE, - ACTIONS(106), 1, + ACTIONS(213), 1, anon_sym_SQUOTE, - ACTIONS(108), 1, + ACTIONS(215), 1, anon_sym_BQUOTE, - ACTIONS(110), 1, + ACTIONS(217), 1, anon_sym_COMMA_AT, - ACTIONS(112), 1, + ACTIONS(219), 1, anon_sym_COMMA, - ACTIONS(4809), 1, + ACTIONS(4767), 1, anon_sym_COLON, - ACTIONS(4811), 1, + ACTIONS(4769), 1, anon_sym_LPAREN, - ACTIONS(4825), 1, + ACTIONS(4771), 1, anon_sym_cl, - ACTIONS(7063), 1, + ACTIONS(6969), 1, sym_self_referential_reader_macro, - STATE(2497), 1, + STATE(2112), 1, sym_sym_lit, - STATE(2625), 1, + STATE(2589), 1, sym__bare_set_lit, - STATE(2834), 1, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(98), 2, + ACTIONS(205), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(123), 2, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(127), 2, + ACTIONS(234), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(129), 2, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(7061), 3, + ACTIONS(6967), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(2584), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2715), 19, + STATE(2684), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -97152,7 +96725,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [67502] = 35, + [67504] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -97161,78 +96734,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(67), 1, + ACTIONS(174), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(178), 1, aux_sym_num_lit_token1, - ACTIONS(77), 1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(104), 1, + ACTIONS(211), 1, anon_sym_POUND_SQUOTE, - ACTIONS(106), 1, + ACTIONS(213), 1, anon_sym_SQUOTE, - ACTIONS(108), 1, + ACTIONS(215), 1, anon_sym_BQUOTE, - ACTIONS(110), 1, + ACTIONS(217), 1, anon_sym_COMMA_AT, - ACTIONS(112), 1, + ACTIONS(219), 1, anon_sym_COMMA, - ACTIONS(4809), 1, + ACTIONS(4767), 1, anon_sym_COLON, - ACTIONS(4811), 1, + ACTIONS(4769), 1, anon_sym_LPAREN, - ACTIONS(4825), 1, + ACTIONS(4771), 1, anon_sym_cl, - ACTIONS(7067), 1, + ACTIONS(6973), 1, sym_self_referential_reader_macro, - STATE(2497), 1, + STATE(2112), 1, sym_sym_lit, - STATE(2625), 1, + STATE(2589), 1, sym__bare_set_lit, - STATE(2834), 1, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(98), 2, + ACTIONS(205), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(123), 2, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(127), 2, + ACTIONS(234), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(129), 2, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(7065), 3, + ACTIONS(6971), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(2584), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2705), 19, + STATE(2685), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -97252,87 +96825,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [67637] = 35, + [67639] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(67), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(77), 1, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(104), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(106), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(108), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(110), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(112), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(4809), 1, - anon_sym_COLON, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4825), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(5953), 1, + ACTIONS(6977), 1, sym_self_referential_reader_macro, - STATE(2497), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2625), 1, + STATE(1801), 1, sym__bare_set_lit, - STATE(2834), 1, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(98), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(123), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(127), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(129), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(5951), 3, + ACTIONS(6975), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2511), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(632), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -97352,7 +96925,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [67772] = 35, + [67774] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -97391,19 +96964,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(7073), 1, + ACTIONS(6983), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2808), 1, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -97417,22 +96990,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7069), 2, + ACTIONS(6979), 2, sym__ws, sym_comment, - ACTIONS(7071), 3, + ACTIONS(6981), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(888), 3, + STATE(911), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1877), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(806), 19, + STATE(636), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -97452,87 +97025,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [67907] = 35, + [67909] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(636), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(640), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(644), 1, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(646), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(648), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(652), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(654), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(656), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(658), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(660), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(662), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(664), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(4410), 1, - anon_sym_COLON, - ACTIONS(4412), 1, - anon_sym_LPAREN, - ACTIONS(4414), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(7077), 1, + ACTIONS(6989), 1, sym_self_referential_reader_macro, - STATE(1186), 1, + STATE(1771), 1, sym_sym_lit, - STATE(1191), 1, + STATE(1801), 1, sym__bare_set_lit, - STATE(2827), 1, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(650), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(666), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(670), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(672), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(6985), 2, sym__ws, sym_comment, - ACTIONS(7075), 3, + ACTIONS(6987), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1187), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(912), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(992), 19, + STATE(1790), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(637), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -97552,7 +97125,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [68042] = 35, + [68044] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -97561,78 +97134,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(67), 1, + ACTIONS(174), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(178), 1, aux_sym_num_lit_token1, - ACTIONS(77), 1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(104), 1, + ACTIONS(211), 1, anon_sym_POUND_SQUOTE, - ACTIONS(106), 1, + ACTIONS(213), 1, anon_sym_SQUOTE, - ACTIONS(108), 1, + ACTIONS(215), 1, anon_sym_BQUOTE, - ACTIONS(110), 1, + ACTIONS(217), 1, anon_sym_COMMA_AT, - ACTIONS(112), 1, + ACTIONS(219), 1, anon_sym_COMMA, - ACTIONS(4809), 1, + ACTIONS(4767), 1, anon_sym_COLON, - ACTIONS(4811), 1, + ACTIONS(4769), 1, anon_sym_LPAREN, - ACTIONS(4825), 1, + ACTIONS(4771), 1, anon_sym_cl, - ACTIONS(7083), 1, + ACTIONS(6993), 1, sym_self_referential_reader_macro, - STATE(2497), 1, + STATE(2112), 1, sym_sym_lit, - STATE(2625), 1, + STATE(2589), 1, sym__bare_set_lit, - STATE(2834), 1, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(98), 2, + ACTIONS(205), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(123), 2, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(127), 2, + ACTIONS(234), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(129), 2, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7079), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(7081), 3, + ACTIONS(6991), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(890), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(2584), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2035), 19, + STATE(2698), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -97652,7 +97225,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [68177] = 35, + [68179] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -97661,78 +97234,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(5023), 1, + ACTIONS(174), 1, anon_sym_POUND, - ACTIONS(5027), 1, + ACTIONS(178), 1, aux_sym_num_lit_token1, - ACTIONS(5029), 1, - anon_sym_COLON, - ACTIONS(5031), 1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(5033), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(5035), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(5039), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(5041), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5043), 1, + ACTIONS(211), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5045), 1, + ACTIONS(213), 1, anon_sym_SQUOTE, - ACTIONS(5047), 1, + ACTIONS(215), 1, anon_sym_BQUOTE, - ACTIONS(5049), 1, + ACTIONS(217), 1, anon_sym_COMMA_AT, - ACTIONS(5051), 1, + ACTIONS(219), 1, anon_sym_COMMA, - ACTIONS(5053), 1, + ACTIONS(4767), 1, + anon_sym_COLON, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, anon_sym_cl, - ACTIONS(6949), 1, + ACTIONS(6997), 1, sym_self_referential_reader_macro, - STATE(2823), 1, + STATE(2112), 1, + sym_sym_lit, + STATE(2589), 1, + sym__bare_set_lit, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, - sym__bare_set_lit, - STATE(3078), 1, - sym_sym_lit, - ACTIONS(5037), 2, + ACTIONS(205), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5055), 2, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(5059), 2, + ACTIONS(234), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5061), 2, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7085), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(6947), 3, + ACTIONS(6995), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(834), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2991), 3, + STATE(2584), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2498), 19, + STATE(2035), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -97752,90 +97325,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [68312] = 36, + [68314] = 35, ACTIONS(9), 1, anon_sym_POUND_, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, + anon_sym_COLON_COLON, + ACTIONS(21), 1, + anon_sym_DQUOTE, + ACTIONS(23), 1, + aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, + anon_sym_POUND_QMARK, + ACTIONS(35), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(37), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(39), 1, + anon_sym_SQUOTE, + ACTIONS(41), 1, + anon_sym_BQUOTE, ACTIONS(43), 1, anon_sym_COMMA_AT, ACTIONS(45), 1, anon_sym_COMMA, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5029), 1, - anon_sym_COLON, - ACTIONS(5031), 1, - anon_sym_COLON_COLON, - ACTIONS(5033), 1, - anon_sym_DQUOTE, - ACTIONS(5035), 1, - aux_sym_sym_lit_token1, - ACTIONS(5053), 1, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(5175), 1, - anon_sym_POUND, - ACTIONS(5179), 1, - aux_sym_num_lit_token1, - ACTIONS(5181), 1, - anon_sym_LPAREN, - ACTIONS(5185), 1, - anon_sym_POUND_QMARK, - ACTIONS(5187), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(5189), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(5191), 1, - anon_sym_SQUOTE, - ACTIONS(5193), 1, - anon_sym_BQUOTE, - ACTIONS(7089), 1, + ACTIONS(7001), 1, sym_self_referential_reader_macro, - STATE(2810), 1, + STATE(1771), 1, + sym_sym_lit, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, - sym__bare_set_lit, - STATE(3078), 1, - sym_sym_lit, - ACTIONS(4801), 2, - sym__ws, - sym_comment, - ACTIONS(5055), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(5061), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5183), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5201), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - STATE(2008), 2, - sym_unquote_splicing_lit, - sym_unquoting_lit, - ACTIONS(7087), 3, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4763), 2, + sym__ws, + sym_comment, + ACTIONS(6999), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2991), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2754), 17, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(640), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -97849,6 +97419,8 @@ static const uint16_t ts_small_parse_table[] = { sym_var_quoting_lit, sym_quoting_lit, sym_syn_quoting_lit, + sym_unquote_splicing_lit, + sym_unquoting_lit, sym_path_lit, sym_package_lit, sym_include_reader_macro, @@ -97892,19 +97464,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(7093), 1, + ACTIONS(7005), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2808), 1, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -97918,22 +97490,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(7091), 3, + ACTIONS(7003), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1877), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(950), 19, + STATE(642), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -97956,84 +97528,84 @@ static const uint16_t ts_small_parse_table[] = { [68584] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(137), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(141), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(146), 1, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(148), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(150), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(165), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(167), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(169), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(171), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(173), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(175), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(177), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(4855), 1, - anon_sym_COLON, - ACTIONS(4857), 1, - anon_sym_LPAREN, - ACTIONS(4859), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(7097), 1, + ACTIONS(5435), 1, sym_self_referential_reader_macro, - STATE(1069), 1, - sym__bare_set_lit, - STATE(1073), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2804), 1, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(163), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(186), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(190), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(192), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(7095), 3, + ACTIONS(5433), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1070), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(24), 19, + STATE(1865), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -98092,19 +97664,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(7101), 1, + ACTIONS(5439), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2808), 1, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -98118,22 +97690,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(7099), 3, + ACTIONS(5437), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1877), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(955), 19, + STATE(1866), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -98156,84 +97728,84 @@ static const uint16_t ts_small_parse_table[] = { [68854] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5521), 1, - sym_self_referential_reader_macro, - ACTIONS(6041), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(6043), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(6045), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(6047), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(6049), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(6051), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(6779), 1, - anon_sym_POUND, - ACTIONS(6781), 1, - aux_sym_num_lit_token1, - ACTIONS(6785), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(6787), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6789), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(6791), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(6793), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(6795), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(6797), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - STATE(1893), 1, + ACTIONS(5519), 1, + sym_self_referential_reader_macro, + STATE(1771), 1, + sym_sym_lit, + STATE(1801), 1, sym__bare_set_lit, - STATE(2832), 1, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2874), 1, - sym_sym_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(1636), 2, + ACTIONS(31), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(1642), 2, + ACTIONS(55), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(7007), 2, sym__ws, sym_comment, - ACTIONS(6783), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(6799), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(5519), 3, + ACTIONS(5517), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1892), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(825), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1972), 19, + STATE(1790), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1868), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -98256,84 +97828,84 @@ static const uint16_t ts_small_parse_table[] = { [68989] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(2728), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(2732), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(2737), 1, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(2739), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(2741), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(2756), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(2758), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2760), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2762), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(2764), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(2766), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(2768), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(4793), 1, - anon_sym_COLON, - ACTIONS(4795), 1, - anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(7105), 1, + ACTIONS(5563), 1, sym_self_referential_reader_macro, - STATE(1482), 1, - sym__bare_set_lit, - STATE(1484), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2813), 1, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(2754), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2775), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2779), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2781), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(7103), 3, + ACTIONS(5561), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1483), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(179), 19, + STATE(1840), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -98362,78 +97934,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(67), 1, + ACTIONS(4991), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(4995), 1, aux_sym_num_lit_token1, - ACTIONS(77), 1, + ACTIONS(4997), 1, + anon_sym_COLON, + ACTIONS(4999), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(5001), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(5003), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(5005), 1, + anon_sym_LPAREN, + ACTIONS(5009), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(5011), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(104), 1, + ACTIONS(5013), 1, anon_sym_POUND_SQUOTE, - ACTIONS(106), 1, + ACTIONS(5015), 1, anon_sym_SQUOTE, - ACTIONS(108), 1, + ACTIONS(5017), 1, anon_sym_BQUOTE, - ACTIONS(110), 1, + ACTIONS(5019), 1, + anon_sym_cl, + ACTIONS(5395), 1, anon_sym_COMMA_AT, - ACTIONS(112), 1, + ACTIONS(5397), 1, anon_sym_COMMA, - ACTIONS(4809), 1, - anon_sym_COLON, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4825), 1, - anon_sym_cl, - ACTIONS(7111), 1, + ACTIONS(7013), 1, sym_self_referential_reader_macro, - STATE(2497), 1, - sym_sym_lit, - STATE(2625), 1, - sym__bare_set_lit, - STATE(2834), 1, + STATE(2818), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(98), 2, + STATE(2986), 1, + sym__bare_set_lit, + STATE(3094), 1, + sym_sym_lit, + ACTIONS(5007), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(123), 2, + ACTIONS(5021), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(127), 2, + ACTIONS(5025), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(129), 2, + ACTIONS(5027), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7107), 2, + ACTIONS(7009), 2, sym__ws, sym_comment, - ACTIONS(7109), 3, + ACTIONS(7011), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(760), 3, + STATE(650), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(2985), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2728), 19, + STATE(3082), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -98492,19 +98064,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(7117), 1, + ACTIONS(5567), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2808), 1, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -98518,22 +98090,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7113), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(7115), 3, + ACTIONS(5565), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(912), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1877), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(974), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1842), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -98592,19 +98164,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(7123), 1, + ACTIONS(7019), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2808), 1, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -98618,22 +98190,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7119), 2, + ACTIONS(7015), 2, sym__ws, sym_comment, - ACTIONS(7121), 3, + ACTIONS(7017), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(914), 3, + STATE(922), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1877), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(971), 19, + STATE(656), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -98656,84 +98228,84 @@ static const uint16_t ts_small_parse_table[] = { [69529] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5541), 1, - sym_self_referential_reader_macro, - ACTIONS(6041), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(6043), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(6045), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(6047), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(6049), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(6051), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(6779), 1, - anon_sym_POUND, - ACTIONS(6781), 1, - aux_sym_num_lit_token1, - ACTIONS(6785), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(6787), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6789), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(6791), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(6793), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(6795), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(6797), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - STATE(1893), 1, + ACTIONS(5573), 1, + sym_self_referential_reader_macro, + STATE(1771), 1, + sym_sym_lit, + STATE(1801), 1, sym__bare_set_lit, - STATE(2832), 1, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2874), 1, - sym_sym_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(1636), 2, + ACTIONS(31), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(1642), 2, + ACTIONS(55), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(7021), 2, sym__ws, sym_comment, - ACTIONS(6783), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(6799), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(5539), 3, + ACTIONS(5571), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1892), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1971), 19, + STATE(1790), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1843), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -98792,19 +98364,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(7127), 1, + ACTIONS(5577), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2808), 1, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -98818,22 +98390,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(7125), 3, + ACTIONS(5575), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1877), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(960), 19, + STATE(1844), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -98856,84 +98428,84 @@ static const uint16_t ts_small_parse_table[] = { [69799] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5545), 1, - sym_self_referential_reader_macro, - ACTIONS(6041), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(6043), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(6045), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(6047), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(6049), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(6051), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(6779), 1, - anon_sym_POUND, - ACTIONS(6781), 1, - aux_sym_num_lit_token1, - ACTIONS(6785), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(6787), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6789), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(6791), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(6793), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(6795), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(6797), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - STATE(1893), 1, + ACTIONS(7025), 1, + sym_self_referential_reader_macro, + STATE(1771), 1, + sym_sym_lit, + STATE(1801), 1, sym__bare_set_lit, - STATE(2832), 1, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2874), 1, - sym_sym_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(1636), 2, + ACTIONS(31), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(1642), 2, + ACTIONS(55), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(6783), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(6799), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(5543), 3, + ACTIONS(7023), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1892), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1970), 19, + STATE(661), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -98992,19 +98564,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(6885), 1, + ACTIONS(7031), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2808), 1, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -99018,22 +98590,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(7027), 2, sym__ws, sym_comment, - ACTIONS(6883), 3, + ACTIONS(7029), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1877), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(928), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1780), 19, + STATE(1790), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(665), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -99092,19 +98664,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(7131), 1, + ACTIONS(7037), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2808), 1, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -99118,22 +98690,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(7033), 2, sym__ws, sym_comment, - ACTIONS(7129), 3, + ACTIONS(7035), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1877), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(929), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(797), 19, + STATE(1790), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(666), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -99156,84 +98728,84 @@ static const uint16_t ts_small_parse_table[] = { [70204] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(67), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(77), 1, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(104), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(106), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(108), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(110), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(112), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(4809), 1, - anon_sym_COLON, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4825), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(4923), 1, + ACTIONS(5583), 1, sym_self_referential_reader_macro, - STATE(2497), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2625), 1, + STATE(1801), 1, sym__bare_set_lit, - STATE(2834), 1, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(98), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(123), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(127), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(129), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(7039), 2, sym__ws, sym_comment, - ACTIONS(4921), 3, + ACTIONS(5581), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, + STATE(429), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2515), 19, + STATE(1845), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -99256,84 +98828,84 @@ static const uint16_t ts_small_parse_table[] = { [70339] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(174), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(178), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(211), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(213), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(215), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(217), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(219), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4767), 1, + anon_sym_COLON, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, anon_sym_cl, - ACTIONS(6903), 1, + ACTIONS(7043), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(2112), 1, sym_sym_lit, - STATE(2808), 1, + STATE(2589), 1, + sym__bare_set_lit, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(205), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(234), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7133), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(6901), 3, + ACTIONS(7041), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(869), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1877), 3, + STATE(2584), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1781), 19, + STATE(2674), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -99362,78 +98934,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(67), 1, + ACTIONS(174), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(178), 1, aux_sym_num_lit_token1, - ACTIONS(77), 1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(104), 1, + ACTIONS(211), 1, anon_sym_POUND_SQUOTE, - ACTIONS(106), 1, + ACTIONS(213), 1, anon_sym_SQUOTE, - ACTIONS(108), 1, + ACTIONS(215), 1, anon_sym_BQUOTE, - ACTIONS(110), 1, + ACTIONS(217), 1, anon_sym_COMMA_AT, - ACTIONS(112), 1, + ACTIONS(219), 1, anon_sym_COMMA, - ACTIONS(4809), 1, + ACTIONS(4767), 1, anon_sym_COLON, - ACTIONS(4811), 1, + ACTIONS(4769), 1, anon_sym_LPAREN, - ACTIONS(4825), 1, + ACTIONS(4771), 1, anon_sym_cl, - ACTIONS(7139), 1, + ACTIONS(7049), 1, sym_self_referential_reader_macro, - STATE(2497), 1, + STATE(2112), 1, sym_sym_lit, - STATE(2625), 1, + STATE(2589), 1, sym__bare_set_lit, - STATE(2834), 1, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(98), 2, + ACTIONS(205), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(123), 2, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(127), 2, + ACTIONS(234), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(129), 2, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7135), 2, + ACTIONS(7045), 2, sym__ws, sym_comment, - ACTIONS(7137), 3, + ACTIONS(7047), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(764), 3, + STATE(433), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(2584), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2730), 19, + STATE(2687), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -99456,84 +99028,84 @@ static const uint16_t ts_small_parse_table[] = { [70609] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(67), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(77), 1, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(104), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(106), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(108), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(110), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(112), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(4809), 1, - anon_sym_COLON, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4825), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(7145), 1, + ACTIONS(7053), 1, sym_self_referential_reader_macro, - STATE(2497), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2625), 1, + STATE(1801), 1, sym__bare_set_lit, - STATE(2834), 1, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(98), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(123), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(127), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(129), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7141), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(7143), 3, + ACTIONS(7051), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(771), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2731), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(669), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -99592,19 +99164,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(7151), 1, + ACTIONS(7057), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2808), 1, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -99618,22 +99190,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7147), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(7149), 3, + ACTIONS(7055), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(921), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1877), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(933), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(671), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -99662,78 +99234,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(67), 1, + ACTIONS(174), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(178), 1, aux_sym_num_lit_token1, - ACTIONS(77), 1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(104), 1, + ACTIONS(211), 1, anon_sym_POUND_SQUOTE, - ACTIONS(106), 1, + ACTIONS(213), 1, anon_sym_SQUOTE, - ACTIONS(108), 1, + ACTIONS(215), 1, anon_sym_BQUOTE, - ACTIONS(110), 1, + ACTIONS(217), 1, anon_sym_COMMA_AT, - ACTIONS(112), 1, + ACTIONS(219), 1, anon_sym_COMMA, - ACTIONS(4809), 1, + ACTIONS(4767), 1, anon_sym_COLON, - ACTIONS(4811), 1, + ACTIONS(4769), 1, anon_sym_LPAREN, - ACTIONS(4825), 1, + ACTIONS(4771), 1, anon_sym_cl, - ACTIONS(4919), 1, + ACTIONS(7063), 1, sym_self_referential_reader_macro, - STATE(2497), 1, + STATE(2112), 1, sym_sym_lit, - STATE(2625), 1, + STATE(2589), 1, sym__bare_set_lit, - STATE(2834), 1, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(98), 2, + ACTIONS(205), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(123), 2, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(127), 2, + ACTIONS(234), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(129), 2, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(7059), 2, sym__ws, sym_comment, - ACTIONS(4917), 3, + ACTIONS(7061), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, + STATE(434), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(2584), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2516), 19, + STATE(2688), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -99756,84 +99328,84 @@ static const uint16_t ts_small_parse_table[] = { [71014] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(174), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(178), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(211), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(213), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(215), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(217), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(219), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4767), 1, + anon_sym_COLON, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, anon_sym_cl, - ACTIONS(7157), 1, + ACTIONS(7067), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(2112), 1, sym_sym_lit, - STATE(2808), 1, + STATE(2589), 1, + sym__bare_set_lit, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(205), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(234), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7153), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(7155), 3, + ACTIONS(7065), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(878), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1877), 3, + STATE(2584), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(754), 19, + STATE(2691), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -99862,78 +99434,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5835), 1, - sym_self_referential_reader_macro, - ACTIONS(6041), 1, - anon_sym_COLON, - ACTIONS(6043), 1, + ACTIONS(174), 1, + anon_sym_POUND, + ACTIONS(178), 1, + aux_sym_num_lit_token1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(6045), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(6047), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(6049), 1, - anon_sym_LPAREN, - ACTIONS(6051), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(6779), 1, - anon_sym_POUND, - ACTIONS(6781), 1, - aux_sym_num_lit_token1, - ACTIONS(6785), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(6787), 1, + ACTIONS(211), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6789), 1, + ACTIONS(213), 1, anon_sym_SQUOTE, - ACTIONS(6791), 1, + ACTIONS(215), 1, anon_sym_BQUOTE, - ACTIONS(6793), 1, + ACTIONS(217), 1, anon_sym_COMMA_AT, - ACTIONS(6795), 1, + ACTIONS(219), 1, anon_sym_COMMA, - ACTIONS(6797), 1, + ACTIONS(4767), 1, + anon_sym_COLON, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, anon_sym_cl, - STATE(1893), 1, + ACTIONS(7073), 1, + sym_self_referential_reader_macro, + STATE(2112), 1, + sym_sym_lit, + STATE(2589), 1, sym__bare_set_lit, - STATE(2832), 1, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2874), 1, - sym_sym_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(1636), 2, + ACTIONS(205), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(1642), 2, + ACTIONS(234), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(7069), 2, sym__ws, sym_comment, - ACTIONS(6783), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(6799), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(5833), 3, + ACTIONS(7071), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1892), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(436), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1945), 19, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2692), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -99962,78 +99534,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5575), 1, - sym_self_referential_reader_macro, - ACTIONS(6041), 1, - anon_sym_COLON, - ACTIONS(6043), 1, + ACTIONS(174), 1, + anon_sym_POUND, + ACTIONS(178), 1, + aux_sym_num_lit_token1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(6045), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(6047), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(6049), 1, - anon_sym_LPAREN, - ACTIONS(6051), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(6779), 1, - anon_sym_POUND, - ACTIONS(6781), 1, - aux_sym_num_lit_token1, - ACTIONS(6785), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(6787), 1, + ACTIONS(211), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6789), 1, + ACTIONS(213), 1, anon_sym_SQUOTE, - ACTIONS(6791), 1, + ACTIONS(215), 1, anon_sym_BQUOTE, - ACTIONS(6793), 1, + ACTIONS(217), 1, anon_sym_COMMA_AT, - ACTIONS(6795), 1, + ACTIONS(219), 1, anon_sym_COMMA, - ACTIONS(6797), 1, + ACTIONS(4767), 1, + anon_sym_COLON, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, anon_sym_cl, - STATE(1893), 1, + ACTIONS(7077), 1, + sym_self_referential_reader_macro, + STATE(2112), 1, + sym_sym_lit, + STATE(2589), 1, sym__bare_set_lit, - STATE(2832), 1, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2874), 1, - sym_sym_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(1636), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(1642), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(6783), 2, + ACTIONS(205), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(6799), 2, + ACTIONS(230), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(234), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(7159), 2, + ACTIONS(236), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(5573), 3, + ACTIONS(7075), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(958), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1892), 3, + STATE(2584), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1968), 19, + STATE(2694), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -100062,78 +99634,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(67), 1, + ACTIONS(1688), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(1692), 1, aux_sym_num_lit_token1, - ACTIONS(77), 1, + ACTIONS(1697), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(1699), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(1701), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(1716), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(1718), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(104), 1, + ACTIONS(1720), 1, anon_sym_POUND_SQUOTE, - ACTIONS(106), 1, + ACTIONS(1722), 1, anon_sym_SQUOTE, - ACTIONS(108), 1, + ACTIONS(1724), 1, anon_sym_BQUOTE, - ACTIONS(110), 1, + ACTIONS(1726), 1, anon_sym_COMMA_AT, - ACTIONS(112), 1, + ACTIONS(1728), 1, anon_sym_COMMA, - ACTIONS(4809), 1, + ACTIONS(4791), 1, anon_sym_COLON, - ACTIONS(4811), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4825), 1, + ACTIONS(4795), 1, anon_sym_cl, - ACTIONS(7165), 1, + ACTIONS(7083), 1, sym_self_referential_reader_macro, - STATE(2497), 1, + STATE(1288), 1, sym_sym_lit, - STATE(2625), 1, + STATE(1290), 1, sym__bare_set_lit, - STATE(2834), 1, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(98), 2, + ACTIONS(1714), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(123), 2, + ACTIONS(1735), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(127), 2, + ACTIONS(1739), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(129), 2, + ACTIONS(1741), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7161), 2, + ACTIONS(7079), 2, sym__ws, sym_comment, - ACTIONS(7163), 3, + ACTIONS(7081), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(776), 3, + STATE(679), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(1289), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2732), 19, + STATE(1291), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -100162,78 +99734,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5597), 1, - sym_self_referential_reader_macro, - ACTIONS(6041), 1, - anon_sym_COLON, - ACTIONS(6043), 1, + ACTIONS(174), 1, + anon_sym_POUND, + ACTIONS(178), 1, + aux_sym_num_lit_token1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(6045), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(6047), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(6049), 1, - anon_sym_LPAREN, - ACTIONS(6051), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(6779), 1, - anon_sym_POUND, - ACTIONS(6781), 1, - aux_sym_num_lit_token1, - ACTIONS(6785), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(6787), 1, + ACTIONS(211), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6789), 1, + ACTIONS(213), 1, anon_sym_SQUOTE, - ACTIONS(6791), 1, + ACTIONS(215), 1, anon_sym_BQUOTE, - ACTIONS(6793), 1, + ACTIONS(217), 1, anon_sym_COMMA_AT, - ACTIONS(6795), 1, + ACTIONS(219), 1, anon_sym_COMMA, - ACTIONS(6797), 1, + ACTIONS(4767), 1, + anon_sym_COLON, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, anon_sym_cl, - STATE(1893), 1, + ACTIONS(7089), 1, + sym_self_referential_reader_macro, + STATE(2112), 1, + sym_sym_lit, + STATE(2589), 1, sym__bare_set_lit, - STATE(2832), 1, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2874), 1, - sym_sym_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(1636), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(1642), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(6783), 2, + ACTIONS(205), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(6799), 2, + ACTIONS(230), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(234), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(7167), 2, + ACTIONS(236), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7085), 2, sym__ws, sym_comment, - ACTIONS(5595), 3, + ACTIONS(7087), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(961), 3, + STATE(439), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1892), 3, + STATE(2584), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1966), 19, + STATE(2695), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -100256,184 +99828,84 @@ static const uint16_t ts_small_parse_table[] = { [71689] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5827), 1, - sym_self_referential_reader_macro, - ACTIONS(6041), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(6043), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(6045), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(6047), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(6049), 1, - anon_sym_LPAREN, - ACTIONS(6051), 1, - anon_sym_POUND_QMARK, - ACTIONS(6779), 1, - anon_sym_POUND, - ACTIONS(6781), 1, - aux_sym_num_lit_token1, - ACTIONS(6785), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(6787), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(6789), 1, - anon_sym_SQUOTE, - ACTIONS(6791), 1, - anon_sym_BQUOTE, - ACTIONS(6793), 1, - anon_sym_COMMA_AT, - ACTIONS(6795), 1, - anon_sym_COMMA, - ACTIONS(6797), 1, - anon_sym_cl, - STATE(1893), 1, - sym__bare_set_lit, - STATE(2832), 1, - aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, - sym_old_meta_lit, - STATE(2874), 1, - sym_sym_lit, - STATE(2901), 1, - sym__metadata_lit, - ACTIONS(1636), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(1642), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4801), 2, - sym__ws, - sym_comment, - ACTIONS(6783), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(6799), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(5825), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(1892), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1946), 19, - sym__form, - sym_num_lit, - sym_kwd_lit, - sym_str_lit, - sym_char_lit, - sym_list_lit, - sym_vec_lit, - sym_set_lit, - sym_read_cond_lit, - sym_splicing_read_cond_lit, - sym_var_quoting_lit, - sym_quoting_lit, - sym_syn_quoting_lit, - sym_unquote_splicing_lit, - sym_unquoting_lit, - sym_path_lit, - sym_package_lit, - sym_include_reader_macro, - sym_complex_num_lit, - [71824] = 35, - ACTIONS(9), 1, - anon_sym_POUND_, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(137), 1, - anon_sym_POUND, - ACTIONS(141), 1, - aux_sym_num_lit_token1, - ACTIONS(146), 1, - anon_sym_COLON_COLON, - ACTIONS(148), 1, - anon_sym_DQUOTE, - ACTIONS(150), 1, - aux_sym_sym_lit_token1, - ACTIONS(165), 1, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(167), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(169), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(171), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(173), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(175), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(177), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(4855), 1, - anon_sym_COLON, - ACTIONS(4857), 1, - anon_sym_LPAREN, - ACTIONS(4859), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(7173), 1, + ACTIONS(7095), 1, sym_self_referential_reader_macro, - STATE(1069), 1, - sym__bare_set_lit, - STATE(1073), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2804), 1, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(163), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(186), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(190), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(192), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7169), 2, + ACTIONS(7091), 2, sym__ws, sym_comment, - ACTIONS(7171), 3, + ACTIONS(7093), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(781), 3, + STATE(937), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1070), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(33), 19, + STATE(685), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -100453,87 +99925,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [71959] = 35, + [71824] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(2728), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(2732), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(2737), 1, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(2739), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(2741), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(2756), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(2758), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2760), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2762), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(2764), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(2766), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(2768), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(4793), 1, - anon_sym_COLON, - ACTIONS(4795), 1, - anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(7179), 1, + ACTIONS(7099), 1, sym_self_referential_reader_macro, - STATE(1482), 1, - sym__bare_set_lit, - STATE(1484), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2813), 1, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(2754), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2775), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2779), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2781), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7175), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(7177), 3, + ACTIONS(7097), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(829), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1483), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(249), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(690), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -100553,87 +100025,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [72094] = 35, + [71959] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5603), 1, - sym_self_referential_reader_macro, - ACTIONS(6041), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(6043), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(6045), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(6047), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(6049), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(6051), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(6779), 1, - anon_sym_POUND, - ACTIONS(6781), 1, - aux_sym_num_lit_token1, - ACTIONS(6785), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(6787), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6789), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(6791), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(6793), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(6795), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(6797), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - STATE(1893), 1, + ACTIONS(7105), 1, + sym_self_referential_reader_macro, + STATE(1771), 1, + sym_sym_lit, + STATE(1801), 1, sym__bare_set_lit, - STATE(2832), 1, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2874), 1, - sym_sym_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(1636), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(1642), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(6783), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(6799), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(7181), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7101), 2, sym__ws, sym_comment, - ACTIONS(5601), 3, + ACTIONS(7103), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(964), 3, + STATE(942), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1892), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1965), 19, + STATE(694), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -100653,87 +100125,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [72229] = 35, + [72094] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(67), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(77), 1, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(104), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(106), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(108), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(110), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(112), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(4809), 1, - anon_sym_COLON, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4825), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(4889), 1, + ACTIONS(7111), 1, sym_self_referential_reader_macro, - STATE(2497), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2625), 1, + STATE(1801), 1, sym__bare_set_lit, - STATE(2834), 1, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(98), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(123), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(127), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(129), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7183), 2, + ACTIONS(7107), 2, sym__ws, sym_comment, - ACTIONS(4887), 3, + ACTIONS(7109), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(965), 3, + STATE(943), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2523), 19, + STATE(695), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -100753,7 +100225,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [72364] = 35, + [72229] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -100792,19 +100264,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(7189), 1, + ACTIONS(7115), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2808), 1, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -100818,22 +100290,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7185), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(7187), 3, + ACTIONS(7113), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(949), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1877), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(807), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(839), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -100853,7 +100325,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [72499] = 35, + [72364] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -100862,78 +100334,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(67), 1, + ACTIONS(1688), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(1692), 1, aux_sym_num_lit_token1, - ACTIONS(77), 1, + ACTIONS(1697), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(1699), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(1701), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(1716), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(1718), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(104), 1, + ACTIONS(1720), 1, anon_sym_POUND_SQUOTE, - ACTIONS(106), 1, + ACTIONS(1722), 1, anon_sym_SQUOTE, - ACTIONS(108), 1, + ACTIONS(1724), 1, anon_sym_BQUOTE, - ACTIONS(110), 1, + ACTIONS(1726), 1, anon_sym_COMMA_AT, - ACTIONS(112), 1, + ACTIONS(1728), 1, anon_sym_COMMA, - ACTIONS(4809), 1, + ACTIONS(4791), 1, anon_sym_COLON, - ACTIONS(4811), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4825), 1, + ACTIONS(4795), 1, anon_sym_cl, - ACTIONS(6949), 1, + ACTIONS(7119), 1, sym_self_referential_reader_macro, - STATE(2497), 1, + STATE(1288), 1, sym_sym_lit, - STATE(2625), 1, + STATE(1290), 1, sym__bare_set_lit, - STATE(2834), 1, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(98), 2, + ACTIONS(1714), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(123), 2, + ACTIONS(1735), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(127), 2, + ACTIONS(1739), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(129), 2, + ACTIONS(1741), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7191), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(6947), 3, + ACTIONS(7117), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(906), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(1289), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2498), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(53), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -100953,7 +100425,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [72634] = 35, + [72499] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -100992,19 +100464,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(6911), 1, + ACTIONS(7123), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2808), 1, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -101018,22 +100490,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(6909), 3, + ACTIONS(7121), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1877), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1784), 19, + STATE(698), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -101053,7 +100525,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [72769] = 35, + [72634] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -101092,19 +100564,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(7197), 1, + ACTIONS(7127), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2808), 1, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -101118,22 +100590,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7193), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(7195), 3, + ACTIONS(7125), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(952), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1877), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(809), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(700), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -101153,7 +100625,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [72904] = 35, + [72769] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -101192,19 +100664,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(7201), 1, + ACTIONS(5431), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2808), 1, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -101218,22 +100690,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(7129), 2, sym__ws, sym_comment, - ACTIONS(7199), 3, + ACTIONS(5429), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1877), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(914), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(880), 19, + STATE(1790), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1785), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -101253,7 +100725,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [73039] = 35, + [72904] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -101292,19 +100764,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(6915), 1, + ACTIONS(5525), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2808), 1, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -101318,22 +100790,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(7131), 2, sym__ws, sym_comment, - ACTIONS(6913), 3, + ACTIONS(5523), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1877), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(842), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1785), 19, + STATE(1790), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1879), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -101353,87 +100825,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [73174] = 35, + [73039] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(65), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(69), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(74), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(76), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(78), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(93), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(95), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(97), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(99), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(101), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(103), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(105), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4749), 1, + anon_sym_COLON, + ACTIONS(4751), 1, + anon_sym_LPAREN, + ACTIONS(4753), 1, anon_sym_cl, - ACTIONS(7205), 1, + ACTIONS(7135), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(1101), 1, sym_sym_lit, - STATE(2808), 1, + STATE(1117), 1, + sym__bare_set_lit, + STATE(2812), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(91), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(114), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(118), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(120), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(7203), 3, + ACTIONS(7133), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1877), 3, + STATE(1109), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(876), 19, + STATE(11), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -101453,87 +100925,187 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [73309] = 35, + [73174] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(174), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(178), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, + ACTIONS(207), 1, + anon_sym_POUND_QMARK, + ACTIONS(209), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(211), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(213), 1, + anon_sym_SQUOTE, + ACTIONS(215), 1, + anon_sym_BQUOTE, + ACTIONS(217), 1, + anon_sym_COMMA_AT, + ACTIONS(219), 1, + anon_sym_COMMA, + ACTIONS(4767), 1, + anon_sym_COLON, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, + anon_sym_cl, + ACTIONS(7139), 1, + sym_self_referential_reader_macro, + STATE(2112), 1, + sym_sym_lit, + STATE(2589), 1, + sym__bare_set_lit, + STATE(2803), 1, + aux_sym_list_lit_repeat1, + STATE(2860), 1, + sym_old_meta_lit, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, + sym__metadata_lit, + ACTIONS(205), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(230), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(234), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(236), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4763), 2, + sym__ws, + sym_comment, + ACTIONS(7137), 3, + anon_sym_DOT, + sym_nil_lit, + sym_fancy_literal, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2679), 19, + sym__form, + sym_num_lit, + sym_kwd_lit, + sym_str_lit, + sym_char_lit, + sym_list_lit, + sym_vec_lit, + sym_set_lit, + sym_read_cond_lit, + sym_splicing_read_cond_lit, + sym_var_quoting_lit, + sym_quoting_lit, + sym_syn_quoting_lit, + sym_unquote_splicing_lit, + sym_unquoting_lit, + sym_path_lit, + sym_package_lit, + sym_include_reader_macro, + sym_complex_num_lit, + [73309] = 35, + ACTIONS(9), 1, + anon_sym_POUND_, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(65), 1, + anon_sym_POUND, + ACTIONS(69), 1, + aux_sym_num_lit_token1, + ACTIONS(74), 1, + anon_sym_COLON_COLON, + ACTIONS(76), 1, + anon_sym_DQUOTE, + ACTIONS(78), 1, + aux_sym_sym_lit_token1, + ACTIONS(93), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(95), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(97), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(99), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(101), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(103), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(105), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4749), 1, + anon_sym_COLON, + ACTIONS(4751), 1, + anon_sym_LPAREN, + ACTIONS(4753), 1, anon_sym_cl, - ACTIONS(6713), 1, + ACTIONS(7145), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(1101), 1, sym_sym_lit, - STATE(2808), 1, + STATE(1117), 1, + sym__bare_set_lit, + STATE(2812), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(91), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(114), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(118), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(120), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(7141), 2, sym__ws, sym_comment, - ACTIONS(6711), 3, + ACTIONS(7143), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1877), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(708), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1786), 19, + STATE(1109), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1124), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -101592,19 +101164,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(7209), 1, + ACTIONS(7151), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2808), 1, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -101618,22 +101190,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(7147), 2, sym__ws, sym_comment, - ACTIONS(7207), 3, + ACTIONS(7149), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1877), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(950), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(817), 19, + STATE(1790), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(714), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -101656,84 +101228,84 @@ static const uint16_t ts_small_parse_table[] = { [73579] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5811), 1, - sym_self_referential_reader_macro, - ACTIONS(6041), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(6043), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(6045), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(6047), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(6049), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(6051), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(6779), 1, - anon_sym_POUND, - ACTIONS(6781), 1, - aux_sym_num_lit_token1, - ACTIONS(6785), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(6787), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6789), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(6791), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(6793), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(6795), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(6797), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - STATE(1893), 1, + ACTIONS(7155), 1, + sym_self_referential_reader_macro, + STATE(1771), 1, + sym_sym_lit, + STATE(1801), 1, sym__bare_set_lit, - STATE(2832), 1, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2874), 1, - sym_sym_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(1636), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(1642), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(6783), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(6799), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(7211), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(5809), 3, + ACTIONS(7153), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(932), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1892), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1950), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(719), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -101756,84 +101328,84 @@ static const uint16_t ts_small_parse_table[] = { [73714] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5797), 1, - sym_self_referential_reader_macro, - ACTIONS(6041), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(6043), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(6045), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(6047), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(6049), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(6051), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(6779), 1, - anon_sym_POUND, - ACTIONS(6781), 1, - aux_sym_num_lit_token1, - ACTIONS(6785), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(6787), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6789), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(6791), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(6793), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(6795), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(6797), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - STATE(1893), 1, + ACTIONS(7161), 1, + sym_self_referential_reader_macro, + STATE(1771), 1, + sym_sym_lit, + STATE(1801), 1, sym__bare_set_lit, - STATE(2832), 1, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2874), 1, - sym_sym_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(1636), 2, + ACTIONS(31), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(1642), 2, + ACTIONS(55), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(7157), 2, sym__ws, sym_comment, - ACTIONS(6783), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(6799), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(5795), 3, + ACTIONS(7159), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1892), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(953), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1951), 19, + STATE(1790), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(723), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -101892,19 +101464,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(7215), 1, + ACTIONS(7167), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2808), 1, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -101918,22 +101490,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(7163), 2, sym__ws, sym_comment, - ACTIONS(7213), 3, + ACTIONS(7165), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1877), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(954), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(819), 19, + STATE(1790), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(724), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -101956,84 +101528,84 @@ static const uint16_t ts_small_parse_table[] = { [73984] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(6041), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(6043), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(6045), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(6047), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(6049), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(6051), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(6639), 1, - sym_self_referential_reader_macro, - ACTIONS(6779), 1, - anon_sym_POUND, - ACTIONS(6781), 1, - aux_sym_num_lit_token1, - ACTIONS(6785), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(6787), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6789), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(6791), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(6793), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(6795), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(6797), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - STATE(1893), 1, + ACTIONS(7171), 1, + sym_self_referential_reader_macro, + STATE(1771), 1, + sym_sym_lit, + STATE(1801), 1, sym__bare_set_lit, - STATE(2832), 1, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2874), 1, - sym_sym_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(1636), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(1642), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(6783), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(6799), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(7217), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(6637), 3, + ACTIONS(7169), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(831), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1892), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2831), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(727), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -102092,19 +101664,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(6933), 1, + ACTIONS(7175), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2808), 1, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -102118,22 +101690,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7219), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(6931), 3, + ACTIONS(7173), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(856), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1877), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1787), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(729), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -102162,78 +101734,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5793), 1, - sym_self_referential_reader_macro, - ACTIONS(6041), 1, - anon_sym_COLON, - ACTIONS(6043), 1, + ACTIONS(124), 1, + anon_sym_POUND, + ACTIONS(128), 1, + aux_sym_num_lit_token1, + ACTIONS(132), 1, anon_sym_COLON_COLON, - ACTIONS(6045), 1, + ACTIONS(134), 1, anon_sym_DQUOTE, - ACTIONS(6047), 1, + ACTIONS(136), 1, aux_sym_sym_lit_token1, - ACTIONS(6049), 1, - anon_sym_LPAREN, - ACTIONS(6051), 1, + ACTIONS(140), 1, anon_sym_POUND_QMARK, - ACTIONS(6779), 1, - anon_sym_POUND, - ACTIONS(6781), 1, - aux_sym_num_lit_token1, - ACTIONS(6785), 1, + ACTIONS(142), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(6787), 1, + ACTIONS(144), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6789), 1, + ACTIONS(146), 1, anon_sym_SQUOTE, - ACTIONS(6791), 1, + ACTIONS(148), 1, anon_sym_BQUOTE, - ACTIONS(6793), 1, + ACTIONS(150), 1, anon_sym_COMMA_AT, - ACTIONS(6795), 1, + ACTIONS(152), 1, anon_sym_COMMA, - ACTIONS(6797), 1, + ACTIONS(4378), 1, + anon_sym_COLON, + ACTIONS(4380), 1, + anon_sym_LPAREN, + ACTIONS(4382), 1, anon_sym_cl, - STATE(1893), 1, + ACTIONS(7181), 1, + sym_self_referential_reader_macro, + STATE(1136), 1, + sym_sym_lit, + STATE(1138), 1, sym__bare_set_lit, - STATE(2832), 1, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2874), 1, - sym_sym_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(1636), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(1642), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(6783), 2, + ACTIONS(138), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(6799), 2, + ACTIONS(154), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(158), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(7221), 2, + ACTIONS(160), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7177), 2, sym__ws, sym_comment, - ACTIONS(5791), 3, + ACTIONS(7179), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(936), 3, + STATE(737), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1892), 3, + STATE(1137), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1952), 19, + STATE(1139), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -102292,19 +101864,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(7225), 1, + ACTIONS(7187), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2808), 1, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -102318,22 +101890,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(7183), 2, sym__ws, sym_comment, - ACTIONS(7223), 3, + ACTIONS(7185), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1877), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(957), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(853), 19, + STATE(1790), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(743), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -102356,84 +101928,84 @@ static const uint16_t ts_small_parse_table[] = { [74524] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5781), 1, - sym_self_referential_reader_macro, - ACTIONS(6041), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(6043), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(6045), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(6047), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(6049), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(6051), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(6779), 1, - anon_sym_POUND, - ACTIONS(6781), 1, - aux_sym_num_lit_token1, - ACTIONS(6785), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(6787), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6789), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(6791), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(6793), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(6795), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(6797), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - STATE(1893), 1, + ACTIONS(7191), 1, + sym_self_referential_reader_macro, + STATE(1771), 1, + sym_sym_lit, + STATE(1801), 1, sym__bare_set_lit, - STATE(2832), 1, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2874), 1, - sym_sym_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(1636), 2, + ACTIONS(31), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(1642), 2, + ACTIONS(55), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(6783), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(6799), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(5779), 3, + ACTIONS(7189), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1892), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1953), 19, + STATE(748), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -102456,84 +102028,84 @@ static const uint16_t ts_small_parse_table[] = { [74659] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5613), 1, - sym_self_referential_reader_macro, - ACTIONS(6041), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(6043), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(6045), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(6047), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(6049), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(6051), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(6779), 1, - anon_sym_POUND, - ACTIONS(6781), 1, - aux_sym_num_lit_token1, - ACTIONS(6785), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(6787), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6789), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(6791), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(6793), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(6795), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(6797), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - STATE(1893), 1, + ACTIONS(7197), 1, + sym_self_referential_reader_macro, + STATE(1771), 1, + sym_sym_lit, + STATE(1801), 1, sym__bare_set_lit, - STATE(2832), 1, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2874), 1, - sym_sym_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(1636), 2, + ACTIONS(31), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(1642), 2, + ACTIONS(55), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(7193), 2, sym__ws, sym_comment, - ACTIONS(6783), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(6799), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(5611), 3, + ACTIONS(7195), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1892), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(960), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1962), 19, + STATE(1790), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(752), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -102592,19 +102164,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(7231), 1, + ACTIONS(7203), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2808), 1, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -102618,22 +102190,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7227), 2, + ACTIONS(7199), 2, sym__ws, sym_comment, - ACTIONS(7229), 3, + ACTIONS(7201), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(962), 3, + STATE(961), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1877), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(851), 19, + STATE(753), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -102656,84 +102228,84 @@ static const uint16_t ts_small_parse_table[] = { [74929] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5687), 1, - sym_self_referential_reader_macro, - ACTIONS(6041), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(6043), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(6045), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(6047), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(6049), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(6051), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(6779), 1, - anon_sym_POUND, - ACTIONS(6781), 1, - aux_sym_num_lit_token1, - ACTIONS(6785), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(6787), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6789), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(6791), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(6793), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(6795), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(6797), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - STATE(1893), 1, + ACTIONS(7207), 1, + sym_self_referential_reader_macro, + STATE(1771), 1, + sym_sym_lit, + STATE(1801), 1, sym__bare_set_lit, - STATE(2832), 1, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2874), 1, - sym_sym_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(1636), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(1642), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(6783), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(6799), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(7233), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(5685), 3, + ACTIONS(7205), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(968), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1892), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1961), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(756), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -102756,84 +102328,84 @@ static const uint16_t ts_small_parse_table[] = { [75064] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5691), 1, - sym_self_referential_reader_macro, - ACTIONS(6041), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(6043), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(6045), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(6047), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(6049), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(6051), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(6779), 1, - anon_sym_POUND, - ACTIONS(6781), 1, - aux_sym_num_lit_token1, - ACTIONS(6785), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(6787), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6789), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(6791), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(6793), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(6795), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(6797), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - STATE(1893), 1, + ACTIONS(7211), 1, + sym_self_referential_reader_macro, + STATE(1771), 1, + sym_sym_lit, + STATE(1801), 1, sym__bare_set_lit, - STATE(2832), 1, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2874), 1, - sym_sym_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(1636), 2, + ACTIONS(31), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(1642), 2, + ACTIONS(55), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(6783), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(6799), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(5689), 3, + ACTIONS(7209), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1892), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1959), 19, + STATE(758), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -102856,84 +102428,84 @@ static const uint16_t ts_small_parse_table[] = { [75199] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(1454), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(1458), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(1462), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(1464), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(1466), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(1468), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(1472), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(1474), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(1476), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(1478), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(1480), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(1482), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(1484), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(6403), 1, + anon_sym_COLON, + ACTIONS(6405), 1, anon_sym_cl, - ACTIONS(7237), 1, + ACTIONS(7217), 1, sym_self_referential_reader_macro, - STATE(1875), 1, + STATE(1976), 1, sym__bare_set_lit, - STATE(1878), 1, + STATE(2766), 1, sym_sym_lit, - STATE(2808), 1, + STATE(2830), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(1470), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(1492), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(1496), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(1498), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(7213), 2, sym__ws, sym_comment, - ACTIONS(7235), 3, + ACTIONS(7215), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1877), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(766), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(861), 19, + STATE(1975), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2790), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -102992,19 +102564,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(7243), 1, + ACTIONS(7223), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2808), 1, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -103018,22 +102590,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7239), 2, + ACTIONS(7219), 2, sym__ws, sym_comment, - ACTIONS(7241), 3, + ACTIONS(7221), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(947), 3, + STATE(964), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1877), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(868), 19, + STATE(772), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -103056,84 +102628,84 @@ static const uint16_t ts_small_parse_table[] = { [75469] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5703), 1, - sym_self_referential_reader_macro, - ACTIONS(6041), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(6043), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(6045), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(6047), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(6049), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(6051), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(6779), 1, - anon_sym_POUND, - ACTIONS(6781), 1, - aux_sym_num_lit_token1, - ACTIONS(6785), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(6787), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6789), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(6791), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(6793), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(6795), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(6797), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - STATE(1893), 1, + ACTIONS(7227), 1, + sym_self_referential_reader_macro, + STATE(1771), 1, + sym_sym_lit, + STATE(1801), 1, sym__bare_set_lit, - STATE(2832), 1, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2874), 1, - sym_sym_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(1636), 2, + ACTIONS(31), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(1642), 2, + ACTIONS(55), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(6783), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(6799), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(5701), 3, + ACTIONS(7225), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1892), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1958), 19, + STATE(777), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -103156,84 +102728,84 @@ static const uint16_t ts_small_parse_table[] = { [75604] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(67), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(77), 1, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(104), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(106), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(108), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(110), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(112), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(4809), 1, - anon_sym_COLON, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4825), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(5345), 1, + ACTIONS(7233), 1, sym_self_referential_reader_macro, - STATE(2497), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2625), 1, + STATE(1801), 1, sym__bare_set_lit, - STATE(2834), 1, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(98), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(123), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(127), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(129), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(7229), 2, sym__ws, sym_comment, - ACTIONS(5343), 3, + ACTIONS(7231), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, + STATE(967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2537), 19, + STATE(781), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -103292,19 +102864,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(7249), 1, + ACTIONS(7239), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2808), 1, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -103318,22 +102890,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7245), 2, + ACTIONS(7235), 2, sym__ws, sym_comment, - ACTIONS(7247), 3, + ACTIONS(7237), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(945), 3, + STATE(968), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1877), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(870), 19, + STATE(782), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -103356,84 +102928,84 @@ static const uint16_t ts_small_parse_table[] = { [75874] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(67), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(77), 1, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(104), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(106), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(108), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(110), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(112), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(4809), 1, - anon_sym_COLON, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4825), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(7255), 1, + ACTIONS(7243), 1, sym_self_referential_reader_macro, - STATE(2497), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2625), 1, + STATE(1801), 1, sym__bare_set_lit, - STATE(2834), 1, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(98), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(123), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(127), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(129), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7251), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(7253), 3, + ACTIONS(7241), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(766), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2686), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(785), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -103456,84 +103028,84 @@ static const uint16_t ts_small_parse_table[] = { [76009] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5767), 1, - sym_self_referential_reader_macro, - ACTIONS(6041), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(6043), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(6045), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(6047), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(6049), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(6051), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(6779), 1, - anon_sym_POUND, - ACTIONS(6781), 1, - aux_sym_num_lit_token1, - ACTIONS(6785), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(6787), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6789), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(6791), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(6793), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(6795), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(6797), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - STATE(1893), 1, + ACTIONS(7247), 1, + sym_self_referential_reader_macro, + STATE(1771), 1, + sym_sym_lit, + STATE(1801), 1, sym__bare_set_lit, - STATE(2832), 1, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2874), 1, - sym_sym_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(1636), 2, + ACTIONS(31), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(1642), 2, + ACTIONS(55), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(6783), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(6799), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(5765), 3, + ACTIONS(7245), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1892), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1955), 19, + STATE(787), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -103592,19 +103164,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(7259), 1, + ACTIONS(7253), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2808), 1, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -103618,22 +103190,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(7249), 2, sym__ws, sym_comment, - ACTIONS(7257), 3, + ACTIONS(7251), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1877), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1967), 3, + STATE(970), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(843), 19, + STATE(1790), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(800), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -103656,84 +103228,84 @@ static const uint16_t ts_small_parse_table[] = { [76279] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(67), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(77), 1, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(104), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(106), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(108), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(110), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(112), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(4809), 1, - anon_sym_COLON, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4825), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(7263), 1, + ACTIONS(7257), 1, sym_self_referential_reader_macro, - STATE(2497), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2625), 1, + STATE(1801), 1, sym__bare_set_lit, - STATE(2834), 1, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(98), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(123), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(127), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(129), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(7261), 3, + ACTIONS(7255), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2684), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(805), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -103756,84 +103328,84 @@ static const uint16_t ts_small_parse_table[] = { [76414] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5743), 1, - sym_self_referential_reader_macro, - ACTIONS(6041), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(6043), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(6045), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(6047), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(6049), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(6051), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(6779), 1, - anon_sym_POUND, - ACTIONS(6781), 1, - aux_sym_num_lit_token1, - ACTIONS(6785), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(6787), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6789), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(6791), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(6793), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(6795), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(6797), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - STATE(1893), 1, + ACTIONS(7263), 1, + sym_self_referential_reader_macro, + STATE(1771), 1, + sym_sym_lit, + STATE(1801), 1, sym__bare_set_lit, - STATE(2832), 1, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2874), 1, - sym_sym_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(1636), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(1642), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(6783), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(6799), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(7265), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7259), 2, sym__ws, sym_comment, - ACTIONS(5741), 3, + ACTIONS(7261), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(957), 3, + STATE(973), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1892), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1957), 19, + STATE(809), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -103856,84 +103428,84 @@ static const uint16_t ts_small_parse_table[] = { [76549] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(67), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(77), 1, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(104), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(106), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(108), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(110), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(112), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(4809), 1, - anon_sym_COLON, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4825), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, ACTIONS(7269), 1, sym_self_referential_reader_macro, - STATE(2497), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2625), 1, + STATE(1801), 1, sym__bare_set_lit, - STATE(2834), 1, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(98), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(123), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(127), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(129), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, + ACTIONS(7265), 2, sym__ws, sym_comment, ACTIONS(7267), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, + STATE(974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2678), 19, + STATE(810), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -103992,19 +103564,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(6943), 1, + ACTIONS(7273), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1878), 1, + STATE(1771), 1, sym_sym_lit, - STATE(2808), 1, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -104018,22 +103590,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7271), 2, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(6941), 3, + ACTIONS(7271), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(846), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1877), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1788), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(813), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -104056,84 +103628,84 @@ static const uint16_t ts_small_parse_table[] = { [76819] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5755), 1, - sym_self_referential_reader_macro, - ACTIONS(6041), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(6043), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(6045), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(6047), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(6049), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(6051), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(6779), 1, - anon_sym_POUND, - ACTIONS(6781), 1, - aux_sym_num_lit_token1, - ACTIONS(6785), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(6787), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6789), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(6791), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(6793), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(6795), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(6797), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - STATE(1893), 1, + ACTIONS(7277), 1, + sym_self_referential_reader_macro, + STATE(1771), 1, + sym_sym_lit, + STATE(1801), 1, sym__bare_set_lit, - STATE(2832), 1, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2874), 1, - sym_sym_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(1636), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(1642), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(6783), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(6799), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(7273), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4763), 2, sym__ws, sym_comment, - ACTIONS(5753), 3, + ACTIONS(7275), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(951), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1892), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1956), 19, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(815), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -104162,78 +103734,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(67), 1, - anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(4995), 1, aux_sym_num_lit_token1, - ACTIONS(77), 1, + ACTIONS(5037), 1, + anon_sym_POUND, + ACTIONS(5041), 1, + anon_sym_COLON, + ACTIONS(5043), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(5045), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(5047), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(5049), 1, + anon_sym_LPAREN, + ACTIONS(5051), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(5053), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(104), 1, + ACTIONS(5055), 1, anon_sym_POUND_SQUOTE, - ACTIONS(106), 1, + ACTIONS(5057), 1, anon_sym_SQUOTE, - ACTIONS(108), 1, + ACTIONS(5059), 1, anon_sym_BQUOTE, - ACTIONS(110), 1, + ACTIONS(5061), 1, anon_sym_COMMA_AT, - ACTIONS(112), 1, + ACTIONS(5063), 1, anon_sym_COMMA, - ACTIONS(4809), 1, - anon_sym_COLON, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4825), 1, + ACTIONS(5065), 1, anon_sym_cl, - ACTIONS(7277), 1, + ACTIONS(5461), 1, sym_self_referential_reader_macro, - STATE(2497), 1, - sym_sym_lit, - STATE(2625), 1, - sym__bare_set_lit, STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - ACTIONS(98), 2, + STATE(2986), 1, + sym__bare_set_lit, + STATE(3040), 1, + sym_sym_lit, + ACTIONS(4763), 2, + sym__ws, + sym_comment, + ACTIONS(5007), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(123), 2, + ACTIONS(5021), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(127), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(129), 2, + ACTIONS(5027), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4801), 2, - sym__ws, - sym_comment, - ACTIONS(7275), 3, + ACTIONS(5069), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5459), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1967), 3, + STATE(1974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2648), 3, + STATE(2985), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2676), 19, + STATE(2910), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -104260,33 +103832,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6041), 1, + ACTIONS(4847), 1, + aux_sym_num_lit_token1, + ACTIONS(4849), 1, anon_sym_COLON, - ACTIONS(6043), 1, + ACTIONS(4851), 1, anon_sym_COLON_COLON, - ACTIONS(6045), 1, + ACTIONS(4853), 1, anon_sym_DQUOTE, - ACTIONS(6047), 1, + ACTIONS(4855), 1, aux_sym_sym_lit_token1, - ACTIONS(6049), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(6051), 1, + ACTIONS(4861), 1, anon_sym_POUND_QMARK, - ACTIONS(6781), 1, - aux_sym_num_lit_token1, - ACTIONS(6785), 1, + ACTIONS(4863), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(6787), 1, + ACTIONS(4865), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6789), 1, + ACTIONS(4867), 1, anon_sym_SQUOTE, - ACTIONS(6791), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(6793), 1, + ACTIONS(4871), 1, anon_sym_COMMA_AT, - ACTIONS(6795), 1, + ACTIONS(4873), 1, anon_sym_COMMA, - ACTIONS(6797), 1, + ACTIONS(4875), 1, anon_sym_cl, ACTIONS(7279), 1, anon_sym_POUND, @@ -104298,43 +103870,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(7289), 1, sym_self_referential_reader_macro, - STATE(1893), 1, + STATE(1488), 1, + sym_sym_lit, + STATE(1507), 1, sym__bare_set_lit, - STATE(1896), 1, + STATE(1514), 1, sym_list_lit, STATE(2832), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2875), 1, - sym_sym_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(3020), 1, + STATE(3036), 1, sym_array_dimension, - ACTIONS(1636), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(1642), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(6783), 2, + ACTIONS(4859), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(6799), 2, + ACTIONS(4877), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(4881), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, + ACTIONS(4883), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, ACTIONS(7283), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1892), 3, + STATE(1504), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1894), 17, + STATE(1508), 17, sym_num_lit, sym_kwd_lit, sym_str_lit, @@ -104359,34 +103931,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(640), 1, + ACTIONS(4995), 1, aux_sym_num_lit_token1, - ACTIONS(644), 1, + ACTIONS(4997), 1, + anon_sym_COLON, + ACTIONS(4999), 1, anon_sym_COLON_COLON, - ACTIONS(646), 1, + ACTIONS(5001), 1, anon_sym_DQUOTE, - ACTIONS(648), 1, + ACTIONS(5003), 1, aux_sym_sym_lit_token1, - ACTIONS(652), 1, + ACTIONS(5005), 1, + anon_sym_LPAREN, + ACTIONS(5009), 1, anon_sym_POUND_QMARK, - ACTIONS(654), 1, + ACTIONS(5011), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(656), 1, + ACTIONS(5013), 1, anon_sym_POUND_SQUOTE, - ACTIONS(658), 1, + ACTIONS(5015), 1, anon_sym_SQUOTE, - ACTIONS(660), 1, + ACTIONS(5017), 1, anon_sym_BQUOTE, - ACTIONS(662), 1, + ACTIONS(5019), 1, + anon_sym_cl, + ACTIONS(5395), 1, anon_sym_COMMA_AT, - ACTIONS(664), 1, + ACTIONS(5397), 1, anon_sym_COMMA, - ACTIONS(4410), 1, - anon_sym_COLON, - ACTIONS(4412), 1, - anon_sym_LPAREN, - ACTIONS(4414), 1, - anon_sym_cl, ACTIONS(7291), 1, anon_sym_POUND, ACTIONS(7293), 1, @@ -104397,43 +103969,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(7301), 1, sym_self_referential_reader_macro, - STATE(1191), 1, - sym__bare_set_lit, - STATE(1218), 1, - sym_sym_lit, - STATE(1219), 1, - sym_list_lit, - STATE(2827), 1, + STATE(2818), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(3000), 1, + STATE(2904), 1, + sym_list_lit, + STATE(2986), 1, + sym__bare_set_lit, + STATE(3051), 1, sym_array_dimension, - ACTIONS(650), 2, + STATE(3095), 1, + sym_sym_lit, + ACTIONS(5007), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(666), 2, + ACTIONS(5021), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(670), 2, + ACTIONS(5025), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(672), 2, + ACTIONS(5027), 2, anon_sym_POUNDC, anon_sym_POUNDc, ACTIONS(7295), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1187), 3, + STATE(2985), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1196), 17, + STATE(2988), 17, sym_num_lit, sym_kwd_lit, sym_str_lit, @@ -104458,81 +104030,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(5027), 1, + ACTIONS(4995), 1, aux_sym_num_lit_token1, - ACTIONS(5029), 1, + ACTIONS(5041), 1, anon_sym_COLON, - ACTIONS(5031), 1, + ACTIONS(5043), 1, anon_sym_COLON_COLON, - ACTIONS(5033), 1, + ACTIONS(5045), 1, anon_sym_DQUOTE, - ACTIONS(5035), 1, + ACTIONS(5047), 1, aux_sym_sym_lit_token1, - ACTIONS(5039), 1, + ACTIONS(5049), 1, + anon_sym_LPAREN, + ACTIONS(5051), 1, anon_sym_POUND_QMARK, - ACTIONS(5041), 1, + ACTIONS(5053), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5043), 1, + ACTIONS(5055), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5045), 1, + ACTIONS(5057), 1, anon_sym_SQUOTE, - ACTIONS(5047), 1, + ACTIONS(5059), 1, anon_sym_BQUOTE, - ACTIONS(5049), 1, + ACTIONS(5061), 1, anon_sym_COMMA_AT, - ACTIONS(5051), 1, + ACTIONS(5063), 1, anon_sym_COMMA, - ACTIONS(5053), 1, + ACTIONS(5065), 1, anon_sym_cl, + ACTIONS(7297), 1, + aux_sym_char_lit_token1, + ACTIONS(7299), 1, + anon_sym_LBRACE, + ACTIONS(7301), 1, + sym_self_referential_reader_macro, ACTIONS(7303), 1, anon_sym_POUND, ACTIONS(7305), 1, aux_sym__form_token1, - ACTIONS(7309), 1, - aux_sym_char_lit_token1, - ACTIONS(7311), 1, - anon_sym_LBRACE, - ACTIONS(7313), 1, - sym_self_referential_reader_macro, - STATE(2823), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, - sym__bare_set_lit, - STATE(2994), 1, + STATE(2904), 1, sym_list_lit, - STATE(3014), 1, + STATE(2986), 1, + sym__bare_set_lit, + STATE(3021), 1, sym_array_dimension, - STATE(3076), 1, + STATE(3047), 1, sym_sym_lit, - ACTIONS(5037), 2, + ACTIONS(5007), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5055), 2, + ACTIONS(5021), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(5059), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(5061), 2, + ACTIONS(5027), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7307), 3, + ACTIONS(5069), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(7295), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(2991), 3, + STATE(2985), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2923), 17, + STATE(2988), 17, sym_num_lit, sym_kwd_lit, sym_str_lit, @@ -104557,81 +104129,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(77), 1, + ACTIONS(5217), 1, + aux_sym_num_lit_token1, + ACTIONS(5219), 1, + anon_sym_COLON, + ACTIONS(5221), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(5223), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(5225), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(5227), 1, + anon_sym_LPAREN, + ACTIONS(5231), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(5233), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4807), 1, - aux_sym_num_lit_token1, - ACTIONS(4809), 1, - anon_sym_COLON, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(5235), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4817), 1, + ACTIONS(5237), 1, anon_sym_SQUOTE, - ACTIONS(4819), 1, + ACTIONS(5239), 1, anon_sym_BQUOTE, - ACTIONS(4821), 1, + ACTIONS(5241), 1, anon_sym_COMMA_AT, - ACTIONS(4823), 1, + ACTIONS(5243), 1, anon_sym_COMMA, - ACTIONS(4825), 1, + ACTIONS(5245), 1, anon_sym_cl, - ACTIONS(7315), 1, + ACTIONS(7307), 1, anon_sym_POUND, - ACTIONS(7317), 1, + ACTIONS(7309), 1, aux_sym__form_token1, - ACTIONS(7321), 1, + ACTIONS(7313), 1, aux_sym_char_lit_token1, - ACTIONS(7323), 1, + ACTIONS(7315), 1, anon_sym_LBRACE, - ACTIONS(7325), 1, + ACTIONS(7317), 1, sym_self_referential_reader_macro, - STATE(2500), 1, + STATE(1687), 1, + sym__bare_set_lit, + STATE(1710), 1, sym_sym_lit, - STATE(2607), 1, + STATE(1711), 1, sym_list_lit, - STATE(2625), 1, - sym__bare_set_lit, - STATE(2828), 1, + STATE(2799), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(3040), 1, + STATE(3018), 1, sym_array_dimension, - ACTIONS(123), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(129), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4813), 2, + ACTIONS(5229), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4829), 2, + ACTIONS(5247), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(5251), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(7319), 3, + ACTIONS(5253), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7311), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(2648), 3, + STATE(1680), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2616), 17, + STATE(1699), 17, sym_num_lit, sym_kwd_lit, sym_str_lit, @@ -104650,87 +104222,87 @@ static const uint16_t ts_small_parse_table[] = { sym_include_reader_macro, sym_complex_num_lit, [77633] = 37, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5179), 1, - aux_sym_num_lit_token1, - ACTIONS(6041), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(6043), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(6045), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(6047), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(6049), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(6051), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(6053), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(6055), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(5409), 1, + aux_sym_num_lit_token1, + ACTIONS(5413), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6057), 1, + ACTIONS(5415), 1, anon_sym_SQUOTE, - ACTIONS(6059), 1, + ACTIONS(5417), 1, anon_sym_BQUOTE, - ACTIONS(6061), 1, + ACTIONS(5419), 1, anon_sym_COMMA_AT, - ACTIONS(6063), 1, + ACTIONS(5421), 1, anon_sym_COMMA, - ACTIONS(6065), 1, - anon_sym_cl, - ACTIONS(7309), 1, + ACTIONS(7319), 1, + anon_sym_POUND, + ACTIONS(7321), 1, + aux_sym__form_token1, + ACTIONS(7325), 1, aux_sym_char_lit_token1, - ACTIONS(7311), 1, - anon_sym_LBRACE, - ACTIONS(7313), 1, - sym_self_referential_reader_macro, ACTIONS(7327), 1, - anon_sym_POUND, + anon_sym_LBRACE, ACTIONS(7329), 1, - aux_sym__form_token1, - STATE(2815), 1, - aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, - sym_old_meta_lit, - STATE(2901), 1, - sym__metadata_lit, - STATE(2990), 1, + sym_self_referential_reader_macro, + STATE(1801), 1, sym__bare_set_lit, - STATE(2994), 1, + STATE(1849), 1, + sym_sym_lit, + STATE(1850), 1, sym_list_lit, - STATE(3024), 1, + STATE(2810), 1, + aux_sym_list_lit_repeat1, + STATE(2860), 1, + sym_old_meta_lit, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, + sym__metadata_lit, + STATE(3052), 1, sym_array_dimension, - STATE(3044), 1, - sym_sym_lit, - ACTIONS(5055), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(5061), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5183), 2, + ACTIONS(5411), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(6067), 2, + ACTIONS(5425), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(7307), 3, + ACTIONS(7323), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(2991), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2923), 17, + STATE(1827), 17, sym_num_lit, sym_kwd_lit, sym_str_lit, @@ -104755,81 +104327,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(1602), 1, + ACTIONS(128), 1, aux_sym_num_lit_token1, - ACTIONS(1606), 1, + ACTIONS(132), 1, anon_sym_COLON_COLON, - ACTIONS(1608), 1, + ACTIONS(134), 1, anon_sym_DQUOTE, - ACTIONS(1610), 1, + ACTIONS(136), 1, aux_sym_sym_lit_token1, - ACTIONS(1612), 1, - anon_sym_LPAREN, - ACTIONS(1616), 1, + ACTIONS(140), 1, anon_sym_POUND_QMARK, - ACTIONS(1618), 1, + ACTIONS(142), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1620), 1, + ACTIONS(144), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1622), 1, + ACTIONS(146), 1, anon_sym_SQUOTE, - ACTIONS(1624), 1, + ACTIONS(148), 1, anon_sym_BQUOTE, - ACTIONS(1626), 1, + ACTIONS(150), 1, anon_sym_COMMA_AT, - ACTIONS(1628), 1, + ACTIONS(152), 1, anon_sym_COMMA, - ACTIONS(5101), 1, + ACTIONS(4378), 1, anon_sym_COLON, - ACTIONS(5103), 1, + ACTIONS(4380), 1, + anon_sym_LPAREN, + ACTIONS(4382), 1, anon_sym_cl, - ACTIONS(7285), 1, - aux_sym_char_lit_token1, - ACTIONS(7287), 1, - anon_sym_LBRACE, - ACTIONS(7289), 1, - sym_self_referential_reader_macro, ACTIONS(7331), 1, anon_sym_POUND, ACTIONS(7333), 1, aux_sym__form_token1, - STATE(1893), 1, + ACTIONS(7337), 1, + aux_sym_char_lit_token1, + ACTIONS(7339), 1, + anon_sym_LBRACE, + ACTIONS(7341), 1, + sym_self_referential_reader_macro, + STATE(1138), 1, sym__bare_set_lit, - STATE(1896), 1, - sym_list_lit, - STATE(2763), 1, + STATE(1142), 1, sym_sym_lit, - STATE(2840), 1, + STATE(1143), 1, + sym_list_lit, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(3031), 1, + STATE(3012), 1, sym_array_dimension, - ACTIONS(1614), 2, + ACTIONS(138), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(1636), 2, + ACTIONS(154), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(1640), 2, + ACTIONS(158), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1642), 2, + ACTIONS(160), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7283), 3, + ACTIONS(7335), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1892), 3, + STATE(1137), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1894), 17, + STATE(1140), 17, sym_num_lit, sym_kwd_lit, sym_str_lit, @@ -104854,81 +104426,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6215), 1, - aux_sym_num_lit_token1, - ACTIONS(6217), 1, + ACTIONS(5041), 1, anon_sym_COLON, - ACTIONS(6219), 1, + ACTIONS(5043), 1, anon_sym_COLON_COLON, - ACTIONS(6221), 1, + ACTIONS(5045), 1, anon_sym_DQUOTE, - ACTIONS(6223), 1, + ACTIONS(5047), 1, aux_sym_sym_lit_token1, - ACTIONS(6225), 1, + ACTIONS(5049), 1, anon_sym_LPAREN, - ACTIONS(6229), 1, + ACTIONS(5051), 1, anon_sym_POUND_QMARK, - ACTIONS(6231), 1, + ACTIONS(5481), 1, + aux_sym_num_lit_token1, + ACTIONS(5485), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(6233), 1, + ACTIONS(5487), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6235), 1, + ACTIONS(5489), 1, anon_sym_SQUOTE, - ACTIONS(6237), 1, + ACTIONS(5491), 1, anon_sym_BQUOTE, - ACTIONS(6239), 1, + ACTIONS(5493), 1, anon_sym_COMMA_AT, - ACTIONS(6241), 1, + ACTIONS(5495), 1, anon_sym_COMMA, - ACTIONS(6243), 1, + ACTIONS(5497), 1, anon_sym_cl, - ACTIONS(7335), 1, + ACTIONS(7343), 1, anon_sym_POUND, - ACTIONS(7337), 1, + ACTIONS(7345), 1, aux_sym__form_token1, - ACTIONS(7341), 1, + ACTIONS(7349), 1, aux_sym_char_lit_token1, - ACTIONS(7343), 1, + ACTIONS(7351), 1, anon_sym_LBRACE, - ACTIONS(7345), 1, + ACTIONS(7353), 1, sym_self_referential_reader_macro, - STATE(1677), 1, - sym__bare_set_lit, - STATE(1682), 1, - sym_sym_lit, - STATE(1683), 1, + STATE(1891), 1, sym_list_lit, - STATE(2833), 1, + STATE(1976), 1, + sym__bare_set_lit, + STATE(2842), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2873), 1, + sym_sym_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(3038), 1, + STATE(3005), 1, sym_array_dimension, - ACTIONS(6227), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(6245), 2, + ACTIONS(1492), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(6249), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(6251), 2, + ACTIONS(1498), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7339), 3, + ACTIONS(5483), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5499), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(7347), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1676), 3, + STATE(1975), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1680), 17, + STATE(1897), 17, sym_num_lit, sym_kwd_lit, sym_str_lit, @@ -104953,81 +104525,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2732), 1, + ACTIONS(178), 1, aux_sym_num_lit_token1, - ACTIONS(2737), 1, + ACTIONS(184), 1, anon_sym_COLON_COLON, - ACTIONS(2739), 1, + ACTIONS(186), 1, anon_sym_DQUOTE, - ACTIONS(2741), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(2756), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(2758), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2760), 1, + ACTIONS(211), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2762), 1, + ACTIONS(213), 1, anon_sym_SQUOTE, - ACTIONS(2764), 1, + ACTIONS(215), 1, anon_sym_BQUOTE, - ACTIONS(2766), 1, + ACTIONS(217), 1, anon_sym_COMMA_AT, - ACTIONS(2768), 1, + ACTIONS(219), 1, anon_sym_COMMA, - ACTIONS(4793), 1, + ACTIONS(4767), 1, anon_sym_COLON, - ACTIONS(4795), 1, + ACTIONS(4769), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4771), 1, anon_sym_cl, - ACTIONS(7347), 1, + ACTIONS(7355), 1, anon_sym_POUND, - ACTIONS(7349), 1, + ACTIONS(7357), 1, aux_sym__form_token1, - ACTIONS(7353), 1, + ACTIONS(7361), 1, aux_sym_char_lit_token1, - ACTIONS(7355), 1, + ACTIONS(7363), 1, anon_sym_LBRACE, - ACTIONS(7357), 1, + ACTIONS(7365), 1, sym_self_referential_reader_macro, - STATE(1477), 1, - sym_list_lit, - STATE(1478), 1, + STATE(2050), 1, sym_sym_lit, - STATE(1482), 1, + STATE(2589), 1, sym__bare_set_lit, - STATE(2813), 1, + STATE(2598), 1, + sym_list_lit, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(3005), 1, + STATE(3001), 1, sym_array_dimension, - ACTIONS(2754), 2, + ACTIONS(205), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2775), 2, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2779), 2, + ACTIONS(234), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2781), 2, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7351), 3, + ACTIONS(7359), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1483), 3, + STATE(2584), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1480), 17, + STATE(2595), 17, sym_num_lit, sym_kwd_lit, sym_str_lit, @@ -105052,81 +104624,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4751), 1, - aux_sym_num_lit_token1, - ACTIONS(4753), 1, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4997), 1, anon_sym_COLON, - ACTIONS(4755), 1, + ACTIONS(4999), 1, anon_sym_COLON_COLON, - ACTIONS(4757), 1, + ACTIONS(5001), 1, anon_sym_DQUOTE, - ACTIONS(4759), 1, + ACTIONS(5003), 1, aux_sym_sym_lit_token1, - ACTIONS(4761), 1, - anon_sym_LPAREN, - ACTIONS(4765), 1, + ACTIONS(5019), 1, + anon_sym_cl, + ACTIONS(5761), 1, + aux_sym_num_lit_token1, + ACTIONS(5765), 1, anon_sym_POUND_QMARK, - ACTIONS(4767), 1, + ACTIONS(5767), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4769), 1, + ACTIONS(5769), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4771), 1, + ACTIONS(5771), 1, anon_sym_SQUOTE, - ACTIONS(4773), 1, + ACTIONS(5773), 1, anon_sym_BQUOTE, - ACTIONS(4775), 1, + ACTIONS(5775), 1, anon_sym_COMMA_AT, - ACTIONS(4777), 1, + ACTIONS(5777), 1, anon_sym_COMMA, - ACTIONS(4779), 1, - anon_sym_cl, - ACTIONS(7359), 1, - anon_sym_POUND, - ACTIONS(7361), 1, - aux_sym__form_token1, - ACTIONS(7365), 1, + ACTIONS(7297), 1, aux_sym_char_lit_token1, - ACTIONS(7367), 1, + ACTIONS(7299), 1, anon_sym_LBRACE, - ACTIONS(7369), 1, + ACTIONS(7301), 1, sym_self_referential_reader_macro, - STATE(1490), 1, - sym_sym_lit, - STATE(1496), 1, - sym_list_lit, - STATE(1557), 1, - sym__bare_set_lit, - STATE(2841), 1, + ACTIONS(7367), 1, + anon_sym_POUND, + ACTIONS(7369), 1, + aux_sym__form_token1, + STATE(2814), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(3045), 1, + STATE(2904), 1, + sym_list_lit, + STATE(2986), 1, + sym__bare_set_lit, + STATE(3020), 1, sym_array_dimension, - ACTIONS(4763), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(4781), 2, + STATE(3095), 1, + sym_sym_lit, + ACTIONS(5021), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4785), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(4787), 2, + ACTIONS(5027), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7363), 3, + ACTIONS(5763), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5779), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(7295), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1612), 3, + STATE(2985), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1494), 17, + STATE(2988), 17, sym_num_lit, sym_kwd_lit, sym_str_lit, @@ -105151,81 +104723,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5029), 1, - anon_sym_COLON, - ACTIONS(5031), 1, + ACTIONS(1692), 1, + aux_sym_num_lit_token1, + ACTIONS(1697), 1, anon_sym_COLON_COLON, - ACTIONS(5033), 1, + ACTIONS(1699), 1, anon_sym_DQUOTE, - ACTIONS(5035), 1, + ACTIONS(1701), 1, aux_sym_sym_lit_token1, - ACTIONS(5053), 1, - anon_sym_cl, - ACTIONS(5179), 1, - aux_sym_num_lit_token1, - ACTIONS(5181), 1, - anon_sym_LPAREN, - ACTIONS(5185), 1, + ACTIONS(1716), 1, anon_sym_POUND_QMARK, - ACTIONS(5187), 1, + ACTIONS(1718), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5189), 1, + ACTIONS(1720), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5191), 1, + ACTIONS(1722), 1, anon_sym_SQUOTE, - ACTIONS(5193), 1, + ACTIONS(1724), 1, anon_sym_BQUOTE, - ACTIONS(5195), 1, + ACTIONS(1726), 1, anon_sym_COMMA_AT, - ACTIONS(5197), 1, + ACTIONS(1728), 1, anon_sym_COMMA, - ACTIONS(7309), 1, - aux_sym_char_lit_token1, - ACTIONS(7311), 1, - anon_sym_LBRACE, - ACTIONS(7313), 1, - sym_self_referential_reader_macro, + ACTIONS(4791), 1, + anon_sym_COLON, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4795), 1, + anon_sym_cl, ACTIONS(7371), 1, anon_sym_POUND, ACTIONS(7373), 1, aux_sym__form_token1, - STATE(2839), 1, + ACTIONS(7377), 1, + aux_sym_char_lit_token1, + ACTIONS(7379), 1, + anon_sym_LBRACE, + ACTIONS(7381), 1, + sym_self_referential_reader_macro, + STATE(1290), 1, + sym__bare_set_lit, + STATE(1295), 1, + sym_sym_lit, + STATE(1296), 1, + sym_list_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2990), 1, - sym__bare_set_lit, - STATE(2994), 1, - sym_list_lit, - STATE(3002), 1, + STATE(3050), 1, sym_array_dimension, - STATE(3076), 1, - sym_sym_lit, - ACTIONS(5055), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(5061), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5183), 2, + ACTIONS(1714), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5201), 2, + ACTIONS(1735), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(1739), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(7307), 3, + ACTIONS(1741), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7375), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(2991), 3, + STATE(1289), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2923), 17, + STATE(1293), 17, sym_num_lit, sym_kwd_lit, sym_str_lit, @@ -105244,87 +104816,87 @@ static const uint16_t ts_small_parse_table[] = { sym_include_reader_macro, sym_complex_num_lit, [78449] = 37, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, - anon_sym_POUND_QMARK, - ACTIONS(35), 1, - anon_sym_POUND_QMARK_AT, ACTIONS(47), 1, sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(6585), 1, + ACTIONS(69), 1, aux_sym_num_lit_token1, - ACTIONS(6589), 1, + ACTIONS(74), 1, + anon_sym_COLON_COLON, + ACTIONS(76), 1, + anon_sym_DQUOTE, + ACTIONS(78), 1, + aux_sym_sym_lit_token1, + ACTIONS(93), 1, + anon_sym_POUND_QMARK, + ACTIONS(95), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(97), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6591), 1, + ACTIONS(99), 1, anon_sym_SQUOTE, - ACTIONS(6593), 1, + ACTIONS(101), 1, anon_sym_BQUOTE, - ACTIONS(6595), 1, + ACTIONS(103), 1, anon_sym_COMMA_AT, - ACTIONS(6597), 1, + ACTIONS(105), 1, anon_sym_COMMA, - ACTIONS(7375), 1, + ACTIONS(4749), 1, + anon_sym_COLON, + ACTIONS(4751), 1, + anon_sym_LPAREN, + ACTIONS(4753), 1, + anon_sym_cl, + ACTIONS(7383), 1, anon_sym_POUND, - ACTIONS(7377), 1, + ACTIONS(7385), 1, aux_sym__form_token1, - ACTIONS(7381), 1, + ACTIONS(7389), 1, aux_sym_char_lit_token1, - ACTIONS(7383), 1, + ACTIONS(7391), 1, anon_sym_LBRACE, - ACTIONS(7385), 1, + ACTIONS(7393), 1, sym_self_referential_reader_macro, - STATE(1875), 1, - sym__bare_set_lit, - STATE(1887), 1, - sym_list_lit, - STATE(1888), 1, + STATE(1000), 1, sym_sym_lit, - STATE(2811), 1, + STATE(1001), 1, + sym_list_lit, + STATE(1117), 1, + sym__bare_set_lit, + STATE(2812), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(3018), 1, + STATE(3042), 1, sym_array_dimension, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(57), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(6587), 2, + ACTIONS(91), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(6599), 2, + ACTIONS(114), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(118), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(7379), 3, + ACTIONS(120), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7387), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1877), 3, + STATE(1109), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1769), 17, + STATE(998), 17, sym_num_lit, sym_kwd_lit, sym_str_lit, @@ -105343,87 +104915,87 @@ static const uint16_t ts_small_parse_table[] = { sym_include_reader_macro, sym_complex_num_lit, [78585] = 37, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(71), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(77), 1, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(79), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(100), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(102), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(104), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(106), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(108), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(110), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(112), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(4809), 1, - anon_sym_COLON, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(4825), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(7315), 1, + ACTIONS(7319), 1, anon_sym_POUND, - ACTIONS(7317), 1, - aux_sym__form_token1, ACTIONS(7321), 1, + aux_sym__form_token1, + ACTIONS(7325), 1, aux_sym_char_lit_token1, - ACTIONS(7323), 1, + ACTIONS(7327), 1, anon_sym_LBRACE, - ACTIONS(7325), 1, + ACTIONS(7329), 1, sym_self_referential_reader_macro, - STATE(2500), 1, + STATE(1801), 1, + sym__bare_set_lit, + STATE(1849), 1, sym_sym_lit, - STATE(2607), 1, + STATE(1850), 1, sym_list_lit, - STATE(2625), 1, - sym__bare_set_lit, - STATE(2834), 1, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(3040), 1, + STATE(3052), 1, sym_array_dimension, - ACTIONS(98), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(123), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(127), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(129), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7319), 3, + ACTIONS(7323), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(2648), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2616), 17, + STATE(1827), 17, sym_num_lit, sym_kwd_lit, sym_str_lit, @@ -105442,87 +105014,87 @@ static const uint16_t ts_small_parse_table[] = { sym_include_reader_macro, sym_complex_num_lit, [78721] = 37, - ACTIONS(15), 1, - aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(184), 1, + anon_sym_COLON_COLON, + ACTIONS(186), 1, + anon_sym_DQUOTE, + ACTIONS(188), 1, + aux_sym_sym_lit_token1, + ACTIONS(207), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(209), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(4767), 1, + anon_sym_COLON, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, + anon_sym_cl, + ACTIONS(5923), 1, + aux_sym_num_lit_token1, + ACTIONS(5927), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(5929), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(5931), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(5933), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(5935), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(7375), 1, + ACTIONS(7355), 1, anon_sym_POUND, - ACTIONS(7377), 1, + ACTIONS(7357), 1, aux_sym__form_token1, - ACTIONS(7381), 1, + ACTIONS(7361), 1, aux_sym_char_lit_token1, - ACTIONS(7383), 1, + ACTIONS(7363), 1, anon_sym_LBRACE, - ACTIONS(7385), 1, + ACTIONS(7365), 1, sym_self_referential_reader_macro, - STATE(1875), 1, + STATE(2050), 1, + sym_sym_lit, + STATE(2589), 1, sym__bare_set_lit, - STATE(1887), 1, + STATE(2598), 1, sym_list_lit, - STATE(1888), 1, - sym_sym_lit, - STATE(2808), 1, + STATE(2824), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(3018), 1, + STATE(3001), 1, sym_array_dimension, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(230), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7379), 3, + ACTIONS(5925), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5937), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(7359), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1877), 3, + STATE(2584), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1769), 17, + STATE(2595), 17, sym_num_lit, sym_kwd_lit, sym_str_lit, @@ -105547,81 +105119,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(141), 1, + ACTIONS(1458), 1, aux_sym_num_lit_token1, - ACTIONS(146), 1, + ACTIONS(1462), 1, anon_sym_COLON_COLON, - ACTIONS(148), 1, + ACTIONS(1464), 1, anon_sym_DQUOTE, - ACTIONS(150), 1, + ACTIONS(1466), 1, aux_sym_sym_lit_token1, - ACTIONS(165), 1, + ACTIONS(1468), 1, + anon_sym_LPAREN, + ACTIONS(1472), 1, anon_sym_POUND_QMARK, - ACTIONS(167), 1, + ACTIONS(1474), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(169), 1, + ACTIONS(1476), 1, anon_sym_POUND_SQUOTE, - ACTIONS(171), 1, + ACTIONS(1478), 1, anon_sym_SQUOTE, - ACTIONS(173), 1, + ACTIONS(1480), 1, anon_sym_BQUOTE, - ACTIONS(175), 1, + ACTIONS(1482), 1, anon_sym_COMMA_AT, - ACTIONS(177), 1, + ACTIONS(1484), 1, anon_sym_COMMA, - ACTIONS(4855), 1, + ACTIONS(6403), 1, anon_sym_COLON, - ACTIONS(4857), 1, - anon_sym_LPAREN, - ACTIONS(4859), 1, + ACTIONS(6405), 1, anon_sym_cl, - ACTIONS(7387), 1, - anon_sym_POUND, - ACTIONS(7389), 1, - aux_sym__form_token1, - ACTIONS(7393), 1, + ACTIONS(7349), 1, aux_sym_char_lit_token1, - ACTIONS(7395), 1, + ACTIONS(7351), 1, anon_sym_LBRACE, - ACTIONS(7397), 1, + ACTIONS(7353), 1, sym_self_referential_reader_macro, - STATE(1059), 1, + ACTIONS(7395), 1, + anon_sym_POUND, + ACTIONS(7397), 1, + aux_sym__form_token1, + STATE(1891), 1, sym_list_lit, - STATE(1060), 1, - sym_sym_lit, - STATE(1069), 1, + STATE(1976), 1, sym__bare_set_lit, - STATE(2804), 1, + STATE(2765), 1, + sym_sym_lit, + STATE(2830), 1, aux_sym_list_lit_repeat1, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2901), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(3029), 1, + STATE(3030), 1, sym_array_dimension, - ACTIONS(163), 2, + ACTIONS(1470), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(186), 2, + ACTIONS(1492), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(190), 2, + ACTIONS(1496), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(192), 2, + ACTIONS(1498), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7391), 3, + ACTIONS(7347), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1070), 3, + STATE(1975), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(998), 17, + STATE(1897), 17, sym_num_lit, sym_kwd_lit, sym_str_lit, @@ -105706,7 +105278,7 @@ static const uint16_t ts_small_parse_table[] = { [79063] = 4, ACTIONS(47), 1, sym_block_comment, - STATE(995), 3, + STATE(994), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, @@ -105830,7 +105402,7 @@ static const uint16_t ts_small_parse_table[] = { [79197] = 4, ACTIONS(47), 1, sym_block_comment, - STATE(995), 3, + STATE(994), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, @@ -105896,11 +105468,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7427), 2, sym__ws, sym_comment, - STATE(991), 3, + STATE(994), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(7435), 20, + ACTIONS(7407), 20, anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, @@ -105921,7 +105493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7433), 29, + ACTIONS(7405), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -105954,16 +105526,16 @@ static const uint16_t ts_small_parse_table[] = { [79331] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7440), 1, + ACTIONS(7436), 1, anon_sym_POUND_, - ACTIONS(7437), 2, + ACTIONS(7433), 2, sym__ws, sym_comment, - STATE(995), 3, + STATE(991), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(7407), 20, + ACTIONS(7441), 20, anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, @@ -105984,7 +105556,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7405), 29, + ACTIONS(7439), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -106248,14 +105820,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [79647] = 3, + [79647] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7461), 23, + ACTIONS(7461), 1, + anon_sym_COLON, + ACTIONS(7463), 1, + anon_sym_COLON_COLON, + ACTIONS(7453), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -106275,11 +105850,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7463), 30, + ACTIONS(7455), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, - anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, @@ -106306,7 +105880,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [79708] = 3, + [79712] = 3, ACTIONS(47), 1, sym_block_comment, ACTIONS(7465), 23, @@ -106364,7 +105938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [79769] = 3, + [79773] = 3, ACTIONS(47), 1, sym_block_comment, ACTIONS(7469), 23, @@ -106422,7 +105996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [79830] = 3, + [79834] = 3, ACTIONS(47), 1, sym_block_comment, ACTIONS(7473), 23, @@ -106480,14 +106054,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [79891] = 3, + [79895] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7477), 23, + ACTIONS(7463), 1, + anon_sym_COLON_COLON, + ACTIONS(7481), 1, + anon_sym_COLON, + ACTIONS(7477), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -106507,11 +106084,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7479), 30, + ACTIONS(7479), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, - anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, @@ -106538,14 +106114,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [79952] = 3, + [79960] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7481), 23, + ACTIONS(7463), 1, + anon_sym_COLON_COLON, + ACTIONS(7484), 1, + anon_sym_COLON, + ACTIONS(7477), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -106565,11 +106144,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7483), 30, + ACTIONS(7479), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, - anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, @@ -106596,10 +106174,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [80013] = 3, + [80025] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7485), 23, + ACTIONS(7487), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -106623,7 +106201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7487), 30, + ACTIONS(7489), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -106654,10 +106232,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [80074] = 3, + [80086] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7489), 23, + ACTIONS(7491), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -106681,7 +106259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7491), 30, + ACTIONS(7493), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -106712,10 +106290,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [80135] = 3, + [80147] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7493), 23, + ACTIONS(7495), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -106739,7 +106317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7495), 30, + ACTIONS(7497), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -106770,14 +106348,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [80196] = 3, + [80208] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7497), 23, + ACTIONS(7463), 1, + anon_sym_COLON_COLON, + ACTIONS(7499), 1, + anon_sym_COLON, + ACTIONS(7477), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -106797,11 +106378,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7499), 30, + ACTIONS(7479), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, - anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, @@ -106828,10 +106408,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [80257] = 3, + [80273] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7501), 23, + ACTIONS(7465), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -106855,7 +106435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7503), 30, + ACTIONS(7467), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -106886,10 +106466,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [80318] = 3, + [80334] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7505), 23, + ACTIONS(7502), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -106913,7 +106493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7507), 30, + ACTIONS(7504), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -106944,10 +106524,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [80379] = 3, + [80395] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7509), 23, + ACTIONS(7506), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -106971,7 +106551,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7511), 30, + ACTIONS(7508), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -107002,10 +106582,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [80440] = 3, + [80456] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7513), 23, + ACTIONS(7510), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -107029,7 +106609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7515), 30, + ACTIONS(7512), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -107060,14 +106640,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [80501] = 3, + [80517] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7517), 23, + ACTIONS(7463), 1, + anon_sym_COLON_COLON, + ACTIONS(7514), 1, + anon_sym_COLON, + ACTIONS(7477), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -107087,11 +106670,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7519), 30, + ACTIONS(7479), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, - anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, @@ -107118,10 +106700,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [80562] = 3, + [80582] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7521), 23, + ACTIONS(7517), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -107145,7 +106727,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7523), 30, + ACTIONS(7519), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -107176,10 +106758,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [80623] = 3, + [80643] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7525), 23, + ACTIONS(7521), 1, + aux_sym_num_lit_token2, + ACTIONS(7443), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -107203,7 +106787,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7527), 30, + ACTIONS(7445), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -107214,7 +106798,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -107234,10 +106817,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [80684] = 3, + [80706] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7529), 23, + ACTIONS(7523), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -107261,7 +106844,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7531), 30, + ACTIONS(7525), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -107292,10 +106875,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [80745] = 3, + [80767] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7529), 23, + ACTIONS(7527), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -107319,7 +106902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7531), 30, + ACTIONS(7529), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -107350,14 +106933,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [80806] = 3, + [80828] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7533), 23, + ACTIONS(7463), 1, + anon_sym_COLON_COLON, + ACTIONS(7531), 1, + anon_sym_COLON, + ACTIONS(7477), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -107377,11 +106963,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7535), 30, + ACTIONS(7479), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, - anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, @@ -107408,10 +106993,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [80867] = 3, + [80893] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7537), 23, + ACTIONS(7534), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -107435,7 +107020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7539), 30, + ACTIONS(7536), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -107466,10 +107051,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [80928] = 3, + [80954] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7541), 23, + ACTIONS(7538), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -107493,7 +107078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7543), 30, + ACTIONS(7540), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -107524,10 +107109,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [80989] = 3, + [81015] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7545), 23, + ACTIONS(7542), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -107551,7 +107136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7547), 30, + ACTIONS(7544), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -107582,10 +107167,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [81050] = 3, + [81076] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7549), 23, + ACTIONS(7546), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -107609,7 +107194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7551), 30, + ACTIONS(7548), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -107640,10 +107225,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [81111] = 3, + [81137] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7553), 23, + ACTIONS(7550), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -107667,7 +107252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7555), 30, + ACTIONS(7552), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -107698,10 +107283,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [81172] = 3, + [81198] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7557), 23, + ACTIONS(7554), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -107725,7 +107310,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7559), 30, + ACTIONS(7556), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -107756,14 +107341,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [81233] = 3, + [81259] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7553), 23, + ACTIONS(7463), 1, + anon_sym_COLON_COLON, + ACTIONS(7558), 1, + anon_sym_COLON, + ACTIONS(7477), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -107783,11 +107371,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7555), 30, + ACTIONS(7479), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, - anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, @@ -107814,10 +107401,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [81294] = 3, + [81324] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7557), 23, + ACTIONS(7465), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -107841,7 +107428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7559), 30, + ACTIONS(7467), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -107872,7 +107459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [81355] = 3, + [81385] = 3, ACTIONS(47), 1, sym_block_comment, ACTIONS(7561), 23, @@ -107930,10 +107517,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [81416] = 3, + [81446] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7565), 23, + ACTIONS(7554), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -107957,7 +107544,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7567), 30, + ACTIONS(7556), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -107988,10 +107575,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [81477] = 3, + [81507] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7569), 23, + ACTIONS(7565), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -108015,7 +107602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7571), 30, + ACTIONS(7567), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -108046,10 +107633,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [81538] = 3, + [81568] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7573), 23, + ACTIONS(7569), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -108073,7 +107660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7575), 30, + ACTIONS(7571), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -108104,14 +107691,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [81599] = 3, + [81629] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7577), 23, + ACTIONS(7463), 1, + anon_sym_COLON_COLON, + ACTIONS(7573), 1, + anon_sym_COLON, + ACTIONS(7477), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -108131,11 +107721,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7579), 30, + ACTIONS(7479), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, - anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, @@ -108162,10 +107751,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [81660] = 3, + [81694] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7581), 23, + ACTIONS(7576), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -108189,7 +107778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7583), 30, + ACTIONS(7578), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -108220,10 +107809,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [81721] = 3, + [81755] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7585), 23, + ACTIONS(7580), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -108247,7 +107836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7587), 30, + ACTIONS(7582), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -108278,10 +107867,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [81782] = 3, + [81816] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7589), 23, + ACTIONS(7584), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -108305,7 +107894,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7591), 30, + ACTIONS(7586), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -108336,10 +107925,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [81843] = 3, + [81877] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7593), 23, + ACTIONS(7588), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -108363,7 +107952,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7595), 30, + ACTIONS(7590), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -108394,10 +107983,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [81904] = 3, + [81938] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7589), 23, + ACTIONS(7592), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -108421,7 +108010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7591), 30, + ACTIONS(7594), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -108452,10 +108041,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [81965] = 3, + [81999] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7597), 23, + ACTIONS(7596), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -108479,7 +108068,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7599), 30, + ACTIONS(7598), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -108510,10 +108099,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [82026] = 3, + [82060] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7601), 23, + ACTIONS(7600), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -108537,7 +108126,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7603), 30, + ACTIONS(7602), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -108568,10 +108157,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [82087] = 3, + [82121] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7597), 23, + ACTIONS(7604), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -108595,7 +108184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7599), 30, + ACTIONS(7606), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -108626,10 +108215,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [82148] = 3, + [82182] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7605), 23, + ACTIONS(7608), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -108653,7 +108242,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7607), 30, + ACTIONS(7610), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -108684,10 +108273,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [82209] = 3, + [82243] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7609), 23, + ACTIONS(7612), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -108711,7 +108300,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7611), 30, + ACTIONS(7614), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -108742,10 +108331,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [82270] = 3, + [82304] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7613), 23, + ACTIONS(7616), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -108769,7 +108358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7615), 30, + ACTIONS(7618), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -108800,17 +108389,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [82331] = 5, + [82365] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7621), 1, - anon_sym_COLON, - ACTIONS(7624), 1, - anon_sym_COLON_COLON, - ACTIONS(7617), 22, + ACTIONS(7620), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -108830,10 +108416,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7619), 29, + ACTIONS(7622), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, @@ -108860,10 +108447,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [82396] = 3, + [82426] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7626), 23, + ACTIONS(7624), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -108887,7 +108474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7628), 30, + ACTIONS(7626), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -108918,10 +108505,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [82457] = 3, + [82487] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7630), 23, + ACTIONS(7628), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -108945,7 +108532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7632), 30, + ACTIONS(7630), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -108976,10 +108563,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [82518] = 3, + [82548] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7634), 23, + ACTIONS(7632), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -109003,7 +108590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7636), 30, + ACTIONS(7634), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -109034,10 +108621,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [82579] = 3, + [82609] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7638), 23, + ACTIONS(7636), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -109061,7 +108648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7640), 30, + ACTIONS(7638), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -109092,14 +108679,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [82640] = 3, + [82670] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7642), 23, + ACTIONS(7463), 1, + anon_sym_COLON_COLON, + ACTIONS(7640), 1, + anon_sym_COLON, + ACTIONS(7477), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -109119,11 +108709,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7644), 30, + ACTIONS(7479), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, - anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, @@ -109150,10 +108739,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [82701] = 3, + [82735] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7525), 23, + ACTIONS(7643), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -109177,7 +108766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7527), 30, + ACTIONS(7645), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -109208,10 +108797,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [82762] = 3, + [82796] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7646), 23, + ACTIONS(7647), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -109235,7 +108824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7648), 30, + ACTIONS(7649), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -109266,14 +108855,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [82823] = 3, + [82857] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7650), 23, + ACTIONS(7463), 1, + anon_sym_COLON_COLON, + ACTIONS(7651), 1, + anon_sym_COLON, + ACTIONS(7477), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -109293,11 +108885,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7652), 30, + ACTIONS(7479), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, - anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, @@ -109324,7 +108915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [82884] = 3, + [82922] = 3, ACTIONS(47), 1, sym_block_comment, ACTIONS(7654), 23, @@ -109382,10 +108973,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [82945] = 3, + [82983] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7489), 23, + ACTIONS(7658), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -109409,7 +109000,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7491), 30, + ACTIONS(7660), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -109440,10 +109031,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [83006] = 3, + [83044] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7658), 23, + ACTIONS(7662), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -109467,7 +109058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7660), 30, + ACTIONS(7664), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -109498,10 +109089,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [83067] = 3, + [83105] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7662), 23, + ACTIONS(7666), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -109525,7 +109116,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7664), 30, + ACTIONS(7668), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -109556,10 +109147,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [83128] = 3, + [83166] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7666), 23, + ACTIONS(7670), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -109583,7 +109174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7668), 30, + ACTIONS(7672), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -109614,10 +109205,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [83189] = 3, + [83227] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7670), 23, + ACTIONS(7674), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -109641,7 +109232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7672), 30, + ACTIONS(7676), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -109672,10 +109263,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [83250] = 3, + [83288] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7525), 23, + ACTIONS(7628), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -109699,7 +109290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7527), 30, + ACTIONS(7630), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -109730,17 +109321,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [83311] = 5, + [83349] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7624), 1, - anon_sym_COLON_COLON, - ACTIONS(7674), 1, - anon_sym_COLON, - ACTIONS(7453), 22, + ACTIONS(7678), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -109760,10 +109348,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7455), 29, + ACTIONS(7680), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, @@ -109790,10 +109379,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [83376] = 3, + [83410] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7676), 23, + ACTIONS(7682), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -109817,7 +109406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7678), 30, + ACTIONS(7684), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -109848,10 +109437,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [83437] = 3, + [83471] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7680), 23, + ACTIONS(7686), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -109875,7 +109464,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7682), 30, + ACTIONS(7688), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -109906,10 +109495,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [83498] = 3, + [83532] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7684), 23, + ACTIONS(7690), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -109933,7 +109522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7686), 30, + ACTIONS(7692), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -109964,10 +109553,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [83559] = 3, + [83593] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7688), 23, + ACTIONS(7694), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -109991,7 +109580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7690), 30, + ACTIONS(7696), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -110022,10 +109611,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [83620] = 3, + [83654] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7692), 23, + ACTIONS(7698), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -110049,7 +109638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7694), 30, + ACTIONS(7700), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -110080,10 +109669,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [83681] = 3, + [83715] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7696), 23, + ACTIONS(7702), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -110107,7 +109696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7698), 30, + ACTIONS(7704), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -110138,10 +109727,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [83742] = 3, + [83776] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7700), 23, + ACTIONS(7706), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -110165,7 +109754,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7702), 30, + ACTIONS(7708), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -110196,10 +109785,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [83803] = 3, + [83837] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7696), 23, + ACTIONS(7710), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -110223,7 +109812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7698), 30, + ACTIONS(7712), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -110254,10 +109843,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [83864] = 3, + [83898] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7704), 23, + ACTIONS(7714), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -110281,7 +109870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7706), 30, + ACTIONS(7716), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -110312,14 +109901,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [83925] = 3, + [83959] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7708), 23, + ACTIONS(7463), 1, + anon_sym_COLON_COLON, + ACTIONS(7718), 1, + anon_sym_COLON, + ACTIONS(7477), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -110339,11 +109931,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7710), 30, + ACTIONS(7479), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, - anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, @@ -110370,10 +109961,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [83986] = 3, + [84024] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7712), 23, + ACTIONS(7721), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -110397,7 +109988,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7714), 30, + ACTIONS(7723), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -110428,10 +110019,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [84047] = 3, + [84085] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7680), 23, + ACTIONS(7725), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -110455,7 +110046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7682), 30, + ACTIONS(7727), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -110486,14 +110077,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [84108] = 5, + [84146] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7624), 1, + ACTIONS(7463), 1, anon_sym_COLON_COLON, - ACTIONS(7674), 1, + ACTIONS(7729), 1, anon_sym_COLON, - ACTIONS(7716), 22, + ACTIONS(7477), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -110516,7 +110107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7718), 29, + ACTIONS(7479), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -110546,17 +110137,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [84173] = 5, + [84211] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7624), 1, - anon_sym_COLON_COLON, - ACTIONS(7674), 1, - anon_sym_COLON, - ACTIONS(7617), 22, + ACTIONS(7732), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -110576,10 +110164,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7619), 29, + ACTIONS(7734), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, @@ -110606,10 +110195,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [84238] = 3, + [84272] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7692), 23, + ACTIONS(7736), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -110633,7 +110222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7694), 30, + ACTIONS(7738), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -110664,10 +110253,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [84299] = 3, + [84333] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7696), 23, + ACTIONS(7736), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -110691,7 +110280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7698), 30, + ACTIONS(7738), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -110722,10 +110311,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [84360] = 3, + [84394] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7696), 23, + ACTIONS(7740), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -110749,7 +110338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7698), 30, + ACTIONS(7742), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -110780,10 +110369,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [84421] = 3, + [84455] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7720), 23, + ACTIONS(7744), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -110807,7 +110396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7722), 30, + ACTIONS(7746), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -110838,10 +110427,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [84482] = 3, + [84516] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7724), 23, + ACTIONS(7748), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -110865,7 +110454,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7726), 30, + ACTIONS(7750), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -110896,10 +110485,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [84543] = 3, + [84577] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7728), 23, + ACTIONS(7752), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -110923,7 +110512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7730), 30, + ACTIONS(7754), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -110954,10 +110543,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [84604] = 3, + [84638] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7732), 23, + ACTIONS(7748), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -110981,7 +110570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7734), 30, + ACTIONS(7750), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -111012,10 +110601,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [84665] = 3, + [84699] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7736), 23, + ACTIONS(7752), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -111039,7 +110628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7738), 30, + ACTIONS(7754), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -111070,14 +110659,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [84726] = 3, + [84760] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7740), 23, + ACTIONS(7463), 1, + anon_sym_COLON_COLON, + ACTIONS(7756), 1, + anon_sym_COLON, + ACTIONS(7477), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -111097,11 +110689,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7742), 30, + ACTIONS(7479), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, - anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, @@ -111128,10 +110719,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [84787] = 3, + [84825] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7744), 23, + ACTIONS(7759), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -111155,7 +110746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7746), 30, + ACTIONS(7761), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -111186,10 +110777,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [84848] = 3, + [84886] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7748), 23, + ACTIONS(7763), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -111213,7 +110804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7750), 30, + ACTIONS(7765), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -111244,14 +110835,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [84909] = 3, + [84947] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7744), 23, + ACTIONS(7461), 1, + anon_sym_COLON, + ACTIONS(7463), 1, + anon_sym_COLON_COLON, + ACTIONS(7477), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -111271,11 +110865,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7746), 30, + ACTIONS(7479), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, - anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, @@ -111302,10 +110895,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [84970] = 3, + [85012] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7748), 23, + ACTIONS(7767), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -111329,7 +110922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7750), 30, + ACTIONS(7769), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -111360,10 +110953,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [85031] = 3, + [85073] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7752), 23, + ACTIONS(7771), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -111387,7 +110980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7754), 30, + ACTIONS(7773), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -111418,17 +111011,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [85092] = 5, + [85134] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7624), 1, - anon_sym_COLON_COLON, - ACTIONS(7756), 1, - anon_sym_COLON, - ACTIONS(7617), 22, + ACTIONS(7775), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -111448,10 +111038,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7619), 29, + ACTIONS(7777), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, @@ -111478,10 +111069,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [85157] = 3, + [85195] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7736), 23, + ACTIONS(7779), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -111505,7 +111096,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7738), 30, + ACTIONS(7781), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -111536,10 +111127,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [85218] = 3, + [85256] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7759), 23, + ACTIONS(7779), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -111563,7 +111154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7761), 30, + ACTIONS(7781), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -111594,17 +111185,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [85279] = 5, + [85317] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7624), 1, - anon_sym_COLON_COLON, - ACTIONS(7763), 1, - anon_sym_COLON, - ACTIONS(7617), 22, + ACTIONS(7783), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -111624,10 +111212,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7619), 29, + ACTIONS(7785), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, @@ -111654,10 +111243,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [85344] = 3, + [85378] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7744), 23, + ACTIONS(7783), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -111681,7 +111270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7746), 30, + ACTIONS(7785), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -111712,10 +111301,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [85405] = 3, + [85439] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7748), 23, + ACTIONS(7787), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -111739,7 +111328,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7750), 30, + ACTIONS(7789), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -111770,10 +111359,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [85466] = 3, + [85500] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7744), 23, + ACTIONS(7791), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -111797,7 +111386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7746), 30, + ACTIONS(7793), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -111828,10 +111417,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [85527] = 3, + [85561] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7748), 23, + ACTIONS(7795), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -111855,7 +111444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7750), 30, + ACTIONS(7797), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -111886,10 +111475,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [85588] = 3, + [85622] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7752), 23, + ACTIONS(7799), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -111913,7 +111502,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7754), 30, + ACTIONS(7801), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -111944,10 +111533,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [85649] = 3, + [85683] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7766), 23, + ACTIONS(7803), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -111971,7 +111560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7768), 30, + ACTIONS(7805), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -112002,10 +111591,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [85710] = 3, + [85744] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7770), 23, + ACTIONS(7807), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -112029,7 +111618,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7772), 30, + ACTIONS(7809), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -112060,10 +111649,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [85771] = 3, + [85805] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7774), 23, + ACTIONS(7811), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -112087,7 +111676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7776), 30, + ACTIONS(7813), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -112118,14 +111707,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [85832] = 3, + [85866] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7774), 23, + ACTIONS(7461), 1, + anon_sym_COLON, + ACTIONS(7463), 1, + anon_sym_COLON_COLON, + ACTIONS(7815), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -112145,11 +111737,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7776), 30, + ACTIONS(7817), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, - anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, @@ -112176,10 +111767,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [85893] = 3, + [85931] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7778), 23, + ACTIONS(7819), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -112203,7 +111794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7780), 30, + ACTIONS(7821), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -112234,10 +111825,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [85954] = 3, + [85992] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7782), 23, + ACTIONS(7819), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -112261,7 +111852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7784), 30, + ACTIONS(7821), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -112292,10 +111883,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [86015] = 3, + [86053] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7786), 23, + ACTIONS(7807), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -112319,7 +111910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7788), 30, + ACTIONS(7809), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -112350,10 +111941,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [86076] = 3, + [86114] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7774), 23, + ACTIONS(7811), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -112377,7 +111968,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7776), 30, + ACTIONS(7813), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -112408,10 +111999,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [86137] = 3, + [86175] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7774), 23, + ACTIONS(7819), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -112435,7 +112026,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7776), 30, + ACTIONS(7821), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -112466,10 +112057,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [86198] = 3, + [86236] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7778), 23, + ACTIONS(7819), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -112493,7 +112084,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7780), 30, + ACTIONS(7821), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -112524,10 +112115,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [86259] = 3, + [86297] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7790), 23, + ACTIONS(7823), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -112551,7 +112142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7792), 30, + ACTIONS(7825), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -112582,10 +112173,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [86320] = 3, + [86358] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7786), 23, + ACTIONS(7827), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -112609,7 +112200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7788), 30, + ACTIONS(7829), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -112640,10 +112231,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [86381] = 3, + [86419] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7794), 23, + ACTIONS(7831), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -112667,7 +112258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7796), 30, + ACTIONS(7833), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -112698,10 +112289,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [86442] = 3, + [86480] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7794), 23, + ACTIONS(7835), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -112725,7 +112316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7796), 30, + ACTIONS(7837), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -112756,17 +112347,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [86503] = 5, + [86541] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7624), 1, - anon_sym_COLON_COLON, - ACTIONS(7798), 1, - anon_sym_COLON, - ACTIONS(7617), 22, + ACTIONS(7839), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -112786,10 +112374,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7619), 29, + ACTIONS(7841), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, @@ -112816,10 +112405,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [86568] = 3, + [86602] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7801), 23, + ACTIONS(7843), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -112843,7 +112432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7803), 30, + ACTIONS(7845), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -112874,12 +112463,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [86629] = 4, + [86663] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7805), 1, - aux_sym_num_lit_token2, - ACTIONS(7443), 23, + ACTIONS(7847), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -112903,7 +112490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7445), 29, + ACTIONS(7849), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -112914,6 +112501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -112933,17 +112521,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [86692] = 5, + [86724] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7624), 1, - anon_sym_COLON_COLON, - ACTIONS(7807), 1, - anon_sym_COLON, - ACTIONS(7617), 22, + ACTIONS(7843), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -112963,10 +112548,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7619), 29, + ACTIONS(7845), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, @@ -112993,17 +112579,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [86757] = 5, + [86785] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7624), 1, - anon_sym_COLON_COLON, - ACTIONS(7810), 1, - anon_sym_COLON, - ACTIONS(7617), 22, + ACTIONS(7847), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -113023,10 +112606,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7619), 29, + ACTIONS(7849), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, @@ -113053,10 +112637,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [86822] = 3, + [86846] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7813), 23, + ACTIONS(7851), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -113080,7 +112664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7815), 30, + ACTIONS(7853), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -113111,10 +112695,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [86883] = 3, + [86907] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7817), 23, + ACTIONS(7855), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -113138,7 +112722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7819), 30, + ACTIONS(7857), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -113169,17 +112753,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [86944] = 5, + [86968] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7624), 1, - anon_sym_COLON_COLON, - ACTIONS(7821), 1, - anon_sym_COLON, - ACTIONS(7617), 22, + ACTIONS(7839), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -113199,10 +112780,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7619), 29, + ACTIONS(7841), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, @@ -113229,10 +112811,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [87009] = 3, + [87029] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7824), 23, + ACTIONS(7843), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -113256,7 +112838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7826), 30, + ACTIONS(7845), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -113287,17 +112869,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [87070] = 5, + [87090] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7624), 1, - anon_sym_COLON_COLON, - ACTIONS(7828), 1, - anon_sym_COLON, - ACTIONS(7617), 22, + ACTIONS(7847), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -113317,10 +112896,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7619), 29, + ACTIONS(7849), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, @@ -113347,10 +112927,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [87135] = 3, + [87151] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7831), 23, + ACTIONS(7843), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -113374,7 +112954,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7833), 30, + ACTIONS(7845), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -113405,10 +112985,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [87196] = 3, + [87212] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7835), 23, + ACTIONS(7847), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -113432,7 +113012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7837), 30, + ACTIONS(7849), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -113463,10 +113043,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [87257] = 3, + [87273] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7839), 23, + ACTIONS(7859), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -113490,7 +113070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7841), 30, + ACTIONS(7861), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -113521,17 +113101,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [87318] = 5, + [87334] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7624), 1, - anon_sym_COLON_COLON, - ACTIONS(7843), 1, - anon_sym_COLON, - ACTIONS(7617), 22, + ACTIONS(7855), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -113551,10 +113128,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7619), 29, + ACTIONS(7857), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, @@ -113581,10 +113159,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [87383] = 3, + [87395] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7846), 23, + ACTIONS(7863), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -113608,7 +113186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7848), 30, + ACTIONS(7865), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -113639,10 +113217,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [87444] = 3, + [87456] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7850), 23, + ACTIONS(7628), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -113666,7 +113244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7852), 30, + ACTIONS(7630), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -113697,17 +113275,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [87505] = 5, + [87517] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7624), 1, - anon_sym_COLON_COLON, - ACTIONS(7854), 1, - anon_sym_COLON, - ACTIONS(7617), 22, + ACTIONS(7628), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -113727,10 +113302,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7619), 29, + ACTIONS(7630), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, @@ -113757,17 +113333,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [87570] = 5, + [87578] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7624), 1, - anon_sym_COLON_COLON, - ACTIONS(7857), 1, - anon_sym_COLON, - ACTIONS(7617), 22, + ACTIONS(7714), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -113787,10 +113360,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7619), 29, + ACTIONS(7716), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, @@ -113817,10 +113391,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [87635] = 3, + [87639] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7860), 23, + ACTIONS(7670), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -113844,7 +113418,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7862), 30, + ACTIONS(7672), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -113875,17 +113449,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [87696] = 5, + [87700] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7624), 1, - anon_sym_COLON_COLON, - ACTIONS(7864), 1, - anon_sym_COLON, - ACTIONS(7617), 22, + ACTIONS(7721), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -113905,10 +113476,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7619), 29, + ACTIONS(7723), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, @@ -113938,7 +113510,7 @@ static const uint16_t ts_small_parse_table[] = { [87761] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7642), 23, + ACTIONS(7702), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -113962,7 +113534,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7644), 29, + ACTIONS(7704), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -113995,7 +113567,7 @@ static const uint16_t ts_small_parse_table[] = { [87821] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7589), 23, + ACTIONS(7554), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -114019,7 +113591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7591), 29, + ACTIONS(7556), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -114049,19 +113621,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [87881] = 3, + [87881] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7613), 23, + ACTIONS(7870), 1, + anon_sym_POUND_, + ACTIONS(7867), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(1134), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7407), 20, anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -114069,6 +113646,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, anon_sym_POUNDP, anon_sym_POUNDp, sym_self_referential_reader_macro, @@ -114076,7 +113654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7615), 29, + ACTIONS(7405), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -114087,33 +113665,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_do, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [87941] = 3, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [87947] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7601), 23, + ACTIONS(7873), 1, + anon_sym_COLON, + ACTIONS(7875), 1, + anon_sym_COLON_COLON, + ACTIONS(7477), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -114133,11 +113711,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7603), 29, + ACTIONS(7479), 28, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, - anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, @@ -114163,14 +113740,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88001] = 3, + [88011] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7593), 23, + ACTIONS(7873), 1, + anon_sym_COLON, + ACTIONS(7875), 1, + anon_sym_COLON_COLON, + ACTIONS(7815), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -114190,11 +113770,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7595), 29, + ACTIONS(7817), 28, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, - anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, @@ -114220,10 +113799,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88061] = 3, + [88075] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7581), 23, + ACTIONS(7827), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -114247,7 +113826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7583), 29, + ACTIONS(7829), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -114277,10 +113856,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88121] = 3, + [88135] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7565), 23, + ACTIONS(7851), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -114304,7 +113883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7567), 29, + ACTIONS(7853), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -114334,10 +113913,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88181] = 3, + [88195] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7545), 23, + ACTIONS(7859), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -114361,7 +113940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7547), 29, + ACTIONS(7861), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -114391,10 +113970,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88241] = 3, + [88255] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7541), 23, + ACTIONS(7453), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -114418,7 +113997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7543), 29, + ACTIONS(7455), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -114448,10 +114027,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88301] = 3, + [88315] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7533), 23, + ACTIONS(7457), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -114475,7 +114054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7535), 29, + ACTIONS(7459), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -114505,14 +114084,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88361] = 3, + [88375] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7525), 23, + ACTIONS(7873), 1, + anon_sym_COLON, + ACTIONS(7875), 1, + anon_sym_COLON_COLON, + ACTIONS(7453), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -114532,11 +114114,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7527), 29, + ACTIONS(7455), 28, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, - anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, @@ -114562,10 +114143,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88421] = 3, + [88439] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7521), 23, + ACTIONS(7465), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -114589,7 +114170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7523), 29, + ACTIONS(7467), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -114619,10 +114200,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88481] = 3, + [88499] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7513), 23, + ACTIONS(7469), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -114646,7 +114227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7515), 29, + ACTIONS(7471), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -114676,10 +114257,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88541] = 3, + [88559] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7509), 23, + ACTIONS(7473), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -114703,7 +114284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7511), 29, + ACTIONS(7475), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -114733,10 +114314,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88601] = 3, + [88619] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7505), 23, + ACTIONS(7487), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -114760,7 +114341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7507), 29, + ACTIONS(7489), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -114790,24 +114371,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88661] = 6, + [88679] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7870), 1, - anon_sym_POUND_, - ACTIONS(7867), 2, + ACTIONS(7491), 23, sym__ws, sym_comment, - STATE(1147), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(7407), 20, + anon_sym_POUND_, anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -114815,7 +114391,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, anon_sym_POUNDP, anon_sym_POUNDp, sym_self_referential_reader_macro, @@ -114823,7 +114398,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7405), 26, + ACTIONS(7493), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -114834,26 +114409,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [88727] = 3, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [88739] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7501), 23, + ACTIONS(7495), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -114877,7 +114455,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7503), 29, + ACTIONS(7497), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -114907,10 +114485,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88787] = 3, + [88799] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7497), 23, + ACTIONS(7465), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -114934,7 +114512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7499), 29, + ACTIONS(7467), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -114964,10 +114542,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88847] = 3, + [88859] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7485), 23, + ACTIONS(7502), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -114991,7 +114569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7487), 29, + ACTIONS(7504), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -115021,10 +114599,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88907] = 3, + [88919] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7481), 23, + ACTIONS(7506), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -115048,7 +114626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7483), 29, + ACTIONS(7508), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -115078,10 +114656,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88967] = 3, + [88979] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7477), 23, + ACTIONS(7510), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -115105,7 +114683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7479), 29, + ACTIONS(7512), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -115135,10 +114713,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89027] = 3, + [89039] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7473), 23, + ACTIONS(7517), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -115162,7 +114740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7475), 29, + ACTIONS(7519), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -115192,10 +114770,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89087] = 3, + [89099] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7469), 23, + ACTIONS(7523), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -115219,7 +114797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7471), 29, + ACTIONS(7525), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -115249,10 +114827,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89147] = 3, + [89159] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7465), 23, + ACTIONS(7527), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -115276,7 +114854,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7467), 29, + ACTIONS(7529), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -115306,10 +114884,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89207] = 3, + [89219] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7461), 23, + ACTIONS(7534), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -115333,7 +114911,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7463), 29, + ACTIONS(7536), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -115363,10 +114941,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89267] = 3, + [89279] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7457), 23, + ACTIONS(7538), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -115390,7 +114968,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7459), 29, + ACTIONS(7540), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -115420,10 +114998,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89327] = 3, + [89339] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7688), 23, + ACTIONS(7542), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -115447,7 +115025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7690), 29, + ACTIONS(7544), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -115477,10 +115055,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89387] = 3, + [89399] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7654), 23, + ACTIONS(7546), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -115504,7 +115082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7656), 29, + ACTIONS(7548), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -115534,10 +115112,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89447] = 3, + [89459] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7712), 23, + ACTIONS(7550), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -115561,7 +115139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7714), 29, + ACTIONS(7552), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -115591,10 +115169,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89507] = 3, + [89519] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7724), 23, + ACTIONS(7465), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -115618,7 +115196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7726), 29, + ACTIONS(7467), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -115648,10 +115226,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89567] = 3, + [89579] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7759), 23, + ACTIONS(7561), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -115675,7 +115253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7761), 29, + ACTIONS(7563), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -115705,10 +115283,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89627] = 3, + [89639] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7782), 23, + ACTIONS(7565), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -115732,7 +115310,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7784), 29, + ACTIONS(7567), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -115762,10 +115340,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89687] = 3, + [89699] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7801), 23, + ACTIONS(7569), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -115789,7 +115367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7803), 29, + ACTIONS(7571), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -115819,10 +115397,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89747] = 3, + [89759] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7846), 23, + ACTIONS(7576), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -115846,7 +115424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7848), 29, + ACTIONS(7578), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -115876,10 +115454,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89807] = 3, + [89819] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7650), 23, + ACTIONS(7580), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -115903,7 +115481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7652), 29, + ACTIONS(7582), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -115933,10 +115511,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89867] = 3, + [89879] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7860), 23, + ACTIONS(7584), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -115960,7 +115538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7862), 29, + ACTIONS(7586), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -115990,10 +115568,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89927] = 3, + [89939] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7850), 23, + ACTIONS(7588), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -116017,7 +115595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7852), 29, + ACTIONS(7590), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -116047,10 +115625,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89987] = 3, + [89999] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7839), 23, + ACTIONS(7592), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -116074,7 +115652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7841), 29, + ACTIONS(7594), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -116104,10 +115682,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [90047] = 3, + [90059] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7835), 23, + ACTIONS(7596), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -116131,7 +115709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7837), 29, + ACTIONS(7598), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -116161,10 +115739,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [90107] = 3, + [90119] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7831), 23, + ACTIONS(7600), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -116188,7 +115766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7833), 29, + ACTIONS(7602), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -116218,10 +115796,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [90167] = 3, + [90179] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7824), 23, + ACTIONS(7604), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -116245,7 +115823,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7826), 29, + ACTIONS(7606), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -116275,10 +115853,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [90227] = 3, + [90239] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7817), 23, + ACTIONS(7608), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -116302,7 +115880,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7819), 29, + ACTIONS(7610), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -116332,10 +115910,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [90287] = 3, + [90299] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7813), 23, + ACTIONS(7612), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -116359,7 +115937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7815), 29, + ACTIONS(7614), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -116389,10 +115967,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [90347] = 3, + [90359] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7790), 23, + ACTIONS(7616), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -116416,7 +115994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7792), 29, + ACTIONS(7618), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -116446,10 +116024,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [90407] = 3, + [90419] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7766), 23, + ACTIONS(7620), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -116473,7 +116051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7768), 29, + ACTIONS(7622), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -116503,10 +116081,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [90467] = 3, + [90479] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7676), 23, + ACTIONS(7624), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -116530,7 +116108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7678), 29, + ACTIONS(7626), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -116560,10 +116138,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [90527] = 3, + [90539] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7489), 23, + ACTIONS(7632), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -116587,7 +116165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7491), 29, + ACTIONS(7634), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -116617,10 +116195,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [90587] = 3, + [90599] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7634), 23, + ACTIONS(7636), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -116644,7 +116222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7636), 29, + ACTIONS(7638), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -116674,10 +116252,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [90647] = 3, + [90659] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7489), 23, + ACTIONS(7647), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -116701,7 +116279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7491), 29, + ACTIONS(7649), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -116731,10 +116309,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [90707] = 3, + [90719] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7493), 23, + ACTIONS(7654), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -116758,7 +116336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7495), 29, + ACTIONS(7656), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -116788,10 +116366,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [90767] = 3, + [90779] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7525), 23, + ACTIONS(7658), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -116815,7 +116393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7527), 29, + ACTIONS(7660), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -116845,10 +116423,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [90827] = 3, + [90839] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7517), 23, + ACTIONS(7662), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -116872,7 +116450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7519), 29, + ACTIONS(7664), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -116902,10 +116480,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [90887] = 3, + [90899] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7740), 23, + ACTIONS(7666), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -116929,7 +116507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7742), 29, + ACTIONS(7668), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -116959,17 +116537,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [90947] = 5, + [90959] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7873), 1, - anon_sym_COLON, - ACTIONS(7875), 1, - anon_sym_COLON_COLON, - ACTIONS(7617), 22, + ACTIONS(7674), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -116989,10 +116564,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7619), 28, + ACTIONS(7676), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, @@ -117018,17 +116594,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [91011] = 5, + [91019] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7873), 1, - anon_sym_COLON, - ACTIONS(7875), 1, - anon_sym_COLON_COLON, - ACTIONS(7716), 22, + ACTIONS(7449), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -117048,10 +116621,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7718), 28, + ACTIONS(7451), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, @@ -117077,10 +116651,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [91075] = 3, + [91079] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7708), 23, + ACTIONS(7678), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -117104,7 +116678,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7710), 29, + ACTIONS(7680), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -117134,10 +116708,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [91135] = 3, + [91139] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7529), 23, + ACTIONS(7682), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -117161,7 +116735,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7531), 29, + ACTIONS(7684), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -117191,10 +116765,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [91195] = 3, + [91199] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7646), 23, + ACTIONS(7554), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -117218,7 +116792,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7648), 29, + ACTIONS(7556), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -117248,10 +116822,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [91255] = 3, + [91259] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7529), 23, + ACTIONS(7690), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -117275,7 +116849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7531), 29, + ACTIONS(7692), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -117305,10 +116879,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [91315] = 3, + [91319] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7704), 23, + ACTIONS(7694), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -117332,7 +116906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7706), 29, + ACTIONS(7696), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -117362,10 +116936,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [91375] = 3, + [91379] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7700), 23, + ACTIONS(7698), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -117389,7 +116963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7702), 29, + ACTIONS(7700), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -117419,10 +116993,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [91435] = 3, + [91439] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7449), 23, + ACTIONS(7643), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -117446,7 +117020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7451), 29, + ACTIONS(7645), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -117476,10 +117050,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [91495] = 3, + [91499] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7537), 23, + ACTIONS(7706), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -117503,7 +117077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7539), 29, + ACTIONS(7708), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -117533,10 +117107,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [91555] = 3, + [91559] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7549), 23, + ACTIONS(7710), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -117560,7 +117134,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7551), 29, + ACTIONS(7712), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -117590,10 +117164,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [91615] = 3, + [91619] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7453), 23, + ACTIONS(7721), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -117617,7 +117191,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7455), 29, + ACTIONS(7723), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -117647,10 +117221,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [91675] = 3, + [91679] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7658), 23, + ACTIONS(7721), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -117674,7 +117248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7660), 29, + ACTIONS(7723), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -117704,10 +117278,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [91735] = 3, + [91739] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7553), 23, + ACTIONS(7725), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -117731,7 +117305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7555), 29, + ACTIONS(7727), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -117761,10 +117335,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [91795] = 3, + [91799] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7557), 23, + ACTIONS(7732), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -117788,7 +117362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7559), 29, + ACTIONS(7734), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -117818,10 +117392,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [91855] = 3, + [91859] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7553), 23, + ACTIONS(7736), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -117845,7 +117419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7555), 29, + ACTIONS(7738), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -117875,10 +117449,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [91915] = 3, + [91919] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7557), 23, + ACTIONS(7736), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -117902,7 +117476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7559), 29, + ACTIONS(7738), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -117932,10 +117506,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [91975] = 3, + [91979] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7561), 23, + ACTIONS(7740), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -117959,7 +117533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7563), 29, + ACTIONS(7742), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -117989,10 +117563,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [92035] = 3, + [92039] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7569), 23, + ACTIONS(7744), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -118016,7 +117590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7571), 29, + ACTIONS(7746), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -118046,10 +117620,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [92095] = 3, + [92099] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7573), 23, + ACTIONS(7748), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -118073,7 +117647,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7575), 29, + ACTIONS(7750), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -118103,10 +117677,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [92155] = 3, + [92159] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7577), 23, + ACTIONS(7752), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -118130,7 +117704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7579), 29, + ACTIONS(7754), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -118160,10 +117734,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [92215] = 3, + [92219] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7585), 23, + ACTIONS(7748), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -118187,7 +117761,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7587), 29, + ACTIONS(7750), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -118217,10 +117791,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [92275] = 3, + [92279] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7630), 23, + ACTIONS(7752), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -118244,7 +117818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7632), 29, + ACTIONS(7754), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -118274,10 +117848,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [92335] = 3, + [92339] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7589), 23, + ACTIONS(7759), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -118301,7 +117875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7591), 29, + ACTIONS(7761), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -118331,10 +117905,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [92395] = 3, + [92399] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7597), 23, + ACTIONS(7763), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -118358,7 +117932,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7599), 29, + ACTIONS(7765), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -118388,10 +117962,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [92455] = 3, + [92459] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7597), 23, + ACTIONS(7767), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -118415,7 +117989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7599), 29, + ACTIONS(7769), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -118445,10 +118019,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [92515] = 3, + [92519] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7605), 23, + ACTIONS(7771), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -118472,7 +118046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7607), 29, + ACTIONS(7773), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -118502,10 +118076,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [92575] = 3, + [92579] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7609), 23, + ACTIONS(7775), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -118529,7 +118103,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7611), 29, + ACTIONS(7777), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -118559,10 +118133,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [92635] = 3, + [92639] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7626), 23, + ACTIONS(7779), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -118586,7 +118160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7628), 29, + ACTIONS(7781), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -118616,10 +118190,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [92695] = 3, + [92699] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7638), 23, + ACTIONS(7779), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -118643,7 +118217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7640), 29, + ACTIONS(7781), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -118673,10 +118247,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [92755] = 3, + [92759] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7670), 23, + ACTIONS(7783), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -118700,7 +118274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7672), 29, + ACTIONS(7785), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -118730,10 +118304,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [92815] = 3, + [92819] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7684), 23, + ACTIONS(7783), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -118757,7 +118331,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7686), 29, + ACTIONS(7785), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -118787,10 +118361,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [92875] = 3, + [92879] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7680), 23, + ACTIONS(7787), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -118814,7 +118388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7682), 29, + ACTIONS(7789), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -118844,17 +118418,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [92935] = 5, + [92939] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7873), 1, - anon_sym_COLON, - ACTIONS(7875), 1, - anon_sym_COLON_COLON, - ACTIONS(7453), 22, + ACTIONS(7791), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -118874,10 +118445,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7455), 28, + ACTIONS(7793), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, @@ -118906,7 +118478,7 @@ static const uint16_t ts_small_parse_table[] = { [92999] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7525), 23, + ACTIONS(7795), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -118930,7 +118502,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7527), 29, + ACTIONS(7797), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -118963,7 +118535,7 @@ static const uint16_t ts_small_parse_table[] = { [93059] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7692), 23, + ACTIONS(7799), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -118987,7 +118559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7694), 29, + ACTIONS(7801), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -119020,7 +118592,7 @@ static const uint16_t ts_small_parse_table[] = { [93119] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7696), 23, + ACTIONS(7803), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -119044,7 +118616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7698), 29, + ACTIONS(7805), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -119077,7 +118649,7 @@ static const uint16_t ts_small_parse_table[] = { [93179] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7696), 23, + ACTIONS(7807), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -119101,7 +118673,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7698), 29, + ACTIONS(7809), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -119134,7 +118706,7 @@ static const uint16_t ts_small_parse_table[] = { [93239] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7662), 23, + ACTIONS(7811), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -119158,7 +118730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7664), 29, + ACTIONS(7813), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -119191,7 +118763,7 @@ static const uint16_t ts_small_parse_table[] = { [93299] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7680), 23, + ACTIONS(7819), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -119215,7 +118787,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7682), 29, + ACTIONS(7821), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -119248,7 +118820,7 @@ static const uint16_t ts_small_parse_table[] = { [93359] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7692), 23, + ACTIONS(7819), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -119272,7 +118844,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7694), 29, + ACTIONS(7821), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -119305,7 +118877,7 @@ static const uint16_t ts_small_parse_table[] = { [93419] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7696), 23, + ACTIONS(7807), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -119329,7 +118901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7698), 29, + ACTIONS(7809), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -119362,7 +118934,7 @@ static const uint16_t ts_small_parse_table[] = { [93479] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7696), 23, + ACTIONS(7811), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -119386,7 +118958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7698), 29, + ACTIONS(7813), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -119419,7 +118991,7 @@ static const uint16_t ts_small_parse_table[] = { [93539] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7720), 23, + ACTIONS(7819), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -119443,7 +119015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7722), 29, + ACTIONS(7821), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -119476,7 +119048,7 @@ static const uint16_t ts_small_parse_table[] = { [93599] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7728), 23, + ACTIONS(7819), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -119500,7 +119072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7730), 29, + ACTIONS(7821), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -119533,7 +119105,7 @@ static const uint16_t ts_small_parse_table[] = { [93659] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7732), 23, + ACTIONS(7823), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -119557,7 +119129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7734), 29, + ACTIONS(7825), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -119590,7 +119162,7 @@ static const uint16_t ts_small_parse_table[] = { [93719] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7736), 23, + ACTIONS(7831), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -119614,7 +119186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7738), 29, + ACTIONS(7833), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -119647,7 +119219,7 @@ static const uint16_t ts_small_parse_table[] = { [93779] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7744), 23, + ACTIONS(7835), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -119671,7 +119243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7746), 29, + ACTIONS(7837), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -119704,7 +119276,7 @@ static const uint16_t ts_small_parse_table[] = { [93839] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7748), 23, + ACTIONS(7839), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -119728,7 +119300,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7750), 29, + ACTIONS(7841), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -119761,7 +119333,7 @@ static const uint16_t ts_small_parse_table[] = { [93899] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7744), 23, + ACTIONS(7843), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -119785,7 +119357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7746), 29, + ACTIONS(7845), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -119818,7 +119390,7 @@ static const uint16_t ts_small_parse_table[] = { [93959] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7748), 23, + ACTIONS(7847), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -119842,7 +119414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7750), 29, + ACTIONS(7849), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -119875,7 +119447,7 @@ static const uint16_t ts_small_parse_table[] = { [94019] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7752), 23, + ACTIONS(7843), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -119899,7 +119471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7754), 29, + ACTIONS(7845), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -119932,7 +119504,7 @@ static const uint16_t ts_small_parse_table[] = { [94079] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7736), 23, + ACTIONS(7847), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -119956,7 +119528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7738), 29, + ACTIONS(7849), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -119989,7 +119561,7 @@ static const uint16_t ts_small_parse_table[] = { [94139] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7744), 23, + ACTIONS(7855), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -120013,7 +119585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7746), 29, + ACTIONS(7857), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -120046,7 +119618,7 @@ static const uint16_t ts_small_parse_table[] = { [94199] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7748), 23, + ACTIONS(7839), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -120070,7 +119642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7750), 29, + ACTIONS(7841), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -120103,7 +119675,7 @@ static const uint16_t ts_small_parse_table[] = { [94259] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7744), 23, + ACTIONS(7843), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -120127,7 +119699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7746), 29, + ACTIONS(7845), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -120160,7 +119732,7 @@ static const uint16_t ts_small_parse_table[] = { [94319] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7748), 23, + ACTIONS(7847), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -120184,7 +119756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7750), 29, + ACTIONS(7849), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -120217,7 +119789,7 @@ static const uint16_t ts_small_parse_table[] = { [94379] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7752), 23, + ACTIONS(7843), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -120241,7 +119813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7754), 29, + ACTIONS(7845), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -120274,7 +119846,7 @@ static const uint16_t ts_small_parse_table[] = { [94439] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7770), 23, + ACTIONS(7847), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -120298,7 +119870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7772), 29, + ACTIONS(7849), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -120331,7 +119903,7 @@ static const uint16_t ts_small_parse_table[] = { [94499] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7774), 23, + ACTIONS(7855), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -120355,7 +119927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7776), 29, + ACTIONS(7857), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -120388,7 +119960,7 @@ static const uint16_t ts_small_parse_table[] = { [94559] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7774), 23, + ACTIONS(7863), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -120412,7 +119984,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7776), 29, + ACTIONS(7865), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -120445,7 +120017,7 @@ static const uint16_t ts_small_parse_table[] = { [94619] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7666), 23, + ACTIONS(7628), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -120469,7 +120041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7668), 29, + ACTIONS(7630), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -120502,7 +120074,7 @@ static const uint16_t ts_small_parse_table[] = { [94679] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7778), 23, + ACTIONS(7628), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -120526,7 +120098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7780), 29, + ACTIONS(7630), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -120559,7 +120131,7 @@ static const uint16_t ts_small_parse_table[] = { [94739] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7786), 23, + ACTIONS(7714), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -120583,7 +120155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7788), 29, + ACTIONS(7716), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -120616,7 +120188,7 @@ static const uint16_t ts_small_parse_table[] = { [94799] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7774), 23, + ACTIONS(7670), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -120640,7 +120212,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7776), 29, + ACTIONS(7672), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -120673,7 +120245,7 @@ static const uint16_t ts_small_parse_table[] = { [94859] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7774), 23, + ACTIONS(7628), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -120697,7 +120269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7776), 29, + ACTIONS(7630), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -120730,7 +120302,7 @@ static const uint16_t ts_small_parse_table[] = { [94919] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7778), 23, + ACTIONS(7628), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -120754,7 +120326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7780), 29, + ACTIONS(7630), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -120787,7 +120359,7 @@ static const uint16_t ts_small_parse_table[] = { [94979] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7786), 23, + ACTIONS(7714), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -120811,7 +120383,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7788), 29, + ACTIONS(7716), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -120844,7 +120416,7 @@ static const uint16_t ts_small_parse_table[] = { [95039] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7794), 23, + ACTIONS(7670), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -120868,7 +120440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7796), 29, + ACTIONS(7672), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -120901,7 +120473,7 @@ static const uint16_t ts_small_parse_table[] = { [95099] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7794), 23, + ACTIONS(7686), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -120925,7 +120497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7796), 29, + ACTIONS(7688), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -120966,13 +120538,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_cl, ACTIONS(7891), 1, anon_sym_do, - STATE(405), 1, + STATE(419), 1, sym_for_clause_word, - STATE(1280), 1, + STATE(1277), 1, aux_sym_for_clause_repeat1, - STATE(1611), 1, + STATE(1555), 1, sym__for_part, - ACTIONS(1632), 2, + ACTIONS(1488), 2, anon_sym_in, anon_sym_being, ACTIONS(7877), 2, @@ -120982,7 +120554,7 @@ static const uint16_t ts_small_parse_table[] = { sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(1634), 15, + ACTIONS(1490), 15, anon_sym_across, anon_sym_using, aux_sym_for_clause_word_token1, @@ -121032,13 +120604,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_cl, ACTIONS(7907), 1, anon_sym_do, - STATE(405), 1, + STATE(419), 1, sym_for_clause_word, - STATE(1280), 1, + STATE(1277), 1, aux_sym_for_clause_repeat1, - STATE(1611), 1, + STATE(1555), 1, sym__for_part, - ACTIONS(1632), 2, + ACTIONS(1488), 2, anon_sym_in, anon_sym_being, ACTIONS(7893), 2, @@ -121048,7 +120620,7 @@ static const uint16_t ts_small_parse_table[] = { sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(1634), 15, + ACTIONS(1490), 15, anon_sym_across, anon_sym_using, aux_sym_for_clause_word_token1, @@ -121098,13 +120670,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_cl, ACTIONS(7923), 1, anon_sym_do, - STATE(405), 1, + STATE(419), 1, sym_for_clause_word, - STATE(1280), 1, + STATE(1277), 1, aux_sym_for_clause_repeat1, - STATE(1611), 1, + STATE(1555), 1, sym__for_part, - ACTIONS(1632), 2, + ACTIONS(1488), 2, anon_sym_in, anon_sym_being, ACTIONS(7909), 2, @@ -121114,7 +120686,7 @@ static const uint16_t ts_small_parse_table[] = { sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(1634), 15, + ACTIONS(1490), 15, anon_sym_across, anon_sym_using, aux_sym_for_clause_word_token1, @@ -121164,13 +120736,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_cl, ACTIONS(7939), 1, anon_sym_do, - STATE(405), 1, + STATE(419), 1, sym_for_clause_word, - STATE(1280), 1, + STATE(1277), 1, aux_sym_for_clause_repeat1, - STATE(1611), 1, + STATE(1555), 1, sym__for_part, - ACTIONS(1632), 2, + ACTIONS(1488), 2, anon_sym_in, anon_sym_being, ACTIONS(7925), 2, @@ -121180,7 +120752,7 @@ static const uint16_t ts_small_parse_table[] = { sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(1634), 15, + ACTIONS(1490), 15, anon_sym_across, anon_sym_using, aux_sym_for_clause_word_token1, @@ -121220,6 +120792,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_initially, [95475] = 13, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7928), 1, + anon_sym_POUND_, + ACTIONS(7931), 1, + anon_sym_COLON, + ACTIONS(7936), 1, + anon_sym_cl, + ACTIONS(7939), 1, + anon_sym_do, + STATE(419), 1, + sym_for_clause_word, + STATE(1277), 1, + aux_sym_for_clause_repeat1, + STATE(1555), 1, + sym__for_part, + ACTIONS(1488), 2, + anon_sym_in, + anon_sym_being, + ACTIONS(7925), 2, + sym__ws, + sym_comment, + STATE(2746), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(1490), 15, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + ACTIONS(7934), 22, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [95554] = 13, ACTIONS(47), 1, sym_block_comment, ACTIONS(7944), 1, @@ -121230,13 +120868,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_cl, ACTIONS(7955), 1, anon_sym_do, - STATE(405), 1, + STATE(419), 1, sym_for_clause_word, - STATE(1280), 1, + STATE(1277), 1, aux_sym_for_clause_repeat1, - STATE(1611), 1, + STATE(1555), 1, sym__for_part, - ACTIONS(1632), 2, + ACTIONS(1488), 2, anon_sym_in, anon_sym_being, ACTIONS(7941), 2, @@ -121246,7 +120884,7 @@ static const uint16_t ts_small_parse_table[] = { sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(1634), 15, + ACTIONS(1490), 15, anon_sym_across, anon_sym_using, aux_sym_for_clause_word_token1, @@ -121285,7 +120923,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [95554] = 13, + [95633] = 13, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7880), 1, + anon_sym_POUND_, + ACTIONS(7883), 1, + anon_sym_COLON, + ACTIONS(7888), 1, + anon_sym_cl, + ACTIONS(7891), 1, + anon_sym_do, + STATE(419), 1, + sym_for_clause_word, + STATE(1277), 1, + aux_sym_for_clause_repeat1, + STATE(1555), 1, + sym__for_part, + ACTIONS(1488), 2, + anon_sym_in, + anon_sym_being, + ACTIONS(7877), 2, + sym__ws, + sym_comment, + STATE(2746), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(1490), 15, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + ACTIONS(7886), 22, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [95712] = 13, ACTIONS(47), 1, sym_block_comment, ACTIONS(7960), 1, @@ -121296,13 +121000,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_cl, ACTIONS(7971), 1, anon_sym_do, - STATE(405), 1, + STATE(419), 1, sym_for_clause_word, - STATE(1280), 1, + STATE(1277), 1, aux_sym_for_clause_repeat1, - STATE(1611), 1, + STATE(1555), 1, sym__for_part, - ACTIONS(1632), 2, + ACTIONS(1488), 2, anon_sym_in, anon_sym_being, ACTIONS(7957), 2, @@ -121312,7 +121016,7 @@ static const uint16_t ts_small_parse_table[] = { sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(1634), 15, + ACTIONS(1490), 15, anon_sym_across, anon_sym_using, aux_sym_for_clause_word_token1, @@ -121351,7 +121055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [95633] = 13, + [95791] = 13, ACTIONS(47), 1, sym_block_comment, ACTIONS(7944), 1, @@ -121362,13 +121066,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_cl, ACTIONS(7955), 1, anon_sym_do, - STATE(405), 1, + STATE(419), 1, sym_for_clause_word, - STATE(1280), 1, + STATE(1277), 1, aux_sym_for_clause_repeat1, - STATE(1611), 1, + STATE(1555), 1, sym__for_part, - ACTIONS(1632), 2, + ACTIONS(1488), 2, anon_sym_in, anon_sym_being, ACTIONS(7941), 2, @@ -121378,7 +121082,7 @@ static const uint16_t ts_small_parse_table[] = { sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(1634), 15, + ACTIONS(1490), 15, anon_sym_across, anon_sym_using, aux_sym_for_clause_word_token1, @@ -121417,34 +121121,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [95712] = 13, + [95870] = 13, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7912), 1, + ACTIONS(7976), 1, anon_sym_POUND_, - ACTIONS(7915), 1, + ACTIONS(7979), 1, anon_sym_COLON, - ACTIONS(7920), 1, + ACTIONS(7984), 1, anon_sym_cl, - ACTIONS(7923), 1, + ACTIONS(7987), 1, anon_sym_do, - STATE(405), 1, + STATE(419), 1, sym_for_clause_word, - STATE(1280), 1, + STATE(1277), 1, aux_sym_for_clause_repeat1, - STATE(1611), 1, + STATE(1555), 1, sym__for_part, - ACTIONS(1632), 2, + ACTIONS(1488), 2, anon_sym_in, anon_sym_being, - ACTIONS(7909), 2, + ACTIONS(7973), 2, sym__ws, sym_comment, STATE(2746), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(1634), 15, + ACTIONS(1490), 15, anon_sym_across, anon_sym_using, aux_sym_for_clause_word_token1, @@ -121460,7 +121164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - ACTIONS(7918), 22, + ACTIONS(7982), 22, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -121483,34 +121187,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [95791] = 13, + [95949] = 13, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7928), 1, + ACTIONS(7880), 1, anon_sym_POUND_, - ACTIONS(7931), 1, + ACTIONS(7883), 1, anon_sym_COLON, - ACTIONS(7936), 1, + ACTIONS(7888), 1, anon_sym_cl, - ACTIONS(7939), 1, + ACTIONS(7891), 1, anon_sym_do, - STATE(405), 1, + STATE(419), 1, sym_for_clause_word, - STATE(1280), 1, + STATE(1277), 1, aux_sym_for_clause_repeat1, - STATE(1611), 1, + STATE(1555), 1, sym__for_part, - ACTIONS(1632), 2, + ACTIONS(1488), 2, anon_sym_in, anon_sym_being, - ACTIONS(7925), 2, + ACTIONS(7877), 2, sym__ws, sym_comment, STATE(2746), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(1634), 15, + ACTIONS(1490), 15, anon_sym_across, anon_sym_using, aux_sym_for_clause_word_token1, @@ -121526,7 +121230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - ACTIONS(7934), 22, + ACTIONS(7886), 22, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -121549,34 +121253,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [95870] = 13, + [96028] = 13, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7880), 1, + ACTIONS(7960), 1, anon_sym_POUND_, - ACTIONS(7883), 1, + ACTIONS(7963), 1, anon_sym_COLON, - ACTIONS(7888), 1, + ACTIONS(7968), 1, anon_sym_cl, - ACTIONS(7891), 1, + ACTIONS(7971), 1, anon_sym_do, - STATE(405), 1, + STATE(419), 1, sym_for_clause_word, - STATE(1280), 1, + STATE(1277), 1, aux_sym_for_clause_repeat1, - STATE(1611), 1, + STATE(1555), 1, sym__for_part, - ACTIONS(1632), 2, + ACTIONS(1488), 2, anon_sym_in, anon_sym_being, - ACTIONS(7877), 2, + ACTIONS(7957), 2, sym__ws, sym_comment, STATE(2746), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(1634), 15, + ACTIONS(1490), 15, anon_sym_across, anon_sym_using, aux_sym_for_clause_word_token1, @@ -121592,7 +121296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - ACTIONS(7886), 22, + ACTIONS(7966), 22, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -121615,34 +121319,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [95949] = 13, + [96107] = 13, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7880), 1, + ACTIONS(7896), 1, anon_sym_POUND_, - ACTIONS(7883), 1, + ACTIONS(7899), 1, anon_sym_COLON, - ACTIONS(7888), 1, + ACTIONS(7904), 1, anon_sym_cl, - ACTIONS(7891), 1, + ACTIONS(7907), 1, anon_sym_do, - STATE(405), 1, + STATE(419), 1, sym_for_clause_word, - STATE(1280), 1, + STATE(1277), 1, aux_sym_for_clause_repeat1, - STATE(1611), 1, + STATE(1555), 1, sym__for_part, - ACTIONS(1632), 2, + ACTIONS(1488), 2, anon_sym_in, anon_sym_being, - ACTIONS(7877), 2, + ACTIONS(7893), 2, sym__ws, sym_comment, STATE(2746), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(1634), 15, + ACTIONS(1490), 15, anon_sym_across, anon_sym_using, aux_sym_for_clause_word_token1, @@ -121658,7 +121362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - ACTIONS(7886), 22, + ACTIONS(7902), 22, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -121681,34 +121385,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [96028] = 13, + [96186] = 13, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7976), 1, + ACTIONS(7992), 1, anon_sym_POUND_, - ACTIONS(7979), 1, + ACTIONS(7995), 1, anon_sym_COLON, - ACTIONS(7984), 1, + ACTIONS(8000), 1, anon_sym_cl, - ACTIONS(7987), 1, + ACTIONS(8003), 1, anon_sym_do, - STATE(405), 1, + STATE(419), 1, sym_for_clause_word, - STATE(1280), 1, + STATE(1277), 1, aux_sym_for_clause_repeat1, - STATE(1611), 1, + STATE(1555), 1, sym__for_part, - ACTIONS(1632), 2, + ACTIONS(1488), 2, anon_sym_in, anon_sym_being, - ACTIONS(7973), 2, + ACTIONS(7989), 2, sym__ws, sym_comment, STATE(2746), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(1634), 15, + ACTIONS(1490), 15, anon_sym_across, anon_sym_using, aux_sym_for_clause_word_token1, @@ -121724,7 +121428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - ACTIONS(7982), 22, + ACTIONS(7998), 22, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -121747,34 +121451,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [96107] = 13, + [96265] = 13, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7928), 1, + ACTIONS(7992), 1, anon_sym_POUND_, - ACTIONS(7931), 1, + ACTIONS(7995), 1, anon_sym_COLON, - ACTIONS(7936), 1, + ACTIONS(8000), 1, anon_sym_cl, - ACTIONS(7939), 1, + ACTIONS(8003), 1, anon_sym_do, - STATE(405), 1, + STATE(419), 1, sym_for_clause_word, - STATE(1280), 1, + STATE(1277), 1, aux_sym_for_clause_repeat1, - STATE(1611), 1, + STATE(1555), 1, sym__for_part, - ACTIONS(1632), 2, + ACTIONS(1488), 2, anon_sym_in, anon_sym_being, - ACTIONS(7925), 2, + ACTIONS(7989), 2, sym__ws, sym_comment, STATE(2746), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(1634), 15, + ACTIONS(1490), 15, anon_sym_across, anon_sym_using, aux_sym_for_clause_word_token1, @@ -121790,7 +121494,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - ACTIONS(7934), 22, + ACTIONS(7998), 22, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -121813,34 +121517,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [96186] = 13, + [96344] = 13, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7960), 1, + ACTIONS(8008), 1, anon_sym_POUND_, - ACTIONS(7963), 1, + ACTIONS(8011), 1, anon_sym_COLON, - ACTIONS(7968), 1, + ACTIONS(8016), 1, anon_sym_cl, - ACTIONS(7971), 1, + ACTIONS(8019), 1, anon_sym_do, - STATE(405), 1, + STATE(419), 1, sym_for_clause_word, - STATE(1280), 1, + STATE(1277), 1, aux_sym_for_clause_repeat1, - STATE(1611), 1, + STATE(1555), 1, sym__for_part, - ACTIONS(1632), 2, + ACTIONS(1488), 2, anon_sym_in, anon_sym_being, - ACTIONS(7957), 2, + ACTIONS(8005), 2, sym__ws, sym_comment, STATE(2746), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(1634), 15, + ACTIONS(1490), 15, anon_sym_across, anon_sym_using, aux_sym_for_clause_word_token1, @@ -121856,7 +121560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - ACTIONS(7966), 22, + ACTIONS(8014), 22, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -121879,34 +121583,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [96265] = 13, + [96423] = 13, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7992), 1, + ACTIONS(8024), 1, anon_sym_POUND_, - ACTIONS(7995), 1, + ACTIONS(8027), 1, anon_sym_COLON, - ACTIONS(8000), 1, + ACTIONS(8032), 1, anon_sym_cl, - ACTIONS(8003), 1, + ACTIONS(8035), 1, anon_sym_do, - STATE(405), 1, + STATE(419), 1, sym_for_clause_word, - STATE(1280), 1, + STATE(1277), 1, aux_sym_for_clause_repeat1, - STATE(1611), 1, + STATE(1555), 1, sym__for_part, - ACTIONS(1632), 2, + ACTIONS(1488), 2, anon_sym_in, anon_sym_being, - ACTIONS(7989), 2, + ACTIONS(8021), 2, sym__ws, sym_comment, STATE(2746), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(1634), 15, + ACTIONS(1490), 15, anon_sym_across, anon_sym_using, aux_sym_for_clause_word_token1, @@ -121922,7 +121626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - ACTIONS(7998), 22, + ACTIONS(8030), 22, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -121945,34 +121649,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [96344] = 13, + [96502] = 13, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7960), 1, + ACTIONS(7896), 1, anon_sym_POUND_, - ACTIONS(7963), 1, + ACTIONS(7899), 1, anon_sym_COLON, - ACTIONS(7968), 1, + ACTIONS(7904), 1, anon_sym_cl, - ACTIONS(7971), 1, + ACTIONS(7907), 1, anon_sym_do, - STATE(405), 1, + STATE(419), 1, sym_for_clause_word, - STATE(1280), 1, + STATE(1277), 1, aux_sym_for_clause_repeat1, - STATE(1611), 1, + STATE(1555), 1, sym__for_part, - ACTIONS(1632), 2, + ACTIONS(1488), 2, anon_sym_in, anon_sym_being, - ACTIONS(7957), 2, + ACTIONS(7893), 2, sym__ws, sym_comment, STATE(2746), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(1634), 15, + ACTIONS(1490), 15, anon_sym_across, anon_sym_using, aux_sym_for_clause_word_token1, @@ -121988,7 +121692,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - ACTIONS(7966), 22, + ACTIONS(7902), 22, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -122011,7 +121715,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [96423] = 13, + [96581] = 13, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8024), 1, + anon_sym_POUND_, + ACTIONS(8027), 1, + anon_sym_COLON, + ACTIONS(8032), 1, + anon_sym_cl, + ACTIONS(8035), 1, + anon_sym_do, + STATE(419), 1, + sym_for_clause_word, + STATE(1277), 1, + aux_sym_for_clause_repeat1, + STATE(1555), 1, + sym__for_part, + ACTIONS(1488), 2, + anon_sym_in, + anon_sym_being, + ACTIONS(8021), 2, + sym__ws, + sym_comment, + STATE(2746), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(1490), 15, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + ACTIONS(8030), 22, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [96660] = 13, ACTIONS(47), 1, sym_block_comment, ACTIONS(7992), 1, @@ -122022,13 +121792,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_cl, ACTIONS(8003), 1, anon_sym_do, - STATE(405), 1, + STATE(419), 1, sym_for_clause_word, - STATE(1280), 1, + STATE(1277), 1, aux_sym_for_clause_repeat1, - STATE(1611), 1, + STATE(1555), 1, sym__for_part, - ACTIONS(1632), 2, + ACTIONS(1488), 2, anon_sym_in, anon_sym_being, ACTIONS(7989), 2, @@ -122038,7 +121808,7 @@ static const uint16_t ts_small_parse_table[] = { sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(1634), 15, + ACTIONS(1490), 15, anon_sym_across, anon_sym_using, aux_sym_for_clause_word_token1, @@ -122077,34 +121847,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [96502] = 13, + [96739] = 13, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8008), 1, + ACTIONS(8040), 1, anon_sym_POUND_, - ACTIONS(8011), 1, + ACTIONS(8043), 1, anon_sym_COLON, - ACTIONS(8016), 1, + ACTIONS(8048), 1, anon_sym_cl, - ACTIONS(8019), 1, + ACTIONS(8051), 1, anon_sym_do, - STATE(405), 1, + STATE(419), 1, sym_for_clause_word, - STATE(1280), 1, + STATE(1277), 1, aux_sym_for_clause_repeat1, - STATE(1611), 1, + STATE(1555), 1, sym__for_part, - ACTIONS(1632), 2, + ACTIONS(1488), 2, anon_sym_in, anon_sym_being, - ACTIONS(8005), 2, + ACTIONS(8037), 2, sym__ws, sym_comment, STATE(2746), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(1634), 15, + ACTIONS(1490), 15, anon_sym_across, anon_sym_using, aux_sym_for_clause_word_token1, @@ -122120,7 +121890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - ACTIONS(8014), 22, + ACTIONS(8046), 22, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -122143,34 +121913,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [96581] = 13, + [96818] = 13, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8024), 1, + ACTIONS(7976), 1, anon_sym_POUND_, - ACTIONS(8027), 1, + ACTIONS(7979), 1, anon_sym_COLON, - ACTIONS(8032), 1, + ACTIONS(7984), 1, anon_sym_cl, - ACTIONS(8035), 1, + ACTIONS(7987), 1, anon_sym_do, - STATE(405), 1, + STATE(419), 1, sym_for_clause_word, - STATE(1280), 1, + STATE(1277), 1, aux_sym_for_clause_repeat1, - STATE(1611), 1, + STATE(1555), 1, sym__for_part, - ACTIONS(1632), 2, + ACTIONS(1488), 2, anon_sym_in, anon_sym_being, - ACTIONS(8021), 2, + ACTIONS(7973), 2, sym__ws, sym_comment, STATE(2746), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(1634), 15, + ACTIONS(1490), 15, anon_sym_across, anon_sym_using, aux_sym_for_clause_word_token1, @@ -122186,7 +121956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - ACTIONS(8030), 22, + ACTIONS(7982), 22, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -122209,34 +121979,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [96660] = 13, + [96897] = 13, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8008), 1, + ACTIONS(8056), 1, anon_sym_POUND_, - ACTIONS(8011), 1, + ACTIONS(8059), 1, anon_sym_COLON, - ACTIONS(8016), 1, + ACTIONS(8064), 1, anon_sym_cl, - ACTIONS(8019), 1, + ACTIONS(8073), 1, anon_sym_do, - STATE(405), 1, + STATE(419), 1, sym_for_clause_word, - STATE(1280), 1, + STATE(1277), 1, + aux_sym_for_clause_repeat1, + STATE(1555), 1, + sym__for_part, + ACTIONS(8053), 2, + sym__ws, + sym_comment, + ACTIONS(8067), 2, + anon_sym_in, + anon_sym_being, + STATE(2746), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8070), 15, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + ACTIONS(8062), 22, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [96976] = 13, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7912), 1, + anon_sym_POUND_, + ACTIONS(7915), 1, + anon_sym_COLON, + ACTIONS(7920), 1, + anon_sym_cl, + ACTIONS(7923), 1, + anon_sym_do, + STATE(419), 1, + sym_for_clause_word, + STATE(1277), 1, aux_sym_for_clause_repeat1, - STATE(1611), 1, + STATE(1555), 1, sym__for_part, - ACTIONS(1632), 2, + ACTIONS(1488), 2, anon_sym_in, anon_sym_being, - ACTIONS(8005), 2, + ACTIONS(7909), 2, sym__ws, sym_comment, STATE(2746), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(1634), 15, + ACTIONS(1490), 15, anon_sym_across, anon_sym_using, aux_sym_for_clause_word_token1, @@ -122252,7 +122088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - ACTIONS(8014), 22, + ACTIONS(7918), 22, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -122275,34 +122111,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [96739] = 13, + [97055] = 13, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7912), 1, + ACTIONS(7976), 1, anon_sym_POUND_, - ACTIONS(7915), 1, + ACTIONS(7979), 1, anon_sym_COLON, - ACTIONS(7920), 1, + ACTIONS(7984), 1, anon_sym_cl, - ACTIONS(7923), 1, + ACTIONS(7987), 1, anon_sym_do, - STATE(405), 1, + STATE(419), 1, sym_for_clause_word, - STATE(1280), 1, + STATE(1277), 1, aux_sym_for_clause_repeat1, - STATE(1611), 1, + STATE(1555), 1, sym__for_part, - ACTIONS(1632), 2, + ACTIONS(1488), 2, anon_sym_in, anon_sym_being, - ACTIONS(7909), 2, + ACTIONS(7973), 2, sym__ws, sym_comment, STATE(2746), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(1634), 15, + ACTIONS(1490), 15, anon_sym_across, anon_sym_using, aux_sym_for_clause_word_token1, @@ -122318,7 +122154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - ACTIONS(7918), 22, + ACTIONS(7982), 22, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -122341,34 +122177,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [96818] = 13, + [97134] = 13, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7992), 1, + ACTIONS(7944), 1, anon_sym_POUND_, - ACTIONS(7995), 1, + ACTIONS(7947), 1, anon_sym_COLON, - ACTIONS(8000), 1, + ACTIONS(7952), 1, anon_sym_cl, - ACTIONS(8003), 1, + ACTIONS(7955), 1, anon_sym_do, - STATE(405), 1, + STATE(419), 1, sym_for_clause_word, - STATE(1280), 1, + STATE(1277), 1, aux_sym_for_clause_repeat1, - STATE(1611), 1, + STATE(1555), 1, sym__for_part, - ACTIONS(1632), 2, + ACTIONS(1488), 2, anon_sym_in, anon_sym_being, - ACTIONS(7989), 2, + ACTIONS(7941), 2, sym__ws, sym_comment, STATE(2746), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(1634), 15, + ACTIONS(1490), 15, anon_sym_across, anon_sym_using, aux_sym_for_clause_word_token1, @@ -122384,7 +122220,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - ACTIONS(7998), 22, + ACTIONS(7950), 22, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -122407,34 +122243,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [96897] = 13, + [97213] = 13, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8040), 1, + ACTIONS(8078), 1, anon_sym_POUND_, - ACTIONS(8043), 1, + ACTIONS(8081), 1, anon_sym_COLON, - ACTIONS(8048), 1, + ACTIONS(8086), 1, anon_sym_cl, - ACTIONS(8051), 1, + ACTIONS(8089), 1, anon_sym_do, - STATE(405), 1, + STATE(419), 1, sym_for_clause_word, - STATE(1280), 1, + STATE(1277), 1, aux_sym_for_clause_repeat1, - STATE(1611), 1, + STATE(1555), 1, sym__for_part, - ACTIONS(1632), 2, + ACTIONS(1488), 2, anon_sym_in, anon_sym_being, - ACTIONS(8037), 2, + ACTIONS(8075), 2, sym__ws, sym_comment, STATE(2746), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(1634), 15, + ACTIONS(1490), 15, anon_sym_across, anon_sym_using, aux_sym_for_clause_word_token1, @@ -122450,7 +122286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - ACTIONS(8046), 22, + ACTIONS(8084), 22, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -122473,34 +122309,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [96976] = 13, + [97292] = 13, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8056), 1, + ACTIONS(7912), 1, anon_sym_POUND_, - ACTIONS(8059), 1, + ACTIONS(7915), 1, anon_sym_COLON, - ACTIONS(8064), 1, + ACTIONS(7920), 1, anon_sym_cl, - ACTIONS(8067), 1, + ACTIONS(7923), 1, anon_sym_do, - STATE(405), 1, + STATE(419), 1, sym_for_clause_word, - STATE(1280), 1, + STATE(1277), 1, aux_sym_for_clause_repeat1, - STATE(1611), 1, + STATE(1555), 1, sym__for_part, - ACTIONS(1632), 2, + ACTIONS(1488), 2, anon_sym_in, anon_sym_being, - ACTIONS(8053), 2, + ACTIONS(7909), 2, sym__ws, sym_comment, STATE(2746), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(1634), 15, + ACTIONS(1490), 15, anon_sym_across, anon_sym_using, aux_sym_for_clause_word_token1, @@ -122516,7 +122352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - ACTIONS(8062), 22, + ACTIONS(7918), 22, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -122539,37 +122375,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [97055] = 13, + [97371] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7896), 1, + ACTIONS(8091), 1, + aux_sym_num_lit_token2, + ACTIONS(7443), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(7899), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7445), 26, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, anon_sym_COLON, - ACTIONS(7904), 1, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(7907), 1, - anon_sym_do, - STATE(405), 1, - sym_for_clause_word, - STATE(1280), 1, - aux_sym_for_clause_repeat1, - STATE(1611), 1, - sym__for_part, - ACTIONS(1632), 2, anon_sym_in, - anon_sym_being, - ACTIONS(7893), 2, - sym__ws, - sym_comment, - STATE(2746), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(1634), 15, anon_sym_across, + anon_sym_being, anon_sym_using, - aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, @@ -122582,60 +122431,204 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - ACTIONS(7902), 22, + [97431] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, + anon_sym_POUND_, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, + ACTIONS(8103), 1, anon_sym_RPAREN, + ACTIONS(8105), 1, + anon_sym_cl, + ACTIONS(8107), 1, aux_sym_accumulation_verb_token1, - anon_sym_for, + ACTIONS(8111), 1, anon_sym_and, - anon_sym_as, + ACTIONS(8113), 1, anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + STATE(432), 1, + sym_accumulation_verb, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3058), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8093), 2, + sym__ws, + sym_comment, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, anon_sym_while, anon_sym_until, - anon_sym_repeat, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1464), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [97134] = 13, + STATE(2696), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [97536] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8072), 1, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, - ACTIONS(8075), 1, + ACTIONS(8097), 1, anon_sym_COLON, - ACTIONS(8080), 1, + ACTIONS(8099), 1, + anon_sym_CARET, + ACTIONS(8101), 1, + anon_sym_POUND_CARET, + ACTIONS(8105), 1, anon_sym_cl, - ACTIONS(8089), 1, + ACTIONS(8107), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8111), 1, + anon_sym_and, + ACTIONS(8113), 1, + anon_sym_with, + ACTIONS(8115), 1, anon_sym_do, - STATE(405), 1, - sym_for_clause_word, - STATE(1280), 1, - aux_sym_for_clause_repeat1, - STATE(1611), 1, - sym__for_part, - ACTIONS(8069), 2, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8129), 1, + anon_sym_RPAREN, + STATE(432), 1, + sym_accumulation_verb, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3058), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8127), 2, sym__ws, sym_comment, - ACTIONS(8083), 2, - anon_sym_in, - anon_sym_being, - STATE(2746), 3, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1395), 4, sym__gap, sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(8086), 15, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2696), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [97641] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7643), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7645), 26, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_in, anon_sym_across, + anon_sym_being, anon_sym_using, - aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, @@ -122648,60 +122641,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - ACTIONS(8078), 22, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [97213] = 13, + [97698] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8056), 1, - anon_sym_POUND_, - ACTIONS(8059), 1, + ACTIONS(8131), 1, anon_sym_COLON, - ACTIONS(8064), 1, - anon_sym_cl, - ACTIONS(8067), 1, - anon_sym_do, - STATE(405), 1, - sym_for_clause_word, - STATE(1280), 1, - aux_sym_for_clause_repeat1, - STATE(1611), 1, - sym__for_part, - ACTIONS(1632), 2, - anon_sym_in, - anon_sym_being, - ACTIONS(8053), 2, + ACTIONS(8133), 1, + anon_sym_COLON_COLON, + ACTIONS(7477), 22, sym__ws, sym_comment, - STATE(2746), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(1634), 15, + anon_sym_POUND_, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7479), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_in, anon_sym_across, + anon_sym_being, anon_sym_using, - aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, @@ -122714,60 +122697,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - ACTIONS(8062), 22, + [97759] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8131), 1, + anon_sym_COLON, + ACTIONS(8133), 1, + anon_sym_COLON_COLON, + ACTIONS(7815), 22, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [97292] = 13, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7817), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [97820] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7896), 1, + ACTIONS(7827), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(7899), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7829), 26, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, anon_sym_COLON, - ACTIONS(7904), 1, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(7907), 1, - anon_sym_do, - STATE(405), 1, - sym_for_clause_word, - STATE(1280), 1, - aux_sym_for_clause_repeat1, - STATE(1611), 1, - sym__for_part, - ACTIONS(1632), 2, anon_sym_in, - anon_sym_being, - ACTIONS(7893), 2, - sym__ws, - sym_comment, - STATE(2746), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(1634), 15, anon_sym_across, + anon_sym_being, anon_sym_using, - aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, @@ -122780,35 +122807,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - ACTIONS(7902), 22, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [97371] = 4, + [97877] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8091), 1, - aux_sym_num_lit_token2, - ACTIONS(7443), 23, + ACTIONS(7851), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -122832,7 +122834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7445), 26, + ACTIONS(7853), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -122859,10 +122861,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [97431] = 3, + [97934] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7557), 23, + ACTIONS(7859), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -122886,7 +122888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7559), 26, + ACTIONS(7861), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -122913,10 +122915,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [97488] = 27, + [97991] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, + ACTIONS(4769), 1, anon_sym_LPAREN, ACTIONS(8095), 1, anon_sym_POUND_, @@ -122926,8 +122928,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(8103), 1, - anon_sym_RPAREN, ACTIONS(8105), 1, anon_sym_cl, ACTIONS(8107), 1, @@ -122942,15 +122942,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_repeat, ACTIONS(8123), 1, anon_sym_else, - STATE(909), 1, + ACTIONS(8135), 1, + anon_sym_RPAREN, + STATE(432), 1, sym_accumulation_verb, - STATE(2901), 1, + STATE(2903), 1, sym__metadata_lit, - STATE(2973), 1, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(3079), 1, + STATE(3058), 1, aux_sym_list_lit_repeat1, ACTIONS(8093), 2, sym__ws, @@ -122965,11 +122967,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(2648), 3, + STATE(2584), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1345), 4, + STATE(1464), 4, sym__gap, sym_dis_expr, sym_loop_clause, @@ -122981,7 +122983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2681), 9, + STATE(2696), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -122991,6250 +122993,2928 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [97593] = 27, + [98096] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(8095), 1, + ACTIONS(7453), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8097), 1, - anon_sym_COLON, - ACTIONS(8099), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(8105), 1, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7455), 26, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(8107), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8111), 1, - anon_sym_and, - ACTIONS(8113), 1, - anon_sym_with, - ACTIONS(8115), 1, - anon_sym_do, - ACTIONS(8119), 1, - anon_sym_repeat, - ACTIONS(8123), 1, - anon_sym_else, - ACTIONS(8127), 1, - anon_sym_RPAREN, - STATE(909), 1, - sym_accumulation_verb, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3079), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8093), 2, - sym__ws, - sym_comment, - ACTIONS(8109), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8117), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8125), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2648), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1345), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8121), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2681), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [97698] = 27, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [98153] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(8095), 1, + ACTIONS(7457), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8097), 1, - anon_sym_COLON, - ACTIONS(8099), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(8105), 1, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7459), 26, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(8107), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8111), 1, - anon_sym_and, - ACTIONS(8113), 1, - anon_sym_with, - ACTIONS(8115), 1, - anon_sym_do, - ACTIONS(8119), 1, - anon_sym_repeat, - ACTIONS(8123), 1, - anon_sym_else, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [98210] = 5, + ACTIONS(47), 1, + sym_block_comment, ACTIONS(8131), 1, - anon_sym_RPAREN, - STATE(909), 1, - sym_accumulation_verb, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3079), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8109), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8117), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8129), 2, + anon_sym_COLON, + ACTIONS(8133), 1, + anon_sym_COLON_COLON, + ACTIONS(7453), 22, sym__ws, sym_comment, - ACTIONS(8125), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2648), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1286), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8121), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2681), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [97803] = 27, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(8095), 1, anon_sym_POUND_, - ACTIONS(8097), 1, - anon_sym_COLON, - ACTIONS(8099), 1, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(8105), 1, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7455), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(8107), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8111), 1, - anon_sym_and, - ACTIONS(8113), 1, - anon_sym_with, - ACTIONS(8115), 1, - anon_sym_do, - ACTIONS(8119), 1, - anon_sym_repeat, - ACTIONS(8123), 1, - anon_sym_else, - ACTIONS(8131), 1, - anon_sym_RPAREN, - STATE(909), 1, - sym_accumulation_verb, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3079), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8093), 2, - sym__ws, - sym_comment, - ACTIONS(8109), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8117), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8125), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2648), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1345), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8121), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2681), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [97908] = 27, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [98271] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(8095), 1, + ACTIONS(7465), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8097), 1, - anon_sym_COLON, - ACTIONS(8099), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(8105), 1, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7467), 26, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(8107), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8111), 1, - anon_sym_and, - ACTIONS(8113), 1, - anon_sym_with, - ACTIONS(8115), 1, - anon_sym_do, - ACTIONS(8119), 1, - anon_sym_repeat, - ACTIONS(8123), 1, - anon_sym_else, - ACTIONS(8133), 1, - anon_sym_RPAREN, - STATE(909), 1, - sym_accumulation_verb, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3079), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8093), 2, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [98328] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7469), 23, sym__ws, sym_comment, - ACTIONS(8109), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8117), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8125), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2648), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1345), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8121), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2681), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [98013] = 27, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7471), 26, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [98385] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(8095), 1, + ACTIONS(7473), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8097), 1, - anon_sym_COLON, - ACTIONS(8099), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(8105), 1, - anon_sym_cl, - ACTIONS(8107), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8111), 1, - anon_sym_and, - ACTIONS(8113), 1, - anon_sym_with, - ACTIONS(8115), 1, - anon_sym_do, - ACTIONS(8119), 1, - anon_sym_repeat, - ACTIONS(8123), 1, - anon_sym_else, - ACTIONS(8133), 1, - anon_sym_RPAREN, - STATE(909), 1, - sym_accumulation_verb, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3079), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8109), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8117), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8135), 2, - sym__ws, - sym_comment, - ACTIONS(8125), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2648), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1288), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8121), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2681), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [98118] = 27, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(8095), 1, - anon_sym_POUND_, - ACTIONS(8097), 1, - anon_sym_COLON, - ACTIONS(8099), 1, - anon_sym_CARET, - ACTIONS(8101), 1, - anon_sym_POUND_CARET, - ACTIONS(8105), 1, - anon_sym_cl, - ACTIONS(8107), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8111), 1, - anon_sym_and, - ACTIONS(8113), 1, - anon_sym_with, - ACTIONS(8115), 1, - anon_sym_do, - ACTIONS(8119), 1, - anon_sym_repeat, - ACTIONS(8123), 1, - anon_sym_else, - ACTIONS(8139), 1, - anon_sym_RPAREN, - STATE(909), 1, - sym_accumulation_verb, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3079), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8109), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8117), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8137), 2, - sym__ws, - sym_comment, - ACTIONS(8125), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2648), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1289), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8121), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2681), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [98223] = 27, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(8095), 1, - anon_sym_POUND_, - ACTIONS(8097), 1, - anon_sym_COLON, - ACTIONS(8099), 1, - anon_sym_CARET, - ACTIONS(8101), 1, - anon_sym_POUND_CARET, - ACTIONS(8105), 1, - anon_sym_cl, - ACTIONS(8107), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8111), 1, - anon_sym_and, - ACTIONS(8113), 1, - anon_sym_with, - ACTIONS(8115), 1, - anon_sym_do, - ACTIONS(8119), 1, - anon_sym_repeat, - ACTIONS(8123), 1, - anon_sym_else, - ACTIONS(8139), 1, - anon_sym_RPAREN, - STATE(909), 1, - sym_accumulation_verb, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3079), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8093), 2, - sym__ws, - sym_comment, - ACTIONS(8109), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8117), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8125), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2648), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1345), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8121), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2681), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [98328] = 27, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(8095), 1, - anon_sym_POUND_, - ACTIONS(8097), 1, - anon_sym_COLON, - ACTIONS(8099), 1, - anon_sym_CARET, - ACTIONS(8101), 1, - anon_sym_POUND_CARET, - ACTIONS(8105), 1, - anon_sym_cl, - ACTIONS(8107), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8111), 1, - anon_sym_and, - ACTIONS(8113), 1, - anon_sym_with, - ACTIONS(8115), 1, - anon_sym_do, - ACTIONS(8119), 1, - anon_sym_repeat, - ACTIONS(8123), 1, - anon_sym_else, - ACTIONS(8143), 1, - anon_sym_RPAREN, - STATE(909), 1, - sym_accumulation_verb, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3079), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8109), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8117), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8141), 2, - sym__ws, - sym_comment, - ACTIONS(8125), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2648), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1318), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8121), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2681), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [98433] = 27, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(8095), 1, - anon_sym_POUND_, - ACTIONS(8097), 1, - anon_sym_COLON, - ACTIONS(8099), 1, - anon_sym_CARET, - ACTIONS(8101), 1, - anon_sym_POUND_CARET, - ACTIONS(8105), 1, - anon_sym_cl, - ACTIONS(8107), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8111), 1, - anon_sym_and, - ACTIONS(8113), 1, - anon_sym_with, - ACTIONS(8115), 1, - anon_sym_do, - ACTIONS(8119), 1, - anon_sym_repeat, - ACTIONS(8123), 1, - anon_sym_else, - ACTIONS(8147), 1, - anon_sym_RPAREN, - STATE(909), 1, - sym_accumulation_verb, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3079), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8109), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8117), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8145), 2, - sym__ws, - sym_comment, - ACTIONS(8125), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2648), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1292), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8121), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2681), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [98538] = 27, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(8095), 1, - anon_sym_POUND_, - ACTIONS(8097), 1, - anon_sym_COLON, - ACTIONS(8099), 1, - anon_sym_CARET, - ACTIONS(8101), 1, - anon_sym_POUND_CARET, - ACTIONS(8105), 1, - anon_sym_cl, - ACTIONS(8107), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8111), 1, - anon_sym_and, - ACTIONS(8113), 1, - anon_sym_with, - ACTIONS(8115), 1, - anon_sym_do, - ACTIONS(8119), 1, - anon_sym_repeat, - ACTIONS(8123), 1, - anon_sym_else, - ACTIONS(8149), 1, - anon_sym_RPAREN, - STATE(909), 1, - sym_accumulation_verb, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3079), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8093), 2, - sym__ws, - sym_comment, - ACTIONS(8109), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8117), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8125), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2648), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1345), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8121), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2681), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [98643] = 27, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(8095), 1, - anon_sym_POUND_, - ACTIONS(8097), 1, - anon_sym_COLON, - ACTIONS(8099), 1, - anon_sym_CARET, - ACTIONS(8101), 1, - anon_sym_POUND_CARET, - ACTIONS(8105), 1, - anon_sym_cl, - ACTIONS(8107), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8111), 1, - anon_sym_and, - ACTIONS(8113), 1, - anon_sym_with, - ACTIONS(8115), 1, - anon_sym_do, - ACTIONS(8119), 1, - anon_sym_repeat, - ACTIONS(8123), 1, - anon_sym_else, - ACTIONS(8153), 1, - anon_sym_RPAREN, - STATE(909), 1, - sym_accumulation_verb, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3079), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8109), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8117), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8151), 2, - sym__ws, - sym_comment, - ACTIONS(8125), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2648), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1295), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8121), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2681), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [98748] = 27, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(8095), 1, - anon_sym_POUND_, - ACTIONS(8097), 1, - anon_sym_COLON, - ACTIONS(8099), 1, - anon_sym_CARET, - ACTIONS(8101), 1, - anon_sym_POUND_CARET, - ACTIONS(8105), 1, - anon_sym_cl, - ACTIONS(8107), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8111), 1, - anon_sym_and, - ACTIONS(8113), 1, - anon_sym_with, - ACTIONS(8115), 1, - anon_sym_do, - ACTIONS(8119), 1, - anon_sym_repeat, - ACTIONS(8123), 1, - anon_sym_else, - ACTIONS(8153), 1, - anon_sym_RPAREN, - STATE(909), 1, - sym_accumulation_verb, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3079), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8093), 2, - sym__ws, - sym_comment, - ACTIONS(8109), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8117), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8125), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2648), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1345), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8121), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2681), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [98853] = 27, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(8095), 1, - anon_sym_POUND_, - ACTIONS(8097), 1, - anon_sym_COLON, - ACTIONS(8099), 1, - anon_sym_CARET, - ACTIONS(8101), 1, - anon_sym_POUND_CARET, - ACTIONS(8105), 1, - anon_sym_cl, - ACTIONS(8107), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8111), 1, - anon_sym_and, - ACTIONS(8113), 1, - anon_sym_with, - ACTIONS(8115), 1, - anon_sym_do, - ACTIONS(8119), 1, - anon_sym_repeat, - ACTIONS(8123), 1, - anon_sym_else, - ACTIONS(8155), 1, - anon_sym_RPAREN, - STATE(909), 1, - sym_accumulation_verb, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3079), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8093), 2, - sym__ws, - sym_comment, - ACTIONS(8109), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8117), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8125), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2648), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1345), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8121), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2681), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [98958] = 27, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(8095), 1, - anon_sym_POUND_, - ACTIONS(8097), 1, - anon_sym_COLON, - ACTIONS(8099), 1, - anon_sym_CARET, - ACTIONS(8101), 1, - anon_sym_POUND_CARET, - ACTIONS(8105), 1, - anon_sym_cl, - ACTIONS(8107), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8111), 1, - anon_sym_and, - ACTIONS(8113), 1, - anon_sym_with, - ACTIONS(8115), 1, - anon_sym_do, - ACTIONS(8119), 1, - anon_sym_repeat, - ACTIONS(8123), 1, - anon_sym_else, - ACTIONS(8155), 1, - anon_sym_RPAREN, - STATE(909), 1, - sym_accumulation_verb, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3079), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8109), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8117), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8157), 2, - sym__ws, - sym_comment, - ACTIONS(8125), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2648), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1297), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8121), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2681), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [99063] = 27, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(8095), 1, - anon_sym_POUND_, - ACTIONS(8097), 1, - anon_sym_COLON, - ACTIONS(8099), 1, - anon_sym_CARET, - ACTIONS(8101), 1, - anon_sym_POUND_CARET, - ACTIONS(8105), 1, - anon_sym_cl, - ACTIONS(8107), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8111), 1, - anon_sym_and, - ACTIONS(8113), 1, - anon_sym_with, - ACTIONS(8115), 1, - anon_sym_do, - ACTIONS(8119), 1, - anon_sym_repeat, - ACTIONS(8123), 1, - anon_sym_else, - ACTIONS(8161), 1, - anon_sym_RPAREN, - STATE(909), 1, - sym_accumulation_verb, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3079), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8109), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8117), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8159), 2, - sym__ws, - sym_comment, - ACTIONS(8125), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2648), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1298), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8121), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2681), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [99168] = 27, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(8095), 1, - anon_sym_POUND_, - ACTIONS(8097), 1, - anon_sym_COLON, - ACTIONS(8099), 1, - anon_sym_CARET, - ACTIONS(8101), 1, - anon_sym_POUND_CARET, - ACTIONS(8105), 1, - anon_sym_cl, - ACTIONS(8107), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8111), 1, - anon_sym_and, - ACTIONS(8113), 1, - anon_sym_with, - ACTIONS(8115), 1, - anon_sym_do, - ACTIONS(8119), 1, - anon_sym_repeat, - ACTIONS(8123), 1, - anon_sym_else, - ACTIONS(8161), 1, - anon_sym_RPAREN, - STATE(909), 1, - sym_accumulation_verb, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3079), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8093), 2, - sym__ws, - sym_comment, - ACTIONS(8109), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8117), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8125), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2648), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1345), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8121), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2681), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [99273] = 27, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(8095), 1, - anon_sym_POUND_, - ACTIONS(8097), 1, - anon_sym_COLON, - ACTIONS(8099), 1, - anon_sym_CARET, - ACTIONS(8101), 1, - anon_sym_POUND_CARET, - ACTIONS(8105), 1, - anon_sym_cl, - ACTIONS(8107), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8111), 1, - anon_sym_and, - ACTIONS(8113), 1, - anon_sym_with, - ACTIONS(8115), 1, - anon_sym_do, - ACTIONS(8119), 1, - anon_sym_repeat, - ACTIONS(8123), 1, - anon_sym_else, - ACTIONS(8165), 1, - anon_sym_RPAREN, - STATE(909), 1, - sym_accumulation_verb, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3079), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8109), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8117), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8163), 2, - sym__ws, - sym_comment, - ACTIONS(8125), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2648), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1301), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8121), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2681), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [99378] = 27, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(8095), 1, - anon_sym_POUND_, - ACTIONS(8097), 1, - anon_sym_COLON, - ACTIONS(8099), 1, - anon_sym_CARET, - ACTIONS(8101), 1, - anon_sym_POUND_CARET, - ACTIONS(8105), 1, - anon_sym_cl, - ACTIONS(8107), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8111), 1, - anon_sym_and, - ACTIONS(8113), 1, - anon_sym_with, - ACTIONS(8115), 1, - anon_sym_do, - ACTIONS(8119), 1, - anon_sym_repeat, - ACTIONS(8123), 1, - anon_sym_else, - ACTIONS(8167), 1, - anon_sym_RPAREN, - STATE(909), 1, - sym_accumulation_verb, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3079), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8093), 2, - sym__ws, - sym_comment, - ACTIONS(8109), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8117), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8125), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2648), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1345), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8121), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2681), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [99483] = 27, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(8095), 1, - anon_sym_POUND_, - ACTIONS(8097), 1, - anon_sym_COLON, - ACTIONS(8099), 1, - anon_sym_CARET, - ACTIONS(8101), 1, - anon_sym_POUND_CARET, - ACTIONS(8105), 1, - anon_sym_cl, - ACTIONS(8107), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8111), 1, - anon_sym_and, - ACTIONS(8113), 1, - anon_sym_with, - ACTIONS(8115), 1, - anon_sym_do, - ACTIONS(8119), 1, - anon_sym_repeat, - ACTIONS(8123), 1, - anon_sym_else, - ACTIONS(8171), 1, - anon_sym_RPAREN, - STATE(909), 1, - sym_accumulation_verb, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3079), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8109), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8117), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8169), 2, - sym__ws, - sym_comment, - ACTIONS(8125), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2648), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1303), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8121), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2681), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [99588] = 27, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(8095), 1, - anon_sym_POUND_, - ACTIONS(8097), 1, - anon_sym_COLON, - ACTIONS(8099), 1, - anon_sym_CARET, - ACTIONS(8101), 1, - anon_sym_POUND_CARET, - ACTIONS(8105), 1, - anon_sym_cl, - ACTIONS(8107), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8111), 1, - anon_sym_and, - ACTIONS(8113), 1, - anon_sym_with, - ACTIONS(8115), 1, - anon_sym_do, - ACTIONS(8119), 1, - anon_sym_repeat, - ACTIONS(8123), 1, - anon_sym_else, - ACTIONS(8171), 1, - anon_sym_RPAREN, - STATE(909), 1, - sym_accumulation_verb, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3079), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8093), 2, - sym__ws, - sym_comment, - ACTIONS(8109), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8117), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8125), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2648), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1345), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8121), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2681), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [99693] = 27, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(8095), 1, - anon_sym_POUND_, - ACTIONS(8097), 1, - anon_sym_COLON, - ACTIONS(8099), 1, - anon_sym_CARET, - ACTIONS(8101), 1, - anon_sym_POUND_CARET, - ACTIONS(8105), 1, - anon_sym_cl, - ACTIONS(8107), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8111), 1, - anon_sym_and, - ACTIONS(8113), 1, - anon_sym_with, - ACTIONS(8115), 1, - anon_sym_do, - ACTIONS(8119), 1, - anon_sym_repeat, - ACTIONS(8123), 1, - anon_sym_else, - ACTIONS(8173), 1, - anon_sym_RPAREN, - STATE(909), 1, - sym_accumulation_verb, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3079), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8093), 2, - sym__ws, - sym_comment, - ACTIONS(8109), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8117), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8125), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2648), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1345), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8121), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2681), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [99798] = 27, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(8095), 1, - anon_sym_POUND_, - ACTIONS(8097), 1, - anon_sym_COLON, - ACTIONS(8099), 1, - anon_sym_CARET, - ACTIONS(8101), 1, - anon_sym_POUND_CARET, - ACTIONS(8105), 1, - anon_sym_cl, - ACTIONS(8107), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8111), 1, - anon_sym_and, - ACTIONS(8113), 1, - anon_sym_with, - ACTIONS(8115), 1, - anon_sym_do, - ACTIONS(8119), 1, - anon_sym_repeat, - ACTIONS(8123), 1, - anon_sym_else, - ACTIONS(8173), 1, - anon_sym_RPAREN, - STATE(909), 1, - sym_accumulation_verb, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3079), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8109), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8117), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8175), 2, - sym__ws, - sym_comment, - ACTIONS(8125), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2648), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1305), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8121), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2681), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [99903] = 27, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(8095), 1, - anon_sym_POUND_, - ACTIONS(8097), 1, - anon_sym_COLON, - ACTIONS(8099), 1, - anon_sym_CARET, - ACTIONS(8101), 1, - anon_sym_POUND_CARET, - ACTIONS(8105), 1, - anon_sym_cl, - ACTIONS(8107), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8111), 1, - anon_sym_and, - ACTIONS(8113), 1, - anon_sym_with, - ACTIONS(8115), 1, - anon_sym_do, - ACTIONS(8119), 1, - anon_sym_repeat, - ACTIONS(8123), 1, - anon_sym_else, - ACTIONS(8179), 1, - anon_sym_RPAREN, - STATE(909), 1, - sym_accumulation_verb, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3079), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8109), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8117), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8177), 2, - sym__ws, - sym_comment, - ACTIONS(8125), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2648), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1306), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8121), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2681), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [100008] = 27, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(8095), 1, - anon_sym_POUND_, - ACTIONS(8097), 1, - anon_sym_COLON, - ACTIONS(8099), 1, - anon_sym_CARET, - ACTIONS(8101), 1, - anon_sym_POUND_CARET, - ACTIONS(8105), 1, - anon_sym_cl, - ACTIONS(8107), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8111), 1, - anon_sym_and, - ACTIONS(8113), 1, - anon_sym_with, - ACTIONS(8115), 1, - anon_sym_do, - ACTIONS(8119), 1, - anon_sym_repeat, - ACTIONS(8123), 1, - anon_sym_else, - ACTIONS(8179), 1, - anon_sym_RPAREN, - STATE(909), 1, - sym_accumulation_verb, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3079), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8093), 2, - sym__ws, - sym_comment, - ACTIONS(8109), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8117), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8125), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2648), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1345), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8121), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2681), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [100113] = 27, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(8095), 1, - anon_sym_POUND_, - ACTIONS(8097), 1, - anon_sym_COLON, - ACTIONS(8099), 1, - anon_sym_CARET, - ACTIONS(8101), 1, - anon_sym_POUND_CARET, - ACTIONS(8105), 1, - anon_sym_cl, - ACTIONS(8107), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8111), 1, - anon_sym_and, - ACTIONS(8113), 1, - anon_sym_with, - ACTIONS(8115), 1, - anon_sym_do, - ACTIONS(8119), 1, - anon_sym_repeat, - ACTIONS(8123), 1, - anon_sym_else, - ACTIONS(8183), 1, - anon_sym_RPAREN, - STATE(909), 1, - sym_accumulation_verb, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3079), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8109), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8117), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8181), 2, - sym__ws, - sym_comment, - ACTIONS(8125), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2648), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1309), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8121), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2681), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [100218] = 27, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(8095), 1, - anon_sym_POUND_, - ACTIONS(8097), 1, - anon_sym_COLON, - ACTIONS(8099), 1, - anon_sym_CARET, - ACTIONS(8101), 1, - anon_sym_POUND_CARET, - ACTIONS(8105), 1, - anon_sym_cl, - ACTIONS(8107), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8111), 1, - anon_sym_and, - ACTIONS(8113), 1, - anon_sym_with, - ACTIONS(8115), 1, - anon_sym_do, - ACTIONS(8119), 1, - anon_sym_repeat, - ACTIONS(8123), 1, - anon_sym_else, - ACTIONS(8185), 1, - anon_sym_RPAREN, - STATE(909), 1, - sym_accumulation_verb, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3079), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8093), 2, - sym__ws, - sym_comment, - ACTIONS(8109), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8117), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8125), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2648), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1345), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8121), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2681), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [100323] = 27, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(8095), 1, - anon_sym_POUND_, - ACTIONS(8097), 1, - anon_sym_COLON, - ACTIONS(8099), 1, - anon_sym_CARET, - ACTIONS(8101), 1, - anon_sym_POUND_CARET, - ACTIONS(8105), 1, - anon_sym_cl, - ACTIONS(8107), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8111), 1, - anon_sym_and, - ACTIONS(8113), 1, - anon_sym_with, - ACTIONS(8115), 1, - anon_sym_do, - ACTIONS(8119), 1, - anon_sym_repeat, - ACTIONS(8123), 1, - anon_sym_else, - ACTIONS(8189), 1, - anon_sym_RPAREN, - STATE(909), 1, - sym_accumulation_verb, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3079), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8109), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8117), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8187), 2, - sym__ws, - sym_comment, - ACTIONS(8125), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2648), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1311), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8121), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2681), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [100428] = 27, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(8095), 1, - anon_sym_POUND_, - ACTIONS(8097), 1, - anon_sym_COLON, - ACTIONS(8099), 1, - anon_sym_CARET, - ACTIONS(8101), 1, - anon_sym_POUND_CARET, - ACTIONS(8105), 1, - anon_sym_cl, - ACTIONS(8107), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8111), 1, - anon_sym_and, - ACTIONS(8113), 1, - anon_sym_with, - ACTIONS(8115), 1, - anon_sym_do, - ACTIONS(8119), 1, - anon_sym_repeat, - ACTIONS(8123), 1, - anon_sym_else, - ACTIONS(8189), 1, - anon_sym_RPAREN, - STATE(909), 1, - sym_accumulation_verb, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3079), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8093), 2, - sym__ws, - sym_comment, - ACTIONS(8109), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8117), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8125), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2648), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1345), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8121), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2681), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [100533] = 27, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(8095), 1, - anon_sym_POUND_, - ACTIONS(8097), 1, - anon_sym_COLON, - ACTIONS(8099), 1, - anon_sym_CARET, - ACTIONS(8101), 1, - anon_sym_POUND_CARET, - ACTIONS(8103), 1, - anon_sym_RPAREN, - ACTIONS(8105), 1, - anon_sym_cl, - ACTIONS(8107), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8111), 1, - anon_sym_and, - ACTIONS(8113), 1, - anon_sym_with, - ACTIONS(8115), 1, - anon_sym_do, - ACTIONS(8119), 1, - anon_sym_repeat, - ACTIONS(8123), 1, - anon_sym_else, - STATE(909), 1, - sym_accumulation_verb, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3079), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8109), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8117), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8191), 2, - sym__ws, - sym_comment, - ACTIONS(8125), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2648), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1313), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8121), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2681), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [100638] = 27, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(8095), 1, - anon_sym_POUND_, - ACTIONS(8097), 1, - anon_sym_COLON, - ACTIONS(8099), 1, - anon_sym_CARET, - ACTIONS(8101), 1, - anon_sym_POUND_CARET, - ACTIONS(8105), 1, - anon_sym_cl, - ACTIONS(8107), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8111), 1, - anon_sym_and, - ACTIONS(8113), 1, - anon_sym_with, - ACTIONS(8115), 1, - anon_sym_do, - ACTIONS(8119), 1, - anon_sym_repeat, - ACTIONS(8123), 1, - anon_sym_else, - ACTIONS(8195), 1, - anon_sym_RPAREN, - STATE(909), 1, - sym_accumulation_verb, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3079), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8109), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8117), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8193), 2, - sym__ws, - sym_comment, - ACTIONS(8125), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2648), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1285), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8121), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2681), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [100743] = 27, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(8095), 1, - anon_sym_POUND_, - ACTIONS(8097), 1, - anon_sym_COLON, - ACTIONS(8099), 1, - anon_sym_CARET, - ACTIONS(8101), 1, - anon_sym_POUND_CARET, - ACTIONS(8105), 1, - anon_sym_cl, - ACTIONS(8107), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8111), 1, - anon_sym_and, - ACTIONS(8113), 1, - anon_sym_with, - ACTIONS(8115), 1, - anon_sym_do, - ACTIONS(8119), 1, - anon_sym_repeat, - ACTIONS(8123), 1, - anon_sym_else, - ACTIONS(8195), 1, - anon_sym_RPAREN, - STATE(909), 1, - sym_accumulation_verb, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3079), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8093), 2, - sym__ws, - sym_comment, - ACTIONS(8109), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8117), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8125), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2648), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1345), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8121), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2681), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [100848] = 27, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(8095), 1, - anon_sym_POUND_, - ACTIONS(8097), 1, - anon_sym_COLON, - ACTIONS(8099), 1, - anon_sym_CARET, - ACTIONS(8101), 1, - anon_sym_POUND_CARET, - ACTIONS(8105), 1, - anon_sym_cl, - ACTIONS(8107), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8111), 1, - anon_sym_and, - ACTIONS(8113), 1, - anon_sym_with, - ACTIONS(8115), 1, - anon_sym_do, - ACTIONS(8119), 1, - anon_sym_repeat, - ACTIONS(8123), 1, - anon_sym_else, - ACTIONS(8199), 1, - anon_sym_RPAREN, - STATE(909), 1, - sym_accumulation_verb, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3079), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8109), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8117), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8197), 2, - sym__ws, - sym_comment, - ACTIONS(8125), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2648), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1316), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8121), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2681), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [100953] = 27, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(8095), 1, - anon_sym_POUND_, - ACTIONS(8097), 1, - anon_sym_COLON, - ACTIONS(8099), 1, - anon_sym_CARET, - ACTIONS(8101), 1, - anon_sym_POUND_CARET, - ACTIONS(8105), 1, - anon_sym_cl, - ACTIONS(8107), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8111), 1, - anon_sym_and, - ACTIONS(8113), 1, - anon_sym_with, - ACTIONS(8115), 1, - anon_sym_do, - ACTIONS(8119), 1, - anon_sym_repeat, - ACTIONS(8123), 1, - anon_sym_else, - ACTIONS(8201), 1, - anon_sym_RPAREN, - STATE(909), 1, - sym_accumulation_verb, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3079), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8093), 2, - sym__ws, - sym_comment, - ACTIONS(8109), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8117), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8125), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2648), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1345), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8121), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2681), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [101058] = 27, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(8095), 1, - anon_sym_POUND_, - ACTIONS(8097), 1, - anon_sym_COLON, - ACTIONS(8099), 1, - anon_sym_CARET, - ACTIONS(8101), 1, - anon_sym_POUND_CARET, - ACTIONS(8105), 1, - anon_sym_cl, - ACTIONS(8107), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8111), 1, - anon_sym_and, - ACTIONS(8113), 1, - anon_sym_with, - ACTIONS(8115), 1, - anon_sym_do, - ACTIONS(8119), 1, - anon_sym_repeat, - ACTIONS(8123), 1, - anon_sym_else, - ACTIONS(8203), 1, - anon_sym_RPAREN, - STATE(909), 1, - sym_accumulation_verb, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3079), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8093), 2, - sym__ws, - sym_comment, - ACTIONS(8109), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8117), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8125), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2648), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1345), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8121), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2681), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [101163] = 27, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(8095), 1, - anon_sym_POUND_, - ACTIONS(8097), 1, - anon_sym_COLON, - ACTIONS(8099), 1, - anon_sym_CARET, - ACTIONS(8101), 1, - anon_sym_POUND_CARET, - ACTIONS(8105), 1, - anon_sym_cl, - ACTIONS(8107), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8111), 1, - anon_sym_and, - ACTIONS(8113), 1, - anon_sym_with, - ACTIONS(8115), 1, - anon_sym_do, - ACTIONS(8119), 1, - anon_sym_repeat, - ACTIONS(8123), 1, - anon_sym_else, - ACTIONS(8201), 1, - anon_sym_RPAREN, - STATE(909), 1, - sym_accumulation_verb, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3079), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8109), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8117), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8205), 2, - sym__ws, - sym_comment, - ACTIONS(8125), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2648), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1349), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8121), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2681), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [101268] = 27, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(8095), 1, - anon_sym_POUND_, - ACTIONS(8097), 1, - anon_sym_COLON, - ACTIONS(8099), 1, - anon_sym_CARET, - ACTIONS(8101), 1, - anon_sym_POUND_CARET, - ACTIONS(8105), 1, - anon_sym_cl, - ACTIONS(8107), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8111), 1, - anon_sym_and, - ACTIONS(8113), 1, - anon_sym_with, - ACTIONS(8115), 1, - anon_sym_do, - ACTIONS(8119), 1, - anon_sym_repeat, - ACTIONS(8123), 1, - anon_sym_else, - ACTIONS(8209), 1, - anon_sym_RPAREN, - STATE(909), 1, - sym_accumulation_verb, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3079), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8109), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8117), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8207), 2, - sym__ws, - sym_comment, - ACTIONS(8125), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2648), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1319), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8121), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2681), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [101373] = 27, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(8095), 1, - anon_sym_POUND_, - ACTIONS(8097), 1, - anon_sym_COLON, - ACTIONS(8099), 1, - anon_sym_CARET, - ACTIONS(8101), 1, - anon_sym_POUND_CARET, - ACTIONS(8105), 1, - anon_sym_cl, - ACTIONS(8107), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8111), 1, - anon_sym_and, - ACTIONS(8113), 1, - anon_sym_with, - ACTIONS(8115), 1, - anon_sym_do, - ACTIONS(8119), 1, - anon_sym_repeat, - ACTIONS(8123), 1, - anon_sym_else, - ACTIONS(8209), 1, - anon_sym_RPAREN, - STATE(909), 1, - sym_accumulation_verb, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3079), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8093), 2, - sym__ws, - sym_comment, - ACTIONS(8109), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8117), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8125), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2648), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1345), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8121), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2681), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [101478] = 27, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4811), 1, anon_sym_LPAREN, - ACTIONS(8095), 1, - anon_sym_POUND_, - ACTIONS(8097), 1, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7475), 26, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, anon_sym_COLON, - ACTIONS(8099), 1, - anon_sym_CARET, - ACTIONS(8101), 1, - anon_sym_POUND_CARET, - ACTIONS(8105), 1, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(8107), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8111), 1, - anon_sym_and, - ACTIONS(8113), 1, - anon_sym_with, - ACTIONS(8115), 1, - anon_sym_do, - ACTIONS(8119), 1, - anon_sym_repeat, - ACTIONS(8123), 1, - anon_sym_else, - ACTIONS(8211), 1, - anon_sym_RPAREN, - STATE(909), 1, - sym_accumulation_verb, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3079), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8093), 2, - sym__ws, - sym_comment, - ACTIONS(8109), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8117), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8125), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2648), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1345), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8121), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2681), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [101583] = 27, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [98442] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(8095), 1, - anon_sym_POUND_, - ACTIONS(8097), 1, - anon_sym_COLON, - ACTIONS(8099), 1, - anon_sym_CARET, - ACTIONS(8101), 1, - anon_sym_POUND_CARET, - ACTIONS(8105), 1, - anon_sym_cl, - ACTIONS(8107), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8111), 1, - anon_sym_and, - ACTIONS(8113), 1, - anon_sym_with, - ACTIONS(8115), 1, - anon_sym_do, - ACTIONS(8119), 1, - anon_sym_repeat, - ACTIONS(8123), 1, - anon_sym_else, - ACTIONS(8211), 1, - anon_sym_RPAREN, - STATE(909), 1, - sym_accumulation_verb, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3079), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8109), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8117), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8213), 2, + ACTIONS(7487), 23, sym__ws, sym_comment, - ACTIONS(8125), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2648), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1322), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8121), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2681), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [101688] = 27, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(8095), 1, anon_sym_POUND_, - ACTIONS(8097), 1, - anon_sym_COLON, - ACTIONS(8099), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(8105), 1, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7489), 26, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(8107), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8111), 1, - anon_sym_and, - ACTIONS(8113), 1, - anon_sym_with, - ACTIONS(8115), 1, - anon_sym_do, - ACTIONS(8119), 1, - anon_sym_repeat, - ACTIONS(8123), 1, - anon_sym_else, - ACTIONS(8217), 1, - anon_sym_RPAREN, - STATE(909), 1, - sym_accumulation_verb, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3079), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8109), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8117), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8215), 2, - sym__ws, - sym_comment, - ACTIONS(8125), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2648), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1323), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8121), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2681), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [101793] = 27, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [98499] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(8095), 1, + ACTIONS(7491), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8097), 1, - anon_sym_COLON, - ACTIONS(8099), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(8105), 1, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7493), 26, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(8107), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8111), 1, - anon_sym_and, - ACTIONS(8113), 1, - anon_sym_with, - ACTIONS(8115), 1, - anon_sym_do, - ACTIONS(8119), 1, - anon_sym_repeat, - ACTIONS(8123), 1, - anon_sym_else, - ACTIONS(8217), 1, - anon_sym_RPAREN, - STATE(909), 1, - sym_accumulation_verb, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3079), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8093), 2, - sym__ws, - sym_comment, - ACTIONS(8109), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8117), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8125), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2648), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1345), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8121), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2681), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [101898] = 27, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [98556] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(8095), 1, + ACTIONS(7495), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8097), 1, - anon_sym_COLON, - ACTIONS(8099), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(8105), 1, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7497), 26, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(8107), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8111), 1, - anon_sym_and, - ACTIONS(8113), 1, - anon_sym_with, - ACTIONS(8115), 1, - anon_sym_do, - ACTIONS(8119), 1, - anon_sym_repeat, - ACTIONS(8123), 1, - anon_sym_else, - ACTIONS(8221), 1, - anon_sym_RPAREN, - STATE(909), 1, - sym_accumulation_verb, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3079), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8109), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8117), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8219), 2, - sym__ws, - sym_comment, - ACTIONS(8125), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2648), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1326), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8121), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2681), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [102003] = 27, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [98613] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(8095), 1, + ACTIONS(7465), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8097), 1, - anon_sym_COLON, - ACTIONS(8099), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(8105), 1, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7467), 26, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(8107), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8111), 1, - anon_sym_and, - ACTIONS(8113), 1, - anon_sym_with, - ACTIONS(8115), 1, - anon_sym_do, - ACTIONS(8119), 1, - anon_sym_repeat, - ACTIONS(8123), 1, - anon_sym_else, - ACTIONS(8223), 1, - anon_sym_RPAREN, - STATE(909), 1, - sym_accumulation_verb, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3079), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8093), 2, - sym__ws, - sym_comment, - ACTIONS(8109), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8117), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8125), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2648), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1345), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8121), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2681), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [102108] = 27, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [98670] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(8095), 1, + ACTIONS(7502), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8097), 1, - anon_sym_COLON, - ACTIONS(8099), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(8105), 1, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7504), 26, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(8107), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8111), 1, - anon_sym_and, - ACTIONS(8113), 1, - anon_sym_with, - ACTIONS(8115), 1, - anon_sym_do, - ACTIONS(8119), 1, - anon_sym_repeat, - ACTIONS(8123), 1, - anon_sym_else, - ACTIONS(8227), 1, - anon_sym_RPAREN, - STATE(909), 1, - sym_accumulation_verb, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3079), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8109), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8117), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8225), 2, - sym__ws, - sym_comment, - ACTIONS(8125), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2648), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1328), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8121), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2681), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [102213] = 27, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [98727] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(8095), 1, + ACTIONS(7506), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8097), 1, - anon_sym_COLON, - ACTIONS(8099), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(8105), 1, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7508), 26, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(8107), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8111), 1, - anon_sym_and, - ACTIONS(8113), 1, - anon_sym_with, - ACTIONS(8115), 1, - anon_sym_do, - ACTIONS(8119), 1, - anon_sym_repeat, - ACTIONS(8123), 1, - anon_sym_else, - ACTIONS(8227), 1, - anon_sym_RPAREN, - STATE(909), 1, - sym_accumulation_verb, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3079), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8093), 2, - sym__ws, - sym_comment, - ACTIONS(8109), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8117), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8125), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2648), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1345), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8121), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2681), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [102318] = 27, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [98784] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(8095), 1, + ACTIONS(7510), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8097), 1, - anon_sym_COLON, - ACTIONS(8099), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(8105), 1, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7512), 26, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(8107), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8111), 1, - anon_sym_and, - ACTIONS(8113), 1, - anon_sym_with, - ACTIONS(8115), 1, - anon_sym_do, - ACTIONS(8119), 1, - anon_sym_repeat, - ACTIONS(8123), 1, - anon_sym_else, - ACTIONS(8229), 1, - anon_sym_RPAREN, - STATE(909), 1, - sym_accumulation_verb, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3079), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8093), 2, - sym__ws, - sym_comment, - ACTIONS(8109), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8117), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8125), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2648), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1345), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8121), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2681), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [102423] = 27, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [98841] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(8095), 1, + ACTIONS(7517), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8097), 1, - anon_sym_COLON, - ACTIONS(8099), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(8105), 1, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7519), 26, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(8107), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8111), 1, - anon_sym_and, - ACTIONS(8113), 1, - anon_sym_with, - ACTIONS(8115), 1, - anon_sym_do, - ACTIONS(8119), 1, - anon_sym_repeat, - ACTIONS(8123), 1, - anon_sym_else, - ACTIONS(8229), 1, - anon_sym_RPAREN, - STATE(909), 1, - sym_accumulation_verb, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3079), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8109), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8117), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8231), 2, - sym__ws, - sym_comment, - ACTIONS(8125), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2648), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1330), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8121), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2681), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [102528] = 27, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [98898] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(8095), 1, + ACTIONS(7523), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8097), 1, - anon_sym_COLON, - ACTIONS(8099), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(8105), 1, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7525), 26, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(8107), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8111), 1, - anon_sym_and, - ACTIONS(8113), 1, - anon_sym_with, - ACTIONS(8115), 1, - anon_sym_do, - ACTIONS(8119), 1, - anon_sym_repeat, - ACTIONS(8123), 1, - anon_sym_else, - ACTIONS(8235), 1, - anon_sym_RPAREN, - STATE(909), 1, - sym_accumulation_verb, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3079), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8109), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8117), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8233), 2, - sym__ws, - sym_comment, - ACTIONS(8125), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2648), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1331), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8121), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2681), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [102633] = 27, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [98955] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(8095), 1, + ACTIONS(7527), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8097), 1, - anon_sym_COLON, - ACTIONS(8099), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(8105), 1, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7529), 26, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(8107), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8111), 1, - anon_sym_and, - ACTIONS(8113), 1, - anon_sym_with, - ACTIONS(8115), 1, - anon_sym_do, - ACTIONS(8119), 1, - anon_sym_repeat, - ACTIONS(8123), 1, - anon_sym_else, - ACTIONS(8235), 1, - anon_sym_RPAREN, - STATE(909), 1, - sym_accumulation_verb, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3079), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8093), 2, - sym__ws, - sym_comment, - ACTIONS(8109), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8117), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8125), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2648), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1345), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8121), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2681), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [102738] = 27, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [99012] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(8095), 1, + ACTIONS(7534), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8097), 1, - anon_sym_COLON, - ACTIONS(8099), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(8105), 1, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7536), 26, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(8107), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8111), 1, - anon_sym_and, - ACTIONS(8113), 1, - anon_sym_with, - ACTIONS(8115), 1, - anon_sym_do, - ACTIONS(8119), 1, - anon_sym_repeat, - ACTIONS(8123), 1, - anon_sym_else, - ACTIONS(8239), 1, - anon_sym_RPAREN, - STATE(909), 1, - sym_accumulation_verb, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3079), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8109), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8117), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8237), 2, - sym__ws, - sym_comment, - ACTIONS(8125), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2648), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1334), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8121), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2681), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [102843] = 27, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [99069] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(8095), 1, + ACTIONS(7538), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8097), 1, - anon_sym_COLON, - ACTIONS(8099), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(8105), 1, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7540), 26, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(8107), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8111), 1, - anon_sym_and, - ACTIONS(8113), 1, - anon_sym_with, - ACTIONS(8115), 1, - anon_sym_do, - ACTIONS(8119), 1, - anon_sym_repeat, - ACTIONS(8123), 1, - anon_sym_else, - ACTIONS(8241), 1, - anon_sym_RPAREN, - STATE(909), 1, - sym_accumulation_verb, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3079), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8093), 2, - sym__ws, - sym_comment, - ACTIONS(8109), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8117), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8125), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2648), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1345), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8121), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2681), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [102948] = 27, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [99126] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(8095), 1, + ACTIONS(7542), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8097), 1, - anon_sym_COLON, - ACTIONS(8099), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(8105), 1, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7544), 26, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(8107), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8111), 1, - anon_sym_and, - ACTIONS(8113), 1, - anon_sym_with, - ACTIONS(8115), 1, - anon_sym_do, - ACTIONS(8119), 1, - anon_sym_repeat, - ACTIONS(8123), 1, - anon_sym_else, - ACTIONS(8245), 1, - anon_sym_RPAREN, - STATE(909), 1, - sym_accumulation_verb, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3079), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8109), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8117), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8243), 2, - sym__ws, - sym_comment, - ACTIONS(8125), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2648), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1336), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8121), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2681), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [103053] = 27, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [99183] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(8095), 1, + ACTIONS(7546), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8097), 1, - anon_sym_COLON, - ACTIONS(8099), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(8105), 1, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7548), 26, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(8107), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8111), 1, - anon_sym_and, - ACTIONS(8113), 1, - anon_sym_with, - ACTIONS(8115), 1, - anon_sym_do, - ACTIONS(8119), 1, - anon_sym_repeat, - ACTIONS(8123), 1, - anon_sym_else, - ACTIONS(8245), 1, - anon_sym_RPAREN, - STATE(909), 1, - sym_accumulation_verb, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3079), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8093), 2, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [99240] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7550), 23, sym__ws, sym_comment, - ACTIONS(8109), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8117), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8125), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2648), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1345), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8121), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2681), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [103158] = 27, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7552), 26, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [99297] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(8095), 1, + ACTIONS(7465), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8097), 1, - anon_sym_COLON, - ACTIONS(8099), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(8105), 1, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7467), 26, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(8107), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8111), 1, - anon_sym_and, - ACTIONS(8113), 1, - anon_sym_with, - ACTIONS(8115), 1, - anon_sym_do, - ACTIONS(8119), 1, - anon_sym_repeat, - ACTIONS(8123), 1, - anon_sym_else, - ACTIONS(8247), 1, - anon_sym_RPAREN, - STATE(909), 1, - sym_accumulation_verb, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3079), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8093), 2, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [99354] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7561), 23, sym__ws, sym_comment, - ACTIONS(8109), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8117), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8125), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2648), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1345), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8121), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2681), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [103263] = 27, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7563), 26, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [99411] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(8095), 1, + ACTIONS(7565), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8097), 1, - anon_sym_COLON, - ACTIONS(8099), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(8105), 1, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7567), 26, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(8107), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8111), 1, - anon_sym_and, - ACTIONS(8113), 1, - anon_sym_with, - ACTIONS(8115), 1, - anon_sym_do, - ACTIONS(8119), 1, - anon_sym_repeat, - ACTIONS(8123), 1, - anon_sym_else, - ACTIONS(8247), 1, - anon_sym_RPAREN, - STATE(909), 1, - sym_accumulation_verb, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3079), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8109), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8117), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8249), 2, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [99468] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7569), 23, sym__ws, sym_comment, - ACTIONS(8125), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2648), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1338), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8121), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2681), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [103368] = 27, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7571), 26, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [99525] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(8095), 1, + ACTIONS(7576), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8097), 1, - anon_sym_COLON, - ACTIONS(8099), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(8105), 1, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7578), 26, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(8107), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8111), 1, - anon_sym_and, - ACTIONS(8113), 1, - anon_sym_with, - ACTIONS(8115), 1, - anon_sym_do, - ACTIONS(8119), 1, - anon_sym_repeat, - ACTIONS(8123), 1, - anon_sym_else, - ACTIONS(8253), 1, - anon_sym_RPAREN, - STATE(909), 1, - sym_accumulation_verb, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3079), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8109), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8117), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8251), 2, - sym__ws, - sym_comment, - ACTIONS(8125), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2648), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1363), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8121), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2681), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [103473] = 27, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [99582] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(8095), 1, + ACTIONS(7580), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8097), 1, - anon_sym_COLON, - ACTIONS(8099), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(8105), 1, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7582), 26, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(8107), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8111), 1, - anon_sym_and, - ACTIONS(8113), 1, - anon_sym_with, - ACTIONS(8115), 1, - anon_sym_do, - ACTIONS(8119), 1, - anon_sym_repeat, - ACTIONS(8123), 1, - anon_sym_else, - ACTIONS(8257), 1, - anon_sym_RPAREN, - STATE(909), 1, - sym_accumulation_verb, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3079), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8109), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8117), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8255), 2, - sym__ws, - sym_comment, - ACTIONS(8125), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2648), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1339), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8121), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2681), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [103578] = 27, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [99639] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(8095), 1, + ACTIONS(7584), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8097), 1, - anon_sym_COLON, - ACTIONS(8099), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(8105), 1, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7586), 26, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(8107), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8111), 1, - anon_sym_and, - ACTIONS(8113), 1, - anon_sym_with, - ACTIONS(8115), 1, - anon_sym_do, - ACTIONS(8119), 1, - anon_sym_repeat, - ACTIONS(8123), 1, - anon_sym_else, - ACTIONS(8257), 1, - anon_sym_RPAREN, - STATE(909), 1, - sym_accumulation_verb, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3079), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8093), 2, - sym__ws, - sym_comment, - ACTIONS(8109), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8117), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8125), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2648), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1345), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8121), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2681), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [103683] = 27, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [99696] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(8095), 1, + ACTIONS(7588), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8097), 1, - anon_sym_COLON, - ACTIONS(8099), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(8105), 1, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7590), 26, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(8107), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8111), 1, - anon_sym_and, - ACTIONS(8113), 1, - anon_sym_with, - ACTIONS(8115), 1, - anon_sym_do, - ACTIONS(8119), 1, - anon_sym_repeat, - ACTIONS(8123), 1, - anon_sym_else, - ACTIONS(8261), 1, - anon_sym_RPAREN, - STATE(909), 1, - sym_accumulation_verb, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3079), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8109), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8117), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8259), 2, - sym__ws, - sym_comment, - ACTIONS(8125), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2648), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1343), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8121), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2681), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [103788] = 27, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [99753] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8266), 1, + ACTIONS(7592), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8269), 1, - anon_sym_COLON, - ACTIONS(8272), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8275), 1, anon_sym_POUND_CARET, - ACTIONS(8278), 1, anon_sym_LPAREN, - ACTIONS(8281), 1, - anon_sym_RPAREN, - ACTIONS(8283), 1, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7594), 26, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(8286), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8292), 1, - anon_sym_and, - ACTIONS(8295), 1, - anon_sym_with, - ACTIONS(8298), 1, - anon_sym_do, - ACTIONS(8304), 1, - anon_sym_repeat, - ACTIONS(8310), 1, - anon_sym_else, - STATE(909), 1, - sym_accumulation_verb, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3079), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8263), 2, - sym__ws, - sym_comment, - ACTIONS(8289), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8301), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8313), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2648), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1345), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8307), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2681), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [103893] = 27, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [99810] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(8095), 1, + ACTIONS(7596), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8097), 1, - anon_sym_COLON, - ACTIONS(8099), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(8105), 1, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7598), 26, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(8107), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8111), 1, - anon_sym_and, - ACTIONS(8113), 1, - anon_sym_with, - ACTIONS(8115), 1, - anon_sym_do, - ACTIONS(8119), 1, - anon_sym_repeat, - ACTIONS(8123), 1, - anon_sym_else, - ACTIONS(8316), 1, - anon_sym_RPAREN, - STATE(909), 1, - sym_accumulation_verb, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3079), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8093), 2, - sym__ws, - sym_comment, - ACTIONS(8109), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8117), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8125), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2648), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1345), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8121), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2681), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [103998] = 27, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [99867] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(8095), 1, + ACTIONS(7600), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8097), 1, - anon_sym_COLON, - ACTIONS(8099), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(8105), 1, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7602), 26, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(8107), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8111), 1, - anon_sym_and, - ACTIONS(8113), 1, - anon_sym_with, - ACTIONS(8115), 1, - anon_sym_do, - ACTIONS(8119), 1, - anon_sym_repeat, - ACTIONS(8123), 1, - anon_sym_else, - ACTIONS(8320), 1, - anon_sym_RPAREN, - STATE(909), 1, - sym_accumulation_verb, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3079), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8109), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8117), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8318), 2, - sym__ws, - sym_comment, - ACTIONS(8125), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2648), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1346), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8121), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2681), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [104103] = 27, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [99924] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(8095), 1, + ACTIONS(7604), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8097), 1, - anon_sym_COLON, - ACTIONS(8099), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(8105), 1, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7606), 26, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(8107), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8111), 1, - anon_sym_and, - ACTIONS(8113), 1, - anon_sym_with, - ACTIONS(8115), 1, - anon_sym_do, - ACTIONS(8119), 1, - anon_sym_repeat, - ACTIONS(8123), 1, - anon_sym_else, - ACTIONS(8320), 1, - anon_sym_RPAREN, - STATE(909), 1, - sym_accumulation_verb, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3079), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8093), 2, - sym__ws, - sym_comment, - ACTIONS(8109), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8117), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8125), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2648), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1345), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8121), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2681), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [104208] = 27, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [99981] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(8095), 1, + ACTIONS(7608), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8097), 1, - anon_sym_COLON, - ACTIONS(8099), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(8105), 1, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7610), 26, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(8107), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8111), 1, - anon_sym_and, - ACTIONS(8113), 1, - anon_sym_with, - ACTIONS(8115), 1, - anon_sym_do, - ACTIONS(8119), 1, - anon_sym_repeat, - ACTIONS(8123), 1, - anon_sym_else, - ACTIONS(8253), 1, - anon_sym_RPAREN, - STATE(909), 1, - sym_accumulation_verb, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3079), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8093), 2, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [100038] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7612), 23, sym__ws, sym_comment, - ACTIONS(8109), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8117), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8125), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2648), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1345), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8121), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2681), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [104313] = 27, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7614), 26, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [100095] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(8095), 1, + ACTIONS(7616), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8097), 1, - anon_sym_COLON, - ACTIONS(8099), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(8105), 1, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7618), 26, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(8107), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8111), 1, - anon_sym_and, - ACTIONS(8113), 1, - anon_sym_with, - ACTIONS(8115), 1, - anon_sym_do, - ACTIONS(8119), 1, - anon_sym_repeat, - ACTIONS(8123), 1, - anon_sym_else, - ACTIONS(8322), 1, - anon_sym_RPAREN, - STATE(909), 1, - sym_accumulation_verb, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3079), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8093), 2, - sym__ws, - sym_comment, - ACTIONS(8109), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8117), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8125), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2648), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1345), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8121), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2681), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [104418] = 27, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [100152] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(8095), 1, + ACTIONS(7620), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8097), 1, - anon_sym_COLON, - ACTIONS(8099), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(8105), 1, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7622), 26, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(8107), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8111), 1, - anon_sym_and, - ACTIONS(8113), 1, - anon_sym_with, - ACTIONS(8115), 1, - anon_sym_do, - ACTIONS(8119), 1, - anon_sym_repeat, - ACTIONS(8123), 1, - anon_sym_else, - ACTIONS(8322), 1, - anon_sym_RPAREN, - STATE(909), 1, - sym_accumulation_verb, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3079), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8109), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8117), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8324), 2, - sym__ws, - sym_comment, - ACTIONS(8125), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2648), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1348), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8121), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2681), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [104523] = 27, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [100209] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(8095), 1, + ACTIONS(7624), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8097), 1, - anon_sym_COLON, - ACTIONS(8099), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(8105), 1, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7626), 26, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(8107), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8111), 1, - anon_sym_and, - ACTIONS(8113), 1, - anon_sym_with, - ACTIONS(8115), 1, - anon_sym_do, - ACTIONS(8119), 1, - anon_sym_repeat, - ACTIONS(8123), 1, - anon_sym_else, - ACTIONS(8328), 1, - anon_sym_RPAREN, - STATE(909), 1, - sym_accumulation_verb, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3079), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8109), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8117), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8326), 2, - sym__ws, - sym_comment, - ACTIONS(8125), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2648), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1350), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8121), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2681), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [104628] = 27, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [100266] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(8095), 1, + ACTIONS(7632), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8097), 1, - anon_sym_COLON, - ACTIONS(8099), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(8105), 1, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7634), 26, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(8107), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8111), 1, - anon_sym_and, - ACTIONS(8113), 1, - anon_sym_with, - ACTIONS(8115), 1, - anon_sym_do, - ACTIONS(8119), 1, - anon_sym_repeat, - ACTIONS(8123), 1, - anon_sym_else, - ACTIONS(8328), 1, - anon_sym_RPAREN, - STATE(909), 1, - sym_accumulation_verb, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3079), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8093), 2, - sym__ws, - sym_comment, - ACTIONS(8109), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8117), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8125), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2648), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1345), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8121), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2681), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [104733] = 27, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [100323] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(8095), 1, + ACTIONS(7636), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8097), 1, - anon_sym_COLON, - ACTIONS(8099), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(8105), 1, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7638), 26, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(8107), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8111), 1, - anon_sym_and, - ACTIONS(8113), 1, - anon_sym_with, - ACTIONS(8115), 1, - anon_sym_do, - ACTIONS(8119), 1, - anon_sym_repeat, - ACTIONS(8123), 1, - anon_sym_else, - ACTIONS(8332), 1, - anon_sym_RPAREN, - STATE(909), 1, - sym_accumulation_verb, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3079), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8109), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8117), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8330), 2, - sym__ws, - sym_comment, - ACTIONS(8125), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2648), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1353), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8121), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2681), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [104838] = 27, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [100380] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(8095), 1, + ACTIONS(7647), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8097), 1, - anon_sym_COLON, - ACTIONS(8099), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(8105), 1, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7649), 26, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(8107), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8111), 1, - anon_sym_and, - ACTIONS(8113), 1, - anon_sym_with, - ACTIONS(8115), 1, - anon_sym_do, - ACTIONS(8119), 1, - anon_sym_repeat, - ACTIONS(8123), 1, - anon_sym_else, - ACTIONS(8334), 1, - anon_sym_RPAREN, - STATE(909), 1, - sym_accumulation_verb, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3079), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8093), 2, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [100437] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7654), 23, sym__ws, sym_comment, - ACTIONS(8109), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8117), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8125), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2648), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1345), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8121), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2681), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [104943] = 27, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7656), 26, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [100494] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(8095), 1, + ACTIONS(7658), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8097), 1, - anon_sym_COLON, - ACTIONS(8099), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(8105), 1, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7660), 26, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(8107), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8111), 1, - anon_sym_and, - ACTIONS(8113), 1, - anon_sym_with, - ACTIONS(8115), 1, - anon_sym_do, - ACTIONS(8119), 1, - anon_sym_repeat, - ACTIONS(8123), 1, - anon_sym_else, - ACTIONS(8338), 1, - anon_sym_RPAREN, - STATE(909), 1, - sym_accumulation_verb, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3079), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8109), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8117), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8336), 2, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [100551] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7662), 23, sym__ws, sym_comment, - ACTIONS(8125), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2648), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1355), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8121), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2681), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [105048] = 27, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7664), 26, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [100608] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(8095), 1, + ACTIONS(7666), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8097), 1, - anon_sym_COLON, - ACTIONS(8099), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(8105), 1, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7668), 26, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(8107), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8111), 1, - anon_sym_and, - ACTIONS(8113), 1, - anon_sym_with, - ACTIONS(8115), 1, - anon_sym_do, - ACTIONS(8119), 1, - anon_sym_repeat, - ACTIONS(8123), 1, - anon_sym_else, - ACTIONS(8338), 1, - anon_sym_RPAREN, - STATE(909), 1, - sym_accumulation_verb, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3079), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8093), 2, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [100665] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7674), 23, sym__ws, sym_comment, - ACTIONS(8109), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8117), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8125), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2648), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1345), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8121), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2681), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [105153] = 27, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7676), 26, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [100722] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(8095), 1, + ACTIONS(7449), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8097), 1, - anon_sym_COLON, - ACTIONS(8099), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(8105), 1, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7451), 26, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(8107), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8111), 1, - anon_sym_and, - ACTIONS(8113), 1, - anon_sym_with, - ACTIONS(8115), 1, - anon_sym_do, - ACTIONS(8119), 1, - anon_sym_repeat, - ACTIONS(8123), 1, - anon_sym_else, - ACTIONS(8340), 1, - anon_sym_RPAREN, - STATE(909), 1, - sym_accumulation_verb, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3079), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8093), 2, - sym__ws, - sym_comment, - ACTIONS(8109), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8117), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8125), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2648), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1345), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8121), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2681), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [105258] = 27, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [100779] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(8095), 1, + ACTIONS(7678), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8097), 1, - anon_sym_COLON, - ACTIONS(8099), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(8105), 1, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7680), 26, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(8107), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8111), 1, - anon_sym_and, - ACTIONS(8113), 1, - anon_sym_with, - ACTIONS(8115), 1, - anon_sym_do, - ACTIONS(8119), 1, - anon_sym_repeat, - ACTIONS(8123), 1, - anon_sym_else, - ACTIONS(8340), 1, - anon_sym_RPAREN, - STATE(909), 1, - sym_accumulation_verb, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3079), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8109), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8117), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8342), 2, - sym__ws, - sym_comment, - ACTIONS(8125), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2648), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1357), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8121), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2681), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [105363] = 27, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [100836] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(8095), 1, + ACTIONS(7682), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8097), 1, - anon_sym_COLON, - ACTIONS(8099), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(8105), 1, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7684), 26, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(8107), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8111), 1, - anon_sym_and, - ACTIONS(8113), 1, - anon_sym_with, - ACTIONS(8115), 1, - anon_sym_do, - ACTIONS(8119), 1, - anon_sym_repeat, - ACTIONS(8123), 1, - anon_sym_else, - ACTIONS(8346), 1, - anon_sym_RPAREN, - STATE(909), 1, - sym_accumulation_verb, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3079), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8109), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8117), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8344), 2, - sym__ws, - sym_comment, - ACTIONS(8125), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2648), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1358), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8121), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2681), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [105468] = 27, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [100893] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(8095), 1, + ACTIONS(7686), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8097), 1, - anon_sym_COLON, - ACTIONS(8099), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(8105), 1, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7688), 26, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(8107), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8111), 1, - anon_sym_and, - ACTIONS(8113), 1, - anon_sym_with, - ACTIONS(8115), 1, - anon_sym_do, - ACTIONS(8119), 1, - anon_sym_repeat, - ACTIONS(8123), 1, - anon_sym_else, - ACTIONS(8346), 1, - anon_sym_RPAREN, - STATE(909), 1, - sym_accumulation_verb, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3079), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8093), 2, - sym__ws, - sym_comment, - ACTIONS(8109), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8117), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8125), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2648), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1345), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8121), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2681), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [105573] = 27, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [100950] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(8095), 1, + ACTIONS(7690), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8097), 1, - anon_sym_COLON, - ACTIONS(8099), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(8105), 1, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7692), 26, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(8107), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8111), 1, - anon_sym_and, - ACTIONS(8113), 1, - anon_sym_with, - ACTIONS(8115), 1, - anon_sym_do, - ACTIONS(8119), 1, - anon_sym_repeat, - ACTIONS(8123), 1, - anon_sym_else, - ACTIONS(8350), 1, - anon_sym_RPAREN, - STATE(909), 1, - sym_accumulation_verb, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3079), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8109), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8117), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8348), 2, - sym__ws, - sym_comment, - ACTIONS(8125), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2648), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1361), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8121), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2681), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [105678] = 27, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [101007] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(8095), 1, + ACTIONS(7694), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8097), 1, - anon_sym_COLON, - ACTIONS(8099), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(8105), 1, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7696), 26, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(8107), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8111), 1, - anon_sym_and, - ACTIONS(8113), 1, - anon_sym_with, - ACTIONS(8115), 1, - anon_sym_do, - ACTIONS(8119), 1, - anon_sym_repeat, - ACTIONS(8123), 1, - anon_sym_else, - ACTIONS(8352), 1, - anon_sym_RPAREN, - STATE(909), 1, - sym_accumulation_verb, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3079), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8093), 2, - sym__ws, - sym_comment, - ACTIONS(8109), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8117), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8125), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2648), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1345), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8121), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2681), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [105783] = 27, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [101064] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(8095), 1, + ACTIONS(7698), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8097), 1, - anon_sym_COLON, - ACTIONS(8099), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(8105), 1, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7700), 26, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(8107), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8111), 1, - anon_sym_and, - ACTIONS(8113), 1, - anon_sym_with, - ACTIONS(8115), 1, - anon_sym_do, - ACTIONS(8119), 1, - anon_sym_repeat, - ACTIONS(8123), 1, - anon_sym_else, - ACTIONS(8352), 1, - anon_sym_RPAREN, - STATE(909), 1, - sym_accumulation_verb, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3079), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8109), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8117), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8354), 2, - sym__ws, - sym_comment, - ACTIONS(8125), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2648), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1365), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8121), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2681), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [105888] = 27, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [101121] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(8095), 1, + ACTIONS(7702), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8097), 1, - anon_sym_COLON, - ACTIONS(8099), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(8105), 1, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7704), 26, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(8107), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8111), 1, - anon_sym_and, - ACTIONS(8113), 1, - anon_sym_with, - ACTIONS(8115), 1, - anon_sym_do, - ACTIONS(8119), 1, - anon_sym_repeat, - ACTIONS(8123), 1, - anon_sym_else, - ACTIONS(8356), 1, - anon_sym_RPAREN, - STATE(909), 1, - sym_accumulation_verb, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3079), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8093), 2, - sym__ws, - sym_comment, - ACTIONS(8109), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8117), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8125), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2648), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1345), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8121), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2681), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [105993] = 3, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [101178] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7794), 23, + ACTIONS(7706), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -129258,7 +125938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7796), 26, + ACTIONS(7708), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -129285,10 +125965,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [106050] = 3, + [101235] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7794), 23, + ACTIONS(7710), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -129312,7 +125992,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7796), 26, + ACTIONS(7712), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -129339,10 +126019,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [106107] = 3, + [101292] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7786), 23, + ACTIONS(7721), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -129366,7 +126046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7788), 26, + ACTIONS(7723), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -129393,10 +126073,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [106164] = 3, + [101349] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7778), 23, + ACTIONS(7721), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -129420,7 +126100,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7780), 26, + ACTIONS(7723), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -129447,10 +126127,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [106221] = 3, + [101406] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, + anon_sym_POUND_, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, + anon_sym_CARET, + ACTIONS(8101), 1, + anon_sym_POUND_CARET, + ACTIONS(8105), 1, + anon_sym_cl, + ACTIONS(8107), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8111), 1, + anon_sym_and, + ACTIONS(8113), 1, + anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8135), 1, + anon_sym_RPAREN, + STATE(432), 1, + sym_accumulation_verb, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3058), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8137), 2, + sym__ws, + sym_comment, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1465), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2696), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [101511] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7774), 23, + ACTIONS(7725), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -129474,7 +126232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7776), 26, + ACTIONS(7727), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -129501,10 +126259,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [106278] = 3, + [101568] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7774), 23, + ACTIONS(7732), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -129528,7 +126286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7776), 26, + ACTIONS(7734), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -129555,10 +126313,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [106335] = 3, + [101625] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7786), 23, + ACTIONS(7736), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -129582,7 +126340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7788), 26, + ACTIONS(7738), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -129609,10 +126367,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [106392] = 3, + [101682] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7778), 23, + ACTIONS(7736), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -129636,7 +126394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7780), 26, + ACTIONS(7738), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -129663,10 +126421,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [106449] = 3, + [101739] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7774), 23, + ACTIONS(7740), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -129690,7 +126448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7776), 26, + ACTIONS(7742), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -129717,10 +126475,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [106506] = 3, + [101796] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7774), 23, + ACTIONS(7744), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -129744,7 +126502,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7776), 26, + ACTIONS(7746), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -129771,10 +126529,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [106563] = 3, + [101853] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7770), 23, + ACTIONS(7748), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -129798,7 +126556,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7772), 26, + ACTIONS(7750), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -129825,7 +126583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [106620] = 3, + [101910] = 3, ACTIONS(47), 1, sym_block_comment, ACTIONS(7752), 23, @@ -129879,7 +126637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [106677] = 3, + [101967] = 3, ACTIONS(47), 1, sym_block_comment, ACTIONS(7748), 23, @@ -129906,7 +126664,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7750), 26, + ACTIONS(7750), 26, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [102024] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7752), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7754), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -129933,10 +126745,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [106734] = 3, + [102081] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7744), 23, + ACTIONS(7759), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -129960,7 +126772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7746), 26, + ACTIONS(7761), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -129987,10 +126799,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [106791] = 3, + [102138] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7748), 23, + ACTIONS(7763), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -130014,7 +126826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7750), 26, + ACTIONS(7765), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -130041,10 +126853,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [106848] = 3, + [102195] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7744), 23, + ACTIONS(7767), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -130068,7 +126880,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7746), 26, + ACTIONS(7769), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -130095,10 +126907,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [106905] = 3, + [102252] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7736), 23, + ACTIONS(7771), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -130122,7 +126934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7738), 26, + ACTIONS(7773), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -130149,10 +126961,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [106962] = 3, + [102309] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7752), 23, + ACTIONS(7775), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -130176,7 +126988,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7754), 26, + ACTIONS(7777), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -130203,10 +127015,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [107019] = 3, + [102366] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7748), 23, + ACTIONS(7779), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -130230,7 +127042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7750), 26, + ACTIONS(7781), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -130257,10 +127069,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [107076] = 3, + [102423] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7744), 23, + ACTIONS(7779), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -130284,7 +127096,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7746), 26, + ACTIONS(7781), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -130311,10 +127123,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [107133] = 3, + [102480] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7748), 23, + ACTIONS(7783), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -130338,7 +127150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7750), 26, + ACTIONS(7785), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -130365,10 +127177,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [107190] = 3, + [102537] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7744), 23, + ACTIONS(7783), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -130392,7 +127204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7746), 26, + ACTIONS(7785), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -130419,10 +127231,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [107247] = 3, + [102594] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7736), 23, + ACTIONS(7787), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -130446,7 +127258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7738), 26, + ACTIONS(7789), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -130473,10 +127285,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [107304] = 3, + [102651] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7732), 23, + ACTIONS(7791), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -130500,7 +127312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7734), 26, + ACTIONS(7793), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -130527,10 +127339,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [107361] = 3, + [102708] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7728), 23, + ACTIONS(7795), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -130554,7 +127366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7730), 26, + ACTIONS(7797), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -130581,10 +127393,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [107418] = 3, + [102765] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7720), 23, + ACTIONS(7799), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -130608,7 +127420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7722), 26, + ACTIONS(7801), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -130635,10 +127447,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [107475] = 3, + [102822] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7696), 23, + ACTIONS(7803), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -130662,7 +127474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7698), 26, + ACTIONS(7805), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -130689,10 +127501,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [107532] = 3, + [102879] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7696), 23, + ACTIONS(7807), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -130716,7 +127528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7698), 26, + ACTIONS(7809), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -130743,10 +127555,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [107589] = 3, + [102936] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7692), 23, + ACTIONS(7811), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -130770,7 +127582,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7694), 26, + ACTIONS(7813), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -130797,10 +127609,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [107646] = 3, + [102993] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7680), 23, + ACTIONS(7819), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -130824,7 +127636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7682), 26, + ACTIONS(7821), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -130851,10 +127663,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [107703] = 3, + [103050] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7696), 23, + ACTIONS(7819), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -130878,7 +127690,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7698), 26, + ACTIONS(7821), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -130905,10 +127717,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [107760] = 3, + [103107] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7696), 23, + ACTIONS(7807), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -130932,7 +127744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7698), 26, + ACTIONS(7809), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -130959,10 +127771,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [107817] = 3, + [103164] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7692), 23, + ACTIONS(7811), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -130986,7 +127798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7694), 26, + ACTIONS(7813), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -131013,10 +127825,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [107874] = 3, + [103221] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7680), 23, + ACTIONS(7819), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -131040,7 +127852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7682), 26, + ACTIONS(7821), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -131067,10 +127879,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [107931] = 3, + [103278] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7670), 23, + ACTIONS(7819), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -131094,7 +127906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7672), 26, + ACTIONS(7821), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -131121,10 +127933,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [107988] = 3, + [103335] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7638), 23, + ACTIONS(7823), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -131148,7 +127960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7640), 26, + ACTIONS(7825), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -131175,10 +127987,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [108045] = 3, + [103392] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7626), 23, + ACTIONS(7831), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -131202,7 +128014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7628), 26, + ACTIONS(7833), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -131229,10 +128041,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [108102] = 3, + [103449] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7609), 23, + ACTIONS(7835), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -131256,7 +128068,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7611), 26, + ACTIONS(7837), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -131283,10 +128095,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [108159] = 3, + [103506] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7605), 23, + ACTIONS(7839), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -131310,7 +128122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7607), 26, + ACTIONS(7841), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -131337,10 +128149,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [108216] = 3, + [103563] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7597), 23, + ACTIONS(7843), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -131364,7 +128176,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7599), 26, + ACTIONS(7845), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -131391,10 +128203,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [108273] = 3, + [103620] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7597), 23, + ACTIONS(7847), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -131418,7 +128230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7599), 26, + ACTIONS(7849), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -131445,10 +128257,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [108330] = 3, + [103677] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7589), 23, + ACTIONS(7843), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -131472,7 +128284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7591), 26, + ACTIONS(7845), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -131499,10 +128311,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [108387] = 3, + [103734] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7589), 23, + ACTIONS(7847), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -131526,7 +128338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7591), 26, + ACTIONS(7849), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -131553,10 +128365,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [108444] = 3, + [103791] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7585), 23, + ACTIONS(7855), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -131580,7 +128392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7587), 26, + ACTIONS(7857), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -131607,10 +128419,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [108501] = 3, + [103848] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7577), 23, + ACTIONS(7839), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -131634,7 +128446,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7579), 26, + ACTIONS(7841), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -131661,10 +128473,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [108558] = 3, + [103905] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7573), 23, + ACTIONS(7843), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -131688,7 +128500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7575), 26, + ACTIONS(7845), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -131715,172 +128527,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [108615] = 3, + [103962] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7569), 23, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, + ACTIONS(4769), 1, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(7571), 26, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [108672] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7561), 23, - sym__ws, - sym_comment, + ACTIONS(8095), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(7563), 26, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(8105), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [108729] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7553), 23, + ACTIONS(8107), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8111), 1, + anon_sym_and, + ACTIONS(8113), 1, + anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8139), 1, + anon_sym_RPAREN, + STATE(432), 1, + sym_accumulation_verb, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3058), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8093), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(7555), 26, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [108786] = 3, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1464), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2696), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [104067] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7557), 23, + ACTIONS(7843), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -131904,7 +128632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7559), 26, + ACTIONS(7845), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -131931,10 +128659,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [108843] = 3, + [104124] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7553), 23, + ACTIONS(7847), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -131958,7 +128686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7555), 26, + ACTIONS(7849), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -131985,10 +128713,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [108900] = 3, + [104181] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7549), 23, + ACTIONS(7855), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -132012,7 +128740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7551), 26, + ACTIONS(7857), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -132039,10 +128767,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [108957] = 3, + [104238] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7537), 23, + ACTIONS(7863), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -132066,7 +128794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7539), 26, + ACTIONS(7865), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -132093,10 +128821,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [109014] = 3, + [104295] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7529), 23, + ACTIONS(7628), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -132120,7 +128848,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7531), 26, + ACTIONS(7630), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -132147,10 +128875,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [109071] = 3, + [104352] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7529), 23, + ACTIONS(7628), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -132174,7 +128902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7531), 26, + ACTIONS(7630), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -132201,10 +128929,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [109128] = 3, + [104409] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7517), 23, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, + anon_sym_POUND_, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, + anon_sym_CARET, + ACTIONS(8101), 1, + anon_sym_POUND_CARET, + ACTIONS(8105), 1, + anon_sym_cl, + ACTIONS(8107), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8111), 1, + anon_sym_and, + ACTIONS(8113), 1, + anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8143), 1, + anon_sym_RPAREN, + STATE(432), 1, + sym_accumulation_verb, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3058), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8141), 2, + sym__ws, + sym_comment, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1292), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2696), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [104514] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, + anon_sym_POUND_, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, + anon_sym_CARET, + ACTIONS(8101), 1, + anon_sym_POUND_CARET, + ACTIONS(8105), 1, + anon_sym_cl, + ACTIONS(8107), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8111), 1, + anon_sym_and, + ACTIONS(8113), 1, + anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8147), 1, + anon_sym_RPAREN, + STATE(432), 1, + sym_accumulation_verb, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3058), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8145), 2, + sym__ws, + sym_comment, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1409), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2696), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [104619] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7714), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -132228,7 +129112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7519), 26, + ACTIONS(7716), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -132255,10 +129139,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [109185] = 3, + [104676] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7493), 23, + ACTIONS(7670), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -132282,7 +129166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7495), 26, + ACTIONS(7672), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -132309,10 +129193,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [109242] = 3, + [104733] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7489), 23, + ACTIONS(7628), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -132336,7 +129220,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7491), 26, + ACTIONS(7630), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -132363,10 +129247,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [109299] = 3, + [104790] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7489), 23, + ACTIONS(7628), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -132390,7 +129274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7491), 26, + ACTIONS(7630), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -132417,10 +129301,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [109356] = 3, + [104847] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7676), 23, + ACTIONS(7714), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -132444,7 +129328,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7678), 26, + ACTIONS(7716), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -132471,10 +129355,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [109413] = 3, + [104904] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7766), 23, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, + anon_sym_POUND_, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, + anon_sym_CARET, + ACTIONS(8101), 1, + anon_sym_POUND_CARET, + ACTIONS(8105), 1, + anon_sym_cl, + ACTIONS(8107), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8111), 1, + anon_sym_and, + ACTIONS(8113), 1, + anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8149), 1, + anon_sym_RPAREN, + STATE(432), 1, + sym_accumulation_verb, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3058), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8093), 2, + sym__ws, + sym_comment, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1464), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2696), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [105009] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, + anon_sym_POUND_, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, + anon_sym_CARET, + ACTIONS(8101), 1, + anon_sym_POUND_CARET, + ACTIONS(8105), 1, + anon_sym_cl, + ACTIONS(8107), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8111), 1, + anon_sym_and, + ACTIONS(8113), 1, + anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8149), 1, + anon_sym_RPAREN, + STATE(432), 1, + sym_accumulation_verb, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3058), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8151), 2, + sym__ws, + sym_comment, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1415), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2696), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [105114] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7670), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -132498,7 +129538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7768), 26, + ACTIONS(7672), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -132525,10 +129565,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [109470] = 3, + [105171] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7790), 23, + ACTIONS(7554), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -132552,7 +129592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7792), 26, + ACTIONS(7556), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -132579,10 +129619,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [109527] = 3, + [105228] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7813), 23, + ACTIONS(7554), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -132606,7 +129646,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7815), 26, + ACTIONS(7556), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -132633,2989 +129673,5630 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [109584] = 3, + [105285] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, + anon_sym_POUND_, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, + anon_sym_CARET, + ACTIONS(8101), 1, + anon_sym_POUND_CARET, + ACTIONS(8105), 1, + anon_sym_cl, + ACTIONS(8107), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8111), 1, + anon_sym_and, + ACTIONS(8113), 1, + anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8155), 1, + anon_sym_RPAREN, + STATE(432), 1, + sym_accumulation_verb, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3058), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8153), 2, + sym__ws, + sym_comment, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1284), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2696), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [105390] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, + anon_sym_POUND_, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, + anon_sym_CARET, + ACTIONS(8101), 1, + anon_sym_POUND_CARET, + ACTIONS(8105), 1, + anon_sym_cl, + ACTIONS(8107), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8111), 1, + anon_sym_and, + ACTIONS(8113), 1, + anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8155), 1, + anon_sym_RPAREN, + STATE(432), 1, + sym_accumulation_verb, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3058), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8093), 2, + sym__ws, + sym_comment, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1464), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2696), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [105495] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, + anon_sym_POUND_, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, + anon_sym_CARET, + ACTIONS(8101), 1, + anon_sym_POUND_CARET, + ACTIONS(8103), 1, + anon_sym_RPAREN, + ACTIONS(8105), 1, + anon_sym_cl, + ACTIONS(8107), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8111), 1, + anon_sym_and, + ACTIONS(8113), 1, + anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + STATE(432), 1, + sym_accumulation_verb, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3058), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8157), 2, + sym__ws, + sym_comment, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1417), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2696), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [105600] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, + anon_sym_POUND_, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, + anon_sym_CARET, + ACTIONS(8101), 1, + anon_sym_POUND_CARET, + ACTIONS(8105), 1, + anon_sym_cl, + ACTIONS(8107), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8111), 1, + anon_sym_and, + ACTIONS(8113), 1, + anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8159), 1, + anon_sym_RPAREN, + STATE(432), 1, + sym_accumulation_verb, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3058), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8093), 2, + sym__ws, + sym_comment, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1464), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2696), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [105705] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, + anon_sym_POUND_, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, + anon_sym_CARET, + ACTIONS(8101), 1, + anon_sym_POUND_CARET, + ACTIONS(8105), 1, + anon_sym_cl, + ACTIONS(8107), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8111), 1, + anon_sym_and, + ACTIONS(8113), 1, + anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8163), 1, + anon_sym_RPAREN, + STATE(432), 1, + sym_accumulation_verb, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3058), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8161), 2, + sym__ws, + sym_comment, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1419), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2696), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [105810] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, + anon_sym_POUND_, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, + anon_sym_CARET, + ACTIONS(8101), 1, + anon_sym_POUND_CARET, + ACTIONS(8105), 1, + anon_sym_cl, + ACTIONS(8107), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8111), 1, + anon_sym_and, + ACTIONS(8113), 1, + anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8165), 1, + anon_sym_RPAREN, + STATE(432), 1, + sym_accumulation_verb, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3058), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8093), 2, + sym__ws, + sym_comment, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1464), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2696), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [105915] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, + anon_sym_POUND_, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, + anon_sym_CARET, + ACTIONS(8101), 1, + anon_sym_POUND_CARET, + ACTIONS(8105), 1, + anon_sym_cl, + ACTIONS(8107), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8111), 1, + anon_sym_and, + ACTIONS(8113), 1, + anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8165), 1, + anon_sym_RPAREN, + STATE(432), 1, + sym_accumulation_verb, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3058), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8167), 2, + sym__ws, + sym_comment, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1422), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2696), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [106020] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, + anon_sym_POUND_, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, + anon_sym_CARET, + ACTIONS(8101), 1, + anon_sym_POUND_CARET, + ACTIONS(8105), 1, + anon_sym_cl, + ACTIONS(8107), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8111), 1, + anon_sym_and, + ACTIONS(8113), 1, + anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8171), 1, + anon_sym_RPAREN, + STATE(432), 1, + sym_accumulation_verb, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3058), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8169), 2, + sym__ws, + sym_comment, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1423), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2696), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [106125] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, + anon_sym_POUND_, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, + anon_sym_CARET, + ACTIONS(8101), 1, + anon_sym_POUND_CARET, + ACTIONS(8105), 1, + anon_sym_cl, + ACTIONS(8107), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8111), 1, + anon_sym_and, + ACTIONS(8113), 1, + anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8171), 1, + anon_sym_RPAREN, + STATE(432), 1, + sym_accumulation_verb, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3058), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8093), 2, + sym__ws, + sym_comment, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1464), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2696), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [106230] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, + anon_sym_POUND_, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, + anon_sym_CARET, + ACTIONS(8101), 1, + anon_sym_POUND_CARET, + ACTIONS(8105), 1, + anon_sym_cl, + ACTIONS(8107), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8111), 1, + anon_sym_and, + ACTIONS(8113), 1, + anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8173), 1, + anon_sym_RPAREN, + STATE(432), 1, + sym_accumulation_verb, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3058), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8093), 2, + sym__ws, + sym_comment, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1464), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2696), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [106335] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, + anon_sym_POUND_, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, + anon_sym_CARET, + ACTIONS(8101), 1, + anon_sym_POUND_CARET, + ACTIONS(8105), 1, + anon_sym_cl, + ACTIONS(8107), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8111), 1, + anon_sym_and, + ACTIONS(8113), 1, + anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8173), 1, + anon_sym_RPAREN, + STATE(432), 1, + sym_accumulation_verb, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3058), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8175), 2, + sym__ws, + sym_comment, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1425), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2696), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [106440] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, + anon_sym_POUND_, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, + anon_sym_CARET, + ACTIONS(8101), 1, + anon_sym_POUND_CARET, + ACTIONS(8105), 1, + anon_sym_cl, + ACTIONS(8107), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8111), 1, + anon_sym_and, + ACTIONS(8113), 1, + anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8177), 1, + anon_sym_RPAREN, + STATE(432), 1, + sym_accumulation_verb, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3058), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8093), 2, + sym__ws, + sym_comment, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1464), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2696), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [106545] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, + anon_sym_POUND_, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, + anon_sym_CARET, + ACTIONS(8101), 1, + anon_sym_POUND_CARET, + ACTIONS(8105), 1, + anon_sym_cl, + ACTIONS(8107), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8111), 1, + anon_sym_and, + ACTIONS(8113), 1, + anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8181), 1, + anon_sym_RPAREN, + STATE(432), 1, + sym_accumulation_verb, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3058), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8179), 2, + sym__ws, + sym_comment, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1427), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2696), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [106650] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, + anon_sym_POUND_, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, + anon_sym_CARET, + ACTIONS(8101), 1, + anon_sym_POUND_CARET, + ACTIONS(8105), 1, + anon_sym_cl, + ACTIONS(8107), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8111), 1, + anon_sym_and, + ACTIONS(8113), 1, + anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8183), 1, + anon_sym_RPAREN, + STATE(432), 1, + sym_accumulation_verb, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3058), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8093), 2, + sym__ws, + sym_comment, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1464), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2696), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [106755] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, + anon_sym_POUND_, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, + anon_sym_CARET, + ACTIONS(8101), 1, + anon_sym_POUND_CARET, + ACTIONS(8105), 1, + anon_sym_cl, + ACTIONS(8107), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8111), 1, + anon_sym_and, + ACTIONS(8113), 1, + anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8183), 1, + anon_sym_RPAREN, + STATE(432), 1, + sym_accumulation_verb, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3058), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8185), 2, + sym__ws, + sym_comment, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1431), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2696), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [106860] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7817), 23, - sym__ws, - sym_comment, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(7819), 26, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(8105), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [109641] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7824), 23, + ACTIONS(8107), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8111), 1, + anon_sym_and, + ACTIONS(8113), 1, + anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8189), 1, + anon_sym_RPAREN, + STATE(432), 1, + sym_accumulation_verb, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3058), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8187), 2, sym__ws, sym_comment, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1474), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2696), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [106965] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(7826), 26, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(8105), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [109698] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7831), 23, + ACTIONS(8107), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8111), 1, + anon_sym_and, + ACTIONS(8113), 1, + anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8193), 1, + anon_sym_RPAREN, + STATE(432), 1, + sym_accumulation_verb, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3058), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8191), 2, sym__ws, sym_comment, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1433), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2696), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [107070] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(7833), 26, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(8105), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [109755] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7835), 23, + ACTIONS(8107), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8111), 1, + anon_sym_and, + ACTIONS(8113), 1, + anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8193), 1, + anon_sym_RPAREN, + STATE(432), 1, + sym_accumulation_verb, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3058), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8093), 2, sym__ws, sym_comment, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1464), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2696), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [107175] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(7837), 26, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(8105), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [109812] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7839), 23, + ACTIONS(8107), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8111), 1, + anon_sym_and, + ACTIONS(8113), 1, + anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8197), 1, + anon_sym_RPAREN, + STATE(432), 1, + sym_accumulation_verb, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3058), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8195), 2, sym__ws, sym_comment, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1436), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2696), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [107280] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(7841), 26, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(8105), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [109869] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7850), 23, + ACTIONS(8107), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8111), 1, + anon_sym_and, + ACTIONS(8113), 1, + anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8199), 1, + anon_sym_RPAREN, + STATE(432), 1, + sym_accumulation_verb, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3058), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8093), 2, sym__ws, sym_comment, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1464), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2696), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [107385] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(7852), 26, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(8105), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [109926] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7860), 23, + ACTIONS(8107), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8111), 1, + anon_sym_and, + ACTIONS(8113), 1, + anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8199), 1, + anon_sym_RPAREN, + STATE(432), 1, + sym_accumulation_verb, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3058), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8201), 2, sym__ws, sym_comment, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1435), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2696), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [107490] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(7862), 26, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(8105), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [109983] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7650), 23, + ACTIONS(8107), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8111), 1, + anon_sym_and, + ACTIONS(8113), 1, + anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8203), 1, + anon_sym_RPAREN, + STATE(432), 1, + sym_accumulation_verb, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3058), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8093), 2, sym__ws, sym_comment, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1464), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2696), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [107595] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(7652), 26, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(8105), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [110040] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7846), 23, + ACTIONS(8107), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8111), 1, + anon_sym_and, + ACTIONS(8113), 1, + anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8205), 1, + anon_sym_RPAREN, + STATE(432), 1, + sym_accumulation_verb, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3058), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8093), 2, sym__ws, sym_comment, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1464), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2696), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [107700] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(7848), 26, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(8105), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [110097] = 3, + ACTIONS(8107), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8111), 1, + anon_sym_and, + ACTIONS(8113), 1, + anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8209), 1, + anon_sym_RPAREN, + STATE(432), 1, + sym_accumulation_verb, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3058), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8207), 2, + sym__ws, + sym_comment, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1438), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2696), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [107805] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7801), 23, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, + anon_sym_POUND_, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, + anon_sym_CARET, + ACTIONS(8101), 1, + anon_sym_POUND_CARET, + ACTIONS(8105), 1, + anon_sym_cl, + ACTIONS(8107), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8111), 1, + anon_sym_and, + ACTIONS(8113), 1, + anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8211), 1, + anon_sym_RPAREN, + STATE(432), 1, + sym_accumulation_verb, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3058), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8093), 2, sym__ws, sym_comment, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1464), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2696), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [107910] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(7803), 26, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(8105), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [110154] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7782), 23, + ACTIONS(8107), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8111), 1, + anon_sym_and, + ACTIONS(8113), 1, + anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8211), 1, + anon_sym_RPAREN, + STATE(432), 1, + sym_accumulation_verb, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3058), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8213), 2, sym__ws, sym_comment, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1441), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2696), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [108015] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(7784), 26, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(8105), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [110211] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7759), 23, + ACTIONS(8107), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8111), 1, + anon_sym_and, + ACTIONS(8113), 1, + anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8217), 1, + anon_sym_RPAREN, + STATE(432), 1, + sym_accumulation_verb, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3058), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8215), 2, sym__ws, sym_comment, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1442), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2696), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [108120] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(7761), 26, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(8105), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [110268] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7724), 23, + ACTIONS(8107), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8111), 1, + anon_sym_and, + ACTIONS(8113), 1, + anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8217), 1, + anon_sym_RPAREN, + STATE(432), 1, + sym_accumulation_verb, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3058), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8093), 2, sym__ws, sym_comment, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1464), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2696), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [108225] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(7726), 26, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(8105), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [110325] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7712), 23, + ACTIONS(8107), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8111), 1, + anon_sym_and, + ACTIONS(8113), 1, + anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8219), 1, + anon_sym_RPAREN, + STATE(432), 1, + sym_accumulation_verb, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3058), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8093), 2, sym__ws, sym_comment, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1464), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2696), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [108330] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(7714), 26, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(8105), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [110382] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7654), 23, + ACTIONS(8107), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8111), 1, + anon_sym_and, + ACTIONS(8113), 1, + anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8219), 1, + anon_sym_RPAREN, + STATE(432), 1, + sym_accumulation_verb, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3058), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8221), 2, sym__ws, sym_comment, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1444), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2696), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [108435] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(7656), 26, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(8105), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [110439] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7688), 23, + ACTIONS(8107), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8111), 1, + anon_sym_and, + ACTIONS(8113), 1, + anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8223), 1, + anon_sym_RPAREN, + STATE(432), 1, + sym_accumulation_verb, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3058), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8093), 2, sym__ws, sym_comment, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1464), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2696), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [108540] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(7690), 26, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(8105), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [110496] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7457), 23, + ACTIONS(8107), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8111), 1, + anon_sym_and, + ACTIONS(8113), 1, + anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8227), 1, + anon_sym_RPAREN, + STATE(432), 1, + sym_accumulation_verb, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3058), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8225), 2, sym__ws, sym_comment, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1446), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2696), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [108645] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(7459), 26, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(8105), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [110553] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7461), 23, + ACTIONS(8107), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8111), 1, + anon_sym_and, + ACTIONS(8113), 1, + anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8229), 1, + anon_sym_RPAREN, + STATE(432), 1, + sym_accumulation_verb, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3058), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8093), 2, sym__ws, sym_comment, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1464), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2696), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [108750] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(7463), 26, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(8105), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [110610] = 3, + ACTIONS(8107), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8111), 1, + anon_sym_and, + ACTIONS(8113), 1, + anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8229), 1, + anon_sym_RPAREN, + STATE(432), 1, + sym_accumulation_verb, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3058), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8231), 2, + sym__ws, + sym_comment, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1449), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2696), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [108855] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7465), 23, - sym__ws, - sym_comment, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(7467), 26, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(8105), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [110667] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7469), 23, + ACTIONS(8107), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8111), 1, + anon_sym_and, + ACTIONS(8113), 1, + anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8235), 1, + anon_sym_RPAREN, + STATE(432), 1, + sym_accumulation_verb, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3058), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8233), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(7471), 26, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [110724] = 3, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1450), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2696), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [108960] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7473), 23, - sym__ws, - sym_comment, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(7475), 26, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(8105), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [110781] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7477), 23, + ACTIONS(8107), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8111), 1, + anon_sym_and, + ACTIONS(8113), 1, + anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8235), 1, + anon_sym_RPAREN, + STATE(432), 1, + sym_accumulation_verb, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3058), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8093), 2, sym__ws, sym_comment, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1464), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2696), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [109065] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(7479), 26, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(8105), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [110838] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7481), 23, + ACTIONS(8107), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8111), 1, + anon_sym_and, + ACTIONS(8113), 1, + anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8237), 1, + anon_sym_RPAREN, + STATE(432), 1, + sym_accumulation_verb, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3058), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8093), 2, sym__ws, sym_comment, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1464), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2696), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [109170] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(7483), 26, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(8105), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [110895] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7485), 23, + ACTIONS(8107), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8111), 1, + anon_sym_and, + ACTIONS(8113), 1, + anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8237), 1, + anon_sym_RPAREN, + STATE(432), 1, + sym_accumulation_verb, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3058), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8239), 2, sym__ws, sym_comment, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1452), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2696), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [109275] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(7487), 26, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(8105), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [110952] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7497), 23, + ACTIONS(8107), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8111), 1, + anon_sym_and, + ACTIONS(8113), 1, + anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8241), 1, + anon_sym_RPAREN, + STATE(432), 1, + sym_accumulation_verb, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3058), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8093), 2, sym__ws, sym_comment, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1464), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2696), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [109380] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(7499), 26, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(8105), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [111009] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7501), 23, + ACTIONS(8107), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8111), 1, + anon_sym_and, + ACTIONS(8113), 1, + anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8245), 1, + anon_sym_RPAREN, + STATE(432), 1, + sym_accumulation_verb, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3058), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8243), 2, sym__ws, sym_comment, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1454), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2696), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [109485] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(7503), 26, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(8105), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [111066] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7505), 23, + ACTIONS(8107), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8111), 1, + anon_sym_and, + ACTIONS(8113), 1, + anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8247), 1, + anon_sym_RPAREN, + STATE(432), 1, + sym_accumulation_verb, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3058), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8093), 2, sym__ws, sym_comment, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1464), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2696), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [109590] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(7507), 26, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(8105), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [111123] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7509), 23, + ACTIONS(8107), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8111), 1, + anon_sym_and, + ACTIONS(8113), 1, + anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8247), 1, + anon_sym_RPAREN, + STATE(432), 1, + sym_accumulation_verb, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3058), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8249), 2, sym__ws, sym_comment, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1457), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2696), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [109695] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(7511), 26, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(8105), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [111180] = 3, + ACTIONS(8107), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8111), 1, + anon_sym_and, + ACTIONS(8113), 1, + anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8253), 1, + anon_sym_RPAREN, + STATE(432), 1, + sym_accumulation_verb, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3058), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8251), 2, + sym__ws, + sym_comment, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1458), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2696), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [109800] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7513), 23, - sym__ws, - sym_comment, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(7515), 26, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(8105), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [111237] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7521), 23, + ACTIONS(8107), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8111), 1, + anon_sym_and, + ACTIONS(8113), 1, + anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8253), 1, + anon_sym_RPAREN, + STATE(432), 1, + sym_accumulation_verb, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3058), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8093), 2, sym__ws, sym_comment, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1464), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2696), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [109905] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(7523), 26, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(8105), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [111294] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7525), 23, + ACTIONS(8107), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8111), 1, + anon_sym_and, + ACTIONS(8113), 1, + anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8255), 1, + anon_sym_RPAREN, + STATE(432), 1, + sym_accumulation_verb, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3058), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8093), 2, sym__ws, sym_comment, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1464), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2696), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [110010] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(7527), 26, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(8105), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [111351] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7533), 23, + ACTIONS(8107), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8111), 1, + anon_sym_and, + ACTIONS(8113), 1, + anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8255), 1, + anon_sym_RPAREN, + STATE(432), 1, + sym_accumulation_verb, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3058), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8257), 2, sym__ws, sym_comment, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1460), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2696), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [110115] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(7535), 26, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(8105), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [111408] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7541), 23, + ACTIONS(8107), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8111), 1, + anon_sym_and, + ACTIONS(8113), 1, + anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8259), 1, + anon_sym_RPAREN, + STATE(432), 1, + sym_accumulation_verb, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3058), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8093), 2, sym__ws, sym_comment, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1464), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2696), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [110220] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(7543), 26, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(8105), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [111465] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7545), 23, + ACTIONS(8107), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8111), 1, + anon_sym_and, + ACTIONS(8113), 1, + anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8263), 1, + anon_sym_RPAREN, + STATE(432), 1, + sym_accumulation_verb, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3058), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8261), 2, sym__ws, sym_comment, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1462), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2696), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [110325] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(7547), 26, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(8105), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [111522] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7565), 23, + ACTIONS(8107), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8111), 1, + anon_sym_and, + ACTIONS(8113), 1, + anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8265), 1, + anon_sym_RPAREN, + STATE(432), 1, + sym_accumulation_verb, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3058), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8093), 2, sym__ws, sym_comment, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1464), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2696), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [110430] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(7567), 26, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(8105), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [111579] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7581), 23, + ACTIONS(8107), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8111), 1, + anon_sym_and, + ACTIONS(8113), 1, + anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8265), 1, + anon_sym_RPAREN, + STATE(432), 1, + sym_accumulation_verb, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3058), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8267), 2, sym__ws, sym_comment, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1467), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2696), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [110535] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8272), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8275), 1, + anon_sym_COLON, + ACTIONS(8278), 1, anon_sym_CARET, + ACTIONS(8281), 1, anon_sym_POUND_CARET, + ACTIONS(8284), 1, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(7583), 26, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(8287), 1, + anon_sym_RPAREN, + ACTIONS(8289), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [111636] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7593), 23, + ACTIONS(8292), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8298), 1, + anon_sym_and, + ACTIONS(8301), 1, + anon_sym_with, + ACTIONS(8304), 1, + anon_sym_do, + ACTIONS(8310), 1, + anon_sym_repeat, + ACTIONS(8316), 1, + anon_sym_else, + STATE(432), 1, + sym_accumulation_verb, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3058), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8269), 2, sym__ws, sym_comment, + ACTIONS(8295), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8307), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8319), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1464), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8313), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2696), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [110640] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, + ACTIONS(8105), 1, + anon_sym_cl, + ACTIONS(8107), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8111), 1, + anon_sym_and, + ACTIONS(8113), 1, + anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8189), 1, + anon_sym_RPAREN, + STATE(432), 1, + sym_accumulation_verb, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3058), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8093), 2, + sym__ws, + sym_comment, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1464), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2696), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [110745] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4769), 1, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(7595), 26, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, + ACTIONS(8095), 1, + anon_sym_POUND_, + ACTIONS(8097), 1, anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(8099), 1, + anon_sym_CARET, + ACTIONS(8101), 1, + anon_sym_POUND_CARET, + ACTIONS(8105), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [111693] = 3, + ACTIONS(8107), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8111), 1, + anon_sym_and, + ACTIONS(8113), 1, + anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8324), 1, + anon_sym_RPAREN, + STATE(432), 1, + sym_accumulation_verb, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3058), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8322), 2, + sym__ws, + sym_comment, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1468), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2696), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [110850] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7601), 23, - sym__ws, - sym_comment, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(7603), 26, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(8105), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [111750] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7613), 23, + ACTIONS(8107), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8111), 1, + anon_sym_and, + ACTIONS(8113), 1, + anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8324), 1, + anon_sym_RPAREN, + STATE(432), 1, + sym_accumulation_verb, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3058), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8093), 2, sym__ws, sym_comment, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1464), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2696), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [110955] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(7615), 26, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(8105), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [111807] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7630), 23, + ACTIONS(8107), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8111), 1, + anon_sym_and, + ACTIONS(8113), 1, + anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8326), 1, + anon_sym_RPAREN, + STATE(432), 1, + sym_accumulation_verb, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3058), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8093), 2, sym__ws, sym_comment, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1464), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2696), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [111060] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(7632), 26, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(8105), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [111864] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7634), 23, + ACTIONS(8107), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8111), 1, + anon_sym_and, + ACTIONS(8113), 1, + anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8326), 1, + anon_sym_RPAREN, + STATE(432), 1, + sym_accumulation_verb, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3058), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8328), 2, sym__ws, sym_comment, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1470), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2696), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [111165] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(7636), 26, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(8105), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [111921] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7642), 23, + ACTIONS(8107), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8111), 1, + anon_sym_and, + ACTIONS(8113), 1, + anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8330), 1, + anon_sym_RPAREN, + STATE(432), 1, + sym_accumulation_verb, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3058), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8093), 2, sym__ws, sym_comment, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1464), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2696), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [111270] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(7644), 26, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(8105), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [111978] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7525), 23, + ACTIONS(8107), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8111), 1, + anon_sym_and, + ACTIONS(8113), 1, + anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8334), 1, + anon_sym_RPAREN, + STATE(432), 1, + sym_accumulation_verb, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3058), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8332), 2, sym__ws, sym_comment, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1472), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2696), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [111375] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(7527), 26, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(8105), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [112035] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7646), 23, + ACTIONS(8107), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8111), 1, + anon_sym_and, + ACTIONS(8113), 1, + anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8336), 1, + anon_sym_RPAREN, + STATE(432), 1, + sym_accumulation_verb, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3058), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8093), 2, sym__ws, sym_comment, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1464), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2696), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [111480] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(7648), 26, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(8105), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [112092] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7449), 23, + ACTIONS(8107), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8111), 1, + anon_sym_and, + ACTIONS(8113), 1, + anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8336), 1, + anon_sym_RPAREN, + STATE(432), 1, + sym_accumulation_verb, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3058), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8338), 2, sym__ws, sym_comment, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1476), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2696), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [111585] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(7451), 26, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(8105), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [112149] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7658), 23, + ACTIONS(8107), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8111), 1, + anon_sym_and, + ACTIONS(8113), 1, + anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8197), 1, + anon_sym_RPAREN, + STATE(432), 1, + sym_accumulation_verb, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3058), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8093), 2, sym__ws, sym_comment, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1464), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2696), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [111690] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(7660), 26, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(8105), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [112206] = 3, + ACTIONS(8107), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8111), 1, + anon_sym_and, + ACTIONS(8113), 1, + anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8342), 1, + anon_sym_RPAREN, + STATE(432), 1, + sym_accumulation_verb, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3058), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8340), 2, + sym__ws, + sym_comment, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1477), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2696), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [111795] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7662), 23, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, + anon_sym_POUND_, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, + anon_sym_CARET, + ACTIONS(8101), 1, + anon_sym_POUND_CARET, + ACTIONS(8105), 1, + anon_sym_cl, + ACTIONS(8107), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8111), 1, + anon_sym_and, + ACTIONS(8113), 1, + anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8342), 1, + anon_sym_RPAREN, + STATE(432), 1, + sym_accumulation_verb, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3058), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8093), 2, sym__ws, sym_comment, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1464), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2696), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [111900] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(7664), 26, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(8105), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [112263] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7666), 23, + ACTIONS(8107), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8111), 1, + anon_sym_and, + ACTIONS(8113), 1, + anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8344), 1, + anon_sym_RPAREN, + STATE(432), 1, + sym_accumulation_verb, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3058), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8093), 2, sym__ws, sym_comment, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1464), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2696), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [112005] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(7668), 26, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(8105), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [112320] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7525), 23, + ACTIONS(8107), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8111), 1, + anon_sym_and, + ACTIONS(8113), 1, + anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8344), 1, + anon_sym_RPAREN, + STATE(432), 1, + sym_accumulation_verb, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3058), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8346), 2, sym__ws, sym_comment, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1479), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2696), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [112110] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(7527), 26, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(8105), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [112377] = 5, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(8358), 1, - anon_sym_COLON, - ACTIONS(8360), 1, - anon_sym_COLON_COLON, - ACTIONS(7453), 22, + ACTIONS(8107), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8111), 1, + anon_sym_and, + ACTIONS(8113), 1, + anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8348), 1, + anon_sym_RPAREN, + STATE(432), 1, + sym_accumulation_verb, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3058), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8093), 2, sym__ws, sym_comment, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1464), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2696), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [112215] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, - anon_sym_DQUOTE, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(7455), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(8105), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [112438] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7684), 23, + ACTIONS(8107), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8111), 1, + anon_sym_and, + ACTIONS(8113), 1, + anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8352), 1, + anon_sym_RPAREN, + STATE(432), 1, + sym_accumulation_verb, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3058), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8350), 2, sym__ws, sym_comment, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1481), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2696), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [112320] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(7686), 26, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(8105), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [112495] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7453), 23, + ACTIONS(8107), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8111), 1, + anon_sym_and, + ACTIONS(8113), 1, + anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8354), 1, + anon_sym_RPAREN, + STATE(432), 1, + sym_accumulation_verb, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3058), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8093), 2, sym__ws, sym_comment, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1464), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2696), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [112425] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(7455), 26, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(8105), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [112552] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7700), 23, + ACTIONS(8107), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8111), 1, + anon_sym_and, + ACTIONS(8113), 1, + anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8354), 1, + anon_sym_RPAREN, + STATE(432), 1, + sym_accumulation_verb, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3058), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8356), 2, sym__ws, sym_comment, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1484), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2696), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [112530] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(7702), 26, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(8105), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [112609] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7704), 23, + ACTIONS(8107), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8111), 1, + anon_sym_and, + ACTIONS(8113), 1, + anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8360), 1, + anon_sym_RPAREN, + STATE(432), 1, + sym_accumulation_verb, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3058), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8358), 2, sym__ws, sym_comment, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1485), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2696), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [112635] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(7706), 26, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(8105), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [112666] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7708), 23, + ACTIONS(8107), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8111), 1, + anon_sym_and, + ACTIONS(8113), 1, + anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8360), 1, + anon_sym_RPAREN, + STATE(432), 1, + sym_accumulation_verb, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3058), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8093), 2, sym__ws, sym_comment, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1464), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2696), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [112740] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(7710), 26, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(8105), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [112723] = 5, + ACTIONS(8107), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8111), 1, + anon_sym_and, + ACTIONS(8113), 1, + anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8129), 1, + anon_sym_RPAREN, + STATE(432), 1, + sym_accumulation_verb, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3058), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8093), 2, + sym__ws, + sym_comment, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1464), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2696), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [112845] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8358), 1, - anon_sym_COLON, - ACTIONS(8360), 1, - anon_sym_COLON_COLON, - ACTIONS(7716), 22, + ACTIONS(7847), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -135635,66 +135316,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7718), 25, + ACTIONS(7849), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [112784] = 5, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(8358), 1, anon_sym_COLON, - ACTIONS(8360), 1, - anon_sym_COLON_COLON, - ACTIONS(7617), 22, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(7619), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, @@ -135717,74 +135343,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [112845] = 3, + [112902] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7740), 23, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(7742), 26, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, + ACTIONS(7645), 4, anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [112902] = 4, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(8362), 1, - aux_sym_num_lit_token2, - ACTIONS(7445), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7443), 42, + ACTIONS(7643), 42, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON, + anon_sym_COLON_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -135823,18 +135394,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [112958] = 5, + [112956] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8364), 1, + ACTIONS(8362), 1, anon_sym_COLON, - ACTIONS(8366), 1, + ACTIONS(8364), 1, anon_sym_COLON_COLON, - ACTIONS(7619), 3, + ACTIONS(7455), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7617), 41, + ACTIONS(7453), 41, sym__ws, sym_comment, anon_sym_POUND_, @@ -135876,21 +135447,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [113016] = 5, + [113014] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8364), 1, - anon_sym_COLON, ACTIONS(8366), 1, - anon_sym_COLON_COLON, - ACTIONS(7718), 3, + aux_sym_num_lit_token2, + ACTIONS(7445), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7716), 41, + ACTIONS(7443), 42, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -135929,18 +135499,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [113074] = 5, + [113070] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8364), 1, + ACTIONS(8362), 1, anon_sym_COLON, - ACTIONS(8366), 1, + ACTIONS(8364), 1, anon_sym_COLON_COLON, - ACTIONS(7455), 3, + ACTIONS(7479), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7453), 41, + ACTIONS(7477), 41, sym__ws, sym_comment, anon_sym_POUND_, @@ -135982,19 +135552,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [113132] = 3, + [113128] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7742), 4, + ACTIONS(8362), 1, anon_sym_COLON, + ACTIONS(8364), 1, + anon_sym_COLON_COLON, + ACTIONS(7817), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7740), 42, + ACTIONS(7815), 41, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -136036,11 +135608,11 @@ static const uint16_t ts_small_parse_table[] = { [113186] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7531), 3, + ACTIONS(7781), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7529), 42, + ACTIONS(7779), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -136086,11 +135658,11 @@ static const uint16_t ts_small_parse_table[] = { [113239] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7531), 3, + ACTIONS(7865), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7529), 42, + ACTIONS(7863), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -136136,11 +135708,11 @@ static const uint16_t ts_small_parse_table[] = { [113292] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7455), 3, + ACTIONS(7630), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7453), 42, + ACTIONS(7628), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -136186,11 +135758,11 @@ static const uint16_t ts_small_parse_table[] = { [113345] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7686), 3, + ACTIONS(7630), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7684), 42, + ACTIONS(7628), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -136236,11 +135808,11 @@ static const uint16_t ts_small_parse_table[] = { [113398] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7527), 3, + ACTIONS(7578), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7525), 42, + ACTIONS(7576), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -136286,11 +135858,11 @@ static const uint16_t ts_small_parse_table[] = { [113451] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7668), 3, + ACTIONS(7594), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7666), 42, + ACTIONS(7592), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -136336,11 +135908,11 @@ static const uint16_t ts_small_parse_table[] = { [113504] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7648), 3, + ACTIONS(7716), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7646), 42, + ACTIONS(7714), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -136386,11 +135958,11 @@ static const uint16_t ts_small_parse_table[] = { [113557] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8370), 3, + ACTIONS(7672), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(8368), 42, + ACTIONS(7670), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -136436,11 +136008,11 @@ static const uint16_t ts_small_parse_table[] = { [113610] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7819), 3, + ACTIONS(8370), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7817), 42, + ACTIONS(8368), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -136486,11 +136058,11 @@ static const uint16_t ts_small_parse_table[] = { [113663] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7862), 3, + ACTIONS(7634), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7860), 42, + ACTIONS(7632), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -136536,11 +136108,11 @@ static const uint16_t ts_small_parse_table[] = { [113716] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7714), 3, + ACTIONS(7630), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7712), 42, + ACTIONS(7628), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -136586,11 +136158,11 @@ static const uint16_t ts_small_parse_table[] = { [113769] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7483), 3, + ACTIONS(7630), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7481), 42, + ACTIONS(7628), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -136636,11 +136208,11 @@ static const uint16_t ts_small_parse_table[] = { [113822] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7507), 3, + ACTIONS(7829), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7505), 42, + ACTIONS(7827), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -136686,11 +136258,11 @@ static const uint16_t ts_small_parse_table[] = { [113875] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7644), 3, + ACTIONS(7716), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7642), 42, + ACTIONS(7714), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -136736,11 +136308,11 @@ static const uint16_t ts_small_parse_table[] = { [113928] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7451), 3, + ACTIONS(7672), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7449), 42, + ACTIONS(7670), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -136786,11 +136358,11 @@ static const uint16_t ts_small_parse_table[] = { [113981] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7660), 3, + ACTIONS(7853), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7658), 42, + ACTIONS(7851), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -136836,11 +136408,11 @@ static const uint16_t ts_small_parse_table[] = { [114034] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7527), 3, + ACTIONS(7455), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7525), 42, + ACTIONS(7453), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -136886,11 +136458,11 @@ static const uint16_t ts_small_parse_table[] = { [114087] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7636), 3, + ACTIONS(7556), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7634), 42, + ACTIONS(7554), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -136936,11 +136508,11 @@ static const uint16_t ts_small_parse_table[] = { [114140] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7632), 3, + ACTIONS(7676), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7630), 42, + ACTIONS(7674), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -136986,11 +136558,11 @@ static const uint16_t ts_small_parse_table[] = { [114193] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7615), 3, + ACTIONS(7556), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7613), 42, + ACTIONS(7554), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -137036,11 +136608,11 @@ static const uint16_t ts_small_parse_table[] = { [114246] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7603), 3, + ACTIONS(7459), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7601), 42, + ACTIONS(7457), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -137086,11 +136658,11 @@ static const uint16_t ts_small_parse_table[] = { [114299] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7595), 3, + ACTIONS(7696), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7593), 42, + ACTIONS(7694), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -137136,11 +136708,11 @@ static const uint16_t ts_small_parse_table[] = { [114352] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7583), 3, + ACTIONS(7467), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7581), 42, + ACTIONS(7465), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -137186,11 +136758,11 @@ static const uint16_t ts_small_parse_table[] = { [114405] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8374), 3, + ACTIONS(7471), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(8372), 42, + ACTIONS(7469), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -137236,11 +136808,11 @@ static const uint16_t ts_small_parse_table[] = { [114458] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7567), 3, + ACTIONS(7497), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7565), 42, + ACTIONS(7495), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -137286,11 +136858,11 @@ static const uint16_t ts_small_parse_table[] = { [114511] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8374), 3, + ACTIONS(7467), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(8372), 42, + ACTIONS(7465), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -137336,11 +136908,11 @@ static const uint16_t ts_small_parse_table[] = { [114564] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7547), 3, + ACTIONS(7508), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7545), 42, + ACTIONS(7506), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -137386,11 +136958,11 @@ static const uint16_t ts_small_parse_table[] = { [114617] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7543), 3, + ACTIONS(7512), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7541), 42, + ACTIONS(7510), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -137436,11 +137008,11 @@ static const uint16_t ts_small_parse_table[] = { [114670] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7527), 3, + ACTIONS(7845), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7525), 42, + ACTIONS(7843), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -137486,11 +137058,11 @@ static const uint16_t ts_small_parse_table[] = { [114723] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7523), 3, + ACTIONS(7519), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7521), 42, + ACTIONS(7517), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -137536,11 +137108,11 @@ static const uint16_t ts_small_parse_table[] = { [114776] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7515), 3, + ACTIONS(7525), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7513), 42, + ACTIONS(7523), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -137586,11 +137158,11 @@ static const uint16_t ts_small_parse_table[] = { [114829] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7511), 3, + ACTIONS(7529), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7509), 42, + ACTIONS(7527), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -137636,11 +137208,11 @@ static const uint16_t ts_small_parse_table[] = { [114882] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7503), 3, + ACTIONS(7536), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7501), 42, + ACTIONS(7534), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -137686,11 +137258,11 @@ static const uint16_t ts_small_parse_table[] = { [114935] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7499), 3, + ACTIONS(7540), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7497), 42, + ACTIONS(7538), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -137736,11 +137308,11 @@ static const uint16_t ts_small_parse_table[] = { [114988] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7487), 3, + ACTIONS(7849), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7485), 42, + ACTIONS(7847), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -137786,11 +137358,11 @@ static const uint16_t ts_small_parse_table[] = { [115041] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7664), 3, + ACTIONS(7544), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7662), 42, + ACTIONS(7542), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -137836,11 +137408,11 @@ static const uint16_t ts_small_parse_table[] = { [115094] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7479), 3, + ACTIONS(7548), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7477), 42, + ACTIONS(7546), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -137886,11 +137458,11 @@ static const uint16_t ts_small_parse_table[] = { [115147] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7475), 3, + ACTIONS(7467), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7473), 42, + ACTIONS(7465), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -137936,11 +137508,11 @@ static const uint16_t ts_small_parse_table[] = { [115200] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7471), 3, + ACTIONS(7563), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7469), 42, + ACTIONS(7561), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -137986,11 +137558,11 @@ static const uint16_t ts_small_parse_table[] = { [115253] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7467), 3, + ACTIONS(7567), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7465), 42, + ACTIONS(7565), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -138036,11 +137608,11 @@ static const uint16_t ts_small_parse_table[] = { [115306] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7463), 3, + ACTIONS(7571), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7461), 42, + ACTIONS(7569), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -138086,11 +137658,11 @@ static const uint16_t ts_small_parse_table[] = { [115359] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7459), 3, + ACTIONS(7582), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7457), 42, + ACTIONS(7580), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -138136,11 +137708,11 @@ static const uint16_t ts_small_parse_table[] = { [115412] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7690), 3, + ACTIONS(7475), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7688), 42, + ACTIONS(7473), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -138186,11 +137758,11 @@ static const uint16_t ts_small_parse_table[] = { [115465] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7656), 3, + ACTIONS(7586), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7654), 42, + ACTIONS(7584), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -138236,11 +137808,11 @@ static const uint16_t ts_small_parse_table[] = { [115518] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7726), 3, + ACTIONS(7590), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7724), 42, + ACTIONS(7588), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -138286,11 +137858,11 @@ static const uint16_t ts_small_parse_table[] = { [115571] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7761), 3, + ACTIONS(7598), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7759), 42, + ACTIONS(7596), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -138336,11 +137908,11 @@ static const uint16_t ts_small_parse_table[] = { [115624] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7784), 3, + ACTIONS(7602), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7782), 42, + ACTIONS(7600), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -138386,11 +137958,11 @@ static const uint16_t ts_small_parse_table[] = { [115677] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7803), 3, + ACTIONS(7606), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7801), 42, + ACTIONS(7604), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -138436,11 +138008,11 @@ static const uint16_t ts_small_parse_table[] = { [115730] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7551), 3, + ACTIONS(7489), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7549), 42, + ACTIONS(7487), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -138486,11 +138058,11 @@ static const uint16_t ts_small_parse_table[] = { [115783] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7652), 3, + ACTIONS(7610), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7650), 42, + ACTIONS(7608), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -138536,11 +138108,11 @@ static const uint16_t ts_small_parse_table[] = { [115836] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7852), 3, + ACTIONS(8374), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7850), 42, + ACTIONS(8372), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -138586,11 +138158,11 @@ static const uint16_t ts_small_parse_table[] = { [115889] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7841), 3, + ACTIONS(7614), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7839), 42, + ACTIONS(7612), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -138636,11 +138208,11 @@ static const uint16_t ts_small_parse_table[] = { [115942] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7837), 3, + ACTIONS(8374), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7835), 42, + ACTIONS(8372), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -138686,11 +138258,11 @@ static const uint16_t ts_small_parse_table[] = { [115995] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7833), 3, + ACTIONS(7618), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7831), 42, + ACTIONS(7616), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -138736,11 +138308,11 @@ static const uint16_t ts_small_parse_table[] = { [116048] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7826), 3, + ACTIONS(7622), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7824), 42, + ACTIONS(7620), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -138786,11 +138358,11 @@ static const uint16_t ts_small_parse_table[] = { [116101] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7815), 3, + ACTIONS(7626), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7813), 42, + ACTIONS(7624), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -138836,11 +138408,11 @@ static const uint16_t ts_small_parse_table[] = { [116154] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7792), 3, + ACTIONS(7638), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7790), 42, + ACTIONS(7636), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -138886,11 +138458,11 @@ static const uint16_t ts_small_parse_table[] = { [116207] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7768), 3, + ACTIONS(7649), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7766), 42, + ACTIONS(7647), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -138936,11 +138508,11 @@ static const uint16_t ts_small_parse_table[] = { [116260] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7678), 3, + ACTIONS(7841), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7676), 42, + ACTIONS(7839), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -138986,11 +138558,11 @@ static const uint16_t ts_small_parse_table[] = { [116313] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7491), 3, + ACTIONS(7656), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7489), 42, + ACTIONS(7654), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -139036,11 +138608,11 @@ static const uint16_t ts_small_parse_table[] = { [116366] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7491), 3, + ACTIONS(7660), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7489), 42, + ACTIONS(7658), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -139086,11 +138658,11 @@ static const uint16_t ts_small_parse_table[] = { [116419] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7495), 3, + ACTIONS(7493), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7493), 42, + ACTIONS(7491), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -139136,11 +138708,11 @@ static const uint16_t ts_small_parse_table[] = { [116472] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7519), 3, + ACTIONS(7504), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7517), 42, + ACTIONS(7502), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -139236,11 +138808,11 @@ static const uint16_t ts_small_parse_table[] = { [116578] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7555), 3, + ACTIONS(7664), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7553), 42, + ACTIONS(7662), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -139286,11 +138858,11 @@ static const uint16_t ts_small_parse_table[] = { [116631] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7706), 3, + ACTIONS(7668), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7704), 42, + ACTIONS(7666), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -139336,11 +138908,11 @@ static const uint16_t ts_small_parse_table[] = { [116684] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7848), 3, + ACTIONS(7451), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7846), 42, + ACTIONS(7449), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -139386,11 +138958,11 @@ static const uint16_t ts_small_parse_table[] = { [116737] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7539), 3, + ACTIONS(7680), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7537), 42, + ACTIONS(7678), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -139436,11 +139008,11 @@ static const uint16_t ts_small_parse_table[] = { [116790] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7559), 3, + ACTIONS(7684), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7557), 42, + ACTIONS(7682), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -139486,11 +139058,11 @@ static const uint16_t ts_small_parse_table[] = { [116843] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7555), 3, + ACTIONS(7688), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7553), 42, + ACTIONS(7686), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -139536,11 +139108,11 @@ static const uint16_t ts_small_parse_table[] = { [116896] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7559), 3, + ACTIONS(7845), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7557), 42, + ACTIONS(7843), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -139586,11 +139158,11 @@ static const uint16_t ts_small_parse_table[] = { [116949] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7563), 3, + ACTIONS(7700), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7561), 42, + ACTIONS(7698), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -139636,11 +139208,11 @@ static const uint16_t ts_small_parse_table[] = { [117002] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7571), 3, + ACTIONS(7704), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7569), 42, + ACTIONS(7702), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -139686,11 +139258,11 @@ static const uint16_t ts_small_parse_table[] = { [117055] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7575), 3, + ACTIONS(7708), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7573), 42, + ACTIONS(7706), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -139736,11 +139308,11 @@ static const uint16_t ts_small_parse_table[] = { [117108] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7579), 3, + ACTIONS(8382), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7577), 42, + ACTIONS(8380), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -139786,11 +139358,11 @@ static const uint16_t ts_small_parse_table[] = { [117161] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7587), 3, + ACTIONS(7712), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7585), 42, + ACTIONS(7710), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -139836,11 +139408,11 @@ static const uint16_t ts_small_parse_table[] = { [117214] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7591), 3, + ACTIONS(7723), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7589), 42, + ACTIONS(7721), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -139886,11 +139458,11 @@ static const uint16_t ts_small_parse_table[] = { [117267] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7591), 3, + ACTIONS(7723), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7589), 42, + ACTIONS(7721), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -139936,11 +139508,11 @@ static const uint16_t ts_small_parse_table[] = { [117320] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7599), 3, + ACTIONS(7849), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7597), 42, + ACTIONS(7847), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -139986,11 +139558,11 @@ static const uint16_t ts_small_parse_table[] = { [117373] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7599), 3, + ACTIONS(7727), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7597), 42, + ACTIONS(7725), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -140036,11 +139608,11 @@ static const uint16_t ts_small_parse_table[] = { [117426] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7607), 3, + ACTIONS(7734), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7605), 42, + ACTIONS(7732), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -140086,11 +139658,11 @@ static const uint16_t ts_small_parse_table[] = { [117479] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7611), 3, + ACTIONS(7738), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7609), 42, + ACTIONS(7736), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -140136,11 +139708,11 @@ static const uint16_t ts_small_parse_table[] = { [117532] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7628), 3, + ACTIONS(7857), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7626), 42, + ACTIONS(7855), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -140186,11 +139758,11 @@ static const uint16_t ts_small_parse_table[] = { [117585] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7640), 3, + ACTIONS(7738), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7638), 42, + ACTIONS(7736), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -140236,11 +139808,11 @@ static const uint16_t ts_small_parse_table[] = { [117638] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7672), 3, + ACTIONS(7742), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7670), 42, + ACTIONS(7740), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -140286,11 +139858,11 @@ static const uint16_t ts_small_parse_table[] = { [117691] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7682), 3, + ACTIONS(7746), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7680), 42, + ACTIONS(7744), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -140336,11 +139908,11 @@ static const uint16_t ts_small_parse_table[] = { [117744] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7694), 3, + ACTIONS(7750), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7692), 42, + ACTIONS(7748), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -140386,11 +139958,11 @@ static const uint16_t ts_small_parse_table[] = { [117797] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7698), 3, + ACTIONS(7754), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7696), 42, + ACTIONS(7752), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -140436,11 +140008,11 @@ static const uint16_t ts_small_parse_table[] = { [117850] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7698), 3, + ACTIONS(7750), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7696), 42, + ACTIONS(7748), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -140486,11 +140058,11 @@ static const uint16_t ts_small_parse_table[] = { [117903] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7682), 3, + ACTIONS(7754), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7680), 42, + ACTIONS(7752), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -140536,11 +140108,11 @@ static const uint16_t ts_small_parse_table[] = { [117956] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7694), 3, + ACTIONS(7761), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7692), 42, + ACTIONS(7759), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -140586,11 +140158,11 @@ static const uint16_t ts_small_parse_table[] = { [118009] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7698), 3, + ACTIONS(7765), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7696), 42, + ACTIONS(7763), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -140636,11 +140208,11 @@ static const uint16_t ts_small_parse_table[] = { [118062] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7698), 3, + ACTIONS(7769), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7696), 42, + ACTIONS(7767), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -140686,11 +140258,11 @@ static const uint16_t ts_small_parse_table[] = { [118115] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7722), 3, + ACTIONS(7773), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7720), 42, + ACTIONS(7771), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -140736,11 +140308,11 @@ static const uint16_t ts_small_parse_table[] = { [118168] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7730), 3, + ACTIONS(7777), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7728), 42, + ACTIONS(7775), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -140786,11 +140358,11 @@ static const uint16_t ts_small_parse_table[] = { [118221] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7734), 3, + ACTIONS(7781), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7732), 42, + ACTIONS(7779), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -140836,11 +140408,11 @@ static const uint16_t ts_small_parse_table[] = { [118274] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7738), 3, + ACTIONS(7785), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7736), 42, + ACTIONS(7783), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -140886,11 +140458,11 @@ static const uint16_t ts_small_parse_table[] = { [118327] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7746), 3, + ACTIONS(7785), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7744), 42, + ACTIONS(7783), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -140936,11 +140508,11 @@ static const uint16_t ts_small_parse_table[] = { [118380] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7750), 3, + ACTIONS(7789), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7748), 42, + ACTIONS(7787), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -140986,11 +140558,11 @@ static const uint16_t ts_small_parse_table[] = { [118433] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7746), 3, + ACTIONS(7793), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7744), 42, + ACTIONS(7791), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -141036,11 +140608,11 @@ static const uint16_t ts_small_parse_table[] = { [118486] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7750), 3, + ACTIONS(7797), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7748), 42, + ACTIONS(7795), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -141086,11 +140658,11 @@ static const uint16_t ts_small_parse_table[] = { [118539] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7754), 3, + ACTIONS(7801), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7752), 42, + ACTIONS(7799), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -141136,11 +140708,11 @@ static const uint16_t ts_small_parse_table[] = { [118592] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7738), 3, + ACTIONS(7805), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7736), 42, + ACTIONS(7803), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -141186,11 +140758,11 @@ static const uint16_t ts_small_parse_table[] = { [118645] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7746), 3, + ACTIONS(7809), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7744), 42, + ACTIONS(7807), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -141236,11 +140808,11 @@ static const uint16_t ts_small_parse_table[] = { [118698] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7750), 3, + ACTIONS(7813), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7748), 42, + ACTIONS(7811), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -141286,11 +140858,11 @@ static const uint16_t ts_small_parse_table[] = { [118751] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7746), 3, + ACTIONS(7821), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7744), 42, + ACTIONS(7819), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -141336,11 +140908,11 @@ static const uint16_t ts_small_parse_table[] = { [118804] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7750), 3, + ACTIONS(7821), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7748), 42, + ACTIONS(7819), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -141386,11 +140958,11 @@ static const uint16_t ts_small_parse_table[] = { [118857] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7754), 3, + ACTIONS(7809), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7752), 42, + ACTIONS(7807), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -141436,11 +141008,11 @@ static const uint16_t ts_small_parse_table[] = { [118910] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7772), 3, + ACTIONS(7813), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7770), 42, + ACTIONS(7811), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -141486,11 +141058,11 @@ static const uint16_t ts_small_parse_table[] = { [118963] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7776), 3, + ACTIONS(7821), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7774), 42, + ACTIONS(7819), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -141536,11 +141108,11 @@ static const uint16_t ts_small_parse_table[] = { [119016] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7776), 3, + ACTIONS(7821), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7774), 42, + ACTIONS(7819), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -141586,11 +141158,11 @@ static const uint16_t ts_small_parse_table[] = { [119069] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7780), 3, + ACTIONS(7825), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7778), 42, + ACTIONS(7823), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -141636,11 +141208,11 @@ static const uint16_t ts_small_parse_table[] = { [119122] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7788), 3, + ACTIONS(7833), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7786), 42, + ACTIONS(7831), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -141686,11 +141258,11 @@ static const uint16_t ts_small_parse_table[] = { [119175] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7776), 3, + ACTIONS(7837), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7774), 42, + ACTIONS(7835), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -141736,11 +141308,11 @@ static const uint16_t ts_small_parse_table[] = { [119228] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7776), 3, + ACTIONS(7841), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7774), 42, + ACTIONS(7839), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -141786,11 +141358,11 @@ static const uint16_t ts_small_parse_table[] = { [119281] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7780), 3, + ACTIONS(7845), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7778), 42, + ACTIONS(7843), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -141836,11 +141408,11 @@ static const uint16_t ts_small_parse_table[] = { [119334] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7788), 3, + ACTIONS(7849), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7786), 42, + ACTIONS(7847), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -141886,11 +141458,11 @@ static const uint16_t ts_small_parse_table[] = { [119387] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7796), 3, + ACTIONS(7845), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7794), 42, + ACTIONS(7843), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -141936,11 +141508,11 @@ static const uint16_t ts_small_parse_table[] = { [119440] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7796), 3, + ACTIONS(7849), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7794), 42, + ACTIONS(7847), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -141986,11 +141558,11 @@ static const uint16_t ts_small_parse_table[] = { [119493] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8382), 3, + ACTIONS(7857), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(8380), 42, + ACTIONS(7855), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -142036,11 +141608,11 @@ static const uint16_t ts_small_parse_table[] = { [119546] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7710), 3, + ACTIONS(7692), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7708), 42, + ACTIONS(7690), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -142092,9 +141664,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_cl, ACTIONS(8390), 1, anon_sym_loop, - STATE(341), 1, + STATE(398), 1, sym_defun_header, - STATE(662), 1, + STATE(866), 1, sym_defun_keyword, ACTIONS(4199), 4, anon_sym_defun, @@ -142144,9 +141716,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_cl, ACTIONS(8394), 1, anon_sym_loop, - STATE(359), 1, + STATE(352), 1, sym_defun_header, - STATE(662), 1, + STATE(866), 1, sym_defun_keyword, ACTIONS(4199), 4, anon_sym_defun, @@ -142196,9 +141768,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_cl, ACTIONS(8398), 1, anon_sym_loop, - STATE(340), 1, + STATE(298), 1, sym_defun_header, - STATE(662), 1, + STATE(866), 1, sym_defun_keyword, ACTIONS(4199), 4, anon_sym_defun, @@ -142248,9 +141820,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_cl, ACTIONS(8402), 1, anon_sym_loop, - STATE(309), 1, + STATE(304), 1, sym_defun_header, - STATE(662), 1, + STATE(866), 1, sym_defun_keyword, ACTIONS(4199), 4, anon_sym_defun, @@ -142300,9 +141872,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_cl, ACTIONS(8406), 1, anon_sym_loop, - STATE(322), 1, + STATE(316), 1, sym_defun_header, - STATE(662), 1, + STATE(866), 1, sym_defun_keyword, ACTIONS(4199), 4, anon_sym_defun, @@ -142352,9 +141924,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_cl, ACTIONS(8410), 1, anon_sym_loop, - STATE(332), 1, + STATE(328), 1, sym_defun_header, - STATE(662), 1, + STATE(866), 1, sym_defun_keyword, ACTIONS(4199), 4, anon_sym_defun, @@ -142404,9 +141976,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_cl, ACTIONS(8414), 1, anon_sym_loop, - STATE(351), 1, + STATE(340), 1, sym_defun_header, - STATE(662), 1, + STATE(866), 1, sym_defun_keyword, ACTIONS(4199), 4, anon_sym_defun, @@ -142456,9 +142028,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_cl, ACTIONS(8418), 1, anon_sym_loop, - STATE(365), 1, + STATE(364), 1, sym_defun_header, - STATE(662), 1, + STATE(866), 1, sym_defun_keyword, ACTIONS(4199), 4, anon_sym_defun, @@ -142508,9 +142080,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_cl, ACTIONS(8422), 1, anon_sym_loop, - STATE(380), 1, + STATE(376), 1, sym_defun_header, - STATE(662), 1, + STATE(866), 1, sym_defun_keyword, ACTIONS(4199), 4, anon_sym_defun, @@ -142560,9 +142132,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_cl, ACTIONS(8426), 1, anon_sym_loop, - STATE(396), 1, + STATE(388), 1, sym_defun_header, - STATE(662), 1, + STATE(866), 1, sym_defun_keyword, ACTIONS(4199), 4, anon_sym_defun, @@ -142652,7 +142224,7 @@ static const uint16_t ts_small_parse_table[] = { [120259] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7539), 16, + ACTIONS(7571), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -142669,7 +142241,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7537), 23, + ACTIONS(7569), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -142696,7 +142268,7 @@ static const uint16_t ts_small_parse_table[] = { [120306] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7672), 16, + ACTIONS(7700), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -142713,7 +142285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7670), 23, + ACTIONS(7698), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -142740,7 +142312,7 @@ static const uint16_t ts_small_parse_table[] = { [120353] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7559), 16, + ACTIONS(7765), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -142757,7 +142329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7557), 23, + ACTIONS(7763), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -142784,7 +142356,7 @@ static const uint16_t ts_small_parse_table[] = { [120400] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7555), 16, + ACTIONS(7704), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -142801,7 +142373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7553), 23, + ACTIONS(7702), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -142828,7 +142400,7 @@ static const uint16_t ts_small_parse_table[] = { [120447] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7551), 16, + ACTIONS(7708), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -142845,7 +142417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7549), 23, + ACTIONS(7706), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -142872,7 +142444,7 @@ static const uint16_t ts_small_parse_table[] = { [120494] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7531), 16, + ACTIONS(7567), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -142889,7 +142461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7529), 23, + ACTIONS(7565), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -142916,7 +142488,7 @@ static const uint16_t ts_small_parse_table[] = { [120541] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7531), 16, + ACTIONS(7618), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -142933,7 +142505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7529), 23, + ACTIONS(7616), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -142960,7 +142532,7 @@ static const uint16_t ts_small_parse_table[] = { [120588] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7519), 16, + ACTIONS(7672), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -142977,7 +142549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7517), 23, + ACTIONS(7670), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -143004,7 +142576,7 @@ static const uint16_t ts_small_parse_table[] = { [120635] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7495), 16, + ACTIONS(7594), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -143021,7 +142593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7493), 23, + ACTIONS(7592), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -143048,7 +142620,7 @@ static const uint16_t ts_small_parse_table[] = { [120682] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7491), 16, + ACTIONS(7727), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -143065,7 +142637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7489), 23, + ACTIONS(7725), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -143092,7 +142664,7 @@ static const uint16_t ts_small_parse_table[] = { [120729] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7491), 16, + ACTIONS(7622), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -143109,7 +142681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7489), 23, + ACTIONS(7620), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -143136,7 +142708,7 @@ static const uint16_t ts_small_parse_table[] = { [120776] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7678), 16, + ACTIONS(7865), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -143153,7 +142725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7676), 23, + ACTIONS(7863), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -143180,7 +142752,7 @@ static const uint16_t ts_small_parse_table[] = { [120823] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7768), 16, + ACTIONS(7769), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -143197,7 +142769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7766), 23, + ACTIONS(7767), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -143224,7 +142796,7 @@ static const uint16_t ts_small_parse_table[] = { [120870] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7792), 16, + ACTIONS(7598), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -143241,7 +142813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7790), 23, + ACTIONS(7596), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -143268,7 +142840,7 @@ static const uint16_t ts_small_parse_table[] = { [120917] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7815), 16, + ACTIONS(7475), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -143285,7 +142857,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7813), 23, + ACTIONS(7473), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -143312,7 +142884,7 @@ static const uint16_t ts_small_parse_table[] = { [120964] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7796), 16, + ACTIONS(7489), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -143329,7 +142901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7794), 23, + ACTIONS(7487), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -143356,7 +142928,7 @@ static const uint16_t ts_small_parse_table[] = { [121011] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7796), 16, + ACTIONS(7664), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -143373,7 +142945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7794), 23, + ACTIONS(7662), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -143400,7 +142972,7 @@ static const uint16_t ts_small_parse_table[] = { [121058] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7788), 16, + ACTIONS(7630), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -143417,7 +142989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7786), 23, + ACTIONS(7628), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -143444,7 +143016,7 @@ static const uint16_t ts_small_parse_table[] = { [121105] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7780), 16, + ACTIONS(7738), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -143461,7 +143033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7778), 23, + ACTIONS(7736), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -143488,7 +143060,7 @@ static const uint16_t ts_small_parse_table[] = { [121152] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7776), 16, + ACTIONS(7793), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -143505,7 +143077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7774), 23, + ACTIONS(7791), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -143532,7 +143104,7 @@ static const uint16_t ts_small_parse_table[] = { [121199] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7776), 16, + ACTIONS(7813), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -143549,7 +143121,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7774), 23, + ACTIONS(7811), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -143576,7 +143148,7 @@ static const uint16_t ts_small_parse_table[] = { [121246] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7788), 16, + ACTIONS(7493), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -143593,7 +143165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7786), 23, + ACTIONS(7491), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -143620,7 +143192,7 @@ static const uint16_t ts_small_parse_table[] = { [121293] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7780), 16, + ACTIONS(7602), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -143637,7 +143209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7778), 23, + ACTIONS(7600), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -143664,7 +143236,7 @@ static const uint16_t ts_small_parse_table[] = { [121340] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7776), 16, + ACTIONS(7712), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -143681,7 +143253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7774), 23, + ACTIONS(7710), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -143708,7 +143280,7 @@ static const uint16_t ts_small_parse_table[] = { [121387] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7776), 16, + ACTIONS(7626), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -143725,7 +143297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7774), 23, + ACTIONS(7624), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -143752,7 +143324,7 @@ static const uint16_t ts_small_parse_table[] = { [121434] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7772), 16, + ACTIONS(7578), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -143769,7 +143341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7770), 23, + ACTIONS(7576), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -143796,7 +143368,7 @@ static const uint16_t ts_small_parse_table[] = { [121481] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7754), 16, + ACTIONS(7497), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -143813,7 +143385,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7752), 23, + ACTIONS(7495), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -143840,7 +143412,7 @@ static const uint16_t ts_small_parse_table[] = { [121528] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7750), 16, + ACTIONS(7582), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -143857,7 +143429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7748), 23, + ACTIONS(7580), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -143884,7 +143456,7 @@ static const uint16_t ts_small_parse_table[] = { [121575] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7746), 16, + ACTIONS(7556), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -143901,7 +143473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7744), 23, + ACTIONS(7554), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -143928,7 +143500,7 @@ static const uint16_t ts_small_parse_table[] = { [121622] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7750), 16, + ACTIONS(7467), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -143945,7 +143517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7748), 23, + ACTIONS(7465), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -143972,7 +143544,7 @@ static const uint16_t ts_small_parse_table[] = { [121669] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7746), 16, + ACTIONS(7797), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -143989,7 +143561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7744), 23, + ACTIONS(7795), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -144016,7 +143588,7 @@ static const uint16_t ts_small_parse_table[] = { [121716] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7738), 16, + ACTIONS(7668), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -144033,7 +143605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7736), 23, + ACTIONS(7666), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -144060,7 +143632,7 @@ static const uint16_t ts_small_parse_table[] = { [121763] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7754), 16, + ACTIONS(7801), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -144077,7 +143649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7752), 23, + ACTIONS(7799), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -144104,7 +143676,7 @@ static const uint16_t ts_small_parse_table[] = { [121810] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7750), 16, + ACTIONS(7504), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -144121,7 +143693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7748), 23, + ACTIONS(7502), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -144148,7 +143720,7 @@ static const uint16_t ts_small_parse_table[] = { [121857] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7746), 16, + ACTIONS(7805), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -144165,7 +143737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7744), 23, + ACTIONS(7803), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -144192,7 +143764,7 @@ static const uint16_t ts_small_parse_table[] = { [121904] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7750), 16, + ACTIONS(7630), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -144209,7 +143781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7748), 23, + ACTIONS(7628), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -144236,7 +143808,7 @@ static const uint16_t ts_small_parse_table[] = { [121951] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7746), 16, + ACTIONS(7841), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -144253,7 +143825,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7744), 23, + ACTIONS(7839), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -144280,7 +143852,7 @@ static const uint16_t ts_small_parse_table[] = { [121998] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7738), 16, + ACTIONS(7723), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -144297,7 +143869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7736), 23, + ACTIONS(7721), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -144324,7 +143896,7 @@ static const uint16_t ts_small_parse_table[] = { [122045] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7734), 16, + ACTIONS(7833), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -144341,7 +143913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7732), 23, + ACTIONS(7831), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -144368,7 +143940,7 @@ static const uint16_t ts_small_parse_table[] = { [122092] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7730), 16, + ACTIONS(7809), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -144385,7 +143957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7728), 23, + ACTIONS(7807), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -144412,7 +143984,7 @@ static const uint16_t ts_small_parse_table[] = { [122139] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7722), 16, + ACTIONS(7676), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -144429,7 +144001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7720), 23, + ACTIONS(7674), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -144456,7 +144028,7 @@ static const uint16_t ts_small_parse_table[] = { [122186] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7698), 16, + ACTIONS(7451), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -144473,7 +144045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7696), 23, + ACTIONS(7449), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -144500,7 +144072,7 @@ static const uint16_t ts_small_parse_table[] = { [122233] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7698), 16, + ACTIONS(7723), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -144517,7 +144089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7696), 23, + ACTIONS(7721), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -144544,7 +144116,7 @@ static const uint16_t ts_small_parse_table[] = { [122280] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7742), 16, + ACTIONS(7837), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -144561,7 +144133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7740), 23, + ACTIONS(7835), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -144588,7 +144160,7 @@ static const uint16_t ts_small_parse_table[] = { [122327] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7694), 16, + ACTIONS(7556), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -144605,7 +144177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7692), 23, + ACTIONS(7554), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -144632,7 +144204,7 @@ static const uint16_t ts_small_parse_table[] = { [122374] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7682), 16, + ACTIONS(7606), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -144649,7 +144221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7680), 23, + ACTIONS(7604), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -144676,7 +144248,7 @@ static const uint16_t ts_small_parse_table[] = { [122421] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7698), 16, + ACTIONS(7610), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -144693,7 +144265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7696), 23, + ACTIONS(7608), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -144720,7 +144292,7 @@ static const uint16_t ts_small_parse_table[] = { [122468] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7698), 16, + ACTIONS(7680), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -144737,7 +144309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7696), 23, + ACTIONS(7678), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -144764,7 +144336,7 @@ static const uint16_t ts_small_parse_table[] = { [122515] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7694), 16, + ACTIONS(7849), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -144781,7 +144353,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7692), 23, + ACTIONS(7847), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -144808,7 +144380,7 @@ static const uint16_t ts_small_parse_table[] = { [122562] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7819), 16, + ACTIONS(7638), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -144825,7 +144397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7817), 23, + ACTIONS(7636), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -144849,17 +144421,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [122609] = 5, + [122609] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8430), 1, - anon_sym_COLON, - ACTIONS(8432), 1, - anon_sym_COLON_COLON, - ACTIONS(7619), 15, + ACTIONS(7684), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, @@ -144872,10 +144441,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7617), 22, + ACTIONS(7682), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -144895,17 +144465,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [122660] = 5, + [122656] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8430), 1, - anon_sym_COLON, - ACTIONS(8432), 1, - anon_sym_COLON_COLON, - ACTIONS(7718), 15, + ACTIONS(7508), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, @@ -144918,10 +144485,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7716), 22, + ACTIONS(7506), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -144941,10 +144509,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [122711] = 3, + [122703] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7710), 16, + ACTIONS(7813), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -144961,7 +144529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7708), 23, + ACTIONS(7811), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -144985,10 +144553,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [122758] = 3, + [122750] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7706), 16, + ACTIONS(7750), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -145005,7 +144573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7704), 23, + ACTIONS(7748), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -145029,10 +144597,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [122805] = 3, + [122797] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7702), 16, + ACTIONS(7645), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -145049,7 +144617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7700), 23, + ACTIONS(7643), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -145073,10 +144641,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [122852] = 3, + [122844] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7559), 16, + ACTIONS(7649), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -145093,7 +144661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7557), 23, + ACTIONS(7647), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -145117,10 +144685,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [122899] = 3, + [122891] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7455), 16, + ACTIONS(7829), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -145137,7 +144705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7453), 23, + ACTIONS(7827), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -145161,10 +144729,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [122946] = 3, + [122938] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7686), 16, + ACTIONS(7821), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -145181,7 +144749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7684), 23, + ACTIONS(7819), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -145205,17 +144773,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [122993] = 5, + [122985] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8430), 1, - anon_sym_COLON, - ACTIONS(8432), 1, - anon_sym_COLON_COLON, - ACTIONS(7455), 15, + ACTIONS(7809), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, @@ -145228,10 +144793,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7453), 22, + ACTIONS(7807), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -145251,10 +144817,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123044] = 3, + [123032] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7527), 16, + ACTIONS(7845), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -145271,7 +144837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7525), 23, + ACTIONS(7843), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -145295,10 +144861,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123091] = 3, + [123079] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7668), 16, + ACTIONS(7529), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -145315,7 +144881,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7666), 23, + ACTIONS(7527), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -145339,10 +144905,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123138] = 3, + [123126] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7664), 16, + ACTIONS(7754), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -145359,7 +144925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7662), 23, + ACTIONS(7752), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -145383,10 +144949,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123185] = 3, + [123173] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7660), 16, + ACTIONS(7849), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -145403,7 +144969,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7658), 23, + ACTIONS(7847), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -145427,10 +144993,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123232] = 3, + [123220] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7451), 16, + ACTIONS(7853), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -145447,7 +145013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7449), 23, + ACTIONS(7851), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -145471,10 +145037,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123279] = 3, + [123267] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7648), 16, + ACTIONS(7512), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -145491,7 +145057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7646), 23, + ACTIONS(7510), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -145515,10 +145081,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123326] = 3, + [123314] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7527), 16, + ACTIONS(7742), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -145535,7 +145101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7525), 23, + ACTIONS(7740), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -145559,10 +145125,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123373] = 3, + [123361] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7644), 16, + ACTIONS(7519), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -145579,7 +145145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7642), 23, + ACTIONS(7517), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -145603,10 +145169,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123420] = 3, + [123408] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7636), 16, + ACTIONS(7738), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -145623,7 +145189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7634), 23, + ACTIONS(7736), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -145647,10 +145213,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123467] = 3, + [123455] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7632), 16, + ACTIONS(7536), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -145667,7 +145233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7630), 23, + ACTIONS(7534), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -145691,10 +145257,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123514] = 3, + [123502] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7682), 16, + ACTIONS(7861), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -145711,7 +145277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7680), 23, + ACTIONS(7859), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -145735,10 +145301,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123561] = 3, + [123549] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7615), 16, + ACTIONS(7544), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -145755,7 +145321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7613), 23, + ACTIONS(7542), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -145779,10 +145345,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123608] = 3, + [123596] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7555), 16, + ACTIONS(7857), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -145799,7 +145365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7553), 23, + ACTIONS(7855), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -145823,10 +145389,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123655] = 3, + [123643] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7603), 16, + ACTIONS(7634), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -145843,7 +145409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7601), 23, + ACTIONS(7632), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -145867,10 +145433,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123702] = 3, + [123690] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7640), 16, + ACTIONS(7734), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -145887,7 +145453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7638), 23, + ACTIONS(7732), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -145911,14 +145477,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123749] = 3, + [123737] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7595), 16, + ACTIONS(8430), 1, + anon_sym_COLON, + ACTIONS(8432), 1, + anon_sym_COLON_COLON, + ACTIONS(7479), 15, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, - anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, @@ -145931,11 +145500,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7593), 23, + ACTIONS(7477), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -145955,10 +145523,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123796] = 3, + [123788] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7628), 16, + ACTIONS(7455), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -145975,7 +145543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7626), 23, + ACTIONS(7453), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -145999,10 +145567,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123843] = 3, + [123835] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7583), 16, + ACTIONS(7845), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -146019,7 +145587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7581), 23, + ACTIONS(7843), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -146043,10 +145611,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123890] = 3, + [123882] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7611), 16, + ACTIONS(7656), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -146063,7 +145631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7609), 23, + ACTIONS(7654), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -146087,10 +145655,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123937] = 3, + [123929] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7607), 16, + ACTIONS(7746), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -146107,7 +145675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7605), 23, + ACTIONS(7744), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -146131,10 +145699,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123984] = 3, + [123976] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7567), 16, + ACTIONS(7525), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -146151,7 +145719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7565), 23, + ACTIONS(7523), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -146175,10 +145743,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [124031] = 3, + [124023] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7599), 16, + ACTIONS(7716), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -146195,7 +145763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7597), 23, + ACTIONS(7714), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -146219,10 +145787,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [124078] = 3, + [124070] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7826), 16, + ACTIONS(7459), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -146239,7 +145807,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7824), 23, + ACTIONS(7457), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -146263,10 +145831,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [124125] = 3, + [124117] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7599), 16, + ACTIONS(7841), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -146283,7 +145851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7597), 23, + ACTIONS(7839), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -146307,10 +145875,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [124172] = 3, + [124164] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7591), 16, + ACTIONS(7845), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -146327,7 +145895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7589), 23, + ACTIONS(7843), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -146351,10 +145919,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [124219] = 3, + [124211] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7547), 16, + ACTIONS(7821), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -146371,7 +145939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7545), 23, + ACTIONS(7819), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -146395,10 +145963,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [124266] = 3, + [124258] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7543), 16, + ACTIONS(7849), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -146415,7 +145983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7541), 23, + ACTIONS(7847), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -146439,14 +146007,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [124313] = 3, + [124305] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7535), 16, + ACTIONS(8430), 1, + anon_sym_COLON, + ACTIONS(8432), 1, + anon_sym_COLON_COLON, + ACTIONS(7455), 15, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, - anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, @@ -146459,11 +146030,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7533), 23, + ACTIONS(7453), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -146483,10 +146053,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [124360] = 3, + [124356] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7591), 16, + ACTIONS(7467), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -146503,7 +146073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7589), 23, + ACTIONS(7465), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -146527,10 +146097,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [124407] = 3, + [124403] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7527), 16, + ACTIONS(7471), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -146547,7 +146117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7525), 23, + ACTIONS(7469), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -146571,10 +146141,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [124454] = 3, + [124450] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7523), 16, + ACTIONS(7750), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -146591,7 +146161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7521), 23, + ACTIONS(7748), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -146615,10 +146185,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [124501] = 3, + [124497] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7515), 16, + ACTIONS(7672), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -146635,7 +146205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7513), 23, + ACTIONS(7670), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -146659,10 +146229,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [124548] = 3, + [124544] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7511), 16, + ACTIONS(7821), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -146679,7 +146249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7509), 23, + ACTIONS(7819), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -146703,10 +146273,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [124595] = 3, + [124591] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7507), 16, + ACTIONS(7548), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -146723,7 +146293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7505), 23, + ACTIONS(7546), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -146747,10 +146317,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [124642] = 3, + [124638] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7503), 16, + ACTIONS(7825), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -146767,7 +146337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7501), 23, + ACTIONS(7823), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -146791,10 +146361,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [124689] = 3, + [124685] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7499), 16, + ACTIONS(7773), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -146811,7 +146381,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7497), 23, + ACTIONS(7771), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -146835,10 +146405,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [124736] = 3, + [124732] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7487), 16, + ACTIONS(7777), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -146855,7 +146425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7485), 23, + ACTIONS(7775), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -146879,10 +146449,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [124783] = 3, + [124779] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7483), 16, + ACTIONS(7754), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -146899,7 +146469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7481), 23, + ACTIONS(7752), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -146923,10 +146493,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [124830] = 3, + [124826] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7479), 16, + ACTIONS(7630), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -146943,7 +146513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7477), 23, + ACTIONS(7628), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -146967,10 +146537,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [124877] = 3, + [124873] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7475), 16, + ACTIONS(7614), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -146987,7 +146557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7473), 23, + ACTIONS(7612), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -147011,10 +146581,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [124924] = 3, + [124920] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7471), 16, + ACTIONS(7552), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -147031,7 +146601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7469), 23, + ACTIONS(7550), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -147055,10 +146625,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [124971] = 3, + [124967] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7467), 16, + ACTIONS(7781), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -147075,7 +146645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7465), 23, + ACTIONS(7779), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -147099,10 +146669,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [125018] = 3, + [125014] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7463), 16, + ACTIONS(7660), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -147119,7 +146689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7461), 23, + ACTIONS(7658), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -147143,10 +146713,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [125065] = 3, + [125061] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7459), 16, + ACTIONS(7540), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -147163,7 +146733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7457), 23, + ACTIONS(7538), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -147187,10 +146757,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [125112] = 3, + [125108] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7690), 16, + ACTIONS(7467), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -147207,7 +146777,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7688), 23, + ACTIONS(7465), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -147231,10 +146801,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [125159] = 3, + [125155] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7656), 16, + ACTIONS(7688), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -147251,7 +146821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7654), 23, + ACTIONS(7686), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -147275,10 +146845,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [125206] = 3, + [125202] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7587), 16, + ACTIONS(7630), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -147295,7 +146865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7585), 23, + ACTIONS(7628), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -147319,10 +146889,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [125253] = 3, + [125249] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7833), 16, + ACTIONS(7692), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -147339,7 +146909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7831), 23, + ACTIONS(7690), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -147363,10 +146933,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [125300] = 3, + [125296] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7714), 16, + ACTIONS(7781), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -147383,7 +146953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7712), 23, + ACTIONS(7779), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -147407,10 +146977,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [125347] = 3, + [125343] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7726), 16, + ACTIONS(7586), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -147427,7 +146997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7724), 23, + ACTIONS(7584), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -147451,10 +147021,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [125394] = 3, + [125390] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7761), 16, + ACTIONS(7785), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -147471,7 +147041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7759), 23, + ACTIONS(7783), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -147495,14 +147065,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [125441] = 3, + [125437] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7579), 16, + ACTIONS(8430), 1, + anon_sym_COLON, + ACTIONS(8432), 1, + anon_sym_COLON_COLON, + ACTIONS(7817), 15, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, - anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, @@ -147515,11 +147088,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7577), 23, + ACTIONS(7815), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -147542,7 +147114,7 @@ static const uint16_t ts_small_parse_table[] = { [125488] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7784), 16, + ACTIONS(7563), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -147559,7 +147131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7782), 23, + ACTIONS(7561), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -147586,7 +147158,7 @@ static const uint16_t ts_small_parse_table[] = { [125535] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7575), 16, + ACTIONS(7785), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -147603,7 +147175,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7573), 23, + ACTIONS(7783), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -147630,7 +147202,7 @@ static const uint16_t ts_small_parse_table[] = { [125582] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7803), 16, + ACTIONS(7789), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -147647,7 +147219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7801), 23, + ACTIONS(7787), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -147674,7 +147246,7 @@ static const uint16_t ts_small_parse_table[] = { [125629] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7571), 16, + ACTIONS(7849), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -147691,7 +147263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7569), 23, + ACTIONS(7847), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -147718,7 +147290,7 @@ static const uint16_t ts_small_parse_table[] = { [125676] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7563), 16, + ACTIONS(7590), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -147735,7 +147307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7561), 23, + ACTIONS(7588), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -147762,7 +147334,7 @@ static const uint16_t ts_small_parse_table[] = { [125723] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7837), 16, + ACTIONS(7857), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -147779,7 +147351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7835), 23, + ACTIONS(7855), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -147806,7 +147378,7 @@ static const uint16_t ts_small_parse_table[] = { [125770] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7848), 16, + ACTIONS(7696), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -147823,7 +147395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7846), 23, + ACTIONS(7694), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -147850,7 +147422,7 @@ static const uint16_t ts_small_parse_table[] = { [125817] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7652), 16, + ACTIONS(7845), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -147867,7 +147439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7650), 23, + ACTIONS(7843), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -147894,7 +147466,7 @@ static const uint16_t ts_small_parse_table[] = { [125864] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7862), 16, + ACTIONS(7761), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -147911,7 +147483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7860), 23, + ACTIONS(7759), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -147938,7 +147510,7 @@ static const uint16_t ts_small_parse_table[] = { [125911] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7852), 16, + ACTIONS(7716), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -147955,7 +147527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7850), 23, + ACTIONS(7714), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -147982,7 +147554,7 @@ static const uint16_t ts_small_parse_table[] = { [125958] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7841), 16, + ACTIONS(7821), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -147999,7 +147571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7839), 23, + ACTIONS(7819), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -148038,13 +147610,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, ACTIONS(8452), 1, anon_sym_SLASH, - STATE(2006), 1, + STATE(2024), 1, sym_format_prefix_parameters, STATE(2704), 1, sym_format_modifiers, - STATE(2982), 1, + STATE(2968), 1, sym__format_token, - STATE(3092), 1, + STATE(3055), 1, aux_sym_format_modifiers_repeat1, STATE(4020), 1, sym_format_directive_type, @@ -148094,13 +147666,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(8454), 1, anon_sym_DQUOTE, - STATE(2006), 1, + STATE(2024), 1, sym_format_prefix_parameters, STATE(2704), 1, sym_format_modifiers, - STATE(2982), 1, + STATE(2968), 1, sym__format_token, - STATE(3092), 1, + STATE(3055), 1, aux_sym_format_modifiers_repeat1, STATE(4020), 1, sym_format_directive_type, @@ -148150,13 +147722,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(8456), 1, anon_sym_DQUOTE, - STATE(2006), 1, + STATE(2024), 1, sym_format_prefix_parameters, STATE(2704), 1, sym_format_modifiers, - STATE(2982), 1, + STATE(2968), 1, sym__format_token, - STATE(3092), 1, + STATE(3055), 1, aux_sym_format_modifiers_repeat1, STATE(4020), 1, sym_format_directive_type, @@ -148206,13 +147778,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(8458), 1, anon_sym_DQUOTE, - STATE(2006), 1, + STATE(2024), 1, sym_format_prefix_parameters, STATE(2704), 1, sym_format_modifiers, - STATE(2982), 1, + STATE(2968), 1, sym__format_token, - STATE(3092), 1, + STATE(3055), 1, aux_sym_format_modifiers_repeat1, STATE(4020), 1, sym_format_directive_type, @@ -148262,13 +147834,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(8460), 1, anon_sym_DQUOTE, - STATE(2006), 1, + STATE(2024), 1, sym_format_prefix_parameters, STATE(2704), 1, sym_format_modifiers, - STATE(2982), 1, + STATE(2968), 1, sym__format_token, - STATE(3092), 1, + STATE(3055), 1, aux_sym_format_modifiers_repeat1, STATE(4020), 1, sym_format_directive_type, @@ -148318,13 +147890,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(8462), 1, anon_sym_DQUOTE, - STATE(2006), 1, + STATE(2024), 1, sym_format_prefix_parameters, STATE(2704), 1, sym_format_modifiers, - STATE(2982), 1, + STATE(2968), 1, sym__format_token, - STATE(3092), 1, + STATE(3055), 1, aux_sym_format_modifiers_repeat1, STATE(4020), 1, sym_format_directive_type, @@ -148374,13 +147946,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(8464), 1, anon_sym_DQUOTE, - STATE(2006), 1, + STATE(2024), 1, sym_format_prefix_parameters, STATE(2704), 1, sym_format_modifiers, - STATE(2982), 1, + STATE(2968), 1, sym__format_token, - STATE(3092), 1, + STATE(3055), 1, aux_sym_format_modifiers_repeat1, STATE(4020), 1, sym_format_directive_type, @@ -148430,13 +148002,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(8466), 1, anon_sym_DQUOTE, - STATE(2006), 1, + STATE(2024), 1, sym_format_prefix_parameters, STATE(2704), 1, sym_format_modifiers, - STATE(2982), 1, + STATE(2968), 1, sym__format_token, - STATE(3092), 1, + STATE(3055), 1, aux_sym_format_modifiers_repeat1, STATE(4020), 1, sym_format_directive_type, @@ -148486,13 +148058,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(8468), 1, anon_sym_DQUOTE, - STATE(2006), 1, + STATE(2024), 1, sym_format_prefix_parameters, STATE(2704), 1, sym_format_modifiers, - STATE(2982), 1, + STATE(2968), 1, sym__format_token, - STATE(3092), 1, + STATE(3055), 1, aux_sym_format_modifiers_repeat1, STATE(4020), 1, sym_format_directive_type, @@ -148542,13 +148114,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(8470), 1, anon_sym_DQUOTE, - STATE(2006), 1, + STATE(2024), 1, sym_format_prefix_parameters, STATE(2704), 1, sym_format_modifiers, - STATE(2982), 1, + STATE(2968), 1, sym__format_token, - STATE(3092), 1, + STATE(3055), 1, aux_sym_format_modifiers_repeat1, STATE(4020), 1, sym_format_directive_type, @@ -148598,13 +148170,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(8472), 1, anon_sym_DQUOTE, - STATE(2006), 1, + STATE(2024), 1, sym_format_prefix_parameters, STATE(2704), 1, sym_format_modifiers, - STATE(2982), 1, + STATE(2968), 1, sym__format_token, - STATE(3092), 1, + STATE(3055), 1, aux_sym_format_modifiers_repeat1, STATE(4020), 1, sym_format_directive_type, @@ -148654,13 +148226,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(8474), 1, anon_sym_DQUOTE, - STATE(2006), 1, + STATE(2024), 1, sym_format_prefix_parameters, STATE(2704), 1, sym_format_modifiers, - STATE(2982), 1, + STATE(2968), 1, sym__format_token, - STATE(3092), 1, + STATE(3055), 1, aux_sym_format_modifiers_repeat1, STATE(4020), 1, sym_format_directive_type, @@ -148710,13 +148282,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(8476), 1, anon_sym_DQUOTE, - STATE(2006), 1, + STATE(2024), 1, sym_format_prefix_parameters, STATE(2704), 1, sym_format_modifiers, - STATE(2982), 1, + STATE(2968), 1, sym__format_token, - STATE(3092), 1, + STATE(3055), 1, aux_sym_format_modifiers_repeat1, STATE(4020), 1, sym_format_directive_type, @@ -148766,13 +148338,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(8478), 1, anon_sym_DQUOTE, - STATE(2006), 1, + STATE(2024), 1, sym_format_prefix_parameters, STATE(2704), 1, sym_format_modifiers, - STATE(2982), 1, + STATE(2968), 1, sym__format_token, - STATE(3092), 1, + STATE(3055), 1, aux_sym_format_modifiers_repeat1, STATE(4020), 1, sym_format_directive_type, @@ -148822,13 +148394,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(8480), 1, anon_sym_DQUOTE, - STATE(2006), 1, + STATE(2024), 1, sym_format_prefix_parameters, STATE(2704), 1, sym_format_modifiers, - STATE(2982), 1, + STATE(2968), 1, sym__format_token, - STATE(3092), 1, + STATE(3055), 1, aux_sym_format_modifiers_repeat1, STATE(4020), 1, sym_format_directive_type, @@ -148878,13 +148450,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(8482), 1, anon_sym_DQUOTE, - STATE(2006), 1, + STATE(2024), 1, sym_format_prefix_parameters, STATE(2704), 1, sym_format_modifiers, - STATE(2982), 1, + STATE(2968), 1, sym__format_token, - STATE(3092), 1, + STATE(3055), 1, aux_sym_format_modifiers_repeat1, STATE(4020), 1, sym_format_directive_type, @@ -148934,13 +148506,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(8484), 1, anon_sym_DQUOTE, - STATE(2006), 1, + STATE(2024), 1, sym_format_prefix_parameters, STATE(2704), 1, sym_format_modifiers, - STATE(2982), 1, + STATE(2968), 1, sym__format_token, - STATE(3092), 1, + STATE(3055), 1, aux_sym_format_modifiers_repeat1, STATE(4020), 1, sym_format_directive_type, @@ -148990,13 +148562,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(8486), 1, anon_sym_DQUOTE, - STATE(2006), 1, + STATE(2024), 1, sym_format_prefix_parameters, STATE(2704), 1, sym_format_modifiers, - STATE(2982), 1, + STATE(2968), 1, sym__format_token, - STATE(3092), 1, + STATE(3055), 1, aux_sym_format_modifiers_repeat1, STATE(4020), 1, sym_format_directive_type, @@ -149046,13 +148618,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(8488), 1, anon_sym_DQUOTE, - STATE(2006), 1, + STATE(2024), 1, sym_format_prefix_parameters, STATE(2704), 1, sym_format_modifiers, - STATE(2982), 1, + STATE(2968), 1, sym__format_token, - STATE(3092), 1, + STATE(3055), 1, aux_sym_format_modifiers_repeat1, STATE(4020), 1, sym_format_directive_type, @@ -149102,13 +148674,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(8490), 1, anon_sym_DQUOTE, - STATE(2006), 1, + STATE(2024), 1, sym_format_prefix_parameters, STATE(2704), 1, sym_format_modifiers, - STATE(2982), 1, + STATE(2968), 1, sym__format_token, - STATE(3092), 1, + STATE(3055), 1, aux_sym_format_modifiers_repeat1, STATE(4020), 1, sym_format_directive_type, @@ -149156,13 +148728,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, ACTIONS(8452), 1, anon_sym_SLASH, - STATE(2006), 1, + STATE(2024), 1, sym_format_prefix_parameters, STATE(2704), 1, sym_format_modifiers, - STATE(2982), 1, + STATE(2968), 1, sym__format_token, - STATE(3092), 1, + STATE(3055), 1, aux_sym_format_modifiers_repeat1, STATE(4020), 1, sym_format_directive_type, @@ -149200,7 +148772,7 @@ static const uint16_t ts_small_parse_table[] = { [127514] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7463), 10, + ACTIONS(7645), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -149211,7 +148783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7461), 26, + ACTIONS(7643), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -149238,28 +148810,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [127558] = 5, + [127558] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8492), 1, - anon_sym_COLON, - ACTIONS(8494), 1, - anon_sym_COLON_COLON, - ACTIONS(7619), 9, + ACTIONS(7519), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7617), 25, + ACTIONS(7517), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -149281,10 +148851,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [127606] = 3, + [127602] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7455), 10, + ACTIONS(7525), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -149295,7 +148865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7453), 26, + ACTIONS(7523), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -149322,10 +148892,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [127650] = 3, + [127646] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7788), 10, + ACTIONS(7529), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -149336,7 +148906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7786), 26, + ACTIONS(7527), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -149363,26 +148933,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [127694] = 3, + [127690] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7539), 10, + ACTIONS(8492), 1, + anon_sym_COLON, + ACTIONS(8494), 1, + anon_sym_COLON_COLON, + ACTIONS(7817), 9, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, - anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7537), 26, + ACTIONS(7815), 25, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -149407,7 +148979,7 @@ static const uint16_t ts_small_parse_table[] = { [127738] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7780), 10, + ACTIONS(7789), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -149418,7 +148990,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7778), 26, + ACTIONS(7787), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -149448,7 +149020,7 @@ static const uint16_t ts_small_parse_table[] = { [127782] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7852), 10, + ACTIONS(7793), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -149459,7 +149031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7850), 26, + ACTIONS(7791), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -149489,7 +149061,7 @@ static const uint16_t ts_small_parse_table[] = { [127826] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7776), 10, + ACTIONS(7797), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -149500,7 +149072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7774), 26, + ACTIONS(7795), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -149530,7 +149102,7 @@ static const uint16_t ts_small_parse_table[] = { [127870] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7841), 10, + ACTIONS(7801), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -149541,7 +149113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7839), 26, + ACTIONS(7799), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -149571,7 +149143,7 @@ static const uint16_t ts_small_parse_table[] = { [127914] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7776), 10, + ACTIONS(7805), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -149582,7 +149154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7774), 26, + ACTIONS(7803), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -149612,7 +149184,7 @@ static const uint16_t ts_small_parse_table[] = { [127958] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7788), 10, + ACTIONS(7809), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -149623,7 +149195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7786), 26, + ACTIONS(7807), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -149653,7 +149225,7 @@ static const uint16_t ts_small_parse_table[] = { [128002] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7780), 10, + ACTIONS(7813), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -149664,7 +149236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7778), 26, + ACTIONS(7811), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -149694,7 +149266,7 @@ static const uint16_t ts_small_parse_table[] = { [128046] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7776), 10, + ACTIONS(7821), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -149705,7 +149277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7774), 26, + ACTIONS(7819), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -149735,7 +149307,7 @@ static const uint16_t ts_small_parse_table[] = { [128090] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7833), 10, + ACTIONS(7821), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -149746,7 +149318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7831), 26, + ACTIONS(7819), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -149776,7 +149348,7 @@ static const uint16_t ts_small_parse_table[] = { [128134] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7826), 10, + ACTIONS(7809), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -149787,7 +149359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7824), 26, + ACTIONS(7807), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -149817,7 +149389,7 @@ static const uint16_t ts_small_parse_table[] = { [128178] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7819), 10, + ACTIONS(7813), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -149828,7 +149400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7817), 26, + ACTIONS(7811), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -149858,7 +149430,7 @@ static const uint16_t ts_small_parse_table[] = { [128222] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7837), 10, + ACTIONS(7821), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -149869,7 +149441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7835), 26, + ACTIONS(7819), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -149899,7 +149471,7 @@ static const uint16_t ts_small_parse_table[] = { [128266] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7792), 10, + ACTIONS(7821), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -149910,7 +149482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7790), 26, + ACTIONS(7819), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -149940,7 +149512,7 @@ static const uint16_t ts_small_parse_table[] = { [128310] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7768), 10, + ACTIONS(7536), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -149951,7 +149523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7766), 26, + ACTIONS(7534), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -149981,7 +149553,7 @@ static const uint16_t ts_small_parse_table[] = { [128354] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7678), 10, + ACTIONS(7540), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -149992,7 +149564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7676), 26, + ACTIONS(7538), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -150022,7 +149594,7 @@ static const uint16_t ts_small_parse_table[] = { [128398] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7491), 10, + ACTIONS(7508), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -150033,7 +149605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7489), 26, + ACTIONS(7506), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -150063,7 +149635,7 @@ static const uint16_t ts_small_parse_table[] = { [128442] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7491), 10, + ACTIONS(7451), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -150074,7 +149646,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7489), 26, + ACTIONS(7449), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -150104,7 +149676,7 @@ static const uint16_t ts_small_parse_table[] = { [128486] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7495), 10, + ACTIONS(7680), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -150115,7 +149687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7493), 26, + ACTIONS(7678), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -150145,7 +149717,7 @@ static const uint16_t ts_small_parse_table[] = { [128530] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7776), 10, + ACTIONS(7829), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -150156,7 +149728,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7774), 26, + ACTIONS(7827), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -150186,7 +149758,7 @@ static const uint16_t ts_small_parse_table[] = { [128574] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7772), 10, + ACTIONS(7684), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -150197,7 +149769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7770), 26, + ACTIONS(7682), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -150227,7 +149799,7 @@ static const uint16_t ts_small_parse_table[] = { [128618] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7754), 10, + ACTIONS(7688), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -150238,7 +149810,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7752), 26, + ACTIONS(7686), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -150268,7 +149840,7 @@ static const uint16_t ts_small_parse_table[] = { [128662] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7519), 10, + ACTIONS(7692), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -150279,7 +149851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7517), 26, + ACTIONS(7690), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -150309,7 +149881,7 @@ static const uint16_t ts_small_parse_table[] = { [128706] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7531), 10, + ACTIONS(7696), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -150320,7 +149892,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7529), 26, + ACTIONS(7694), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -150350,7 +149922,7 @@ static const uint16_t ts_small_parse_table[] = { [128750] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7750), 10, + ACTIONS(7700), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -150361,7 +149933,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7748), 26, + ACTIONS(7698), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -150391,7 +149963,7 @@ static const uint16_t ts_small_parse_table[] = { [128794] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7862), 10, + ACTIONS(7704), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -150402,7 +149974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7860), 26, + ACTIONS(7702), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -150432,7 +150004,7 @@ static const uint16_t ts_small_parse_table[] = { [128838] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7746), 10, + ACTIONS(7708), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -150443,7 +150015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7744), 26, + ACTIONS(7706), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -150473,7 +150045,7 @@ static const uint16_t ts_small_parse_table[] = { [128882] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7750), 10, + ACTIONS(7712), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -150484,7 +150056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7748), 26, + ACTIONS(7710), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -150514,7 +150086,7 @@ static const uint16_t ts_small_parse_table[] = { [128926] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7599), 10, + ACTIONS(7723), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -150525,7 +150097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7597), 26, + ACTIONS(7721), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -150555,7 +150127,7 @@ static const uint16_t ts_small_parse_table[] = { [128970] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7746), 10, + ACTIONS(7723), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -150566,7 +150138,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7744), 26, + ACTIONS(7721), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -150596,7 +150168,7 @@ static const uint16_t ts_small_parse_table[] = { [129014] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7738), 10, + ACTIONS(7853), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -150607,7 +150179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7736), 26, + ACTIONS(7851), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -150637,7 +150209,7 @@ static const uint16_t ts_small_parse_table[] = { [129058] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7599), 10, + ACTIONS(7727), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -150648,7 +150220,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7597), 26, + ACTIONS(7725), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -150678,7 +150250,7 @@ static const uint16_t ts_small_parse_table[] = { [129102] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7815), 10, + ACTIONS(7861), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -150689,7 +150261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7813), 26, + ACTIONS(7859), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -150719,7 +150291,7 @@ static const uint16_t ts_small_parse_table[] = { [129146] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7591), 10, + ACTIONS(7825), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -150730,7 +150302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7589), 26, + ACTIONS(7823), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -150760,7 +150332,7 @@ static const uint16_t ts_small_parse_table[] = { [129190] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7591), 10, + ACTIONS(7833), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -150771,7 +150343,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7589), 26, + ACTIONS(7831), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -150801,7 +150373,7 @@ static const uint16_t ts_small_parse_table[] = { [129234] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7754), 10, + ACTIONS(7837), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -150812,7 +150384,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7752), 26, + ACTIONS(7835), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -150842,7 +150414,7 @@ static const uint16_t ts_small_parse_table[] = { [129278] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7750), 10, + ACTIONS(7841), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -150853,7 +150425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7748), 26, + ACTIONS(7839), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -150883,7 +150455,7 @@ static const uint16_t ts_small_parse_table[] = { [129322] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7587), 10, + ACTIONS(7845), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -150894,7 +150466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7585), 26, + ACTIONS(7843), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -150924,7 +150496,7 @@ static const uint16_t ts_small_parse_table[] = { [129366] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7579), 10, + ACTIONS(7849), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -150935,7 +150507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7577), 26, + ACTIONS(7847), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -150965,7 +150537,7 @@ static const uint16_t ts_small_parse_table[] = { [129410] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7575), 10, + ACTIONS(7845), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -150976,7 +150548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7573), 26, + ACTIONS(7843), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -151006,7 +150578,7 @@ static const uint16_t ts_small_parse_table[] = { [129454] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7746), 10, + ACTIONS(7849), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -151017,7 +150589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7744), 26, + ACTIONS(7847), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -151047,7 +150619,7 @@ static const uint16_t ts_small_parse_table[] = { [129498] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7750), 10, + ACTIONS(7857), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -151058,7 +150630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7748), 26, + ACTIONS(7855), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -151088,7 +150660,7 @@ static const uint16_t ts_small_parse_table[] = { [129542] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7746), 10, + ACTIONS(7841), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -151099,7 +150671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7744), 26, + ACTIONS(7839), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -151129,7 +150701,7 @@ static const uint16_t ts_small_parse_table[] = { [129586] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7738), 10, + ACTIONS(7845), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -151140,7 +150712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7736), 26, + ACTIONS(7843), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -151170,7 +150742,7 @@ static const uint16_t ts_small_parse_table[] = { [129630] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7734), 10, + ACTIONS(7849), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -151181,7 +150753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7732), 26, + ACTIONS(7847), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -151211,7 +150783,7 @@ static const uint16_t ts_small_parse_table[] = { [129674] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7730), 10, + ACTIONS(7845), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -151222,7 +150794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7728), 26, + ACTIONS(7843), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -151252,7 +150824,7 @@ static const uint16_t ts_small_parse_table[] = { [129718] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7722), 10, + ACTIONS(7849), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -151263,7 +150835,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7720), 26, + ACTIONS(7847), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -151293,7 +150865,7 @@ static const uint16_t ts_small_parse_table[] = { [129762] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7698), 10, + ACTIONS(7857), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -151304,7 +150876,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7696), 26, + ACTIONS(7855), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -151334,7 +150906,7 @@ static const uint16_t ts_small_parse_table[] = { [129806] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7698), 10, + ACTIONS(7544), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -151345,7 +150917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7696), 26, + ACTIONS(7542), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -151375,7 +150947,7 @@ static const uint16_t ts_small_parse_table[] = { [129850] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7698), 10, + ACTIONS(7548), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -151386,7 +150958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7696), 26, + ACTIONS(7546), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -151416,7 +150988,7 @@ static const uint16_t ts_small_parse_table[] = { [129894] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7652), 10, + ACTIONS(7552), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -151427,7 +150999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7650), 26, + ACTIONS(7550), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -151457,7 +151029,7 @@ static const uint16_t ts_small_parse_table[] = { [129938] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7848), 10, + ACTIONS(7467), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -151468,7 +151040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7846), 26, + ACTIONS(7465), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -151498,7 +151070,7 @@ static const uint16_t ts_small_parse_table[] = { [129982] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7694), 10, + ACTIONS(7563), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -151509,7 +151081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7692), 26, + ACTIONS(7561), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -151539,7 +151111,7 @@ static const uint16_t ts_small_parse_table[] = { [130026] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7803), 10, + ACTIONS(7567), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -151550,7 +151122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7801), 26, + ACTIONS(7565), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -151580,7 +151152,7 @@ static const uint16_t ts_small_parse_table[] = { [130070] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7784), 10, + ACTIONS(7571), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -151591,7 +151163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7782), 26, + ACTIONS(7569), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -151621,7 +151193,7 @@ static const uint16_t ts_small_parse_table[] = { [130114] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7761), 10, + ACTIONS(7578), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -151632,7 +151204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7759), 26, + ACTIONS(7576), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -151662,7 +151234,7 @@ static const uint16_t ts_small_parse_table[] = { [130158] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7726), 10, + ACTIONS(7455), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -151673,7 +151245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7724), 26, + ACTIONS(7453), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -151703,7 +151275,7 @@ static const uint16_t ts_small_parse_table[] = { [130202] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7796), 10, + ACTIONS(7734), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -151714,7 +151286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7794), 26, + ACTIONS(7732), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -151744,7 +151316,7 @@ static const uint16_t ts_small_parse_table[] = { [130246] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7714), 10, + ACTIONS(7738), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -151755,7 +151327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7712), 26, + ACTIONS(7736), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -151785,7 +151357,7 @@ static const uint16_t ts_small_parse_table[] = { [130290] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7682), 10, + ACTIONS(7865), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -151796,7 +151368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7680), 26, + ACTIONS(7863), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -151826,7 +151398,7 @@ static const uint16_t ts_small_parse_table[] = { [130334] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7656), 10, + ACTIONS(7630), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -151837,7 +151409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7654), 26, + ACTIONS(7628), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -151867,7 +151439,7 @@ static const uint16_t ts_small_parse_table[] = { [130378] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7690), 10, + ACTIONS(7630), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -151878,7 +151450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7688), 26, + ACTIONS(7628), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -151908,7 +151480,7 @@ static const uint16_t ts_small_parse_table[] = { [130422] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7459), 10, + ACTIONS(7716), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -151919,7 +151491,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7457), 26, + ACTIONS(7714), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -151949,7 +151521,7 @@ static const uint16_t ts_small_parse_table[] = { [130466] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7796), 10, + ACTIONS(7672), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -151960,7 +151532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7794), 26, + ACTIONS(7670), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -151990,7 +151562,7 @@ static const uint16_t ts_small_parse_table[] = { [130510] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7531), 10, + ACTIONS(7630), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -152001,7 +151573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7529), 26, + ACTIONS(7628), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -152031,7 +151603,7 @@ static const uint16_t ts_small_parse_table[] = { [130554] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7467), 10, + ACTIONS(7630), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -152042,7 +151614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7465), 26, + ACTIONS(7628), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -152072,7 +151644,7 @@ static const uint16_t ts_small_parse_table[] = { [130598] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7471), 10, + ACTIONS(7716), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -152083,7 +151655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7469), 26, + ACTIONS(7714), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -152113,7 +151685,7 @@ static const uint16_t ts_small_parse_table[] = { [130642] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7698), 10, + ACTIONS(7672), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -152124,7 +151696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7696), 26, + ACTIONS(7670), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -152154,7 +151726,7 @@ static const uint16_t ts_small_parse_table[] = { [130686] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7475), 10, + ACTIONS(7738), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -152165,7 +151737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7473), 26, + ACTIONS(7736), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -152195,7 +151767,7 @@ static const uint16_t ts_small_parse_table[] = { [130730] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7479), 10, + ACTIONS(7742), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -152206,7 +151778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7477), 26, + ACTIONS(7740), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -152236,7 +151808,7 @@ static const uint16_t ts_small_parse_table[] = { [130774] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7483), 10, + ACTIONS(7746), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -152247,7 +151819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7481), 26, + ACTIONS(7744), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -152277,7 +151849,7 @@ static const uint16_t ts_small_parse_table[] = { [130818] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7487), 10, + ACTIONS(7750), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -152288,7 +151860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7485), 26, + ACTIONS(7748), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -152318,7 +151890,7 @@ static const uint16_t ts_small_parse_table[] = { [130862] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7499), 10, + ACTIONS(7754), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -152329,7 +151901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7497), 26, + ACTIONS(7752), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -152359,7 +151931,7 @@ static const uint16_t ts_small_parse_table[] = { [130906] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7694), 10, + ACTIONS(7750), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -152370,7 +151942,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7692), 26, + ACTIONS(7748), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -152400,7 +151972,7 @@ static const uint16_t ts_small_parse_table[] = { [130950] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7682), 10, + ACTIONS(7754), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -152411,7 +151983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7680), 26, + ACTIONS(7752), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -152441,7 +152013,7 @@ static const uint16_t ts_small_parse_table[] = { [130994] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7672), 10, + ACTIONS(7582), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -152452,7 +152024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7670), 26, + ACTIONS(7580), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -152482,7 +152054,7 @@ static const uint16_t ts_small_parse_table[] = { [131038] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7640), 10, + ACTIONS(7761), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -152493,7 +152065,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7638), 26, + ACTIONS(7759), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -152523,7 +152095,7 @@ static const uint16_t ts_small_parse_table[] = { [131082] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7503), 10, + ACTIONS(7459), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -152534,7 +152106,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7501), 26, + ACTIONS(7457), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -152561,26 +152133,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [131126] = 3, + [131126] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7523), 10, + ACTIONS(8492), 1, + anon_sym_COLON, + ACTIONS(8494), 1, + anon_sym_COLON_COLON, + ACTIONS(7455), 9, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, - anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7521), 26, + ACTIONS(7453), 25, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -152602,10 +152176,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [131170] = 3, + [131174] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7571), 10, + ACTIONS(7467), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -152616,7 +152190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7569), 26, + ACTIONS(7465), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -152643,10 +152217,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [131214] = 3, + [131218] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7628), 10, + ACTIONS(7471), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -152657,7 +152231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7626), 26, + ACTIONS(7469), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -152684,10 +152258,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [131258] = 3, + [131262] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7611), 10, + ACTIONS(7475), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -152698,7 +152272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7609), 26, + ACTIONS(7473), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -152725,10 +152299,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [131302] = 3, + [131306] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7607), 10, + ACTIONS(7556), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -152739,7 +152313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7605), 26, + ACTIONS(7554), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -152766,10 +152340,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [131346] = 3, + [131350] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7507), 10, + ACTIONS(7556), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -152780,7 +152354,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7505), 26, + ACTIONS(7554), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -152807,10 +152381,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [131390] = 3, + [131394] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7511), 10, + ACTIONS(7489), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -152821,7 +152395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7509), 26, + ACTIONS(7487), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -152848,10 +152422,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [131434] = 3, + [131438] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7515), 10, + ACTIONS(7493), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -152862,7 +152436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7513), 26, + ACTIONS(7491), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -152889,10 +152463,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [131478] = 3, + [131482] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7563), 10, + ACTIONS(8496), 1, + aux_sym_num_lit_token2, + ACTIONS(7445), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -152903,7 +152479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7561), 26, + ACTIONS(7443), 25, ts_builtin_sym_end, sym__ws, sym_comment, @@ -152914,7 +152490,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, @@ -152930,10 +152505,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [131522] = 3, + [131528] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7527), 10, + ACTIONS(7586), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -152944,7 +152519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7525), 26, + ACTIONS(7584), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -152971,10 +152546,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [131566] = 3, + [131572] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7702), 10, + ACTIONS(7590), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -152985,7 +152560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7700), 26, + ACTIONS(7588), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -153012,10 +152587,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [131610] = 3, + [131616] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7535), 10, + ACTIONS(7594), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -153026,7 +152601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7533), 26, + ACTIONS(7592), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -153053,10 +152628,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [131654] = 3, + [131660] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7543), 10, + ACTIONS(7598), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -153067,7 +152642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7541), 26, + ACTIONS(7596), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -153094,10 +152669,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [131698] = 3, + [131704] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7547), 10, + ACTIONS(7602), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -153108,7 +152683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7545), 26, + ACTIONS(7600), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -153135,10 +152710,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [131742] = 3, + [131748] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7559), 10, + ACTIONS(7606), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -153149,7 +152724,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7557), 26, + ACTIONS(7604), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -153176,10 +152751,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [131786] = 3, + [131792] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7567), 10, + ACTIONS(7610), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -153190,7 +152765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7565), 26, + ACTIONS(7608), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -153217,10 +152792,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [131830] = 3, + [131836] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7555), 10, + ACTIONS(7614), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -153231,7 +152806,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7553), 26, + ACTIONS(7612), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -153258,10 +152833,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [131874] = 3, + [131880] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7583), 10, + ACTIONS(7618), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -153272,7 +152847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7581), 26, + ACTIONS(7616), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -153299,10 +152874,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [131918] = 3, + [131924] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7595), 10, + ACTIONS(7622), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -153313,7 +152888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7593), 26, + ACTIONS(7620), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -153340,10 +152915,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [131962] = 3, + [131968] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7603), 10, + ACTIONS(7626), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -153354,7 +152929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7601), 26, + ACTIONS(7624), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -153381,10 +152956,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [132006] = 3, + [132012] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7615), 10, + ACTIONS(7634), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -153395,7 +152970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7613), 26, + ACTIONS(7632), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -153422,10 +152997,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [132050] = 3, + [132056] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7632), 10, + ACTIONS(7638), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -153436,7 +153011,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7630), 26, + ACTIONS(7636), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -153463,10 +153038,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [132094] = 3, + [132100] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7636), 10, + ACTIONS(7765), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -153477,7 +153052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7634), 26, + ACTIONS(7763), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -153504,10 +153079,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [132138] = 3, + [132144] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7644), 10, + ACTIONS(7769), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -153518,7 +153093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7642), 26, + ACTIONS(7767), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -153545,12 +153120,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [132182] = 4, + [132188] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8496), 1, - aux_sym_num_lit_token2, - ACTIONS(7445), 10, + ACTIONS(7773), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -153561,7 +153134,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7443), 25, + ACTIONS(7771), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -153572,6 +153145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, @@ -153587,10 +153161,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [132228] = 3, + [132232] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7527), 10, + ACTIONS(7777), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -153601,7 +153175,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7525), 26, + ACTIONS(7775), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -153628,10 +153202,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [132272] = 3, + [132276] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7706), 10, + ACTIONS(7781), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -153642,7 +153216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7704), 26, + ACTIONS(7779), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -153669,10 +153243,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [132316] = 3, + [132320] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7559), 10, + ACTIONS(7781), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -153683,7 +153257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7557), 26, + ACTIONS(7779), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -153710,10 +153284,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [132360] = 3, + [132364] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7710), 10, + ACTIONS(7785), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -153724,7 +153298,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7708), 26, + ACTIONS(7783), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -153751,28 +153325,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [132404] = 5, + [132408] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8492), 1, - anon_sym_COLON, - ACTIONS(8494), 1, - anon_sym_COLON_COLON, - ACTIONS(7718), 9, + ACTIONS(7785), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7716), 25, + ACTIONS(7783), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -153797,7 +153369,7 @@ static const uint16_t ts_small_parse_table[] = { [132452] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7648), 10, + ACTIONS(7649), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -153808,7 +153380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7646), 26, + ACTIONS(7647), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -153838,7 +153410,7 @@ static const uint16_t ts_small_parse_table[] = { [132496] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7555), 10, + ACTIONS(7497), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -153849,7 +153421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7553), 26, + ACTIONS(7495), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -153879,7 +153451,7 @@ static const uint16_t ts_small_parse_table[] = { [132540] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7551), 10, + ACTIONS(7656), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -153890,7 +153462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7549), 26, + ACTIONS(7654), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -153920,7 +153492,7 @@ static const uint16_t ts_small_parse_table[] = { [132584] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7451), 10, + ACTIONS(7660), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -153931,7 +153503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7449), 26, + ACTIONS(7658), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -153961,7 +153533,7 @@ static const uint16_t ts_small_parse_table[] = { [132628] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7660), 10, + ACTIONS(7664), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -153972,7 +153544,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7658), 26, + ACTIONS(7662), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -154002,7 +153574,7 @@ static const uint16_t ts_small_parse_table[] = { [132672] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7742), 10, + ACTIONS(7668), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -154013,7 +153585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7740), 26, + ACTIONS(7666), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -154043,7 +153615,7 @@ static const uint16_t ts_small_parse_table[] = { [132716] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7664), 10, + ACTIONS(7676), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -154054,7 +153626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7662), 26, + ACTIONS(7674), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -154081,26 +153653,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [132760] = 3, + [132760] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7668), 10, + ACTIONS(8492), 1, + anon_sym_COLON, + ACTIONS(8494), 1, + anon_sym_COLON_COLON, + ACTIONS(7479), 9, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, - anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7666), 26, + ACTIONS(7477), 25, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -154122,10 +153696,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [132804] = 3, + [132808] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7527), 10, + ACTIONS(7467), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -154136,7 +153710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7525), 26, + ACTIONS(7465), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -154163,28 +153737,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [132848] = 5, + [132852] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8492), 1, - anon_sym_COLON, - ACTIONS(8494), 1, - anon_sym_COLON_COLON, - ACTIONS(7455), 9, + ACTIONS(7504), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7453), 25, + ACTIONS(7502), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -154209,7 +153781,7 @@ static const uint16_t ts_small_parse_table[] = { [132896] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7686), 10, + ACTIONS(7512), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -154220,7 +153792,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7684), 26, + ACTIONS(7510), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -154250,11 +153822,11 @@ static const uint16_t ts_small_parse_table[] = { [132940] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7796), 3, + ACTIONS(7525), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7794), 32, + ACTIONS(7523), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -154290,11 +153862,11 @@ static const uint16_t ts_small_parse_table[] = { [132983] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7726), 3, + ACTIONS(7467), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7724), 32, + ACTIONS(7465), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -154330,11 +153902,11 @@ static const uint16_t ts_small_parse_table[] = { [133026] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7710), 3, + ACTIONS(7471), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7708), 32, + ACTIONS(7469), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -154370,11 +153942,11 @@ static const uint16_t ts_small_parse_table[] = { [133069] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7706), 3, + ACTIONS(7467), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7704), 32, + ACTIONS(7465), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -154410,11 +153982,11 @@ static const uint16_t ts_small_parse_table[] = { [133112] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7455), 3, + ACTIONS(7508), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7453), 32, + ACTIONS(7506), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -154450,11 +154022,11 @@ static const uint16_t ts_small_parse_table[] = { [133155] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7686), 3, + ACTIONS(7512), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7684), 32, + ACTIONS(7510), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -154490,11 +154062,11 @@ static const uint16_t ts_small_parse_table[] = { [133198] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7527), 3, + ACTIONS(7519), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7525), 32, + ACTIONS(7517), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -154530,11 +154102,11 @@ static const uint16_t ts_small_parse_table[] = { [133241] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7668), 3, + ACTIONS(7455), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7666), 32, + ACTIONS(7453), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -154570,11 +154142,11 @@ static const uint16_t ts_small_parse_table[] = { [133284] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7527), 3, + ACTIONS(7540), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7525), 32, + ACTIONS(7538), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -154610,11 +154182,11 @@ static const uint16_t ts_small_parse_table[] = { [133327] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7636), 3, + ACTIONS(7544), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7634), 32, + ACTIONS(7542), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -154650,11 +154222,11 @@ static const uint16_t ts_small_parse_table[] = { [133370] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7632), 3, + ACTIONS(7548), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7630), 32, + ACTIONS(7546), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -154690,11 +154262,11 @@ static const uint16_t ts_small_parse_table[] = { [133413] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7615), 3, + ACTIONS(7467), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7613), 32, + ACTIONS(7465), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -154730,11 +154302,11 @@ static const uint16_t ts_small_parse_table[] = { [133456] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7603), 3, + ACTIONS(7563), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7601), 32, + ACTIONS(7561), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -154810,11 +154382,11 @@ static const uint16_t ts_small_parse_table[] = { [133542] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7547), 3, + ACTIONS(7571), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7545), 32, + ACTIONS(7569), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -154850,11 +154422,11 @@ static const uint16_t ts_small_parse_table[] = { [133585] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7796), 3, + ACTIONS(7598), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7794), 32, + ACTIONS(7596), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -154890,11 +154462,11 @@ static const uint16_t ts_small_parse_table[] = { [133628] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7543), 3, + ACTIONS(7602), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7541), 32, + ACTIONS(7600), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -154930,11 +154502,11 @@ static const uint16_t ts_small_parse_table[] = { [133671] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7788), 3, + ACTIONS(7606), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7786), 32, + ACTIONS(7604), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -154970,11 +154542,11 @@ static const uint16_t ts_small_parse_table[] = { [133714] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7780), 3, + ACTIONS(7610), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7778), 32, + ACTIONS(7608), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -155010,11 +154582,11 @@ static const uint16_t ts_small_parse_table[] = { [133757] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7776), 3, + ACTIONS(7622), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7774), 32, + ACTIONS(7620), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -155050,11 +154622,11 @@ static const uint16_t ts_small_parse_table[] = { [133800] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7776), 3, + ACTIONS(7626), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7774), 32, + ACTIONS(7624), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -155090,11 +154662,11 @@ static const uint16_t ts_small_parse_table[] = { [133843] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7788), 3, + ACTIONS(7638), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7786), 32, + ACTIONS(7636), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -155130,11 +154702,11 @@ static const uint16_t ts_small_parse_table[] = { [133886] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7780), 3, + ACTIONS(7649), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7778), 32, + ACTIONS(7647), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -155170,11 +154742,11 @@ static const uint16_t ts_small_parse_table[] = { [133929] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7776), 3, + ACTIONS(7656), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7774), 32, + ACTIONS(7654), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -155210,11 +154782,11 @@ static const uint16_t ts_small_parse_table[] = { [133972] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7776), 3, + ACTIONS(7664), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7774), 32, + ACTIONS(7662), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -155250,11 +154822,11 @@ static const uint16_t ts_small_parse_table[] = { [134015] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7772), 3, + ACTIONS(7668), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7770), 32, + ACTIONS(7666), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -155290,11 +154862,11 @@ static const uint16_t ts_small_parse_table[] = { [134058] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7754), 3, + ACTIONS(7688), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7752), 32, + ACTIONS(7686), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -155330,11 +154902,11 @@ static const uint16_t ts_small_parse_table[] = { [134101] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7750), 3, + ACTIONS(7692), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7748), 32, + ACTIONS(7690), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -155370,11 +154942,11 @@ static const uint16_t ts_small_parse_table[] = { [134144] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7746), 3, + ACTIONS(7700), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7744), 32, + ACTIONS(7698), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -155410,11 +154982,11 @@ static const uint16_t ts_small_parse_table[] = { [134187] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7750), 3, + ACTIONS(7704), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7748), 32, + ACTIONS(7702), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -155450,11 +155022,11 @@ static const uint16_t ts_small_parse_table[] = { [134230] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7746), 3, + ACTIONS(7708), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7744), 32, + ACTIONS(7706), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -155490,11 +155062,11 @@ static const uint16_t ts_small_parse_table[] = { [134273] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7738), 3, + ACTIONS(7723), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7736), 32, + ACTIONS(7721), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -155530,11 +155102,11 @@ static const uint16_t ts_small_parse_table[] = { [134316] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7754), 3, + ACTIONS(7723), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7752), 32, + ACTIONS(7721), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -155570,11 +155142,11 @@ static const uint16_t ts_small_parse_table[] = { [134359] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7750), 3, + ACTIONS(7742), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7748), 32, + ACTIONS(7740), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -155690,11 +155262,11 @@ static const uint16_t ts_small_parse_table[] = { [134488] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7746), 3, + ACTIONS(7754), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7744), 32, + ACTIONS(7752), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -155730,11 +155302,11 @@ static const uint16_t ts_small_parse_table[] = { [134531] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7738), 3, + ACTIONS(7750), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7736), 32, + ACTIONS(7748), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -155770,11 +155342,11 @@ static const uint16_t ts_small_parse_table[] = { [134574] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7734), 3, + ACTIONS(7754), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7732), 32, + ACTIONS(7752), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -155810,11 +155382,11 @@ static const uint16_t ts_small_parse_table[] = { [134617] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7730), 3, + ACTIONS(7769), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7728), 32, + ACTIONS(7767), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -155850,11 +155422,11 @@ static const uint16_t ts_small_parse_table[] = { [134660] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7722), 3, + ACTIONS(7773), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7720), 32, + ACTIONS(7771), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -155890,11 +155462,11 @@ static const uint16_t ts_small_parse_table[] = { [134703] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7698), 3, + ACTIONS(7777), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7696), 32, + ACTIONS(7775), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -155930,11 +155502,11 @@ static const uint16_t ts_small_parse_table[] = { [134746] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7698), 3, + ACTIONS(7781), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7696), 32, + ACTIONS(7779), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -155970,11 +155542,11 @@ static const uint16_t ts_small_parse_table[] = { [134789] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7694), 3, + ACTIONS(7781), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7692), 32, + ACTIONS(7779), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -156010,11 +155582,11 @@ static const uint16_t ts_small_parse_table[] = { [134832] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7682), 3, + ACTIONS(7785), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7680), 32, + ACTIONS(7783), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -156050,11 +155622,11 @@ static const uint16_t ts_small_parse_table[] = { [134875] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7698), 3, + ACTIONS(7785), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7696), 32, + ACTIONS(7783), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -156090,11 +155662,11 @@ static const uint16_t ts_small_parse_table[] = { [134918] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7698), 3, + ACTIONS(7793), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7696), 32, + ACTIONS(7791), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -156130,11 +155702,11 @@ static const uint16_t ts_small_parse_table[] = { [134961] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7694), 3, + ACTIONS(7797), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7692), 32, + ACTIONS(7795), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -156170,11 +155742,11 @@ static const uint16_t ts_small_parse_table[] = { [135004] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7682), 3, + ACTIONS(7801), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7680), 32, + ACTIONS(7799), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -156210,11 +155782,11 @@ static const uint16_t ts_small_parse_table[] = { [135047] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7672), 3, + ACTIONS(7805), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7670), 32, + ACTIONS(7803), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -156250,11 +155822,11 @@ static const uint16_t ts_small_parse_table[] = { [135090] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7640), 3, + ACTIONS(7809), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7638), 32, + ACTIONS(7807), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -156290,11 +155862,11 @@ static const uint16_t ts_small_parse_table[] = { [135133] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7628), 3, + ACTIONS(7813), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7626), 32, + ACTIONS(7811), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -156330,11 +155902,11 @@ static const uint16_t ts_small_parse_table[] = { [135176] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7611), 3, + ACTIONS(7821), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7609), 32, + ACTIONS(7819), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -156370,11 +155942,11 @@ static const uint16_t ts_small_parse_table[] = { [135219] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7599), 3, + ACTIONS(7821), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7597), 32, + ACTIONS(7819), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -156410,11 +155982,11 @@ static const uint16_t ts_small_parse_table[] = { [135262] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7599), 3, + ACTIONS(7809), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7597), 32, + ACTIONS(7807), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -156450,11 +156022,11 @@ static const uint16_t ts_small_parse_table[] = { [135305] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7591), 3, + ACTIONS(7813), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7589), 32, + ACTIONS(7811), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -156490,11 +156062,11 @@ static const uint16_t ts_small_parse_table[] = { [135348] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7591), 3, + ACTIONS(7821), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7589), 32, + ACTIONS(7819), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -156530,11 +156102,11 @@ static const uint16_t ts_small_parse_table[] = { [135391] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7587), 3, + ACTIONS(7821), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7585), 32, + ACTIONS(7819), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -156570,11 +156142,11 @@ static const uint16_t ts_small_parse_table[] = { [135434] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7579), 3, + ACTIONS(7825), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7577), 32, + ACTIONS(7823), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -156610,11 +156182,11 @@ static const uint16_t ts_small_parse_table[] = { [135477] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7575), 3, + ACTIONS(7833), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7573), 32, + ACTIONS(7831), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -156650,11 +156222,11 @@ static const uint16_t ts_small_parse_table[] = { [135520] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7559), 3, + ACTIONS(7837), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7557), 32, + ACTIONS(7835), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -156690,11 +156262,11 @@ static const uint16_t ts_small_parse_table[] = { [135563] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7555), 3, + ACTIONS(7841), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7553), 32, + ACTIONS(7839), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -156730,11 +156302,11 @@ static const uint16_t ts_small_parse_table[] = { [135606] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7559), 3, + ACTIONS(7845), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7557), 32, + ACTIONS(7843), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -156770,11 +156342,11 @@ static const uint16_t ts_small_parse_table[] = { [135649] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7555), 3, + ACTIONS(7849), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7553), 32, + ACTIONS(7847), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -156810,11 +156382,11 @@ static const uint16_t ts_small_parse_table[] = { [135692] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7551), 3, + ACTIONS(7845), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7549), 32, + ACTIONS(7843), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -156850,11 +156422,11 @@ static const uint16_t ts_small_parse_table[] = { [135735] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7539), 3, + ACTIONS(7849), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7537), 32, + ACTIONS(7847), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -156890,11 +156462,11 @@ static const uint16_t ts_small_parse_table[] = { [135778] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7491), 3, + ACTIONS(7857), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7489), 32, + ACTIONS(7855), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -156930,11 +156502,11 @@ static const uint16_t ts_small_parse_table[] = { [135821] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7491), 3, + ACTIONS(7841), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7489), 32, + ACTIONS(7839), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -156970,11 +156542,11 @@ static const uint16_t ts_small_parse_table[] = { [135864] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7768), 3, + ACTIONS(7845), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7766), 32, + ACTIONS(7843), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -157010,11 +156582,11 @@ static const uint16_t ts_small_parse_table[] = { [135907] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7792), 3, + ACTIONS(7849), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7790), 32, + ACTIONS(7847), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -157050,11 +156622,11 @@ static const uint16_t ts_small_parse_table[] = { [135950] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7815), 3, + ACTIONS(7845), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7813), 32, + ACTIONS(7843), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -157090,11 +156662,11 @@ static const uint16_t ts_small_parse_table[] = { [135993] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7826), 3, + ACTIONS(7849), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7824), 32, + ACTIONS(7847), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -157130,11 +156702,11 @@ static const uint16_t ts_small_parse_table[] = { [136036] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7833), 3, + ACTIONS(7857), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7831), 32, + ACTIONS(7855), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -157170,11 +156742,11 @@ static const uint16_t ts_small_parse_table[] = { [136079] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7652), 3, + ACTIONS(7865), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7650), 32, + ACTIONS(7863), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -157210,11 +156782,11 @@ static const uint16_t ts_small_parse_table[] = { [136122] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7848), 3, + ACTIONS(7630), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7846), 32, + ACTIONS(7628), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -157250,11 +156822,11 @@ static const uint16_t ts_small_parse_table[] = { [136165] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7784), 3, + ACTIONS(7630), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7782), 32, + ACTIONS(7628), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -157290,11 +156862,11 @@ static const uint16_t ts_small_parse_table[] = { [136208] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7761), 3, + ACTIONS(7716), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7759), 32, + ACTIONS(7714), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -157327,57 +156899,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [136251] = 6, + [136251] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8501), 1, - anon_sym_POUND_, - ACTIONS(8498), 2, - sym__ws, - sym_comment, - STATE(1967), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(7405), 10, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(7407), 19, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [136300] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7656), 3, + ACTIONS(7672), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7654), 32, + ACTIONS(7670), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -157410,14 +156939,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [136343] = 3, + [136294] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7690), 3, + ACTIONS(7630), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7688), 32, + ACTIONS(7628), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -157450,14 +156979,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [136386] = 3, + [136337] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7467), 3, + ACTIONS(7630), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7465), 32, + ACTIONS(7628), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -157490,14 +157019,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [136429] = 3, + [136380] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7471), 3, + ACTIONS(7716), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7469), 32, + ACTIONS(7714), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -157530,14 +157059,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [136472] = 3, + [136423] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7475), 3, + ACTIONS(7672), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7473), 32, + ACTIONS(7670), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -157570,14 +157099,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [136515] = 3, + [136466] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7479), 3, + ACTIONS(7556), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7477), 32, + ACTIONS(7554), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -157610,14 +157139,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [136558] = 3, + [136509] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7511), 3, + ACTIONS(7556), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7509), 32, + ACTIONS(7554), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -157650,14 +157179,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, + [136552] = 6, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8501), 1, + anon_sym_POUND_, + ACTIONS(8498), 2, + sym__ws, + sym_comment, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7405), 10, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + ACTIONS(7407), 19, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, [136601] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7515), 3, + ACTIONS(7829), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7513), 32, + ACTIONS(7827), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -157693,11 +157265,11 @@ static const uint16_t ts_small_parse_table[] = { [136644] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7523), 3, + ACTIONS(7853), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7521), 32, + ACTIONS(7851), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -157733,11 +157305,11 @@ static const uint16_t ts_small_parse_table[] = { [136687] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7527), 3, + ACTIONS(7459), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7525), 32, + ACTIONS(7457), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -157964,7 +157536,7 @@ static const uint16_t ts_small_parse_table[] = { [136936] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8522), 10, + ACTIONS(8514), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -157975,7 +157547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8520), 23, + ACTIONS(8512), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -157999,27 +157571,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [136977] = 5, + [136977] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8494), 1, - anon_sym_COLON_COLON, - ACTIONS(8524), 1, - anon_sym_COLON, - ACTIONS(7619), 9, + ACTIONS(8514), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7617), 22, + ACTIONS(8512), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -158039,10 +157609,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [137022] = 3, + [137018] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8522), 10, + ACTIONS(8514), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -158053,7 +157623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8520), 23, + ACTIONS(8512), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -158077,27 +157647,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [137063] = 5, + [137059] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8494), 1, - anon_sym_COLON_COLON, - ACTIONS(8526), 1, - anon_sym_COLON, - ACTIONS(7619), 9, + ACTIONS(8526), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7617), 22, + ACTIONS(8524), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -158117,10 +157685,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [137108] = 3, + [137100] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8522), 10, + ACTIONS(8530), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -158131,7 +157699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8520), 23, + ACTIONS(8528), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -158155,27 +157723,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [137149] = 5, + [137141] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8494), 1, - anon_sym_COLON_COLON, - ACTIONS(8528), 1, - anon_sym_COLON, - ACTIONS(7619), 9, + ACTIONS(8530), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7617), 22, + ACTIONS(8528), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -158195,27 +157761,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [137194] = 5, + [137182] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8494), 1, - anon_sym_COLON_COLON, - ACTIONS(8530), 1, - anon_sym_COLON, - ACTIONS(7619), 9, + ACTIONS(8530), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7617), 22, + ACTIONS(8528), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -158235,27 +157799,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [137239] = 5, + [137223] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8494), 1, - anon_sym_COLON_COLON, - ACTIONS(8532), 1, - anon_sym_COLON, - ACTIONS(7619), 9, + ACTIONS(8530), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7617), 22, + ACTIONS(8528), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -158275,10 +157837,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [137284] = 3, + [137264] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8536), 10, + ACTIONS(8534), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -158289,8 +157851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8534), 23, - ts_builtin_sym_end, + ACTIONS(8532), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -158299,6 +157860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -158313,27 +157875,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [137325] = 5, + [137305] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8494), 1, - anon_sym_COLON_COLON, - ACTIONS(8538), 1, - anon_sym_COLON, - ACTIONS(7619), 9, + ACTIONS(8534), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7617), 22, + ACTIONS(8532), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -158353,10 +157913,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [137370] = 3, + [137346] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8542), 10, + ACTIONS(8534), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -158367,7 +157927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8540), 23, + ACTIONS(8532), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -158391,27 +157951,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [137411] = 5, + [137387] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8494), 1, - anon_sym_COLON_COLON, - ACTIONS(8544), 1, - anon_sym_COLON, - ACTIONS(7619), 9, + ACTIONS(8534), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7617), 22, + ACTIONS(8532), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -158431,10 +157989,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [137456] = 3, + [137428] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8548), 10, + ACTIONS(8538), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -158445,7 +158003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8546), 23, + ACTIONS(8536), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -158469,10 +158027,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [137497] = 3, + [137469] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8552), 10, + ACTIONS(8538), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -158483,7 +158041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8550), 23, + ACTIONS(8536), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -158507,27 +158065,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [137538] = 5, + [137510] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8494), 1, - anon_sym_COLON_COLON, - ACTIONS(8554), 1, - anon_sym_COLON, - ACTIONS(7619), 9, + ACTIONS(8542), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7617), 22, + ACTIONS(8540), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -158547,10 +158103,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [137583] = 3, + [137551] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8548), 10, + ACTIONS(8542), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -158561,7 +158117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8546), 23, + ACTIONS(8540), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -158585,10 +158141,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [137624] = 3, + [137592] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8548), 10, + ACTIONS(8542), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -158599,7 +158155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8546), 23, + ACTIONS(8540), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -158623,10 +158179,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [137665] = 3, + [137633] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8548), 10, + ACTIONS(8542), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -158637,7 +158193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8546), 23, + ACTIONS(8540), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -158661,10 +158217,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [137706] = 3, + [137674] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8558), 10, + ACTIONS(8546), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -158675,7 +158231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8556), 23, + ACTIONS(8544), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -158699,10 +158255,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [137747] = 3, + [137715] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8558), 10, + ACTIONS(8546), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -158713,7 +158269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8556), 23, + ACTIONS(8544), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -158737,10 +158293,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [137788] = 3, + [137756] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8558), 10, + ACTIONS(8546), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -158751,7 +158307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8556), 23, + ACTIONS(8544), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -158775,10 +158331,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [137829] = 3, + [137797] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8558), 10, + ACTIONS(8546), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -158789,7 +158345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8556), 23, + ACTIONS(8544), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -158813,10 +158369,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [137870] = 3, + [137838] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8552), 10, + ACTIONS(8510), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -158827,7 +158383,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8550), 23, + ACTIONS(8508), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -158851,57 +158407,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [137911] = 12, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(8436), 1, - aux_sym_num_lit_token1, - ACTIONS(8444), 1, - anon_sym_SQUOTE, - ACTIONS(8446), 1, - anon_sym_COMMA, - ACTIONS(8452), 1, - anon_sym_SLASH, - STATE(2696), 1, - sym_format_modifiers, - STATE(2982), 1, - sym__format_token, - STATE(3092), 1, - aux_sym_format_modifiers_repeat1, - STATE(4018), 1, - sym_format_directive_type, - ACTIONS(8438), 2, - anon_sym_COLON, - anon_sym_AT, - ACTIONS(8450), 2, - anon_sym_AT_COLON, - anon_sym_COLON_AT, - ACTIONS(8442), 21, - anon_sym_TILDE, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - aux_sym_format_directive_type_token1, - aux_sym_format_directive_type_token2, - anon_sym_LF, - anon_sym_CR, - aux_sym_format_directive_type_token3, - aux_sym_format_directive_type_token4, - aux_sym_format_directive_type_token5, - aux_sym_format_directive_type_token6, - anon_sym__, - aux_sym_format_directive_type_token7, - aux_sym_format_directive_type_token8, - aux_sym_format_directive_type_token9, - aux_sym_format_directive_type_token10, - anon_sym_SEMI, - anon_sym_QMARK, - anon_sym_Newline, - aux_sym_format_directive_type_token11, - [137970] = 3, + [137879] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8562), 10, + ACTIONS(8510), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -158912,7 +158421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8560), 23, + ACTIONS(8508), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -158936,10 +158445,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [138011] = 3, + [137920] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8566), 10, + ACTIONS(8510), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -158950,7 +158459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8564), 23, + ACTIONS(8508), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -158974,10 +158483,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [138052] = 3, + [137961] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8570), 10, + ACTIONS(8550), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -158988,7 +158497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8568), 23, + ACTIONS(8548), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -159012,10 +158521,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [138093] = 3, + [138002] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8562), 10, + ACTIONS(8554), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -159026,7 +158535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8560), 23, + ACTIONS(8552), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -159050,10 +158559,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [138134] = 3, + [138043] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8562), 10, + ACTIONS(8554), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -159064,7 +158573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8560), 23, + ACTIONS(8552), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -159088,10 +158597,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [138175] = 3, + [138084] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8570), 10, + ACTIONS(8558), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -159102,7 +158611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8568), 23, + ACTIONS(8556), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -159126,27 +158635,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [138216] = 5, + [138125] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8494), 1, - anon_sym_COLON_COLON, - ACTIONS(8572), 1, - anon_sym_COLON, - ACTIONS(7619), 9, + ACTIONS(8558), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7617), 22, + ACTIONS(8556), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -159166,10 +158673,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [138261] = 3, + [138166] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8570), 10, + ACTIONS(8562), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -159180,7 +158687,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8568), 23, + ACTIONS(8560), 23, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -159189,7 +158697,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -159204,10 +158711,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [138302] = 3, + [138207] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8576), 10, + ACTIONS(8550), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -159218,7 +158725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8574), 23, + ACTIONS(8548), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -159242,10 +158749,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [138343] = 3, + [138248] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8576), 10, + ACTIONS(8526), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -159256,7 +158763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8574), 23, + ACTIONS(8524), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -159280,27 +158787,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [138384] = 5, + [138289] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8494), 1, - anon_sym_COLON_COLON, - ACTIONS(8578), 1, - anon_sym_COLON, - ACTIONS(7619), 9, + ACTIONS(8566), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7617), 22, + ACTIONS(8564), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -159320,10 +158825,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [138429] = 3, + [138330] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8514), 10, + ACTIONS(8526), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -159334,7 +158839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8512), 23, + ACTIONS(8524), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -159358,10 +158863,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [138470] = 3, + [138371] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8514), 10, + ACTIONS(8570), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -159372,7 +158877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8512), 23, + ACTIONS(8568), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -159396,25 +158901,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [138511] = 3, + [138412] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8570), 10, + ACTIONS(8494), 1, + anon_sym_COLON_COLON, + ACTIONS(8572), 1, + anon_sym_COLON, + ACTIONS(7479), 9, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, - anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8568), 23, + ACTIONS(7477), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -159434,10 +158941,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [138552] = 3, + [138457] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8514), 10, + ACTIONS(8570), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -159448,7 +158955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8512), 23, + ACTIONS(8568), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -159472,7 +158979,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [138593] = 3, + [138498] = 3, ACTIONS(47), 1, sym_block_comment, ACTIONS(8576), 10, @@ -159510,10 +159017,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [138634] = 3, + [138539] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8576), 10, + ACTIONS(8570), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -159524,7 +159031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8574), 23, + ACTIONS(8568), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -159548,10 +159055,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [138675] = 3, + [138580] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8582), 10, + ACTIONS(8570), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -159562,7 +159069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8580), 23, + ACTIONS(8568), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -159586,25 +159093,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [138716] = 3, + [138621] = 12, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8582), 10, + ACTIONS(8436), 1, + aux_sym_num_lit_token1, + ACTIONS(8444), 1, + anon_sym_SQUOTE, + ACTIONS(8446), 1, + anon_sym_COMMA, + ACTIONS(8452), 1, + anon_sym_SLASH, + STATE(2729), 1, + sym_format_modifiers, + STATE(2968), 1, + sym__format_token, + STATE(3055), 1, + aux_sym_format_modifiers_repeat1, + STATE(4014), 1, + sym_format_directive_type, + ACTIONS(8438), 2, + anon_sym_COLON, + anon_sym_AT, + ACTIONS(8450), 2, + anon_sym_AT_COLON, + anon_sym_COLON_AT, + ACTIONS(8442), 21, + anon_sym_TILDE, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + aux_sym_format_directive_type_token1, + aux_sym_format_directive_type_token2, + anon_sym_LF, + anon_sym_CR, + aux_sym_format_directive_type_token3, + aux_sym_format_directive_type_token4, + aux_sym_format_directive_type_token5, + aux_sym_format_directive_type_token6, + anon_sym__, + aux_sym_format_directive_type_token7, + aux_sym_format_directive_type_token8, + aux_sym_format_directive_type_token9, + aux_sym_format_directive_type_token10, + anon_sym_SEMI, + anon_sym_QMARK, + anon_sym_Newline, + aux_sym_format_directive_type_token11, + [138680] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8494), 1, + anon_sym_COLON_COLON, + ACTIONS(8578), 1, + anon_sym_COLON, + ACTIONS(7479), 9, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, - anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8580), 23, + ACTIONS(7477), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -159624,25 +159180,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [138757] = 3, + [138725] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8582), 10, + ACTIONS(8494), 1, + anon_sym_COLON_COLON, + ACTIONS(8580), 1, + anon_sym_COLON, + ACTIONS(7479), 9, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, - anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8580), 23, + ACTIONS(7477), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -159662,25 +159220,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [138798] = 3, + [138770] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8582), 10, + ACTIONS(8494), 1, + anon_sym_COLON_COLON, + ACTIONS(8582), 1, + anon_sym_COLON, + ACTIONS(7479), 9, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, - anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8580), 23, + ACTIONS(7477), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -159700,25 +159260,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [138839] = 3, + [138815] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8586), 10, + ACTIONS(8494), 1, + anon_sym_COLON_COLON, + ACTIONS(8584), 1, + anon_sym_COLON, + ACTIONS(7479), 9, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, - anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8584), 23, + ACTIONS(7477), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -159738,25 +159300,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [138880] = 3, + [138860] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8586), 10, + ACTIONS(8494), 1, + anon_sym_COLON_COLON, + ACTIONS(8586), 1, + anon_sym_COLON, + ACTIONS(7479), 9, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, - anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8584), 23, + ACTIONS(7477), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -159776,25 +159340,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [138921] = 3, + [138905] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8590), 10, + ACTIONS(8494), 1, + anon_sym_COLON_COLON, + ACTIONS(8588), 1, + anon_sym_COLON, + ACTIONS(7479), 9, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, - anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8588), 23, + ACTIONS(7477), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -159814,25 +159380,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [138962] = 3, + [138950] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8590), 10, + ACTIONS(8494), 1, + anon_sym_COLON_COLON, + ACTIONS(8590), 1, + anon_sym_COLON, + ACTIONS(7479), 9, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, - anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8588), 23, + ACTIONS(7477), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -159852,25 +159420,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [139003] = 3, + [138995] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8594), 10, + ACTIONS(8494), 1, + anon_sym_COLON_COLON, + ACTIONS(8592), 1, + anon_sym_COLON, + ACTIONS(7479), 9, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, - anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8592), 23, + ACTIONS(7477), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -159890,25 +159460,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [139044] = 3, + [139040] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8594), 10, + ACTIONS(8494), 1, + anon_sym_COLON_COLON, + ACTIONS(8594), 1, + anon_sym_COLON, + ACTIONS(7479), 9, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, - anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8592), 23, + ACTIONS(7477), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -159931,7 +159503,7 @@ static const uint16_t ts_small_parse_table[] = { [139085] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8562), 10, + ACTIONS(8526), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -159942,7 +159514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8560), 23, + ACTIONS(8524), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -159980,7 +159552,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(8596), 2, sym__ws, sym_comment, - STATE(3104), 3, + STATE(3106), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, @@ -160008,62 +159580,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [139176] = 3, + [139176] = 8, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8614), 10, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(8612), 22, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [139216] = 8, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(8619), 1, + ACTIONS(8615), 1, anon_sym_POUND_, - ACTIONS(8622), 1, + ACTIONS(8618), 1, anon_sym_COLON, - ACTIONS(8627), 1, + ACTIONS(8623), 1, anon_sym_cl, - ACTIONS(8630), 1, + ACTIONS(8626), 1, anon_sym_into, - ACTIONS(8616), 2, + ACTIONS(8612), 2, sym__ws, sym_comment, - STATE(3107), 3, + STATE(3105), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8625), 23, + ACTIONS(8621), 23, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -160087,84 +159622,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [139266] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(8634), 10, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(8632), 22, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [139306] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(8638), 10, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(8636), 22, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [139346] = 3, + [139226] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8642), 10, + ACTIONS(8630), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -160175,7 +159636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8640), 22, + ACTIONS(8628), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -160198,10 +159659,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [139386] = 3, + [139266] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8646), 10, + ACTIONS(8634), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -160212,7 +159673,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8644), 22, + ACTIONS(8632), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -160235,10 +159696,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [139426] = 3, + [139306] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8650), 10, + ACTIONS(8638), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -160249,7 +159710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8648), 22, + ACTIONS(8636), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -160272,10 +159733,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [139466] = 3, + [139346] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8654), 10, + ACTIONS(8642), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -160286,7 +159747,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8652), 22, + ACTIONS(8640), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -160309,10 +159770,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [139506] = 3, + [139386] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8658), 10, + ACTIONS(8646), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -160323,7 +159784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8656), 22, + ACTIONS(8644), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -160346,92 +159807,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [139546] = 5, + [139426] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8663), 1, - anon_sym_POUND_, - ACTIONS(8660), 2, + ACTIONS(8650), 10, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + ACTIONS(8648), 22, sym__ws, sym_comment, - STATE(2426), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(8666), 25, - anon_sym_COLON, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_cl, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_do, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [139589] = 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [139466] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7605), 31, + ACTIONS(8654), 10, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + ACTIONS(8652), 22, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, - anon_sym_COLON, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [139506] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8658), 10, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_do, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [139626] = 5, + ACTIONS(8656), 22, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [139546] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8671), 1, + ACTIONS(8663), 1, anon_sym_POUND_, - ACTIONS(8668), 2, + ACTIONS(8660), 2, sym__ws, sym_comment, - STATE(2456), 3, + STATE(2348), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8674), 25, + ACTIONS(8666), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -160457,19 +159956,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [139669] = 5, + [139589] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8679), 1, + ACTIONS(8671), 1, anon_sym_POUND_, - ACTIONS(8676), 2, + ACTIONS(8668), 2, sym__ws, sym_comment, - STATE(2139), 3, + STATE(2265), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8682), 25, + ACTIONS(8674), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -160495,19 +159994,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [139712] = 5, + [139632] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8687), 1, + ACTIONS(8679), 1, anon_sym_POUND_, - ACTIONS(8684), 2, + ACTIONS(8676), 2, sym__ws, sym_comment, - STATE(2088), 3, + STATE(2127), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8690), 25, + ACTIONS(8682), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -160533,19 +160032,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [139755] = 5, + [139675] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8679), 1, + ACTIONS(8687), 1, anon_sym_POUND_, - ACTIONS(8692), 2, + ACTIONS(8684), 2, sym__ws, sym_comment, - STATE(2133), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8682), 25, + ACTIONS(8690), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -160571,19 +160070,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [139798] = 5, + [139718] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8671), 1, + ACTIONS(8695), 1, anon_sym_POUND_, - ACTIONS(8695), 2, + ACTIONS(8692), 2, sym__ws, sym_comment, - STATE(2455), 3, + STATE(2248), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8674), 25, + ACTIONS(8698), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -160609,20 +160108,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [139841] = 5, + [139761] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8701), 1, - anon_sym_POUND_, - ACTIONS(8698), 2, + ACTIONS(8700), 1, + anon_sym_COLON, + ACTIONS(8702), 1, + anon_sym_COLON_COLON, + ACTIONS(7453), 29, sym__ws, sym_comment, - STATE(2145), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(8704), 25, - anon_sym_COLON, + anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -160644,22 +160141,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, + anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [139884] = 5, + [139802] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8671), 1, + ACTIONS(8695), 1, anon_sym_POUND_, - ACTIONS(8706), 2, + ACTIONS(8704), 2, sym__ws, sym_comment, - STATE(2453), 3, + STATE(2250), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8674), 25, + ACTIONS(8698), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -160685,19 +160183,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [139927] = 5, + [139845] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8701), 1, + ACTIONS(8687), 1, anon_sym_POUND_, - ACTIONS(8698), 2, + ACTIONS(8684), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8704), 25, + ACTIONS(8690), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -160723,19 +160221,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [139970] = 5, + [139888] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8701), 1, + ACTIONS(8710), 1, anon_sym_POUND_, - ACTIONS(8698), 2, + ACTIONS(8707), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2252), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8704), 25, + ACTIONS(8713), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -160761,19 +160259,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [140013] = 5, + [139931] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8712), 1, + ACTIONS(8718), 1, anon_sym_POUND_, - ACTIONS(8709), 2, + ACTIONS(8715), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8715), 25, + ACTIONS(8721), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -160799,19 +160297,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [140056] = 5, + [139974] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8720), 1, + ACTIONS(8710), 1, anon_sym_POUND_, - ACTIONS(8717), 2, + ACTIONS(8723), 2, sym__ws, sym_comment, - STATE(2452), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8723), 25, + ACTIONS(8713), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -160837,19 +160335,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [140099] = 5, + [140017] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8728), 1, + ACTIONS(8729), 1, anon_sym_POUND_, - ACTIONS(8725), 2, + ACTIONS(8726), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2258), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8731), 25, + ACTIONS(8732), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -160875,19 +160373,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [140142] = 5, + [140060] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8736), 1, + ACTIONS(8737), 1, anon_sym_POUND_, - ACTIONS(8733), 2, + ACTIONS(8734), 2, sym__ws, sym_comment, - STATE(2195), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8739), 25, + ACTIONS(8740), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -160913,19 +160411,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [140185] = 5, + [140103] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8728), 1, + ACTIONS(8729), 1, anon_sym_POUND_, - ACTIONS(8725), 2, + ACTIONS(8742), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2261), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8731), 25, + ACTIONS(8732), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -160951,19 +160449,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [140228] = 5, + [140146] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8728), 1, + ACTIONS(8748), 1, anon_sym_POUND_, - ACTIONS(8725), 2, + ACTIONS(8745), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2262), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8731), 25, + ACTIONS(8751), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -160989,19 +160487,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [140271] = 5, + [140189] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8701), 1, + ACTIONS(8756), 1, anon_sym_POUND_, - ACTIONS(8698), 2, + ACTIONS(8753), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8704), 25, + ACTIONS(8759), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -161027,19 +160525,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [140314] = 5, + [140232] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8744), 1, + ACTIONS(8748), 1, anon_sym_POUND_, - ACTIONS(8741), 2, + ACTIONS(8761), 2, sym__ws, sym_comment, - STATE(2119), 3, + STATE(2266), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8747), 25, + ACTIONS(8751), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -161065,19 +160563,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [140357] = 5, + [140275] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8671), 1, + ACTIONS(8767), 1, anon_sym_POUND_, - ACTIONS(8749), 2, + ACTIONS(8764), 2, sym__ws, sym_comment, - STATE(2449), 3, + STATE(2269), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8674), 25, + ACTIONS(8770), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -161103,19 +160601,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [140400] = 5, + [140318] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8671), 1, + ACTIONS(8775), 1, anon_sym_POUND_, - ACTIONS(8752), 2, + ACTIONS(8772), 2, sym__ws, sym_comment, - STATE(2448), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8674), 25, + ACTIONS(8778), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -161141,19 +160639,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [140443] = 5, + [140361] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8758), 1, + ACTIONS(8767), 1, anon_sym_POUND_, - ACTIONS(8755), 2, + ACTIONS(8780), 2, sym__ws, sym_comment, - STATE(2357), 3, + STATE(2272), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8761), 25, + ACTIONS(8770), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -161179,19 +160677,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [140486] = 5, + [140404] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8766), 1, + ACTIONS(8786), 1, anon_sym_POUND_, - ACTIONS(8763), 2, + ACTIONS(8783), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8769), 25, + ACTIONS(8789), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -161217,19 +160715,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [140529] = 5, + [140447] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8701), 1, + ACTIONS(8748), 1, anon_sym_POUND_, - ACTIONS(8698), 2, + ACTIONS(8791), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2274), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8704), 25, + ACTIONS(8751), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -161255,19 +160753,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [140572] = 5, + [140490] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8774), 1, + ACTIONS(8797), 1, anon_sym_POUND_, - ACTIONS(8771), 2, + ACTIONS(8794), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2278), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8777), 25, + ACTIONS(8800), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -161293,24 +160791,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [140615] = 5, + [140533] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8736), 1, - anon_sym_POUND_, - ACTIONS(8779), 2, + ACTIONS(7725), 31, sym__ws, sym_comment, - STATE(2332), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(8739), 25, + anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_cl, aux_sym_accumulation_verb_token1, anon_sym_for, @@ -161328,22 +160822,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, + anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [140658] = 5, + [140570] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8671), 1, + ACTIONS(8805), 1, anon_sym_POUND_, - ACTIONS(8782), 2, + ACTIONS(8802), 2, sym__ws, sym_comment, - STATE(2445), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8674), 25, + ACTIONS(8808), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -161369,19 +160864,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [140701] = 5, + [140613] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8701), 1, + ACTIONS(8813), 1, anon_sym_POUND_, - ACTIONS(8698), 2, + ACTIONS(8810), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8704), 25, + ACTIONS(8816), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -161407,19 +160902,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [140744] = 5, + [140656] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8701), 1, + ACTIONS(8813), 1, anon_sym_POUND_, - ACTIONS(8698), 2, + ACTIONS(8810), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8704), 25, + ACTIONS(8816), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -161445,19 +160940,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [140787] = 5, + [140699] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8712), 1, + ACTIONS(8821), 1, anon_sym_POUND_, - ACTIONS(8709), 2, + ACTIONS(8818), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2281), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8715), 25, + ACTIONS(8824), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -161483,19 +160978,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [140830] = 5, + [140742] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8720), 1, + ACTIONS(8813), 1, anon_sym_POUND_, - ACTIONS(8785), 2, + ACTIONS(8810), 2, sym__ws, sym_comment, - STATE(2317), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8723), 25, + ACTIONS(8816), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -161521,19 +161016,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [140873] = 5, + [140785] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8728), 1, + ACTIONS(8821), 1, anon_sym_POUND_, - ACTIONS(8725), 2, + ACTIONS(8826), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2282), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8731), 25, + ACTIONS(8824), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -161559,19 +161054,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [140916] = 5, + [140828] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8728), 1, + ACTIONS(8821), 1, anon_sym_POUND_, - ACTIONS(8725), 2, + ACTIONS(8829), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2283), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8731), 25, + ACTIONS(8824), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -161597,24 +161092,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [140959] = 5, + [140871] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8728), 1, - anon_sym_POUND_, - ACTIONS(8725), 2, + ACTIONS(7732), 31, sym__ws, sym_comment, - STATE(2145), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(8731), 25, + anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_cl, aux_sym_accumulation_verb_token1, anon_sym_for, @@ -161632,22 +161123,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, + anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [141002] = 5, + [140908] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8791), 1, + ACTIONS(8813), 1, anon_sym_POUND_, - ACTIONS(8788), 2, + ACTIONS(8810), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8794), 25, + ACTIONS(8816), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -161673,19 +161165,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [141045] = 5, + [140951] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8799), 1, + ACTIONS(8805), 1, anon_sym_POUND_, - ACTIONS(8796), 2, + ACTIONS(8802), 2, sym__ws, sym_comment, - STATE(2443), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8802), 25, + ACTIONS(8808), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -161711,19 +161203,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [141088] = 5, + [140994] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8687), 1, + ACTIONS(8805), 1, anon_sym_POUND_, - ACTIONS(8804), 2, + ACTIONS(8802), 2, sym__ws, sym_comment, - STATE(2154), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8690), 25, + ACTIONS(8808), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -161749,19 +161241,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [141131] = 5, + [141037] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8810), 1, + ACTIONS(8835), 1, anon_sym_POUND_, - ACTIONS(8807), 2, + ACTIONS(8832), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2285), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8813), 25, + ACTIONS(8838), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -161787,19 +161279,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [141174] = 5, + [141080] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8818), 1, + ACTIONS(8843), 1, anon_sym_POUND_, - ACTIONS(8815), 2, + ACTIONS(8840), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8821), 25, + ACTIONS(8846), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -161825,19 +161317,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [141217] = 5, + [141123] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8818), 1, + ACTIONS(8851), 1, anon_sym_POUND_, - ACTIONS(8815), 2, + ACTIONS(8848), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2286), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8821), 25, + ACTIONS(8854), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -161863,19 +161355,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [141260] = 5, + [141166] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8818), 1, + ACTIONS(8851), 1, anon_sym_POUND_, - ACTIONS(8815), 2, + ACTIONS(8856), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2287), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8821), 25, + ACTIONS(8854), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -161901,19 +161393,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [141303] = 5, + [141209] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8826), 1, + ACTIONS(8843), 1, anon_sym_POUND_, - ACTIONS(8823), 2, + ACTIONS(8840), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8829), 25, + ACTIONS(8846), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -161939,19 +161431,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [141346] = 5, + [141252] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8834), 1, + ACTIONS(8851), 1, anon_sym_POUND_, - ACTIONS(8831), 2, + ACTIONS(8859), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2289), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8837), 25, + ACTIONS(8854), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -161977,24 +161469,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [141389] = 5, + [141295] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8842), 1, - anon_sym_POUND_, - ACTIONS(8839), 2, + ACTIONS(7736), 31, sym__ws, sym_comment, - STATE(2145), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(8845), 25, + anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_cl, aux_sym_accumulation_verb_token1, anon_sym_for, @@ -162012,22 +161500,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, + anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [141432] = 5, + [141332] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8850), 1, + ACTIONS(8843), 1, anon_sym_POUND_, - ACTIONS(8847), 2, + ACTIONS(8840), 2, sym__ws, sym_comment, - STATE(2438), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8853), 25, + ACTIONS(8846), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -162053,19 +161542,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [141475] = 5, + [141375] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8850), 1, + ACTIONS(8851), 1, anon_sym_POUND_, - ACTIONS(8855), 2, + ACTIONS(8862), 2, sym__ws, sym_comment, - STATE(2435), 3, + STATE(2292), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8853), 25, + ACTIONS(8854), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -162091,19 +161580,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [141518] = 5, + [141418] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8834), 1, + ACTIONS(8868), 1, anon_sym_POUND_, - ACTIONS(8831), 2, + ACTIONS(8865), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8837), 25, + ACTIONS(8871), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -162129,19 +161618,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [141561] = 5, + [141461] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8850), 1, + ACTIONS(8868), 1, anon_sym_POUND_, - ACTIONS(8858), 2, + ACTIONS(8865), 2, sym__ws, sym_comment, - STATE(2433), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8853), 25, + ACTIONS(8871), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -162167,19 +161656,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [141604] = 5, + [141504] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8834), 1, + ACTIONS(8876), 1, anon_sym_POUND_, - ACTIONS(8831), 2, + ACTIONS(8873), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2293), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8837), 25, + ACTIONS(8879), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -162205,19 +161694,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [141647] = 5, + [141547] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8834), 1, + ACTIONS(8884), 1, anon_sym_POUND_, - ACTIONS(8831), 2, + ACTIONS(8881), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8837), 25, + ACTIONS(8887), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -162243,19 +161732,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [141690] = 5, + [141590] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8864), 1, + ACTIONS(8892), 1, anon_sym_POUND_, - ACTIONS(8861), 2, + ACTIONS(8889), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2294), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8867), 25, + ACTIONS(8895), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -162281,19 +161770,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [141733] = 5, + [141633] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8872), 1, + ACTIONS(8892), 1, anon_sym_POUND_, - ACTIONS(8869), 2, + ACTIONS(8897), 2, sym__ws, sym_comment, - STATE(2428), 3, + STATE(2295), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8875), 25, + ACTIONS(8895), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -162319,20 +161808,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [141776] = 5, + [141676] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8880), 1, - anon_sym_POUND_, - ACTIONS(8877), 2, + ACTIONS(7645), 1, + anon_sym_COLON, + ACTIONS(7643), 30, sym__ws, sym_comment, - STATE(2145), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(8883), 25, - anon_sym_COLON, + anon_sym_POUND_, + aux_sym_num_lit_token1, + anon_sym_COLON_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -162354,22 +161840,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, + anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [141819] = 5, + [141715] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8880), 1, + ACTIONS(8884), 1, anon_sym_POUND_, - ACTIONS(8877), 2, + ACTIONS(8881), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8883), 25, + ACTIONS(8887), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -162395,19 +161882,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [141862] = 5, + [141758] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8880), 1, + ACTIONS(8892), 1, anon_sym_POUND_, - ACTIONS(8877), 2, + ACTIONS(8900), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2297), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8883), 25, + ACTIONS(8895), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -162433,24 +161920,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [141905] = 5, + [141801] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8888), 1, - anon_sym_POUND_, - ACTIONS(8885), 2, + ACTIONS(7736), 31, sym__ws, sym_comment, - STATE(2417), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(8891), 25, + anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_cl, aux_sym_accumulation_verb_token1, anon_sym_for, @@ -162468,27 +161951,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, + anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [141948] = 5, + [141838] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8896), 1, - anon_sym_POUND_, - ACTIONS(8893), 2, + ACTIONS(7759), 31, sym__ws, sym_comment, - STATE(2145), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(8899), 25, + anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_cl, aux_sym_accumulation_verb_token1, anon_sym_for, @@ -162506,27 +161986,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, + anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [141991] = 5, + [141875] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8896), 1, - anon_sym_POUND_, - ACTIONS(8893), 2, + ACTIONS(7763), 31, sym__ws, sym_comment, - STATE(2145), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(8899), 25, + anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_cl, aux_sym_accumulation_verb_token1, anon_sym_for, @@ -162544,22 +162021,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, + anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [142034] = 5, + [141912] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8896), 1, + ACTIONS(8884), 1, anon_sym_POUND_, - ACTIONS(8893), 2, + ACTIONS(8881), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8899), 25, + ACTIONS(8887), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -162585,24 +162063,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [142077] = 5, + [141955] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8904), 1, + ACTIONS(7787), 31, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8901), 2, + aux_sym_num_lit_token1, + anon_sym_COLON, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_cl, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_into, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [141992] = 2, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7495), 31, sym__ws, sym_comment, - STATE(2145), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(8907), 25, + anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_cl, aux_sym_accumulation_verb_token1, anon_sym_for, @@ -162620,22 +162129,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, + anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [142120] = 5, + [142029] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8912), 1, + ACTIONS(8679), 1, anon_sym_POUND_, - ACTIONS(8909), 2, + ACTIONS(8903), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2130), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8915), 25, + ACTIONS(8682), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -162661,19 +162171,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [142163] = 5, + [142072] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8744), 1, + ACTIONS(8909), 1, anon_sym_POUND_, - ACTIONS(8917), 2, + ACTIONS(8906), 2, sym__ws, sym_comment, - STATE(2115), 3, + STATE(2135), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8747), 25, + ACTIONS(8912), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -162699,19 +162209,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [142206] = 5, + [142115] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8923), 1, + ACTIONS(8700), 1, + anon_sym_COLON, + ACTIONS(8702), 1, + anon_sym_COLON_COLON, + ACTIONS(7477), 29, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8920), 2, + aux_sym_num_lit_token1, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_cl, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_into, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [142156] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8671), 1, + anon_sym_POUND_, + ACTIONS(8914), 2, sym__ws, sym_comment, - STATE(2333), 3, + STATE(2141), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8926), 25, + ACTIONS(8674), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -162737,24 +162284,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [142249] = 5, + [142199] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8931), 1, - anon_sym_POUND_, - ACTIONS(8928), 2, + ACTIONS(7527), 31, sym__ws, sym_comment, - STATE(2145), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(8934), 25, + anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_cl, aux_sym_accumulation_verb_token1, anon_sym_for, @@ -162772,22 +162315,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, + anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [142292] = 5, + [142236] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8931), 1, + ACTIONS(8892), 1, anon_sym_POUND_, - ACTIONS(8928), 2, + ACTIONS(8917), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2300), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8934), 25, + ACTIONS(8895), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -162813,15 +162357,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [142335] = 5, + [142279] = 5, ACTIONS(47), 1, sym_block_comment, ACTIONS(8923), 1, anon_sym_POUND_, - ACTIONS(8936), 2, + ACTIONS(8920), 2, sym__ws, sym_comment, - STATE(2327), 3, + STATE(2146), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, @@ -162851,19 +162395,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [142378] = 5, + [142322] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8912), 1, + ACTIONS(8868), 1, anon_sym_POUND_, - ACTIONS(8909), 2, + ACTIONS(8865), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8915), 25, + ACTIONS(8871), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -162889,19 +162433,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [142421] = 5, + [142365] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8942), 1, + ACTIONS(8700), 1, + anon_sym_COLON, + ACTIONS(8702), 1, + anon_sym_COLON_COLON, + ACTIONS(7815), 29, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8939), 2, + aux_sym_num_lit_token1, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_cl, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_into, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [142406] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8876), 1, + anon_sym_POUND_, + ACTIONS(8928), 2, sym__ws, sym_comment, - STATE(2111), 3, + STATE(2301), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8945), 25, + ACTIONS(8879), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -162927,19 +162508,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [142464] = 5, + [142449] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8950), 1, + ACTIONS(8876), 1, anon_sym_POUND_, - ACTIONS(8947), 2, + ACTIONS(8931), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2302), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8953), 25, + ACTIONS(8879), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -162965,19 +162546,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [142507] = 5, + [142492] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8923), 1, + ACTIONS(8937), 1, anon_sym_POUND_, - ACTIONS(8955), 2, + ACTIONS(8934), 2, sym__ws, sym_comment, - STATE(2322), 3, + STATE(2150), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8926), 25, + ACTIONS(8940), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -163003,24 +162584,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [142550] = 5, + [142535] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8961), 1, - anon_sym_POUND_, - ACTIONS(8958), 2, + ACTIONS(7534), 31, sym__ws, sym_comment, - STATE(2145), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(8964), 25, + anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_cl, aux_sym_accumulation_verb_token1, anon_sym_for, @@ -163038,22 +162615,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, + anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [142593] = 5, + [142572] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8969), 1, + ACTIONS(8868), 1, anon_sym_POUND_, - ACTIONS(8966), 2, + ACTIONS(8865), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8972), 25, + ACTIONS(8871), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -163079,24 +162657,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [142636] = 5, + [142615] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8977), 1, + ACTIONS(8945), 1, anon_sym_POUND_, - ACTIONS(8974), 2, + ACTIONS(8942), 2, sym__ws, sym_comment, - STATE(2319), 3, + STATE(2304), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8980), 25, + ACTIONS(8948), 25, + anon_sym_COLON, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_cl, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [142658] = 2, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7859), 31, + sym__ws, + sym_comment, + anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_cl, aux_sym_accumulation_verb_token1, anon_sym_for, @@ -163114,22 +162726,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, + anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [142679] = 5, + [142695] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8977), 1, + ACTIONS(8953), 1, anon_sym_POUND_, - ACTIONS(8982), 2, + ACTIONS(8950), 2, sym__ws, sym_comment, - STATE(2194), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8980), 25, + ACTIONS(8956), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -163155,7 +162768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [142722] = 5, + [142738] = 5, ACTIONS(47), 1, sym_block_comment, ACTIONS(8961), 1, @@ -163163,7 +162776,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(8958), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2492), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, @@ -163193,19 +162806,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [142765] = 5, + [142781] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8988), 1, + ACTIONS(8961), 1, anon_sym_POUND_, - ACTIONS(8985), 2, + ACTIONS(8966), 2, sym__ws, sym_comment, - STATE(2314), 3, + STATE(2493), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8991), 25, + ACTIONS(8964), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -163231,24 +162844,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [142808] = 5, + [142824] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8996), 1, - anon_sym_POUND_, - ACTIONS(8993), 2, + ACTIONS(7550), 31, sym__ws, sym_comment, - STATE(2145), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(8999), 25, + anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_cl, aux_sym_accumulation_verb_token1, anon_sym_for, @@ -163266,22 +162875,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, + anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [142851] = 5, + [142861] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9004), 1, + ACTIONS(8953), 1, anon_sym_POUND_, - ACTIONS(9001), 2, + ACTIONS(8950), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9007), 25, + ACTIONS(8956), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -163307,19 +162917,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [142894] = 5, + [142904] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8942), 1, + ACTIONS(8972), 1, anon_sym_POUND_, - ACTIONS(9009), 2, + ACTIONS(8969), 2, sym__ws, sym_comment, - STATE(2105), 3, + STATE(2495), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8945), 25, + ACTIONS(8975), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -163345,19 +162955,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [142937] = 5, + [142947] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8988), 1, + ACTIONS(8923), 1, anon_sym_POUND_, - ACTIONS(9012), 2, + ACTIONS(8977), 2, sym__ws, sym_comment, - STATE(2309), 3, + STATE(2158), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8991), 25, + ACTIONS(8926), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -163383,19 +162993,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [142980] = 5, + [142990] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8996), 1, + ACTIONS(8983), 1, anon_sym_POUND_, - ACTIONS(8993), 2, + ACTIONS(8980), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8999), 25, + ACTIONS(8986), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -163421,19 +163031,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [143023] = 5, + [143033] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9018), 1, + ACTIONS(8972), 1, anon_sym_POUND_, - ACTIONS(9015), 2, + ACTIONS(8988), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2498), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9021), 25, + ACTIONS(8975), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -163459,19 +163069,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [143066] = 5, + [143076] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8988), 1, + ACTIONS(8972), 1, anon_sym_POUND_, - ACTIONS(9023), 2, + ACTIONS(8991), 2, sym__ws, sym_comment, - STATE(2203), 3, + STATE(2501), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8991), 25, + ACTIONS(8975), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -163497,19 +163107,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [143109] = 5, + [143119] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8988), 1, + ACTIONS(8983), 1, anon_sym_POUND_, - ACTIONS(9026), 2, + ACTIONS(8980), 2, sym__ws, sym_comment, - STATE(2200), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8991), 25, + ACTIONS(8986), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -163535,19 +163145,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [143152] = 5, + [143162] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8996), 1, + ACTIONS(8961), 1, anon_sym_POUND_, - ACTIONS(8993), 2, + ACTIONS(8994), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2503), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8999), 25, + ACTIONS(8964), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -163573,19 +163183,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [143195] = 5, + [143205] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8977), 1, + ACTIONS(9000), 1, anon_sym_POUND_, - ACTIONS(9029), 2, + ACTIONS(8997), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8980), 25, + ACTIONS(9003), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -163611,19 +163221,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [143238] = 5, + [143248] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8766), 1, + ACTIONS(8945), 1, anon_sym_POUND_, - ACTIONS(8763), 2, + ACTIONS(9005), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2307), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8769), 25, + ACTIONS(8948), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -163649,24 +163259,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [143281] = 5, + [143291] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9035), 1, - anon_sym_POUND_, - ACTIONS(9032), 2, + ACTIONS(7580), 31, sym__ws, sym_comment, - STATE(2145), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(9038), 25, + anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_cl, aux_sym_accumulation_verb_token1, anon_sym_for, @@ -163684,22 +163290,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, + anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [143324] = 5, + [143328] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9004), 1, + ACTIONS(8953), 1, anon_sym_POUND_, - ACTIONS(9001), 2, + ACTIONS(8950), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9007), 25, + ACTIONS(8956), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -163725,19 +163332,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [143367] = 5, + [143371] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8663), 1, + ACTIONS(8961), 1, anon_sym_POUND_, - ACTIONS(9040), 2, + ACTIONS(9008), 2, sym__ws, sym_comment, - STATE(2167), 3, + STATE(2507), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8666), 25, + ACTIONS(8964), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -163763,19 +163370,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [143410] = 5, + [143414] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9046), 1, + ACTIONS(8945), 1, anon_sym_POUND_, - ACTIONS(9043), 2, + ACTIONS(9011), 2, sym__ws, sym_comment, - STATE(2136), 3, + STATE(2311), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9049), 25, + ACTIONS(8948), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -163801,19 +163408,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [143453] = 5, + [143457] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9054), 1, + ACTIONS(9000), 1, anon_sym_POUND_, - ACTIONS(9051), 2, + ACTIONS(8997), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9057), 25, + ACTIONS(9003), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -163839,19 +163446,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [143496] = 5, + [143500] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9062), 1, + ACTIONS(8937), 1, anon_sym_POUND_, - ACTIONS(9059), 2, + ACTIONS(9014), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2162), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9065), 25, + ACTIONS(8940), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -163877,19 +163484,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [143539] = 5, + [143543] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8663), 1, + ACTIONS(9020), 1, anon_sym_POUND_, - ACTIONS(9067), 2, + ACTIONS(9017), 2, sym__ws, sym_comment, - STATE(2253), 3, + STATE(2509), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8666), 25, + ACTIONS(9023), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -163915,19 +163522,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [143582] = 5, + [143586] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9004), 1, + ACTIONS(9028), 1, anon_sym_POUND_, - ACTIONS(9001), 2, + ACTIONS(9025), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9007), 25, + ACTIONS(9031), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -163953,19 +163560,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [143625] = 5, + [143629] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9073), 1, + ACTIONS(9020), 1, anon_sym_POUND_, - ACTIONS(9070), 2, + ACTIONS(9033), 2, sym__ws, sym_comment, - STATE(2263), 3, + STATE(2514), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9076), 25, + ACTIONS(9023), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -163991,19 +163598,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [143668] = 5, + [143672] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9035), 1, + ACTIONS(9039), 1, anon_sym_POUND_, - ACTIONS(9032), 2, + ACTIONS(9036), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2515), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9038), 25, + ACTIONS(9042), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -164029,24 +163636,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [143711] = 5, + [143715] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9073), 1, - anon_sym_POUND_, - ACTIONS(9078), 2, + ACTIONS(7584), 31, sym__ws, sym_comment, - STATE(2277), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(9076), 25, + anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_cl, aux_sym_accumulation_verb_token1, anon_sym_for, @@ -164064,27 +163667,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, + anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [143754] = 5, + [143752] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9084), 1, - anon_sym_POUND_, - ACTIONS(9081), 2, + ACTIONS(7588), 31, sym__ws, sym_comment, - STATE(2145), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(9087), 25, + anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_cl, aux_sym_accumulation_verb_token1, anon_sym_for, @@ -164102,22 +163702,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, + anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [143797] = 5, + [143789] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9092), 1, + ACTIONS(9047), 1, anon_sym_POUND_, - ACTIONS(9089), 2, + ACTIONS(9044), 2, sym__ws, sym_comment, - STATE(2337), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9095), 25, + ACTIONS(9050), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -164143,19 +163744,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [143840] = 5, + [143832] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9100), 1, + ACTIONS(9039), 1, anon_sym_POUND_, - ACTIONS(9097), 2, + ACTIONS(9052), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2519), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(7407), 25, + ACTIONS(9042), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -164181,19 +163782,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [143883] = 5, + [143875] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9092), 1, + ACTIONS(9058), 1, anon_sym_POUND_, - ACTIONS(9103), 2, + ACTIONS(9055), 2, sym__ws, sym_comment, - STATE(2348), 3, + STATE(2524), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9095), 25, + ACTIONS(9061), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -164219,24 +163820,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [143926] = 5, + [143918] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9084), 1, - anon_sym_POUND_, - ACTIONS(9081), 2, + ACTIONS(7612), 31, sym__ws, sym_comment, - STATE(2145), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(9087), 25, + anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_cl, aux_sym_accumulation_verb_token1, anon_sym_for, @@ -164254,22 +163851,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, + anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [143969] = 5, + [143955] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9092), 1, + ACTIONS(9066), 1, anon_sym_POUND_, - ACTIONS(9106), 2, + ACTIONS(9063), 2, sym__ws, sym_comment, - STATE(2380), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9095), 25, + ACTIONS(9069), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -164295,24 +163893,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [144012] = 5, + [143998] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9035), 1, - anon_sym_POUND_, - ACTIONS(9032), 2, + ACTIONS(7616), 31, sym__ws, sym_comment, - STATE(2145), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(9038), 25, + anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_cl, aux_sym_accumulation_verb_token1, anon_sym_for, @@ -164330,22 +163924,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, + anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [144055] = 5, + [144035] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9073), 1, + ACTIONS(9058), 1, anon_sym_POUND_, - ACTIONS(9109), 2, + ACTIONS(9071), 2, sym__ws, sym_comment, - STATE(2406), 3, + STATE(2533), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9076), 25, + ACTIONS(9061), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -164371,19 +163966,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [144098] = 5, + [144078] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9073), 1, + ACTIONS(9039), 1, anon_sym_POUND_, - ACTIONS(9112), 2, + ACTIONS(9074), 2, sym__ws, sym_comment, - STATE(2408), 3, + STATE(2537), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9076), 25, + ACTIONS(9042), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -164409,19 +164004,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [144141] = 5, + [144121] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9035), 1, + ACTIONS(8909), 1, anon_sym_POUND_, - ACTIONS(9032), 2, + ACTIONS(9077), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2120), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9038), 25, + ACTIONS(8912), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -164447,19 +164042,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [144184] = 5, + [144164] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8663), 1, + ACTIONS(9083), 1, anon_sym_POUND_, - ACTIONS(9115), 2, + ACTIONS(9080), 2, sym__ws, sym_comment, - STATE(2410), 3, + STATE(2543), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8666), 25, + ACTIONS(9086), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -164485,19 +164080,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [144227] = 5, + [144207] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8842), 1, + ACTIONS(9039), 1, anon_sym_POUND_, - ACTIONS(8839), 2, + ACTIONS(9088), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2547), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8845), 25, + ACTIONS(9042), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -164523,19 +164118,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [144270] = 5, + [144250] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8744), 1, + ACTIONS(9094), 1, anon_sym_POUND_, - ACTIONS(9118), 2, + ACTIONS(9091), 2, sym__ws, sym_comment, - STATE(2432), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8747), 25, + ACTIONS(9097), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -164561,19 +164156,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [144313] = 5, + [144293] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9062), 1, + ACTIONS(9047), 1, anon_sym_POUND_, - ACTIONS(9059), 2, + ACTIONS(9044), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9065), 25, + ACTIONS(9050), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -164599,19 +164194,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [144356] = 5, + [144336] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8679), 1, + ACTIONS(9039), 1, anon_sym_POUND_, - ACTIONS(9121), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2122), 3, + STATE(2550), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8682), 25, + ACTIONS(9042), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -164637,19 +164232,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [144399] = 5, + [144379] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8744), 1, + ACTIONS(9058), 1, anon_sym_POUND_, - ACTIONS(9124), 2, + ACTIONS(9102), 2, sym__ws, sym_comment, - STATE(2424), 3, + STATE(2048), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8747), 25, + ACTIONS(9061), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -164675,19 +164270,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [144442] = 5, + [144422] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9073), 1, + ACTIONS(9108), 1, anon_sym_POUND_, - ACTIONS(9127), 2, + ACTIONS(9105), 2, sym__ws, sym_comment, - STATE(2439), 3, + STATE(2169), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9076), 25, + ACTIONS(9111), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -164713,19 +164308,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [144485] = 5, + [144465] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9035), 1, + ACTIONS(9066), 1, anon_sym_POUND_, - ACTIONS(9032), 2, + ACTIONS(9063), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9038), 25, + ACTIONS(9069), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -164751,19 +164346,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [144528] = 5, + [144508] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9073), 1, + ACTIONS(9058), 1, anon_sym_POUND_, - ACTIONS(9130), 2, + ACTIONS(9113), 2, sym__ws, sym_comment, - STATE(2447), 3, + STATE(2052), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9076), 25, + ACTIONS(9061), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -164789,19 +164384,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [144571] = 5, + [144551] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9084), 1, + ACTIONS(9039), 1, anon_sym_POUND_, - ACTIONS(9081), 2, + ACTIONS(9116), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2054), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9087), 25, + ACTIONS(9042), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -164827,19 +164422,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [144614] = 5, + [144594] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9092), 1, + ACTIONS(9083), 1, anon_sym_POUND_, - ACTIONS(9133), 2, + ACTIONS(9119), 2, sym__ws, sym_comment, - STATE(2454), 3, + STATE(2057), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9095), 25, + ACTIONS(9086), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -164865,19 +164460,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [144657] = 5, + [144637] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8842), 1, + ACTIONS(9108), 1, anon_sym_POUND_, - ACTIONS(8839), 2, + ACTIONS(9122), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2170), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8845), 25, + ACTIONS(9111), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -164903,19 +164498,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [144700] = 5, + [144680] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9092), 1, + ACTIONS(9128), 1, anon_sym_POUND_, - ACTIONS(9136), 2, + ACTIONS(9125), 2, sym__ws, sym_comment, - STATE(2458), 3, + STATE(2060), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9095), 25, + ACTIONS(9131), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -164941,19 +164536,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [144743] = 5, + [144723] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9084), 1, + ACTIONS(9136), 1, anon_sym_POUND_, - ACTIONS(9081), 2, + ACTIONS(9133), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2063), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9087), 25, + ACTIONS(9139), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -164979,19 +164574,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [144786] = 5, + [144766] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9142), 1, + ACTIONS(9144), 1, anon_sym_POUND_, - ACTIONS(9139), 2, + ACTIONS(9141), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9145), 25, + ACTIONS(9147), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -165017,19 +164612,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [144829] = 5, + [144809] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9092), 1, + ACTIONS(9144), 1, anon_sym_POUND_, - ACTIONS(9147), 2, + ACTIONS(9141), 2, sym__ws, sym_comment, - STATE(2462), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9095), 25, + ACTIONS(9147), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -165055,19 +164650,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [144872] = 5, + [144852] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9153), 1, + ACTIONS(9152), 1, anon_sym_POUND_, - ACTIONS(9150), 2, + ACTIONS(9149), 2, sym__ws, sym_comment, STATE(2069), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9156), 25, + ACTIONS(9155), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -165093,19 +164688,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [144915] = 5, + [144895] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9073), 1, + ACTIONS(9160), 1, anon_sym_POUND_, - ACTIONS(9158), 2, + ACTIONS(9157), 2, sym__ws, sym_comment, - STATE(2472), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9076), 25, + ACTIONS(9163), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -165131,19 +164726,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [144958] = 5, + [144938] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9073), 1, + ACTIONS(9168), 1, anon_sym_POUND_, - ACTIONS(9161), 2, + ACTIONS(9165), 2, sym__ws, sym_comment, - STATE(2475), 3, + STATE(2070), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9076), 25, + ACTIONS(9171), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -165169,19 +164764,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [145001] = 5, + [144981] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9035), 1, + ACTIONS(9168), 1, anon_sym_POUND_, - ACTIONS(9032), 2, + ACTIONS(9173), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2071), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9038), 25, + ACTIONS(9171), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -165207,19 +164802,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [145044] = 5, + [145024] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9167), 1, + ACTIONS(9160), 1, anon_sym_POUND_, - ACTIONS(9164), 2, + ACTIONS(9157), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9170), 25, + ACTIONS(9163), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -165245,19 +164840,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [145087] = 5, + [145067] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9175), 1, + ACTIONS(9168), 1, anon_sym_POUND_, - ACTIONS(9172), 2, + ACTIONS(9176), 2, sym__ws, sym_comment, - STATE(2477), 3, + STATE(2073), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9178), 25, + ACTIONS(9171), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -165283,19 +164878,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [145130] = 5, + [145110] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8758), 1, + ACTIONS(7658), 31, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(9180), 2, + aux_sym_num_lit_token1, + anon_sym_COLON, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_cl, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_into, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [145147] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(9160), 1, + anon_sym_POUND_, + ACTIONS(9157), 2, sym__ws, sym_comment, - STATE(2422), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8761), 25, + ACTIONS(9163), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -165321,19 +164951,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [145173] = 5, + [145190] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9175), 1, + ACTIONS(9168), 1, anon_sym_POUND_, - ACTIONS(9183), 2, + ACTIONS(9179), 2, sym__ws, sym_comment, - STATE(2481), 3, + STATE(2077), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9178), 25, + ACTIONS(9171), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -165359,19 +164989,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [145216] = 5, + [145233] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9167), 1, + ACTIONS(9144), 1, anon_sym_POUND_, - ACTIONS(9164), 2, + ACTIONS(9141), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9170), 25, + ACTIONS(9147), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -165397,19 +165027,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [145259] = 5, + [145276] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9175), 1, + ACTIONS(9152), 1, anon_sym_POUND_, - ACTIONS(9186), 2, + ACTIONS(9182), 2, sym__ws, sym_comment, - STATE(2485), 3, + STATE(2078), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9178), 25, + ACTIONS(9155), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -165435,19 +165065,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [145302] = 5, + [145319] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9192), 1, + ACTIONS(9152), 1, anon_sym_POUND_, - ACTIONS(9189), 2, + ACTIONS(9185), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2079), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9195), 25, + ACTIONS(9155), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -165473,19 +165103,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [145345] = 5, + [145362] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9200), 1, + ACTIONS(9144), 1, anon_sym_POUND_, - ACTIONS(9197), 2, + ACTIONS(9141), 2, sym__ws, sym_comment, - STATE(2486), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9203), 25, + ACTIONS(9147), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -165511,19 +165141,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [145388] = 5, + [145405] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9200), 1, + ACTIONS(9191), 1, anon_sym_POUND_, - ACTIONS(9205), 2, + ACTIONS(9188), 2, sym__ws, sym_comment, - STATE(2487), 3, + STATE(2081), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9203), 25, + ACTIONS(9194), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -165549,19 +165179,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [145431] = 5, + [145448] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9192), 1, + ACTIONS(9199), 1, anon_sym_POUND_, - ACTIONS(9189), 2, + ACTIONS(9196), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9195), 25, + ACTIONS(9202), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -165587,19 +165217,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [145474] = 5, + [145491] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9211), 1, + ACTIONS(9191), 1, anon_sym_POUND_, - ACTIONS(9208), 2, + ACTIONS(9204), 2, sym__ws, sym_comment, - STATE(2488), 3, + STATE(2084), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9214), 25, + ACTIONS(9194), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -165625,19 +165255,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [145517] = 5, + [145534] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9219), 1, + ACTIONS(9191), 1, anon_sym_POUND_, - ACTIONS(9216), 2, + ACTIONS(9207), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2087), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9222), 25, + ACTIONS(9194), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -165663,19 +165293,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [145560] = 5, + [145577] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9211), 1, + ACTIONS(9199), 1, anon_sym_POUND_, - ACTIONS(9224), 2, + ACTIONS(9196), 2, sym__ws, sym_comment, - STATE(2491), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9214), 25, + ACTIONS(9202), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -165701,19 +165331,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [145603] = 5, + [145620] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9219), 1, + ACTIONS(8953), 1, anon_sym_POUND_, - ACTIONS(9216), 2, + ACTIONS(8950), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9222), 25, + ACTIONS(8956), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -165739,19 +165369,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [145646] = 5, + [145663] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9211), 1, + ACTIONS(8961), 1, anon_sym_POUND_, - ACTIONS(9227), 2, + ACTIONS(9210), 2, sym__ws, sym_comment, - STATE(2493), 3, + STATE(2089), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9214), 25, + ACTIONS(8964), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -165777,19 +165407,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [145689] = 5, + [145706] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9211), 1, + ACTIONS(8961), 1, anon_sym_POUND_, - ACTIONS(9230), 2, + ACTIONS(9213), 2, sym__ws, sym_comment, - STATE(2494), 3, + STATE(2090), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9214), 25, + ACTIONS(8964), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -165815,19 +165445,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [145732] = 5, + [145749] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9219), 1, + ACTIONS(8953), 1, anon_sym_POUND_, - ACTIONS(9216), 2, + ACTIONS(8950), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9222), 25, + ACTIONS(8956), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -165853,19 +165483,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [145775] = 5, + [145792] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9200), 1, + ACTIONS(8972), 1, anon_sym_POUND_, - ACTIONS(9233), 2, + ACTIONS(9216), 2, sym__ws, sym_comment, - STATE(2495), 3, + STATE(2092), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9203), 25, + ACTIONS(8975), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -165891,19 +165521,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [145818] = 5, + [145835] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9192), 1, + ACTIONS(8983), 1, anon_sym_POUND_, - ACTIONS(9189), 2, + ACTIONS(8980), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9195), 25, + ACTIONS(8986), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -165929,19 +165559,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [145861] = 5, + [145878] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9192), 1, + ACTIONS(8972), 1, anon_sym_POUND_, - ACTIONS(9189), 2, + ACTIONS(9219), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2096), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9195), 25, + ACTIONS(8975), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -165967,19 +165597,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [145904] = 5, + [145921] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9239), 1, + ACTIONS(9094), 1, anon_sym_POUND_, - ACTIONS(9236), 2, + ACTIONS(9091), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9242), 25, + ACTIONS(9097), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -166005,19 +165635,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [145947] = 5, + [145964] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9247), 1, + ACTIONS(8972), 1, anon_sym_POUND_, - ACTIONS(9244), 2, + ACTIONS(9222), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2101), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9250), 25, + ACTIONS(8975), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -166043,19 +165673,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [145990] = 5, + [146007] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9255), 1, + ACTIONS(8983), 1, anon_sym_POUND_, - ACTIONS(9252), 2, + ACTIONS(8980), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9258), 25, + ACTIONS(8986), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -166081,19 +165711,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146033] = 5, + [146050] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9263), 1, + ACTIONS(8961), 1, anon_sym_POUND_, - ACTIONS(9260), 2, + ACTIONS(9225), 2, sym__ws, sym_comment, - STATE(2113), 3, + STATE(2111), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9266), 25, + ACTIONS(8964), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -166119,19 +165749,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146076] = 5, + [146093] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8701), 1, + ACTIONS(9231), 1, anon_sym_POUND_, - ACTIONS(8698), 2, + ACTIONS(9228), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2172), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8704), 25, + ACTIONS(9234), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -166157,19 +165787,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146119] = 5, + [146136] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9271), 1, + ACTIONS(9239), 1, anon_sym_POUND_, - ACTIONS(9268), 2, + ACTIONS(9236), 2, sym__ws, sym_comment, - STATE(2099), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9274), 25, + ACTIONS(9242), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -166195,7 +165825,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146162] = 5, + [146179] = 5, ACTIONS(47), 1, sym_block_comment, ACTIONS(9247), 1, @@ -166203,7 +165833,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(9244), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, @@ -166233,19 +165863,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146205] = 5, + [146222] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9279), 1, + ACTIONS(9247), 1, anon_sym_POUND_, - ACTIONS(9276), 2, + ACTIONS(9244), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9282), 25, + ACTIONS(9250), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -166271,19 +165901,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146248] = 5, + [146265] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9287), 1, + ACTIONS(9255), 1, anon_sym_POUND_, - ACTIONS(9284), 2, + ACTIONS(9252), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2313), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9290), 25, + ACTIONS(9258), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -166309,19 +165939,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146291] = 5, + [146308] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9295), 1, + ACTIONS(9247), 1, anon_sym_POUND_, - ACTIONS(9292), 2, + ACTIONS(9244), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9298), 25, + ACTIONS(9250), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -166347,19 +165977,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146334] = 5, + [146351] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9279), 1, + ACTIONS(9255), 1, anon_sym_POUND_, - ACTIONS(9276), 2, + ACTIONS(9260), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2314), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9282), 25, + ACTIONS(9258), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -166385,19 +166015,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146377] = 5, + [146394] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9239), 1, + ACTIONS(9255), 1, anon_sym_POUND_, - ACTIONS(9236), 2, + ACTIONS(9263), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2315), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9242), 25, + ACTIONS(9258), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -166423,19 +166053,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146420] = 5, + [146437] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9271), 1, + ACTIONS(9247), 1, anon_sym_POUND_, - ACTIONS(9300), 2, + ACTIONS(9244), 2, sym__ws, sym_comment, - STATE(2098), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9274), 25, + ACTIONS(9250), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -166461,19 +166091,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146463] = 5, + [146480] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9271), 1, + ACTIONS(9239), 1, anon_sym_POUND_, - ACTIONS(9303), 2, + ACTIONS(9236), 2, sym__ws, sym_comment, - STATE(2097), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9274), 25, + ACTIONS(9242), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -166499,19 +166129,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146506] = 5, + [146523] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9309), 1, + ACTIONS(9239), 1, anon_sym_POUND_, - ACTIONS(9306), 2, + ACTIONS(9236), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9312), 25, + ACTIONS(9242), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -166537,19 +166167,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146549] = 5, + [146566] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9239), 1, + ACTIONS(9269), 1, anon_sym_POUND_, - ACTIONS(9236), 2, + ACTIONS(9266), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2317), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9242), 25, + ACTIONS(9272), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -166575,19 +166205,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146592] = 5, + [146609] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9309), 1, + ACTIONS(9277), 1, anon_sym_POUND_, - ACTIONS(9306), 2, + ACTIONS(9274), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9312), 25, + ACTIONS(9280), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -166613,19 +166243,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146635] = 5, + [146652] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9309), 1, + ACTIONS(9285), 1, anon_sym_POUND_, - ACTIONS(9306), 2, + ACTIONS(9282), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2318), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9312), 25, + ACTIONS(9288), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -166651,19 +166281,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146678] = 5, + [146695] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9317), 1, + ACTIONS(9285), 1, anon_sym_POUND_, - ACTIONS(9314), 2, + ACTIONS(9290), 2, sym__ws, sym_comment, - STATE(2483), 3, + STATE(2319), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9320), 25, + ACTIONS(9288), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -166689,19 +166319,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146721] = 5, + [146738] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9325), 1, + ACTIONS(8953), 1, anon_sym_POUND_, - ACTIONS(9322), 2, + ACTIONS(8950), 2, sym__ws, sym_comment, - STATE(2095), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9328), 25, + ACTIONS(8956), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -166727,19 +166357,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146764] = 5, + [146781] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9333), 1, + ACTIONS(9277), 1, anon_sym_POUND_, - ACTIONS(9330), 2, + ACTIONS(9274), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9336), 25, + ACTIONS(9280), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -166765,19 +166395,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146807] = 5, + [146824] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9341), 1, + ACTIONS(9285), 1, anon_sym_POUND_, - ACTIONS(9338), 2, + ACTIONS(9293), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2321), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9344), 25, + ACTIONS(9288), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -166803,19 +166433,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146850] = 5, + [146867] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9317), 1, + ACTIONS(8961), 1, anon_sym_POUND_, - ACTIONS(9346), 2, + ACTIONS(9296), 2, sym__ws, sym_comment, - STATE(2509), 3, + STATE(2117), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9320), 25, + ACTIONS(8964), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -166841,19 +166471,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146893] = 5, + [146910] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9352), 1, + ACTIONS(9277), 1, anon_sym_POUND_, - ACTIONS(9349), 2, + ACTIONS(9274), 2, sym__ws, sym_comment, - STATE(2094), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9355), 25, + ACTIONS(9280), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -166879,19 +166509,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146936] = 5, + [146953] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9360), 1, + ACTIONS(9285), 1, anon_sym_POUND_, - ACTIONS(9357), 2, + ACTIONS(9299), 2, sym__ws, sym_comment, - STATE(2506), 3, + STATE(2324), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9363), 25, + ACTIONS(9288), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -166917,19 +166547,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146979] = 5, + [146996] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9368), 1, + ACTIONS(9305), 1, anon_sym_POUND_, - ACTIONS(9365), 2, + ACTIONS(9302), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9371), 25, + ACTIONS(9308), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -166955,19 +166585,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147022] = 5, + [147039] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9360), 1, + ACTIONS(9305), 1, anon_sym_POUND_, - ACTIONS(9373), 2, + ACTIONS(9302), 2, sym__ws, sym_comment, - STATE(2521), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9363), 25, + ACTIONS(9308), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -166993,19 +166623,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147065] = 5, + [147082] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9379), 1, + ACTIONS(9313), 1, anon_sym_POUND_, - ACTIONS(9376), 2, + ACTIONS(9310), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2551), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9382), 25, + ACTIONS(9316), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -167031,19 +166661,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147108] = 5, + [147125] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9387), 1, + ACTIONS(9321), 1, anon_sym_POUND_, - ACTIONS(9384), 2, + ACTIONS(9318), 2, sym__ws, sym_comment, - STATE(2526), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9390), 25, + ACTIONS(9324), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -167069,19 +166699,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147151] = 5, + [147168] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9352), 1, + ACTIONS(8663), 1, anon_sym_POUND_, - ACTIONS(9392), 2, + ACTIONS(9326), 2, sym__ws, sym_comment, - STATE(2093), 3, + STATE(2326), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9355), 25, + ACTIONS(8666), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -167107,19 +166737,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147194] = 5, + [147211] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9387), 1, + ACTIONS(8663), 1, anon_sym_POUND_, - ACTIONS(9395), 2, + ACTIONS(9329), 2, sym__ws, sym_comment, - STATE(2533), 3, + STATE(2327), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9390), 25, + ACTIONS(8666), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -167145,19 +166775,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147237] = 5, + [147254] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9379), 1, + ACTIONS(9335), 1, anon_sym_POUND_, - ACTIONS(9376), 2, + ACTIONS(9332), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9382), 25, + ACTIONS(9338), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -167183,19 +166813,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147280] = 5, + [147297] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9387), 1, + ACTIONS(9321), 1, anon_sym_POUND_, - ACTIONS(9398), 2, + ACTIONS(9318), 2, sym__ws, sym_comment, - STATE(2540), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9390), 25, + ACTIONS(9324), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -167221,19 +166851,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147323] = 5, + [147340] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9368), 1, + ACTIONS(8663), 1, anon_sym_POUND_, - ACTIONS(9365), 2, + ACTIONS(9340), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2329), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9371), 25, + ACTIONS(8666), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -167259,19 +166889,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147366] = 5, + [147383] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9360), 1, + ACTIONS(9020), 1, anon_sym_POUND_, - ACTIONS(9401), 2, + ACTIONS(9343), 2, sym__ws, sym_comment, - STATE(2547), 3, + STATE(2132), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9363), 25, + ACTIONS(9023), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -167297,19 +166927,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147409] = 5, + [147426] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9360), 1, + ACTIONS(9321), 1, anon_sym_POUND_, - ACTIONS(9404), 2, + ACTIONS(9318), 2, sym__ws, sym_comment, - STATE(2549), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9363), 25, + ACTIONS(9324), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -167335,19 +166965,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147452] = 5, + [147469] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9368), 1, + ACTIONS(8663), 1, anon_sym_POUND_, - ACTIONS(9365), 2, + ACTIONS(9346), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2332), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9371), 25, + ACTIONS(8666), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -167373,19 +167003,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147495] = 5, + [147512] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9410), 1, + ACTIONS(9305), 1, anon_sym_POUND_, - ACTIONS(9407), 2, + ACTIONS(9302), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9413), 25, + ACTIONS(9308), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -167411,19 +167041,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147538] = 5, + [147555] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9418), 1, + ACTIONS(9313), 1, anon_sym_POUND_, - ACTIONS(9415), 2, + ACTIONS(9349), 2, sym__ws, sym_comment, - STATE(2479), 3, + STATE(2333), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9421), 25, + ACTIONS(9316), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -167449,19 +167079,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147581] = 5, + [147598] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9426), 1, + ACTIONS(9313), 1, anon_sym_POUND_, - ACTIONS(9423), 2, + ACTIONS(9352), 2, sym__ws, sym_comment, - STATE(2104), 3, + STATE(2334), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9429), 25, + ACTIONS(9316), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -167487,19 +167117,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147624] = 5, + [147641] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9418), 1, + ACTIONS(9305), 1, anon_sym_POUND_, - ACTIONS(9431), 2, + ACTIONS(9302), 2, sym__ws, sym_comment, - STATE(2473), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9421), 25, + ACTIONS(9308), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -167525,19 +167155,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147667] = 5, + [147684] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9410), 1, + ACTIONS(9358), 1, anon_sym_POUND_, - ACTIONS(9407), 2, + ACTIONS(9355), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9413), 25, + ACTIONS(9361), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -167563,19 +167193,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147710] = 5, + [147727] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9418), 1, + ACTIONS(9366), 1, anon_sym_POUND_, - ACTIONS(9434), 2, + ACTIONS(9363), 2, sym__ws, sym_comment, - STATE(2517), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9421), 25, + ACTIONS(9369), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -167601,19 +167231,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147753] = 5, + [147770] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9440), 1, + ACTIONS(9358), 1, anon_sym_POUND_, - ACTIONS(9437), 2, + ACTIONS(9371), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2340), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9443), 25, + ACTIONS(9361), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -167639,19 +167269,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147796] = 5, + [147813] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9448), 1, + ACTIONS(9358), 1, anon_sym_POUND_, - ACTIONS(9445), 2, + ACTIONS(9374), 2, sym__ws, sym_comment, - STATE(2434), 3, + STATE(2344), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9451), 25, + ACTIONS(9361), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -167677,19 +167307,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147839] = 5, + [147856] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9448), 1, + ACTIONS(9366), 1, anon_sym_POUND_, - ACTIONS(9453), 2, + ACTIONS(9363), 2, sym__ws, sym_comment, - STATE(2431), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9451), 25, + ACTIONS(9369), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -167715,19 +167345,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147882] = 5, + [147899] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9440), 1, + ACTIONS(9305), 1, anon_sym_POUND_, - ACTIONS(9437), 2, + ACTIONS(9302), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9443), 25, + ACTIONS(9308), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -167753,19 +167383,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147925] = 5, + [147942] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9459), 1, + ACTIONS(9305), 1, anon_sym_POUND_, - ACTIONS(9456), 2, + ACTIONS(9302), 2, sym__ws, sym_comment, - STATE(2427), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9462), 25, + ACTIONS(9308), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -167791,19 +167421,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147968] = 5, + [147985] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9467), 1, + ACTIONS(9313), 1, anon_sym_POUND_, - ACTIONS(9464), 2, + ACTIONS(9377), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2346), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9470), 25, + ACTIONS(9316), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -167829,19 +167459,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [148011] = 5, + [148028] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9459), 1, + ACTIONS(9321), 1, anon_sym_POUND_, - ACTIONS(9472), 2, + ACTIONS(9318), 2, sym__ws, sym_comment, - STATE(2411), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9462), 25, + ACTIONS(9324), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -167867,19 +167497,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [148054] = 5, + [148071] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9467), 1, + ACTIONS(8663), 1, anon_sym_POUND_, - ACTIONS(9464), 2, + ACTIONS(9380), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2347), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9470), 25, + ACTIONS(8666), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -167905,19 +167535,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [148097] = 5, + [148114] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9459), 1, + ACTIONS(9386), 1, anon_sym_POUND_, - ACTIONS(9475), 2, + ACTIONS(9383), 2, sym__ws, sym_comment, - STATE(2331), 3, + STATE(2527), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9462), 25, + ACTIONS(9389), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -167943,19 +167573,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [148140] = 5, + [148157] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9459), 1, + ACTIONS(9321), 1, anon_sym_POUND_, - ACTIONS(9478), 2, + ACTIONS(9318), 2, sym__ws, sym_comment, - STATE(2202), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9462), 25, + ACTIONS(9324), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -167981,19 +167611,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [148183] = 5, + [148200] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9467), 1, + ACTIONS(8663), 1, anon_sym_POUND_, - ACTIONS(9464), 2, + ACTIONS(9391), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2350), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9470), 25, + ACTIONS(8666), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -168019,19 +167649,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [148226] = 5, + [148243] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9448), 1, + ACTIONS(9321), 1, anon_sym_POUND_, - ACTIONS(9481), 2, + ACTIONS(9318), 2, sym__ws, sym_comment, - STATE(2201), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9451), 25, + ACTIONS(9324), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -168057,19 +167687,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [148269] = 5, + [148286] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9440), 1, + ACTIONS(8663), 1, anon_sym_POUND_, - ACTIONS(9437), 2, + ACTIONS(9394), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2353), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9443), 25, + ACTIONS(8666), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -168095,19 +167725,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [148312] = 5, + [148329] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9440), 1, + ACTIONS(9305), 1, anon_sym_POUND_, - ACTIONS(9437), 2, + ACTIONS(9302), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9443), 25, + ACTIONS(9308), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -168133,19 +167763,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [148355] = 5, + [148372] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8758), 1, + ACTIONS(9313), 1, anon_sym_POUND_, - ACTIONS(9484), 2, + ACTIONS(9397), 2, sym__ws, sym_comment, - STATE(2418), 3, + STATE(2354), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8761), 25, + ACTIONS(9316), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -168171,19 +167801,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [148398] = 5, + [148415] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9333), 1, + ACTIONS(9313), 1, anon_sym_POUND_, - ACTIONS(9330), 2, + ACTIONS(9400), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2355), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9336), 25, + ACTIONS(9316), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -168209,19 +167839,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [148441] = 5, + [148458] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9352), 1, + ACTIONS(8909), 1, anon_sym_POUND_, - ACTIONS(9487), 2, + ACTIONS(9403), 2, sym__ws, sym_comment, - STATE(2091), 3, + STATE(2124), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9355), 25, + ACTIONS(8912), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -168247,19 +167877,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [148484] = 5, + [148501] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9142), 1, + ACTIONS(9305), 1, anon_sym_POUND_, - ACTIONS(9139), 2, + ACTIONS(9302), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9145), 25, + ACTIONS(9308), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -168285,19 +167915,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [148527] = 5, + [148544] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9493), 1, + ACTIONS(9358), 1, anon_sym_POUND_, - ACTIONS(9490), 2, + ACTIONS(9406), 2, sym__ws, sym_comment, - STATE(2082), 3, + STATE(2357), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9496), 25, + ACTIONS(9361), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -168323,19 +167953,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [148570] = 5, + [148587] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9501), 1, + ACTIONS(9366), 1, anon_sym_POUND_, - ACTIONS(9498), 2, + ACTIONS(9363), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9504), 25, + ACTIONS(9369), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -168361,19 +167991,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [148613] = 5, + [148630] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9509), 1, + ACTIONS(9358), 1, anon_sym_POUND_, - ACTIONS(9506), 2, + ACTIONS(9409), 2, sym__ws, sym_comment, - STATE(2137), 3, + STATE(2361), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9512), 25, + ACTIONS(9361), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -168399,19 +168029,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [148656] = 5, + [148673] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9517), 1, + ACTIONS(9358), 1, anon_sym_POUND_, - ACTIONS(9514), 2, + ACTIONS(9412), 2, sym__ws, sym_comment, - STATE(2101), 3, + STATE(2365), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9520), 25, + ACTIONS(9361), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -168437,19 +168067,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [148699] = 5, + [148716] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9525), 1, + ACTIONS(9366), 1, anon_sym_POUND_, - ACTIONS(9522), 2, + ACTIONS(9363), 2, sym__ws, sym_comment, - STATE(2220), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9528), 25, + ACTIONS(9369), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -168475,19 +168105,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [148742] = 5, + [148759] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9533), 1, + ACTIONS(9418), 1, anon_sym_POUND_, - ACTIONS(9530), 2, + ACTIONS(9415), 2, sym__ws, sym_comment, - STATE(2141), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9536), 25, + ACTIONS(9421), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -168513,19 +168143,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [148785] = 5, + [148802] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9333), 1, + ACTIONS(9426), 1, anon_sym_POUND_, - ACTIONS(9330), 2, + ACTIONS(9423), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2367), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9336), 25, + ACTIONS(9429), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -168551,19 +168181,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [148828] = 5, + [148845] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9541), 1, + ACTIONS(9426), 1, anon_sym_POUND_, - ACTIONS(9538), 2, + ACTIONS(9431), 2, sym__ws, sym_comment, - STATE(2143), 3, + STATE(2368), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9544), 25, + ACTIONS(9429), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -168589,19 +168219,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [148871] = 5, + [148888] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9352), 1, + ACTIONS(9028), 1, anon_sym_POUND_, - ACTIONS(9546), 2, + ACTIONS(9025), 2, sym__ws, sym_comment, - STATE(2087), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9355), 25, + ACTIONS(9031), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -168627,19 +168257,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [148914] = 5, + [148931] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9552), 1, + ACTIONS(9418), 1, anon_sym_POUND_, - ACTIONS(9549), 2, + ACTIONS(9415), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9555), 25, + ACTIONS(9421), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -168665,19 +168295,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [148957] = 5, + [148974] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9560), 1, + ACTIONS(9437), 1, anon_sym_POUND_, - ACTIONS(9557), 2, + ACTIONS(9434), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2370), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9563), 25, + ACTIONS(9440), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -168703,19 +168333,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [149000] = 5, + [149017] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9541), 1, + ACTIONS(9445), 1, anon_sym_POUND_, - ACTIONS(9565), 2, + ACTIONS(9442), 2, sym__ws, sym_comment, - STATE(2147), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9544), 25, + ACTIONS(9448), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -168741,19 +168371,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [149043] = 5, + [149060] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8880), 1, + ACTIONS(9453), 1, anon_sym_POUND_, - ACTIONS(8877), 2, + ACTIONS(9450), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8883), 25, + ACTIONS(9456), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -168779,19 +168409,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [149086] = 5, + [149103] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9533), 1, + ACTIONS(9437), 1, anon_sym_POUND_, - ACTIONS(9568), 2, + ACTIONS(9458), 2, sym__ws, sym_comment, - STATE(2149), 3, + STATE(2373), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9536), 25, + ACTIONS(9440), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -168817,19 +168447,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [149129] = 5, + [149146] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9574), 1, + ACTIONS(9437), 1, anon_sym_POUND_, - ACTIONS(9571), 2, + ACTIONS(9461), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2377), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9577), 25, + ACTIONS(9440), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -168855,19 +168485,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [149172] = 5, + [149189] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9533), 1, + ACTIONS(9453), 1, anon_sym_POUND_, - ACTIONS(9579), 2, + ACTIONS(9450), 2, sym__ws, sym_comment, - STATE(2152), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9536), 25, + ACTIONS(9456), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -168893,19 +168523,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [149215] = 5, + [149232] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9585), 1, + ACTIONS(9426), 1, anon_sym_POUND_, - ACTIONS(9582), 2, + ACTIONS(9464), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9588), 25, + ACTIONS(9429), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -168931,19 +168561,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [149258] = 5, + [149275] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9509), 1, + ACTIONS(9418), 1, anon_sym_POUND_, - ACTIONS(9590), 2, + ACTIONS(9415), 2, sym__ws, sym_comment, - STATE(2156), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9512), 25, + ACTIONS(9421), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -168969,19 +168599,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [149301] = 5, + [149318] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8880), 1, + ACTIONS(9426), 1, anon_sym_POUND_, - ACTIONS(8877), 2, + ACTIONS(9467), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2382), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8883), 25, + ACTIONS(9429), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -169007,19 +168637,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [149344] = 5, + [149361] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8880), 1, + ACTIONS(9020), 1, anon_sym_POUND_, - ACTIONS(8877), 2, + ACTIONS(9470), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2138), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8883), 25, + ACTIONS(9023), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -169045,19 +168675,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [149387] = 5, + [149404] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9533), 1, + ACTIONS(9476), 1, anon_sym_POUND_, - ACTIONS(9593), 2, + ACTIONS(9473), 2, sym__ws, sym_comment, - STATE(2160), 3, + STATE(2384), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9536), 25, + ACTIONS(9479), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -169083,19 +168713,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [149430] = 5, + [149447] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9585), 1, + ACTIONS(9484), 1, anon_sym_POUND_, - ACTIONS(9596), 2, + ACTIONS(9481), 2, sym__ws, sym_comment, - STATE(2398), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9588), 25, + ACTIONS(9487), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -169121,19 +168751,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [149473] = 5, + [149490] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9541), 1, + ACTIONS(9231), 1, anon_sym_POUND_, - ACTIONS(9599), 2, + ACTIONS(9489), 2, sym__ws, sym_comment, - STATE(2162), 3, + STATE(2175), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9544), 25, + ACTIONS(9234), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -169159,19 +168789,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [149516] = 5, + [149533] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9552), 1, + ACTIONS(9476), 1, anon_sym_POUND_, - ACTIONS(9549), 2, + ACTIONS(9492), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2387), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9555), 25, + ACTIONS(9479), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -169197,19 +168827,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [149559] = 5, + [149576] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8872), 1, + ACTIONS(9498), 1, anon_sym_POUND_, - ACTIONS(9602), 2, + ACTIONS(9495), 2, sym__ws, sym_comment, - STATE(2086), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8875), 25, + ACTIONS(9501), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -169235,19 +168865,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [149602] = 5, + [149619] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9560), 1, + ACTIONS(9498), 1, anon_sym_POUND_, - ACTIONS(9557), 2, + ACTIONS(9495), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9563), 25, + ACTIONS(9501), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -169273,19 +168903,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [149645] = 5, + [149662] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9541), 1, + ACTIONS(9498), 1, anon_sym_POUND_, - ACTIONS(9605), 2, + ACTIONS(9495), 2, sym__ws, sym_comment, - STATE(2166), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9544), 25, + ACTIONS(9501), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -169311,19 +168941,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [149688] = 5, + [149705] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9611), 1, + ACTIONS(9506), 1, anon_sym_POUND_, - ACTIONS(9608), 2, + ACTIONS(9503), 2, sym__ws, sym_comment, - STATE(2396), 3, + STATE(2388), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9614), 25, + ACTIONS(9509), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -169349,19 +168979,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [149731] = 5, + [149748] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9533), 1, + ACTIONS(9514), 1, anon_sym_POUND_, - ACTIONS(9616), 2, + ACTIONS(9511), 2, sym__ws, sym_comment, - STATE(2132), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9536), 25, + ACTIONS(9517), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -169387,19 +169017,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [149774] = 5, + [149791] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9574), 1, + ACTIONS(9522), 1, anon_sym_POUND_, - ACTIONS(9571), 2, + ACTIONS(9519), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9577), 25, + ACTIONS(9525), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -169425,19 +169055,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [149817] = 5, + [149834] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9533), 1, + ACTIONS(9522), 1, anon_sym_POUND_, - ACTIONS(9619), 2, + ACTIONS(9519), 2, sym__ws, sym_comment, - STATE(2172), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9536), 25, + ACTIONS(9525), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -169463,19 +169093,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [149860] = 5, + [149877] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9317), 1, + ACTIONS(9530), 1, anon_sym_POUND_, - ACTIONS(9622), 2, + ACTIONS(9527), 2, sym__ws, sym_comment, - STATE(2173), 3, + STATE(2389), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9320), 25, + ACTIONS(9533), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -169501,19 +169131,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [149903] = 5, + [149920] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8758), 1, + ACTIONS(9522), 1, anon_sym_POUND_, - ACTIONS(9625), 2, + ACTIONS(9519), 2, sym__ws, sym_comment, - STATE(2407), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8761), 25, + ACTIONS(9525), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -169539,19 +169169,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [149946] = 5, + [149963] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8864), 1, + ACTIONS(9530), 1, anon_sym_POUND_, - ACTIONS(8861), 2, + ACTIONS(9535), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2390), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8867), 25, + ACTIONS(9533), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -169577,19 +169207,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [149989] = 5, + [150006] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8834), 1, + ACTIONS(9530), 1, anon_sym_POUND_, - ACTIONS(8831), 2, + ACTIONS(9538), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2391), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8837), 25, + ACTIONS(9533), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -169615,19 +169245,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150032] = 5, + [150049] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9341), 1, + ACTIONS(9522), 1, anon_sym_POUND_, - ACTIONS(9338), 2, + ACTIONS(9519), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9344), 25, + ACTIONS(9525), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -169653,19 +169283,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150075] = 5, + [150092] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9317), 1, + ACTIONS(9239), 1, anon_sym_POUND_, - ACTIONS(9628), 2, + ACTIONS(9236), 2, sym__ws, sym_comment, - STATE(2177), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9320), 25, + ACTIONS(9242), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -169691,19 +169321,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150118] = 5, + [150135] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8834), 1, + ACTIONS(9247), 1, anon_sym_POUND_, - ACTIONS(8831), 2, + ACTIONS(9244), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8837), 25, + ACTIONS(9250), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -169729,19 +169359,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150161] = 5, + [150178] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9360), 1, + ACTIONS(9247), 1, anon_sym_POUND_, - ACTIONS(9631), 2, + ACTIONS(9244), 2, sym__ws, sym_comment, - STATE(2179), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9363), 25, + ACTIONS(9250), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -169767,19 +169397,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150204] = 5, + [150221] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9368), 1, + ACTIONS(9255), 1, anon_sym_POUND_, - ACTIONS(9365), 2, + ACTIONS(9541), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2393), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9371), 25, + ACTIONS(9258), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -169805,19 +169435,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150247] = 5, + [150264] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9360), 1, + ACTIONS(9247), 1, anon_sym_POUND_, - ACTIONS(9634), 2, + ACTIONS(9244), 2, sym__ws, sym_comment, - STATE(2182), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9363), 25, + ACTIONS(9250), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -169843,19 +169473,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150290] = 5, + [150307] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9379), 1, + ACTIONS(9255), 1, anon_sym_POUND_, - ACTIONS(9376), 2, + ACTIONS(9544), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2394), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9382), 25, + ACTIONS(9258), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -169881,19 +169511,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150333] = 5, + [150350] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9387), 1, + ACTIONS(9255), 1, anon_sym_POUND_, - ACTIONS(9637), 2, + ACTIONS(9547), 2, sym__ws, sym_comment, - STATE(2184), 3, + STATE(2395), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9390), 25, + ACTIONS(9258), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -169919,19 +169549,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150376] = 5, + [150393] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9239), 1, + ACTIONS(9247), 1, anon_sym_POUND_, - ACTIONS(9236), 2, + ACTIONS(9244), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9242), 25, + ACTIONS(9250), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -169957,19 +169587,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150419] = 5, + [150436] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9387), 1, + ACTIONS(9239), 1, anon_sym_POUND_, - ACTIONS(9640), 2, + ACTIONS(9236), 2, sym__ws, sym_comment, - STATE(2186), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9390), 25, + ACTIONS(9242), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -169995,19 +169625,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150462] = 5, + [150479] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9379), 1, + ACTIONS(9239), 1, anon_sym_POUND_, - ACTIONS(9376), 2, + ACTIONS(9236), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9382), 25, + ACTIONS(9242), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -170033,19 +169663,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150505] = 5, + [150522] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9387), 1, + ACTIONS(9269), 1, anon_sym_POUND_, - ACTIONS(9643), 2, + ACTIONS(9550), 2, sym__ws, sym_comment, - STATE(2189), 3, + STATE(2397), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9390), 25, + ACTIONS(9272), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -170071,19 +169701,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150548] = 5, + [150565] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9368), 1, + ACTIONS(9277), 1, anon_sym_POUND_, - ACTIONS(9365), 2, + ACTIONS(9274), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9371), 25, + ACTIONS(9280), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -170109,19 +169739,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150591] = 5, + [150608] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9360), 1, + ACTIONS(9285), 1, anon_sym_POUND_, - ACTIONS(9646), 2, + ACTIONS(9553), 2, sym__ws, sym_comment, - STATE(2191), 3, + STATE(2398), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9363), 25, + ACTIONS(9288), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -170147,19 +169777,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150634] = 5, + [150651] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9360), 1, + ACTIONS(9285), 1, anon_sym_POUND_, - ACTIONS(9649), 2, + ACTIONS(9556), 2, sym__ws, sym_comment, - STATE(2192), 3, + STATE(2399), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9363), 25, + ACTIONS(9288), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -170185,19 +169815,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150677] = 5, + [150694] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9368), 1, + ACTIONS(9277), 1, anon_sym_POUND_, - ACTIONS(9365), 2, + ACTIONS(9274), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9371), 25, + ACTIONS(9280), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -170223,19 +169853,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150720] = 5, + [150737] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8850), 1, + ACTIONS(9285), 1, anon_sym_POUND_, - ACTIONS(9652), 2, + ACTIONS(9559), 2, sym__ws, sym_comment, - STATE(2085), 3, + STATE(2401), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8853), 25, + ACTIONS(9288), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -170261,19 +169891,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150763] = 5, + [150780] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8834), 1, + ACTIONS(9565), 1, anon_sym_POUND_, - ACTIONS(8831), 2, + ACTIONS(9562), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2529), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8837), 25, + ACTIONS(9568), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -170299,24 +169929,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150806] = 5, + [150823] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9658), 1, - anon_sym_POUND_, - ACTIONS(9655), 2, + ACTIONS(7449), 31, sym__ws, sym_comment, - STATE(2463), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(9661), 25, + anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_cl, aux_sym_accumulation_verb_token1, anon_sym_for, @@ -170334,22 +169960,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, + anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [150849] = 5, + [150860] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8850), 1, + ACTIONS(9277), 1, anon_sym_POUND_, - ACTIONS(9663), 2, + ACTIONS(9274), 2, sym__ws, sym_comment, - STATE(2084), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8853), 25, + ACTIONS(9280), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -170375,19 +170002,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150892] = 5, + [150903] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9279), 1, + ACTIONS(9285), 1, anon_sym_POUND_, - ACTIONS(9276), 2, + ACTIONS(9570), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2404), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9282), 25, + ACTIONS(9288), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -170413,19 +170040,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150935] = 5, + [150946] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9658), 1, + ACTIONS(9576), 1, anon_sym_POUND_, - ACTIONS(9666), 2, + ACTIONS(9573), 2, sym__ws, sym_comment, - STATE(2465), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9661), 25, + ACTIONS(9579), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -170451,19 +170078,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150978] = 5, + [150989] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8850), 1, + ACTIONS(9576), 1, anon_sym_POUND_, - ACTIONS(9669), 2, + ACTIONS(9573), 2, sym__ws, sym_comment, - STATE(2083), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8853), 25, + ACTIONS(9579), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -170489,19 +170116,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [151021] = 5, + [151032] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9658), 1, + ACTIONS(9576), 1, anon_sym_POUND_, - ACTIONS(9672), 2, + ACTIONS(9573), 2, sym__ws, sym_comment, - STATE(2466), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9661), 25, + ACTIONS(9579), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -170527,19 +170154,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [151064] = 5, + [151075] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9678), 1, + ACTIONS(9584), 1, anon_sym_POUND_, - ACTIONS(9675), 2, + ACTIONS(9581), 2, sym__ws, sym_comment, - STATE(2121), 3, + STATE(2405), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9681), 25, + ACTIONS(9587), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -170565,19 +170192,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [151107] = 5, + [151118] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9279), 1, + ACTIONS(9592), 1, anon_sym_POUND_, - ACTIONS(9276), 2, + ACTIONS(9589), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9282), 25, + ACTIONS(9595), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -170603,19 +170230,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [151150] = 5, + [151161] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9517), 1, + ACTIONS(9600), 1, anon_sym_POUND_, - ACTIONS(9683), 2, + ACTIONS(9597), 2, sym__ws, sym_comment, - STATE(2102), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9520), 25, + ACTIONS(9603), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -170641,19 +170268,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [151193] = 5, + [151204] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8834), 1, + ACTIONS(9600), 1, anon_sym_POUND_, - ACTIONS(8831), 2, + ACTIONS(9597), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8837), 25, + ACTIONS(9603), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -170679,19 +170306,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [151236] = 5, + [151247] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9689), 1, + ACTIONS(9608), 1, anon_sym_POUND_, - ACTIONS(9686), 2, + ACTIONS(9605), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2406), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9692), 25, + ACTIONS(9611), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -170717,19 +170344,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [151279] = 5, + [151290] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9697), 1, + ACTIONS(9600), 1, anon_sym_POUND_, - ACTIONS(9694), 2, + ACTIONS(9597), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9700), 25, + ACTIONS(9603), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -170755,19 +170382,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [151322] = 5, + [151333] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9247), 1, + ACTIONS(9608), 1, anon_sym_POUND_, - ACTIONS(9244), 2, + ACTIONS(9613), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2407), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9250), 25, + ACTIONS(9611), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -170793,19 +170420,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [151365] = 5, + [151376] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9705), 1, + ACTIONS(9608), 1, anon_sym_POUND_, - ACTIONS(9702), 2, + ACTIONS(9616), 2, sym__ws, sym_comment, - STATE(2468), 3, + STATE(2408), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9708), 25, + ACTIONS(9611), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -170831,19 +170458,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [151408] = 5, + [151419] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9713), 1, + ACTIONS(9600), 1, anon_sym_POUND_, - ACTIONS(9710), 2, + ACTIONS(9597), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9716), 25, + ACTIONS(9603), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -170869,19 +170496,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [151451] = 5, + [151462] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9721), 1, + ACTIONS(8695), 1, anon_sym_POUND_, - ACTIONS(9718), 2, + ACTIONS(9619), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2245), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9724), 25, + ACTIONS(8698), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -170907,19 +170534,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [151494] = 5, + [151505] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9729), 1, + ACTIONS(9625), 1, anon_sym_POUND_, - ACTIONS(9726), 2, + ACTIONS(9622), 2, sym__ws, sym_comment, - STATE(2469), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9732), 25, + ACTIONS(9628), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -170945,19 +170572,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [151537] = 5, + [151548] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9729), 1, + ACTIONS(9625), 1, anon_sym_POUND_, - ACTIONS(9734), 2, + ACTIONS(9622), 2, sym__ws, sym_comment, - STATE(2484), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9732), 25, + ACTIONS(9628), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -170983,19 +170610,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [151580] = 5, + [151591] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9713), 1, + ACTIONS(9633), 1, anon_sym_POUND_, - ACTIONS(9710), 2, + ACTIONS(9630), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2410), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9716), 25, + ACTIONS(9636), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -171021,19 +170648,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [151623] = 5, + [151634] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9740), 1, + ACTIONS(9625), 1, anon_sym_POUND_, - ACTIONS(9737), 2, + ACTIONS(9622), 2, sym__ws, sym_comment, - STATE(2078), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9743), 25, + ACTIONS(9628), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -171059,19 +170686,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [151666] = 5, + [151677] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9721), 1, + ACTIONS(9633), 1, anon_sym_POUND_, - ACTIONS(9718), 2, + ACTIONS(9638), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2411), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9724), 25, + ACTIONS(9636), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -171097,19 +170724,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [151709] = 5, + [151720] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9729), 1, + ACTIONS(9633), 1, anon_sym_POUND_, - ACTIONS(9745), 2, + ACTIONS(9641), 2, sym__ws, sym_comment, - STATE(2131), 3, + STATE(2412), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9732), 25, + ACTIONS(9636), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -171135,19 +170762,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [151752] = 5, + [151763] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9713), 1, + ACTIONS(9625), 1, anon_sym_POUND_, - ACTIONS(9710), 2, + ACTIONS(9622), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9716), 25, + ACTIONS(9628), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -171173,19 +170800,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [151795] = 5, + [151806] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9678), 1, + ACTIONS(9647), 1, anon_sym_POUND_, - ACTIONS(9748), 2, + ACTIONS(9644), 2, sym__ws, sym_comment, - STATE(2125), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9681), 25, + ACTIONS(9650), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -171211,19 +170838,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [151838] = 5, + [151849] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9295), 1, + ACTIONS(9647), 1, anon_sym_POUND_, - ACTIONS(9292), 2, + ACTIONS(9644), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9298), 25, + ACTIONS(9650), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -171249,19 +170876,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [151881] = 5, + [151892] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9255), 1, + ACTIONS(9655), 1, anon_sym_POUND_, - ACTIONS(9252), 2, + ACTIONS(9652), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2414), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9258), 25, + ACTIONS(9658), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -171287,19 +170914,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [151924] = 5, + [151935] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9721), 1, + ACTIONS(9663), 1, anon_sym_POUND_, - ACTIONS(9718), 2, + ACTIONS(9660), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9724), 25, + ACTIONS(9666), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -171325,19 +170952,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [151967] = 5, + [151978] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9740), 1, + ACTIONS(9671), 1, anon_sym_POUND_, - ACTIONS(9751), 2, + ACTIONS(9668), 2, sym__ws, sym_comment, - STATE(2077), 3, + STATE(2415), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9743), 25, + ACTIONS(9674), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -171363,19 +170990,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [152010] = 5, + [152021] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9740), 1, + ACTIONS(9671), 1, anon_sym_POUND_, - ACTIONS(9754), 2, + ACTIONS(9676), 2, sym__ws, sym_comment, - STATE(2076), 3, + STATE(2416), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9743), 25, + ACTIONS(9674), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -171401,19 +171028,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [152053] = 5, + [152064] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9501), 1, + ACTIONS(9231), 1, anon_sym_POUND_, - ACTIONS(9498), 2, + ACTIONS(9679), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2178), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9504), 25, + ACTIONS(9234), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -171439,19 +171066,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [152096] = 5, + [152107] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9760), 1, + ACTIONS(9663), 1, anon_sym_POUND_, - ACTIONS(9757), 2, + ACTIONS(9660), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9763), 25, + ACTIONS(9666), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -171477,19 +171104,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [152139] = 5, + [152150] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9713), 1, + ACTIONS(9671), 1, anon_sym_POUND_, - ACTIONS(9710), 2, + ACTIONS(9682), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2418), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9716), 25, + ACTIONS(9674), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -171515,19 +171142,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [152182] = 5, + [152193] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9611), 1, + ACTIONS(9688), 1, anon_sym_POUND_, - ACTIONS(9765), 2, + ACTIONS(9685), 2, sym__ws, sym_comment, - STATE(2389), 3, + STATE(2532), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9614), 25, + ACTIONS(9691), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -171553,24 +171180,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [152225] = 5, + [152236] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9697), 1, - anon_sym_POUND_, - ACTIONS(9694), 2, + ACTIONS(7678), 31, sym__ws, sym_comment, - STATE(2145), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(9700), 25, + anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_cl, aux_sym_accumulation_verb_token1, anon_sym_for, @@ -171588,22 +171211,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, + anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [152268] = 5, + [152273] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9697), 1, + ACTIONS(9663), 1, anon_sym_POUND_, - ACTIONS(9694), 2, + ACTIONS(9660), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9700), 25, + ACTIONS(9666), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -171629,19 +171253,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [152311] = 5, + [152316] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9771), 1, + ACTIONS(9671), 1, anon_sym_POUND_, - ACTIONS(9768), 2, + ACTIONS(9693), 2, sym__ws, sym_comment, - STATE(2214), 3, + STATE(2421), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9774), 25, + ACTIONS(9674), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -171667,19 +171291,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [152354] = 5, + [152359] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9779), 1, + ACTIONS(9647), 1, anon_sym_POUND_, - ACTIONS(9776), 2, + ACTIONS(9644), 2, sym__ws, sym_comment, - STATE(2074), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9782), 25, + ACTIONS(9650), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -171705,19 +171329,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [152397] = 5, + [152402] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9787), 1, + ACTIONS(9625), 1, anon_sym_POUND_, - ACTIONS(9784), 2, + ACTIONS(9622), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9790), 25, + ACTIONS(9628), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -171743,19 +171367,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [152440] = 5, + [152445] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9795), 1, + ACTIONS(9625), 1, anon_sym_POUND_, - ACTIONS(9792), 2, + ACTIONS(9622), 2, sym__ws, sym_comment, - STATE(2218), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9798), 25, + ACTIONS(9628), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -171781,19 +171405,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [152483] = 5, + [152488] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9803), 1, + ACTIONS(9633), 1, anon_sym_POUND_, - ACTIONS(9800), 2, + ACTIONS(9696), 2, sym__ws, sym_comment, - STATE(2073), 3, + STATE(2422), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9806), 25, + ACTIONS(9636), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -171819,19 +171443,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [152526] = 5, + [152531] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9803), 1, + ACTIONS(9625), 1, anon_sym_POUND_, - ACTIONS(9808), 2, + ACTIONS(9622), 2, sym__ws, sym_comment, - STATE(2072), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9806), 25, + ACTIONS(9628), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -171857,19 +171481,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [152569] = 5, + [152574] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9760), 1, + ACTIONS(9633), 1, anon_sym_POUND_, - ACTIONS(9757), 2, + ACTIONS(9699), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2423), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9763), 25, + ACTIONS(9636), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -171895,19 +171519,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [152612] = 5, + [152617] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9611), 1, + ACTIONS(9633), 1, anon_sym_POUND_, - ACTIONS(9811), 2, + ACTIONS(9702), 2, sym__ws, sym_comment, - STATE(2386), 3, + STATE(2424), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9614), 25, + ACTIONS(9636), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -171933,19 +171557,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [152655] = 5, + [152660] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9817), 1, + ACTIONS(9625), 1, anon_sym_POUND_, - ACTIONS(9814), 2, + ACTIONS(9622), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9820), 25, + ACTIONS(9628), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -171971,19 +171595,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [152698] = 5, + [152703] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9525), 1, + ACTIONS(9647), 1, anon_sym_POUND_, - ACTIONS(9822), 2, + ACTIONS(9644), 2, sym__ws, sym_comment, - STATE(2224), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9528), 25, + ACTIONS(9650), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -172009,19 +171633,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [152741] = 5, + [152746] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9517), 1, + ACTIONS(9647), 1, anon_sym_POUND_, - ACTIONS(9825), 2, + ACTIONS(9644), 2, sym__ws, sym_comment, - STATE(2103), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9520), 25, + ACTIONS(9650), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -172047,19 +171671,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [152784] = 5, + [152789] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9795), 1, + ACTIONS(9655), 1, anon_sym_POUND_, - ACTIONS(9828), 2, + ACTIONS(9705), 2, sym__ws, sym_comment, - STATE(2226), 3, + STATE(2426), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9798), 25, + ACTIONS(9658), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -172085,19 +171709,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [152827] = 5, + [152832] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9834), 1, + ACTIONS(9663), 1, anon_sym_POUND_, - ACTIONS(9831), 2, + ACTIONS(9660), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9837), 25, + ACTIONS(9666), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -172123,19 +171747,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [152870] = 5, + [152875] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9795), 1, + ACTIONS(9671), 1, anon_sym_POUND_, - ACTIONS(9839), 2, + ACTIONS(9708), 2, sym__ws, sym_comment, - STATE(2229), 3, + STATE(2427), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9798), 25, + ACTIONS(9674), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -172161,19 +171785,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [152913] = 5, + [152918] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9845), 1, + ACTIONS(9671), 1, anon_sym_POUND_, - ACTIONS(9842), 2, + ACTIONS(9711), 2, sym__ws, sym_comment, - STATE(2230), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9848), 25, + ACTIONS(9674), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -172199,19 +171823,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [152956] = 5, + [152961] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9787), 1, + ACTIONS(9445), 1, anon_sym_POUND_, - ACTIONS(9784), 2, + ACTIONS(9442), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9790), 25, + ACTIONS(9448), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -172237,19 +171861,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [152999] = 5, + [153004] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9803), 1, + ACTIONS(9663), 1, anon_sym_POUND_, - ACTIONS(9850), 2, + ACTIONS(9660), 2, sym__ws, sym_comment, - STATE(2068), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9806), 25, + ACTIONS(9666), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -172275,19 +171899,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [153042] = 5, + [153047] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9856), 1, + ACTIONS(9671), 1, anon_sym_POUND_, - ACTIONS(9853), 2, + ACTIONS(9714), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2430), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9859), 25, + ACTIONS(9674), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -172313,19 +171937,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [153085] = 5, + [153090] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9845), 1, + ACTIONS(9108), 1, anon_sym_POUND_, - ACTIONS(9861), 2, + ACTIONS(9717), 2, sym__ws, sym_comment, - STATE(2234), 3, + STATE(2180), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9848), 25, + ACTIONS(9111), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -172351,19 +171975,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [153128] = 5, + [153133] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9501), 1, + ACTIONS(9094), 1, anon_sym_POUND_, - ACTIONS(9498), 2, + ACTIONS(9091), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9504), 25, + ACTIONS(9097), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -172389,19 +172013,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [153171] = 5, + [153176] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9867), 1, + ACTIONS(9663), 1, anon_sym_POUND_, - ACTIONS(9864), 2, + ACTIONS(9660), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9870), 25, + ACTIONS(9666), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -172427,19 +172051,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [153214] = 5, + [153219] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9875), 1, + ACTIONS(9671), 1, anon_sym_POUND_, - ACTIONS(9872), 2, + ACTIONS(9720), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2433), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9878), 25, + ACTIONS(9674), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -172465,19 +172089,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [153257] = 5, + [153262] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9867), 1, + ACTIONS(9726), 1, anon_sym_POUND_, - ACTIONS(9880), 2, + ACTIONS(9723), 2, sym__ws, sym_comment, - STATE(2239), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9870), 25, + ACTIONS(9729), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -172503,19 +172127,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [153300] = 5, + [153305] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9886), 1, + ACTIONS(9726), 1, anon_sym_POUND_, - ACTIONS(9883), 2, + ACTIONS(9723), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9889), 25, + ACTIONS(9729), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -172541,19 +172165,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [153343] = 5, + [153348] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9894), 1, + ACTIONS(9734), 1, anon_sym_POUND_, - ACTIONS(9891), 2, + ACTIONS(9731), 2, sym__ws, sym_comment, - STATE(2241), 3, + STATE(2434), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9897), 25, + ACTIONS(9737), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -172579,19 +172203,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [153386] = 5, + [153391] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9501), 1, + ACTIONS(9742), 1, anon_sym_POUND_, - ACTIONS(9498), 2, + ACTIONS(9739), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9504), 25, + ACTIONS(9745), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -172617,19 +172241,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [153429] = 5, + [153434] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9894), 1, + ACTIONS(9750), 1, anon_sym_POUND_, - ACTIONS(9899), 2, + ACTIONS(9747), 2, sym__ws, sym_comment, - STATE(2243), 3, + STATE(2435), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9897), 25, + ACTIONS(9753), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -172655,19 +172279,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [153472] = 5, + [153477] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9886), 1, + ACTIONS(9750), 1, anon_sym_POUND_, - ACTIONS(9883), 2, + ACTIONS(9755), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2436), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9889), 25, + ACTIONS(9753), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -172693,19 +172317,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [153515] = 5, + [153520] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9894), 1, + ACTIONS(9742), 1, anon_sym_POUND_, - ACTIONS(9902), 2, + ACTIONS(9739), 2, sym__ws, sym_comment, - STATE(2246), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9897), 25, + ACTIONS(9745), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -172731,19 +172355,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [153558] = 5, + [153563] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9875), 1, + ACTIONS(9750), 1, anon_sym_POUND_, - ACTIONS(9872), 2, + ACTIONS(9758), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2438), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9878), 25, + ACTIONS(9753), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -172769,19 +172393,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [153601] = 5, + [153606] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9867), 1, + ACTIONS(9108), 1, anon_sym_POUND_, - ACTIONS(9905), 2, + ACTIONS(9761), 2, sym__ws, sym_comment, - STATE(2248), 3, + STATE(2183), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9870), 25, + ACTIONS(9111), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -172807,24 +172431,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [153644] = 5, + [153649] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9867), 1, - anon_sym_POUND_, - ACTIONS(9908), 2, + ACTIONS(7682), 31, sym__ws, sym_comment, - STATE(2249), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(9870), 25, + anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_cl, aux_sym_accumulation_verb_token1, anon_sym_for, @@ -172842,22 +172462,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, + anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [153687] = 5, + [153686] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9875), 1, + ACTIONS(9742), 1, anon_sym_POUND_, - ACTIONS(9872), 2, + ACTIONS(9739), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9878), 25, + ACTIONS(9745), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -172883,19 +172504,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [153730] = 5, + [153729] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9729), 1, + ACTIONS(9750), 1, anon_sym_POUND_, - ACTIONS(9911), 2, + ACTIONS(9764), 2, sym__ws, sym_comment, - STATE(2067), 3, + STATE(2441), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9732), 25, + ACTIONS(9753), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -172921,19 +172542,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [153773] = 5, + [153772] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9787), 1, + ACTIONS(9726), 1, anon_sym_POUND_, - ACTIONS(9784), 2, + ACTIONS(9723), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9790), 25, + ACTIONS(9729), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -172959,19 +172580,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [153816] = 5, + [153815] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9611), 1, + ACTIONS(9734), 1, anon_sym_POUND_, - ACTIONS(9914), 2, + ACTIONS(9767), 2, sym__ws, sym_comment, - STATE(2384), 3, + STATE(2442), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9614), 25, + ACTIONS(9737), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -172997,19 +172618,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [153859] = 5, + [153858] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9920), 1, + ACTIONS(9734), 1, anon_sym_POUND_, - ACTIONS(9917), 2, + ACTIONS(9770), 2, sym__ws, sym_comment, - STATE(2264), 3, + STATE(2443), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9923), 25, + ACTIONS(9737), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -173035,19 +172656,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [153902] = 5, + [153901] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9928), 1, + ACTIONS(9726), 1, anon_sym_POUND_, - ACTIONS(9925), 2, + ACTIONS(9723), 2, sym__ws, sym_comment, - STATE(2126), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9931), 25, + ACTIONS(9729), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -173073,19 +172694,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [153945] = 5, + [153944] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9760), 1, + ACTIONS(9776), 1, anon_sym_POUND_, - ACTIONS(9757), 2, + ACTIONS(9773), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2445), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9763), 25, + ACTIONS(9779), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -173111,19 +172732,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [153988] = 5, + [153987] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9936), 1, + ACTIONS(9784), 1, anon_sym_POUND_, - ACTIONS(9933), 2, + ACTIONS(9781), 2, sym__ws, sym_comment, - STATE(2268), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9939), 25, + ACTIONS(9787), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -173149,19 +172770,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [154031] = 5, + [154030] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9803), 1, + ACTIONS(9776), 1, anon_sym_POUND_, - ACTIONS(9941), 2, + ACTIONS(9789), 2, sym__ws, sym_comment, - STATE(2062), 3, + STATE(2449), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9806), 25, + ACTIONS(9779), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -173187,19 +172808,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [154074] = 5, + [154073] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9697), 1, + ACTIONS(9776), 1, anon_sym_POUND_, - ACTIONS(9694), 2, + ACTIONS(9792), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2451), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9700), 25, + ACTIONS(9779), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -173225,19 +172846,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [154117] = 5, + [154116] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9713), 1, + ACTIONS(9784), 1, anon_sym_POUND_, - ACTIONS(9710), 2, + ACTIONS(9781), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9716), 25, + ACTIONS(9787), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -173263,19 +172884,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [154160] = 5, + [154159] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9585), 1, + ACTIONS(9798), 1, anon_sym_POUND_, - ACTIONS(9944), 2, + ACTIONS(9795), 2, sym__ws, sym_comment, - STATE(2383), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9588), 25, + ACTIONS(9801), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -173301,19 +172922,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [154203] = 5, + [154202] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9713), 1, + ACTIONS(9806), 1, anon_sym_POUND_, - ACTIONS(9710), 2, + ACTIONS(9803), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9716), 25, + ACTIONS(9809), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -173339,19 +172960,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [154246] = 5, + [154245] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9920), 1, + ACTIONS(9806), 1, anon_sym_POUND_, - ACTIONS(9947), 2, + ACTIONS(9803), 2, sym__ws, sym_comment, - STATE(2279), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9923), 25, + ACTIONS(9809), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -173377,19 +172998,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [154289] = 5, + [154288] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9740), 1, + ACTIONS(9806), 1, anon_sym_POUND_, - ACTIONS(9950), 2, + ACTIONS(9803), 2, sym__ws, sym_comment, - STATE(2061), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9743), 25, + ACTIONS(9809), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -173415,19 +173036,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [154332] = 5, + [154331] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9713), 1, + ACTIONS(9814), 1, anon_sym_POUND_, - ACTIONS(9710), 2, + ACTIONS(9811), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2453), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9716), 25, + ACTIONS(9817), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -173453,19 +173074,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [154375] = 5, + [154374] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9936), 1, + ACTIONS(9576), 1, anon_sym_POUND_, - ACTIONS(9953), 2, + ACTIONS(9573), 2, sym__ws, sym_comment, - STATE(2283), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9939), 25, + ACTIONS(9579), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -173491,19 +173112,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [154418] = 5, + [154417] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9740), 1, + ACTIONS(9576), 1, anon_sym_POUND_, - ACTIONS(9956), 2, + ACTIONS(9573), 2, sym__ws, sym_comment, - STATE(2060), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9743), 25, + ACTIONS(9579), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -173529,19 +173150,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [154461] = 5, + [154460] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9771), 1, + ACTIONS(9576), 1, anon_sym_POUND_, - ACTIONS(9959), 2, + ACTIONS(9573), 2, sym__ws, sym_comment, - STATE(2289), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9774), 25, + ACTIONS(9579), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -173567,19 +173188,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [154504] = 5, + [154503] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9740), 1, + ACTIONS(9584), 1, anon_sym_POUND_, - ACTIONS(9962), 2, + ACTIONS(9819), 2, sym__ws, sym_comment, - STATE(2058), 3, + STATE(2454), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9743), 25, + ACTIONS(9587), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -173605,19 +173226,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [154547] = 5, + [154546] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9968), 1, + ACTIONS(9592), 1, anon_sym_POUND_, - ACTIONS(9965), 2, + ACTIONS(9589), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9971), 25, + ACTIONS(9595), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -173643,19 +173264,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [154590] = 5, + [154589] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9795), 1, + ACTIONS(9600), 1, anon_sym_POUND_, - ACTIONS(9973), 2, + ACTIONS(9597), 2, sym__ws, sym_comment, - STATE(2293), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9798), 25, + ACTIONS(9603), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -173681,19 +173302,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [154633] = 5, + [154632] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9713), 1, + ACTIONS(9600), 1, anon_sym_POUND_, - ACTIONS(9710), 2, + ACTIONS(9597), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9716), 25, + ACTIONS(9603), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -173719,19 +173340,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [154676] = 5, + [154675] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9525), 1, + ACTIONS(9608), 1, anon_sym_POUND_, - ACTIONS(9976), 2, + ACTIONS(9822), 2, sym__ws, sym_comment, - STATE(2295), 3, + STATE(2455), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9528), 25, + ACTIONS(9611), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -173757,19 +173378,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [154719] = 5, + [154718] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9697), 1, + ACTIONS(9600), 1, anon_sym_POUND_, - ACTIONS(9694), 2, + ACTIONS(9597), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9700), 25, + ACTIONS(9603), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -173795,19 +173416,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [154762] = 5, + [154761] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9697), 1, + ACTIONS(9608), 1, anon_sym_POUND_, - ACTIONS(9694), 2, + ACTIONS(9825), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2456), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9700), 25, + ACTIONS(9611), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -173833,19 +173454,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [154805] = 5, + [154804] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9817), 1, + ACTIONS(9608), 1, anon_sym_POUND_, - ACTIONS(9814), 2, + ACTIONS(9828), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2457), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9820), 25, + ACTIONS(9611), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -173871,19 +173492,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [154848] = 5, + [154847] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9525), 1, + ACTIONS(9600), 1, anon_sym_POUND_, - ACTIONS(9979), 2, + ACTIONS(9597), 2, sym__ws, sym_comment, - STATE(2299), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9528), 25, + ACTIONS(9603), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -173909,19 +173530,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [154891] = 5, + [154890] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9779), 1, + ACTIONS(9834), 1, anon_sym_POUND_, - ACTIONS(9982), 2, + ACTIONS(9831), 2, sym__ws, sym_comment, - STATE(2056), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9782), 25, + ACTIONS(9837), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -173947,19 +173568,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [154934] = 5, + [154933] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9795), 1, + ACTIONS(9842), 1, anon_sym_POUND_, - ACTIONS(9985), 2, + ACTIONS(9839), 2, sym__ws, sym_comment, - STATE(2301), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9798), 25, + ACTIONS(9845), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -173985,19 +173606,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [154977] = 5, + [154976] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9834), 1, + ACTIONS(9842), 1, anon_sym_POUND_, - ACTIONS(9831), 2, + ACTIONS(9839), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9837), 25, + ACTIONS(9845), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -174023,19 +173644,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [155020] = 5, + [155019] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9795), 1, + ACTIONS(9842), 1, anon_sym_POUND_, - ACTIONS(9988), 2, + ACTIONS(9839), 2, sym__ws, sym_comment, - STATE(2304), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9798), 25, + ACTIONS(9845), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -174061,19 +173682,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [155063] = 5, + [155062] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9552), 1, + ACTIONS(9850), 1, anon_sym_POUND_, - ACTIONS(9549), 2, + ACTIONS(9847), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2459), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9555), 25, + ACTIONS(9853), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -174099,19 +173720,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [155106] = 5, + [155105] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9787), 1, + ACTIONS(9858), 1, anon_sym_POUND_, - ACTIONS(9784), 2, + ACTIONS(9855), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9790), 25, + ACTIONS(9861), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -174137,19 +173758,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [155149] = 5, + [155148] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9552), 1, + ACTIONS(9858), 1, anon_sym_POUND_, - ACTIONS(9549), 2, + ACTIONS(9855), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9555), 25, + ACTIONS(9861), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -174175,19 +173796,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [155192] = 5, + [155191] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9803), 1, + ACTIONS(9858), 1, anon_sym_POUND_, - ACTIONS(9991), 2, + ACTIONS(9855), 2, sym__ws, sym_comment, - STATE(2055), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9806), 25, + ACTIONS(9861), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -174213,19 +173834,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [155235] = 5, + [155234] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9142), 1, + ACTIONS(9866), 1, anon_sym_POUND_, - ACTIONS(9139), 2, + ACTIONS(9863), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2460), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9145), 25, + ACTIONS(9869), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -174251,19 +173872,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [155278] = 5, + [155277] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9295), 1, + ACTIONS(9874), 1, anon_sym_POUND_, - ACTIONS(9292), 2, + ACTIONS(9871), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9298), 25, + ACTIONS(9877), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -174289,19 +173910,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [155321] = 5, + [155320] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9803), 1, + ACTIONS(9882), 1, anon_sym_POUND_, - ACTIONS(9994), 2, + ACTIONS(9879), 2, sym__ws, sym_comment, - STATE(2054), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9806), 25, + ACTIONS(9885), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -174327,19 +173948,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [155364] = 5, + [155363] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9678), 1, + ACTIONS(9882), 1, anon_sym_POUND_, - ACTIONS(9997), 2, + ACTIONS(9879), 2, sym__ws, sym_comment, - STATE(2129), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9681), 25, + ACTIONS(9885), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -174365,19 +173986,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [155407] = 5, + [155406] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9928), 1, + ACTIONS(9890), 1, anon_sym_POUND_, - ACTIONS(10000), 2, + ACTIONS(9887), 2, sym__ws, sym_comment, - STATE(2421), 3, + STATE(2461), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9931), 25, + ACTIONS(9893), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -174403,19 +174024,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [155450] = 5, + [155449] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8758), 1, + ACTIONS(9882), 1, anon_sym_POUND_, - ACTIONS(10003), 2, + ACTIONS(9879), 2, sym__ws, sym_comment, - STATE(2376), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8761), 25, + ACTIONS(9885), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -174441,19 +174062,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [155493] = 5, + [155492] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9928), 1, + ACTIONS(9890), 1, anon_sym_POUND_, - ACTIONS(10006), 2, + ACTIONS(9895), 2, sym__ws, sym_comment, - STATE(2420), 3, + STATE(2462), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9931), 25, + ACTIONS(9893), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -174479,19 +174100,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [155536] = 5, + [155535] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10012), 1, + ACTIONS(9890), 1, anon_sym_POUND_, - ACTIONS(10009), 2, + ACTIONS(9898), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2463), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(10015), 25, + ACTIONS(9893), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -174517,19 +174138,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [155579] = 5, + [155578] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9787), 1, + ACTIONS(9882), 1, anon_sym_POUND_, - ACTIONS(9784), 2, + ACTIONS(9879), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9790), 25, + ACTIONS(9885), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -174555,19 +174176,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [155622] = 5, + [155621] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9803), 1, + ACTIONS(9858), 1, anon_sym_POUND_, - ACTIONS(10017), 2, + ACTIONS(9855), 2, sym__ws, sym_comment, - STATE(2052), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9806), 25, + ACTIONS(9861), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -174593,19 +174214,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [155665] = 5, + [155664] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9018), 1, + ACTIONS(9858), 1, anon_sym_POUND_, - ACTIONS(9015), 2, + ACTIONS(9855), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9021), 25, + ACTIONS(9861), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -174631,19 +174252,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [155708] = 5, + [155707] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9018), 1, + ACTIONS(9858), 1, anon_sym_POUND_, - ACTIONS(9015), 2, + ACTIONS(9855), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9021), 25, + ACTIONS(9861), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -174669,19 +174290,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [155751] = 5, + [155750] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9787), 1, + ACTIONS(9866), 1, anon_sym_POUND_, - ACTIONS(9784), 2, + ACTIONS(9901), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2465), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9790), 25, + ACTIONS(9869), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -174707,19 +174328,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [155794] = 5, + [155793] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9803), 1, + ACTIONS(9874), 1, anon_sym_POUND_, - ACTIONS(10020), 2, + ACTIONS(9871), 2, sym__ws, sym_comment, - STATE(2197), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9806), 25, + ACTIONS(9877), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -174745,19 +174366,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [155837] = 5, + [155836] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8961), 1, + ACTIONS(9882), 1, anon_sym_POUND_, - ACTIONS(8958), 2, + ACTIONS(9879), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8964), 25, + ACTIONS(9885), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -174783,19 +174404,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [155880] = 5, + [155879] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9352), 1, + ACTIONS(9882), 1, anon_sym_POUND_, - ACTIONS(10023), 2, + ACTIONS(9879), 2, sym__ws, sym_comment, - STATE(2288), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9355), 25, + ACTIONS(9885), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -174821,19 +174442,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [155923] = 5, + [155922] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9142), 1, + ACTIONS(9890), 1, anon_sym_POUND_, - ACTIONS(9139), 2, + ACTIONS(9904), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2466), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9145), 25, + ACTIONS(9893), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -174859,19 +174480,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [155966] = 5, + [155965] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9295), 1, + ACTIONS(9882), 1, anon_sym_POUND_, - ACTIONS(9292), 2, + ACTIONS(9879), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9298), 25, + ACTIONS(9885), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -174897,19 +174518,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [156009] = 5, + [156008] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8826), 1, + ACTIONS(9890), 1, anon_sym_POUND_, - ACTIONS(8823), 2, + ACTIONS(9907), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2467), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8829), 25, + ACTIONS(9893), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -174935,19 +174556,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [156052] = 5, + [156051] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10029), 1, + ACTIONS(9890), 1, anon_sym_POUND_, - ACTIONS(10026), 2, + ACTIONS(9910), 2, sym__ws, sym_comment, - STATE(2522), 3, + STATE(2468), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(10032), 25, + ACTIONS(9893), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -174973,19 +174594,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [156095] = 5, + [156094] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10037), 1, + ACTIONS(9882), 1, anon_sym_POUND_, - ACTIONS(10034), 2, + ACTIONS(9879), 2, sym__ws, sym_comment, - STATE(2535), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(10040), 25, + ACTIONS(9885), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -175011,19 +174632,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [156138] = 5, + [156137] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9287), 1, + ACTIONS(9916), 1, anon_sym_POUND_, - ACTIONS(9284), 2, + ACTIONS(9913), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9290), 25, + ACTIONS(9919), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -175049,19 +174670,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [156181] = 5, + [156180] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8961), 1, + ACTIONS(9924), 1, anon_sym_POUND_, - ACTIONS(8958), 2, + ACTIONS(9921), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8964), 25, + ACTIONS(9927), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -175087,19 +174708,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [156224] = 5, + [156223] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8818), 1, + ACTIONS(9924), 1, anon_sym_POUND_, - ACTIONS(8815), 2, + ACTIONS(9921), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8821), 25, + ACTIONS(9927), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -175125,19 +174746,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [156267] = 5, + [156266] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9287), 1, + ACTIONS(9932), 1, anon_sym_POUND_, - ACTIONS(9284), 2, + ACTIONS(9929), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2470), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9290), 25, + ACTIONS(9935), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -175163,19 +174784,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [156310] = 5, + [156309] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8818), 1, + ACTIONS(9924), 1, anon_sym_POUND_, - ACTIONS(8815), 2, + ACTIONS(9921), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8821), 25, + ACTIONS(9927), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -175201,19 +174822,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [156353] = 5, + [156352] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8758), 1, + ACTIONS(9932), 1, anon_sym_POUND_, - ACTIONS(10042), 2, + ACTIONS(9937), 2, sym__ws, sym_comment, - STATE(2344), 3, + STATE(2471), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8761), 25, + ACTIONS(9935), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -175239,19 +174860,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [156396] = 5, + [156395] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10048), 1, + ACTIONS(9932), 1, anon_sym_POUND_, - ACTIONS(10045), 2, + ACTIONS(9940), 2, sym__ws, sym_comment, - STATE(2394), 3, + STATE(2472), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(10051), 25, + ACTIONS(9935), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -175277,19 +174898,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [156439] = 5, + [156438] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8818), 1, + ACTIONS(9924), 1, anon_sym_POUND_, - ACTIONS(8815), 2, + ACTIONS(9921), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8821), 25, + ACTIONS(9927), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -175315,19 +174936,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [156482] = 5, + [156481] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9552), 1, + ACTIONS(9916), 1, anon_sym_POUND_, - ACTIONS(9549), 2, + ACTIONS(9913), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9555), 25, + ACTIONS(9919), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -175353,17 +174974,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [156525] = 3, + [156524] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7742), 1, - anon_sym_COLON, - ACTIONS(7740), 30, + ACTIONS(9916), 1, + anon_sym_POUND_, + ACTIONS(9913), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, - anon_sym_COLON_COLON, + STATE(2538), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9919), 25, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -175385,23 +175009,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, - anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [156564] = 5, + [156567] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8687), 1, + ACTIONS(9946), 1, anon_sym_POUND_, - ACTIONS(10053), 2, + ACTIONS(9943), 2, sym__ws, sym_comment, - STATE(2164), 3, + STATE(2474), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8690), 25, + ACTIONS(9949), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -175427,19 +175050,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [156607] = 5, + [156610] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8799), 1, + ACTIONS(9954), 1, anon_sym_POUND_, - ACTIONS(10056), 2, + ACTIONS(9951), 2, sym__ws, sym_comment, - STATE(2079), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8802), 25, + ACTIONS(9957), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -175465,19 +175088,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [156650] = 5, + [156653] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8791), 1, + ACTIONS(9962), 1, anon_sym_POUND_, - ACTIONS(8788), 2, + ACTIONS(9959), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2475), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8794), 25, + ACTIONS(9965), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -175503,19 +175126,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [156693] = 5, + [156696] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9585), 1, + ACTIONS(9962), 1, anon_sym_POUND_, - ACTIONS(10059), 2, + ACTIONS(9967), 2, sym__ws, sym_comment, - STATE(2341), 3, + STATE(2476), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9588), 25, + ACTIONS(9965), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -175541,19 +175164,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [156736] = 5, + [156739] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10065), 1, + ACTIONS(9973), 1, anon_sym_POUND_, - ACTIONS(10062), 2, + ACTIONS(9970), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2185), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(10068), 25, + ACTIONS(9976), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -175579,19 +175202,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [156779] = 5, + [156782] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9585), 1, + ACTIONS(9954), 1, anon_sym_POUND_, - ACTIONS(10070), 2, + ACTIONS(9951), 2, sym__ws, sym_comment, - STATE(2340), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9588), 25, + ACTIONS(9957), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -175617,19 +175240,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [156822] = 5, + [156825] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9552), 1, + ACTIONS(9962), 1, anon_sym_POUND_, - ACTIONS(9549), 2, + ACTIONS(9978), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2478), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9555), 25, + ACTIONS(9965), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -175655,19 +175278,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [156865] = 5, + [156868] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10065), 1, + ACTIONS(9954), 1, anon_sym_POUND_, - ACTIONS(10062), 2, + ACTIONS(9951), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(10068), 25, + ACTIONS(9957), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -175693,19 +175316,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [156908] = 5, + [156911] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10065), 1, + ACTIONS(9962), 1, anon_sym_POUND_, - ACTIONS(10062), 2, + ACTIONS(9981), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2481), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(10068), 25, + ACTIONS(9965), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -175731,19 +175354,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [156951] = 5, + [156954] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9611), 1, + ACTIONS(9987), 1, anon_sym_POUND_, - ACTIONS(10073), 2, + ACTIONS(9984), 2, sym__ws, sym_comment, - STATE(2338), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9614), 25, + ACTIONS(9990), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -175769,19 +175392,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [156994] = 5, + [156997] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10079), 1, + ACTIONS(9834), 1, anon_sym_POUND_, - ACTIONS(10076), 2, + ACTIONS(9831), 2, sym__ws, sym_comment, - STATE(2108), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(10082), 25, + ACTIONS(9837), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -175807,19 +175430,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [157037] = 5, + [157040] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9689), 1, + ACTIONS(9842), 1, anon_sym_POUND_, - ACTIONS(9686), 2, + ACTIONS(9839), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9692), 25, + ACTIONS(9845), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -175845,19 +175468,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [157080] = 5, + [157083] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10065), 1, + ACTIONS(9842), 1, anon_sym_POUND_, - ACTIONS(10062), 2, + ACTIONS(9839), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(10068), 25, + ACTIONS(9845), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -175883,19 +175506,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [157123] = 5, + [157126] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9760), 1, + ACTIONS(9842), 1, anon_sym_POUND_, - ACTIONS(9757), 2, + ACTIONS(9839), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9763), 25, + ACTIONS(9845), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -175921,19 +175544,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [157166] = 5, + [157169] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10065), 1, + ACTIONS(9850), 1, anon_sym_POUND_, - ACTIONS(10062), 2, + ACTIONS(9992), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2482), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(10068), 25, + ACTIONS(9853), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -175959,19 +175582,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [157209] = 5, + [157212] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10065), 1, + ACTIONS(9998), 1, anon_sym_POUND_, - ACTIONS(10062), 2, + ACTIONS(9995), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(10068), 25, + ACTIONS(10001), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -175997,19 +175620,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [157252] = 5, + [157255] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9611), 1, + ACTIONS(10006), 1, anon_sym_POUND_, - ACTIONS(10084), 2, + ACTIONS(10003), 2, sym__ws, sym_comment, - STATE(2329), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9614), 25, + ACTIONS(10009), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -176035,19 +175658,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [157295] = 5, + [157298] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9760), 1, + ACTIONS(10014), 1, anon_sym_POUND_, - ACTIONS(9757), 2, + ACTIONS(10011), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9763), 25, + ACTIONS(10017), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -176073,19 +175696,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [157338] = 5, + [157341] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9611), 1, + ACTIONS(10014), 1, anon_sym_POUND_, - ACTIONS(10087), 2, + ACTIONS(10011), 2, sym__ws, sym_comment, - STATE(2325), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9614), 25, + ACTIONS(10017), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -176111,19 +175734,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [157381] = 5, + [157384] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9611), 1, + ACTIONS(10014), 1, anon_sym_POUND_, - ACTIONS(10090), 2, + ACTIONS(10011), 2, sym__ws, sym_comment, - STATE(2321), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9614), 25, + ACTIONS(10017), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -176149,19 +175772,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [157424] = 5, + [157427] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10079), 1, + ACTIONS(10022), 1, anon_sym_POUND_, - ACTIONS(10093), 2, + ACTIONS(10019), 2, sym__ws, sym_comment, - STATE(2109), 3, + STATE(2483), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(10082), 25, + ACTIONS(10025), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -176187,19 +175810,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [157467] = 5, + [157470] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9760), 1, + ACTIONS(10006), 1, anon_sym_POUND_, - ACTIONS(9757), 2, + ACTIONS(10003), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9763), 25, + ACTIONS(10009), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -176225,19 +175848,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [157510] = 5, + [157513] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10099), 1, + ACTIONS(10014), 1, anon_sym_POUND_, - ACTIONS(10096), 2, + ACTIONS(10011), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(10102), 25, + ACTIONS(10017), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -176263,19 +175886,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [157553] = 5, + [157556] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10107), 1, + ACTIONS(10014), 1, anon_sym_POUND_, - ACTIONS(10104), 2, + ACTIONS(10011), 2, sym__ws, sym_comment, - STATE(2367), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(10110), 25, + ACTIONS(10017), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -176301,19 +175924,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [157596] = 5, + [157599] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10099), 1, + ACTIONS(10014), 1, anon_sym_POUND_, - ACTIONS(10096), 2, + ACTIONS(10011), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(10102), 25, + ACTIONS(10017), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -176339,19 +175962,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [157639] = 5, + [157642] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10099), 1, + ACTIONS(10022), 1, anon_sym_POUND_, - ACTIONS(10096), 2, + ACTIONS(10027), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2484), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(10102), 25, + ACTIONS(10025), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -176377,19 +176000,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [157682] = 5, + [157685] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10115), 1, + ACTIONS(10033), 1, anon_sym_POUND_, - ACTIONS(10112), 2, + ACTIONS(10030), 2, sym__ws, sym_comment, - STATE(2116), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(10118), 25, + ACTIONS(10036), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -176415,19 +176038,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [157725] = 5, + [157728] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10123), 1, + ACTIONS(10033), 1, anon_sym_POUND_, - ACTIONS(10120), 2, + ACTIONS(10030), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(10126), 25, + ACTIONS(10036), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -176453,19 +176076,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [157768] = 5, + [157771] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8766), 1, + ACTIONS(10033), 1, anon_sym_POUND_, - ACTIONS(8763), 2, + ACTIONS(10030), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8769), 25, + ACTIONS(10036), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -176491,19 +176114,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [157811] = 5, + [157814] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9585), 1, + ACTIONS(10041), 1, anon_sym_POUND_, - ACTIONS(10128), 2, + ACTIONS(10038), 2, sym__ws, sym_comment, - STATE(2318), 3, + STATE(2485), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9588), 25, + ACTIONS(10044), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -176529,19 +176152,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [157854] = 5, + [157857] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10107), 1, + ACTIONS(10049), 1, anon_sym_POUND_, - ACTIONS(10131), 2, + ACTIONS(10046), 2, sym__ws, sym_comment, - STATE(2361), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(10110), 25, + ACTIONS(10052), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -176567,19 +176190,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [157897] = 5, + [157900] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9552), 1, + ACTIONS(10057), 1, anon_sym_POUND_, - ACTIONS(9549), 2, + ACTIONS(10054), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9555), 25, + ACTIONS(10060), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -176605,19 +176228,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [157940] = 5, + [157943] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10137), 1, + ACTIONS(10057), 1, anon_sym_POUND_, - ACTIONS(10134), 2, + ACTIONS(10054), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(10140), 25, + ACTIONS(10060), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -176643,19 +176266,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [157983] = 5, + [157986] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10107), 1, + ACTIONS(10065), 1, anon_sym_POUND_, - ACTIONS(10142), 2, + ACTIONS(10062), 2, sym__ws, sym_comment, - STATE(2336), 3, + STATE(2486), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(10110), 25, + ACTIONS(10068), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -176681,19 +176304,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [158026] = 5, + [158029] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9552), 1, + ACTIONS(10057), 1, anon_sym_POUND_, - ACTIONS(9549), 2, + ACTIONS(10054), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9555), 25, + ACTIONS(10060), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -176719,19 +176342,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [158069] = 5, + [158072] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9352), 1, + ACTIONS(10065), 1, anon_sym_POUND_, - ACTIONS(10145), 2, + ACTIONS(10070), 2, sym__ws, sym_comment, - STATE(2316), 3, + STATE(2487), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9355), 25, + ACTIONS(10068), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -176757,19 +176380,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [158112] = 5, + [158115] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9333), 1, + ACTIONS(10065), 1, anon_sym_POUND_, - ACTIONS(9330), 2, + ACTIONS(10073), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2488), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9336), 25, + ACTIONS(10068), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -176795,19 +176418,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [158155] = 5, + [158158] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9352), 1, + ACTIONS(10057), 1, anon_sym_POUND_, - ACTIONS(10148), 2, + ACTIONS(10054), 2, sym__ws, sym_comment, - STATE(2306), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9355), 25, + ACTIONS(10060), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -176833,19 +176456,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [158198] = 5, + [158201] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10137), 1, + ACTIONS(9998), 1, anon_sym_POUND_, - ACTIONS(10134), 2, + ACTIONS(9995), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(10140), 25, + ACTIONS(10001), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -176871,19 +176494,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [158241] = 5, + [158244] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10107), 1, + ACTIONS(10079), 1, anon_sym_POUND_, - ACTIONS(10151), 2, + ACTIONS(10076), 2, sym__ws, sym_comment, - STATE(2255), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(10110), 25, + ACTIONS(10082), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -176909,19 +176532,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [158284] = 5, + [158287] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9333), 1, + ACTIONS(10079), 1, anon_sym_POUND_, - ACTIONS(9330), 2, + ACTIONS(10076), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9336), 25, + ACTIONS(10082), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -176947,19 +176570,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [158327] = 5, + [158330] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9352), 1, + ACTIONS(10087), 1, anon_sym_POUND_, - ACTIONS(10154), 2, + ACTIONS(10084), 2, sym__ws, sym_comment, - STATE(2291), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9355), 25, + ACTIONS(10090), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -176985,19 +176608,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [158370] = 5, + [158373] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9167), 1, + ACTIONS(10095), 1, anon_sym_POUND_, - ACTIONS(9164), 2, + ACTIONS(10092), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9170), 25, + ACTIONS(10098), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -177023,19 +176646,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [158413] = 5, + [158416] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8766), 1, + ACTIONS(10095), 1, anon_sym_POUND_, - ACTIONS(8763), 2, + ACTIONS(10092), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8769), 25, + ACTIONS(10098), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -177061,19 +176684,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [158456] = 5, + [158459] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9333), 1, + ACTIONS(10095), 1, anon_sym_POUND_, - ACTIONS(9330), 2, + ACTIONS(10092), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9336), 25, + ACTIONS(10098), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -177099,19 +176722,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [158499] = 5, + [158502] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9309), 1, + ACTIONS(10103), 1, anon_sym_POUND_, - ACTIONS(9306), 2, + ACTIONS(10100), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2490), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9312), 25, + ACTIONS(10106), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -177137,19 +176760,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [158542] = 5, + [158545] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9309), 1, + ACTIONS(10111), 1, anon_sym_POUND_, - ACTIONS(9306), 2, + ACTIONS(10108), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9312), 25, + ACTIONS(10114), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -177175,24 +176798,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [158585] = 5, + [158588] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9239), 1, - anon_sym_POUND_, - ACTIONS(9236), 2, + ACTIONS(7710), 31, sym__ws, sym_comment, - STATE(2145), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(9242), 25, + anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_cl, aux_sym_accumulation_verb_token1, anon_sym_for, @@ -177210,22 +176829,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, + anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [158628] = 5, + [158625] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9271), 1, + ACTIONS(8868), 1, anon_sym_POUND_, - ACTIONS(10157), 2, + ACTIONS(8865), 2, sym__ws, sym_comment, - STATE(2273), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9274), 25, + ACTIONS(8871), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -177251,19 +176871,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [158671] = 5, + [158668] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9271), 1, + ACTIONS(8868), 1, anon_sym_POUND_, - ACTIONS(10160), 2, + ACTIONS(8865), 2, sym__ws, sym_comment, - STATE(2272), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9274), 25, + ACTIONS(8871), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -177289,19 +176909,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [158714] = 5, + [158711] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9239), 1, + ACTIONS(8876), 1, anon_sym_POUND_, - ACTIONS(9236), 2, + ACTIONS(10116), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2201), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9242), 25, + ACTIONS(8879), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -177327,19 +176947,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [158757] = 5, + [158754] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9271), 1, + ACTIONS(8884), 1, anon_sym_POUND_, - ACTIONS(10163), 2, + ACTIONS(8881), 2, sym__ws, sym_comment, - STATE(2266), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9274), 25, + ACTIONS(8887), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -177365,19 +176985,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [158800] = 5, + [158797] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9239), 1, + ACTIONS(8892), 1, anon_sym_POUND_, - ACTIONS(9236), 2, + ACTIONS(10119), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2202), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9242), 25, + ACTIONS(8895), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -177403,19 +177023,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [158843] = 5, + [158840] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9239), 1, + ACTIONS(8892), 1, anon_sym_POUND_, - ACTIONS(9236), 2, + ACTIONS(10122), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2203), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9242), 25, + ACTIONS(8895), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -177441,19 +177061,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [158886] = 5, + [158883] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9309), 1, + ACTIONS(8884), 1, anon_sym_POUND_, - ACTIONS(9306), 2, + ACTIONS(8881), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9312), 25, + ACTIONS(8887), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -177479,55 +177099,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [158929] = 4, + [158926] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10166), 1, - anon_sym_COLON, - ACTIONS(10168), 1, - anon_sym_COLON_COLON, - ACTIONS(7617), 29, - sym__ws, - sym_comment, + ACTIONS(8892), 1, anon_sym_POUND_, - aux_sym_num_lit_token1, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_cl, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_do, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [158970] = 4, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(10166), 1, - anon_sym_COLON, - ACTIONS(10168), 1, - anon_sym_COLON_COLON, - ACTIONS(7716), 29, + ACTIONS(10125), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2205), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8895), 25, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -177549,24 +177134,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, - anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [159011] = 2, + [158969] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7700), 31, + ACTIONS(10131), 1, + anon_sym_POUND_, + ACTIONS(10128), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2538), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(10134), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_cl, aux_sym_accumulation_verb_token1, anon_sym_for, @@ -177584,23 +177172,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, - anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [159048] = 5, + [159012] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9325), 1, + ACTIONS(8884), 1, anon_sym_POUND_, - ACTIONS(10170), 2, + ACTIONS(8881), 2, sym__ws, sym_comment, - STATE(2287), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9328), 25, + ACTIONS(8887), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -177626,57 +177213,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [159091] = 4, + [159055] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10166), 1, - anon_sym_COLON, - ACTIONS(10168), 1, - anon_sym_COLON_COLON, - ACTIONS(7453), 29, - sym__ws, - sym_comment, + ACTIONS(8892), 1, anon_sym_POUND_, - aux_sym_num_lit_token1, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_cl, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_do, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [159132] = 2, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7646), 31, + ACTIONS(10136), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2208), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8895), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_cl, aux_sym_accumulation_verb_token1, anon_sym_for, @@ -177694,23 +177248,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, - anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [159169] = 5, + [159098] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10176), 1, + ACTIONS(8868), 1, anon_sym_POUND_, - ACTIONS(10173), 2, + ACTIONS(8865), 2, sym__ws, sym_comment, - STATE(2404), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(10179), 25, + ACTIONS(8871), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -177736,19 +177289,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [159212] = 5, + [159141] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10184), 1, + ACTIONS(8876), 1, anon_sym_POUND_, - ACTIONS(10181), 2, + ACTIONS(10139), 2, sym__ws, sym_comment, - STATE(2400), 3, + STATE(2209), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(10187), 25, + ACTIONS(8879), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -177774,20 +177327,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [159255] = 2, + [159184] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7593), 31, + ACTIONS(8876), 1, + anon_sym_POUND_, + ACTIONS(10142), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2210), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8879), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_cl, aux_sym_accumulation_verb_token1, anon_sym_for, @@ -177805,24 +177362,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, - anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [159292] = 2, + [159227] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7581), 31, + ACTIONS(9973), 1, + anon_sym_POUND_, + ACTIONS(10145), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2188), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9976), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_cl, aux_sym_accumulation_verb_token1, anon_sym_for, @@ -177840,23 +177400,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, - anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [159329] = 5, + [159270] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9192), 1, + ACTIONS(8868), 1, anon_sym_POUND_, - ACTIONS(9189), 2, + ACTIONS(8865), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9195), 25, + ACTIONS(8871), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -177882,19 +177441,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [159372] = 5, + [159313] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9175), 1, + ACTIONS(8945), 1, anon_sym_POUND_, - ACTIONS(10189), 2, + ACTIONS(10148), 2, sym__ws, sym_comment, - STATE(2260), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9178), 25, + ACTIONS(8948), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -177920,19 +177479,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [159415] = 5, + [159356] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9175), 1, + ACTIONS(9000), 1, anon_sym_POUND_, - ACTIONS(10192), 2, + ACTIONS(8997), 2, sym__ws, sym_comment, - STATE(2251), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9178), 25, + ACTIONS(9003), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -177958,19 +177517,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [159458] = 5, + [159399] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9167), 1, + ACTIONS(8945), 1, anon_sym_POUND_, - ACTIONS(9164), 2, + ACTIONS(10151), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2216), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9170), 25, + ACTIONS(8948), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -177996,19 +177555,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [159501] = 5, + [159442] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10184), 1, + ACTIONS(8909), 1, anon_sym_POUND_, - ACTIONS(10195), 2, + ACTIONS(10154), 2, sym__ws, sym_comment, - STATE(2350), 3, + STATE(2189), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(10187), 25, + ACTIONS(8912), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -178034,20 +177593,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [159544] = 2, + [159485] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7533), 31, + ACTIONS(8945), 1, + anon_sym_POUND_, + ACTIONS(10157), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2219), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8948), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_cl, aux_sym_accumulation_verb_token1, anon_sym_for, @@ -178065,23 +177628,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, - anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [159581] = 5, + [159528] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9175), 1, + ACTIONS(9335), 1, anon_sym_POUND_, - ACTIONS(10198), 2, + ACTIONS(9332), 2, sym__ws, sym_comment, - STATE(2213), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9178), 25, + ACTIONS(9338), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -178107,20 +177669,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [159624] = 2, + [159571] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7497), 31, + ACTIONS(9000), 1, + anon_sym_POUND_, + ACTIONS(8997), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2538), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9003), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_cl, aux_sym_accumulation_verb_token1, anon_sym_for, @@ -178138,24 +177704,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, - anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [159661] = 2, + [159614] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7485), 31, + ACTIONS(8718), 1, + anon_sym_POUND_, + ACTIONS(8715), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2538), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8721), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_cl, aux_sym_accumulation_verb_token1, anon_sym_for, @@ -178173,24 +177742,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, - anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [159698] = 2, + [159657] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7461), 31, + ACTIONS(8710), 1, + anon_sym_POUND_, + ACTIONS(10160), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2221), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8713), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_cl, aux_sym_accumulation_verb_token1, anon_sym_for, @@ -178208,24 +177780,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, - anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [159735] = 2, + [159700] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7457), 31, + ACTIONS(8710), 1, + anon_sym_POUND_, + ACTIONS(10163), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2222), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8713), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_cl, aux_sym_accumulation_verb_token1, anon_sym_for, @@ -178243,23 +177818,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, - anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [159772] = 5, + [159743] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10137), 1, + ACTIONS(10169), 1, anon_sym_POUND_, - ACTIONS(10134), 2, + ACTIONS(10166), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2227), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(10140), 25, + ACTIONS(10172), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -178285,19 +177859,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [159815] = 5, + [159786] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9200), 1, + ACTIONS(8718), 1, anon_sym_POUND_, - ACTIONS(10201), 2, + ACTIONS(8715), 2, sym__ws, sym_comment, - STATE(2210), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9203), 25, + ACTIONS(8721), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -178323,19 +177897,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [159858] = 5, + [159829] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9200), 1, + ACTIONS(9386), 1, anon_sym_POUND_, - ACTIONS(10204), 2, + ACTIONS(10174), 2, sym__ws, sym_comment, - STATE(2209), 3, + STATE(2065), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9203), 25, + ACTIONS(9389), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -178361,19 +177935,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [159901] = 5, + [159872] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10210), 1, + ACTIONS(8695), 1, anon_sym_POUND_, - ACTIONS(10207), 2, + ACTIONS(10177), 2, sym__ws, sym_comment, - STATE(2374), 3, + STATE(2224), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(10213), 25, + ACTIONS(8698), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -178399,19 +177973,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [159944] = 5, + [159915] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9192), 1, + ACTIONS(8909), 1, anon_sym_POUND_, - ACTIONS(9189), 2, + ACTIONS(10180), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2192), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9195), 25, + ACTIONS(8912), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -178437,19 +178011,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [159987] = 5, + [159958] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10218), 1, + ACTIONS(8679), 1, anon_sym_POUND_, - ACTIONS(10215), 2, + ACTIONS(10183), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2194), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(10221), 25, + ACTIONS(8682), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -178475,20 +178049,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [160030] = 2, + [160001] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7801), 31, + ACTIONS(8687), 1, + anon_sym_POUND_, + ACTIONS(8684), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2538), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8690), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_cl, aux_sym_accumulation_verb_token1, anon_sym_for, @@ -178506,23 +178084,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, - anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [160067] = 5, + [160044] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10210), 1, + ACTIONS(8695), 1, anon_sym_POUND_, - ACTIONS(10223), 2, + ACTIONS(10186), 2, sym__ws, sym_comment, - STATE(2371), 3, + STATE(2228), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(10213), 25, + ACTIONS(8698), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -178548,19 +178125,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [160110] = 5, + [160087] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9211), 1, + ACTIONS(10192), 1, anon_sym_POUND_, - ACTIONS(10226), 2, + ACTIONS(10189), 2, sym__ws, sym_comment, - STATE(2208), 3, + STATE(2157), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9214), 25, + ACTIONS(10195), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -178586,19 +178163,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [160153] = 5, + [160130] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9219), 1, + ACTIONS(8786), 1, anon_sym_POUND_, - ACTIONS(9216), 2, + ACTIONS(8783), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9222), 25, + ACTIONS(8789), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -178624,19 +178201,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [160196] = 5, + [160173] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10176), 1, + ACTIONS(8695), 1, anon_sym_POUND_, - ACTIONS(10229), 2, + ACTIONS(10197), 2, sym__ws, sym_comment, - STATE(2354), 3, + STATE(2231), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(10179), 25, + ACTIONS(8698), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -178662,19 +178239,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [160239] = 5, + [160216] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9211), 1, + ACTIONS(10203), 1, anon_sym_POUND_, - ACTIONS(10232), 2, + ACTIONS(10200), 2, sym__ws, sym_comment, - STATE(2204), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9214), 25, + ACTIONS(10206), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -178700,20 +178277,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [160282] = 2, + [160259] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7850), 31, + ACTIONS(10192), 1, + anon_sym_POUND_, + ACTIONS(10208), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2196), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(10195), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_cl, aux_sym_accumulation_verb_token1, anon_sym_for, @@ -178731,23 +178312,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, - anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [160319] = 5, + [160302] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10238), 1, + ACTIONS(10214), 1, anon_sym_POUND_, - ACTIONS(10235), 2, + ACTIONS(10211), 2, sym__ws, sym_comment, - STATE(2359), 3, + STATE(2268), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(10241), 25, + ACTIONS(10217), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -178773,20 +178353,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [160362] = 2, + [160345] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7839), 31, + ACTIONS(10222), 1, + anon_sym_POUND_, + ACTIONS(10219), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2538), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(10225), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_cl, aux_sym_accumulation_verb_token1, anon_sym_for, @@ -178804,24 +178388,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, - anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [160399] = 2, + [160388] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7835), 31, + ACTIONS(8687), 1, + anon_sym_POUND_, + ACTIONS(8684), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2538), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8690), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_cl, aux_sym_accumulation_verb_token1, anon_sym_for, @@ -178839,23 +178426,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, - anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [160436] = 5, + [160431] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9219), 1, + ACTIONS(10214), 1, anon_sym_POUND_, - ACTIONS(9216), 2, + ACTIONS(10227), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2360), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9222), 25, + ACTIONS(10217), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -178881,19 +178467,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [160479] = 5, + [160474] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10246), 1, + ACTIONS(8710), 1, anon_sym_POUND_, - ACTIONS(10243), 2, + ACTIONS(10230), 2, sym__ws, sym_comment, - STATE(2369), 3, + STATE(2233), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(10249), 25, + ACTIONS(8713), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -178919,19 +178505,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [160522] = 5, + [160517] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10254), 1, + ACTIONS(10192), 1, anon_sym_POUND_, - ACTIONS(10251), 2, + ACTIONS(10233), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2364), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(10257), 25, + ACTIONS(10195), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -178957,19 +178543,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [160565] = 5, + [160560] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10246), 1, + ACTIONS(8718), 1, anon_sym_POUND_, - ACTIONS(10259), 2, + ACTIONS(8715), 2, sym__ws, sym_comment, - STATE(2365), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(10249), 25, + ACTIONS(8721), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -178995,20 +178581,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [160608] = 2, + [160603] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7676), 31, + ACTIONS(10239), 1, + anon_sym_POUND_, + ACTIONS(10236), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2538), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7407), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_cl, aux_sym_accumulation_verb_token1, anon_sym_for, @@ -179026,23 +178616,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, - anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [160645] = 5, + [160646] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9211), 1, + ACTIONS(10245), 1, anon_sym_POUND_, - ACTIONS(10262), 2, + ACTIONS(10242), 2, sym__ws, sym_comment, - STATE(2193), 3, + STATE(2500), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9214), 25, + ACTIONS(10248), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -179068,19 +178657,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [160688] = 5, + [160689] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9211), 1, + ACTIONS(8710), 1, anon_sym_POUND_, - ACTIONS(10265), 2, + ACTIONS(10250), 2, sym__ws, sym_comment, - STATE(2297), 3, + STATE(2236), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9214), 25, + ACTIONS(8713), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -179106,19 +178695,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [160731] = 5, + [160732] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9219), 1, + ACTIONS(10169), 1, anon_sym_POUND_, - ACTIONS(9216), 2, + ACTIONS(10253), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2513), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9222), 25, + ACTIONS(10172), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -179144,19 +178733,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [160774] = 5, + [160775] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9200), 1, + ACTIONS(8729), 1, anon_sym_POUND_, - ACTIONS(10268), 2, + ACTIONS(10256), 2, sym__ws, sym_comment, - STATE(2207), 3, + STATE(2238), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9203), 25, + ACTIONS(8732), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -179182,20 +178771,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [160817] = 2, + [160818] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7493), 31, + ACTIONS(8737), 1, + anon_sym_POUND_, + ACTIONS(8734), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2538), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8740), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_cl, aux_sym_accumulation_verb_token1, anon_sym_for, @@ -179213,23 +178806,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, - anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [160854] = 5, + [160861] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10210), 1, + ACTIONS(8679), 1, anon_sym_POUND_, - ACTIONS(10271), 2, + ACTIONS(10259), 2, sym__ws, sym_comment, - STATE(2363), 3, + STATE(2198), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(10213), 25, + ACTIONS(8682), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -179255,55 +178847,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [160897] = 2, + [160904] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7517), 31, - sym__ws, - sym_comment, + ACTIONS(8729), 1, anon_sym_POUND_, - aux_sym_num_lit_token1, - anon_sym_COLON, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_cl, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_do, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [160934] = 2, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7529), 31, + ACTIONS(10262), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2241), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8732), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_cl, aux_sym_accumulation_verb_token1, anon_sym_for, @@ -179321,24 +178882,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, - anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [160971] = 2, + [160947] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7529), 31, + ACTIONS(8909), 1, + anon_sym_POUND_, + ACTIONS(10265), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2215), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8912), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_cl, aux_sym_accumulation_verb_token1, anon_sym_for, @@ -179356,23 +178920,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, - anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [161008] = 5, + [160990] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9192), 1, + ACTIONS(8718), 1, anon_sym_POUND_, - ACTIONS(9189), 2, + ACTIONS(8715), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9195), 25, + ACTIONS(8721), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -179398,20 +178961,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [161051] = 2, + [161033] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7501), 31, + ACTIONS(8710), 1, + anon_sym_POUND_, + ACTIONS(10268), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2242), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8713), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_cl, aux_sym_accumulation_verb_token1, anon_sym_for, @@ -179429,23 +178996,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, - anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [161088] = 5, + [161076] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9192), 1, + ACTIONS(8710), 1, anon_sym_POUND_, - ACTIONS(9189), 2, + ACTIONS(10271), 2, sym__ws, sym_comment, - STATE(2145), 3, + STATE(2243), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9195), 25, + ACTIONS(8713), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -179471,20 +179037,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [161131] = 2, + [161119] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7561), 31, + ACTIONS(8718), 1, + anon_sym_POUND_, + ACTIONS(8715), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2538), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8721), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_cl, aux_sym_accumulation_verb_token1, anon_sym_for, @@ -179502,24 +179072,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, - anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [161168] = 2, + [161162] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7569), 31, + ACTIONS(9647), 1, + anon_sym_POUND_, + ACTIONS(9644), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2538), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9650), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_cl, aux_sym_accumulation_verb_token1, anon_sym_for, @@ -179537,14 +179110,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, - anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, [161205] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7553), 30, + ACTIONS(7807), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -179578,7 +179150,7 @@ static const uint16_t ts_small_parse_table[] = { [161241] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7748), 30, + ACTIONS(7847), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -179612,7 +179184,7 @@ static const uint16_t ts_small_parse_table[] = { [161277] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7692), 30, + ACTIONS(7843), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -179646,7 +179218,7 @@ static const uint16_t ts_small_parse_table[] = { [161313] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7680), 30, + ACTIONS(7847), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -179680,7 +179252,7 @@ static const uint16_t ts_small_parse_table[] = { [161349] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7670), 30, + ACTIONS(7855), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -179714,7 +179286,7 @@ static const uint16_t ts_small_parse_table[] = { [161385] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7638), 30, + ACTIONS(7863), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -179748,7 +179320,7 @@ static const uint16_t ts_small_parse_table[] = { [161421] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7626), 30, + ACTIONS(7628), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -179782,7 +179354,7 @@ static const uint16_t ts_small_parse_table[] = { [161457] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7609), 30, + ACTIONS(7628), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -179816,7 +179388,7 @@ static const uint16_t ts_small_parse_table[] = { [161493] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7692), 30, + ACTIONS(7714), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -179850,7 +179422,7 @@ static const uint16_t ts_small_parse_table[] = { [161529] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7597), 30, + ACTIONS(7670), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -179884,7 +179456,7 @@ static const uint16_t ts_small_parse_table[] = { [161565] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7597), 30, + ACTIONS(7628), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -179918,7 +179490,7 @@ static const uint16_t ts_small_parse_table[] = { [161601] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7589), 30, + ACTIONS(7628), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -179952,7 +179524,7 @@ static const uint16_t ts_small_parse_table[] = { [161637] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7589), 30, + ACTIONS(7714), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -179986,7 +179558,7 @@ static const uint16_t ts_small_parse_table[] = { [161673] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7585), 30, + ACTIONS(7670), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -180020,7 +179592,7 @@ static const uint16_t ts_small_parse_table[] = { [161709] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7577), 30, + ACTIONS(7554), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -180054,7 +179626,7 @@ static const uint16_t ts_small_parse_table[] = { [161745] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7573), 30, + ACTIONS(7473), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -180088,7 +179660,7 @@ static const uint16_t ts_small_parse_table[] = { [161781] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7696), 30, + ACTIONS(7487), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -180122,7 +179694,7 @@ static const uint16_t ts_small_parse_table[] = { [161817] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7696), 30, + ACTIONS(7491), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -180156,7 +179728,7 @@ static const uint16_t ts_small_parse_table[] = { [161853] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7680), 30, + ACTIONS(7554), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -180190,7 +179762,7 @@ static const uint16_t ts_small_parse_table[] = { [161889] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7557), 30, + ACTIONS(7502), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -180224,7 +179796,7 @@ static const uint16_t ts_small_parse_table[] = { [161925] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7630), 30, + ACTIONS(7538), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -180258,7 +179830,7 @@ static const uint16_t ts_small_parse_table[] = { [161961] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7696), 30, + ACTIONS(7542), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -180292,7 +179864,7 @@ static const uint16_t ts_small_parse_table[] = { [161997] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7557), 30, + ACTIONS(7546), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -180326,7 +179898,7 @@ static const uint16_t ts_small_parse_table[] = { [162033] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7613), 30, + ACTIONS(7465), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -180360,7 +179932,7 @@ static const uint16_t ts_small_parse_table[] = { [162069] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7549), 30, + ACTIONS(7576), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -180394,7 +179966,7 @@ static const uint16_t ts_small_parse_table[] = { [162105] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7537), 30, + ACTIONS(7592), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -180428,7 +180000,7 @@ static const uint16_t ts_small_parse_table[] = { [162141] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7696), 30, + ACTIONS(7561), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -180462,7 +180034,7 @@ static const uint16_t ts_small_parse_table[] = { [162177] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7720), 30, + ACTIONS(7565), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -180496,7 +180068,7 @@ static const uint16_t ts_small_parse_table[] = { [162213] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7778), 30, + ACTIONS(7632), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -180527,15 +180099,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [162249] = 3, + [162249] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10274), 1, - aux_sym_num_lit_token2, - ACTIONS(7443), 29, + ACTIONS(7569), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -180562,10 +180133,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [162287] = 2, + [162285] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7728), 30, + ACTIONS(7674), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -180596,10 +180167,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [162323] = 2, + [162321] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7732), 30, + ACTIONS(7694), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -180630,10 +180201,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [162359] = 2, + [162357] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7489), 30, + ACTIONS(7827), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -180664,10 +180235,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [162395] = 2, + [162393] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7601), 30, + ACTIONS(7596), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -180698,10 +180269,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [162431] = 2, + [162429] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7736), 30, + ACTIONS(7600), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -180732,10 +180303,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [162467] = 2, + [162465] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7489), 30, + ACTIONS(7604), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -180766,10 +180337,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [162503] = 2, + [162501] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7744), 30, + ACTIONS(7608), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -180800,10 +180371,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [162539] = 2, + [162537] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7766), 30, + ACTIONS(7851), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -180834,10 +180405,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [162575] = 2, + [162573] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7790), 30, + ACTIONS(7620), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -180868,10 +180439,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [162611] = 2, + [162609] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7813), 30, + ACTIONS(7624), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -180902,10 +180473,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [162647] = 2, + [162645] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7774), 30, + ACTIONS(7636), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -180936,10 +180507,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [162683] = 2, + [162681] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7774), 30, + ACTIONS(7647), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -180970,14 +180541,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [162719] = 2, + [162717] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7748), 30, + ACTIONS(10274), 1, + aux_sym_num_lit_token2, + ACTIONS(7443), 29, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -181007,7 +180579,7 @@ static const uint16_t ts_small_parse_table[] = { [162755] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7565), 30, + ACTIONS(7453), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -181041,7 +180613,7 @@ static const uint16_t ts_small_parse_table[] = { [162791] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7545), 30, + ACTIONS(7654), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -181075,7 +180647,7 @@ static const uint16_t ts_small_parse_table[] = { [162827] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7744), 30, + ACTIONS(7457), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -181109,7 +180681,7 @@ static const uint16_t ts_small_parse_table[] = { [162863] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7525), 30, + ACTIONS(7465), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -181143,7 +180715,7 @@ static const uint16_t ts_small_parse_table[] = { [162899] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7553), 30, + ACTIONS(7662), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -181177,7 +180749,7 @@ static const uint16_t ts_small_parse_table[] = { [162935] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7712), 30, + ACTIONS(7666), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -181211,7 +180783,7 @@ static const uint16_t ts_small_parse_table[] = { [162971] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7824), 30, + ACTIONS(7469), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -181245,7 +180817,7 @@ static const uint16_t ts_small_parse_table[] = { [163007] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7831), 30, + ACTIONS(7686), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -181279,7 +180851,7 @@ static const uint16_t ts_small_parse_table[] = { [163043] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7666), 30, + ACTIONS(7690), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -181313,7 +180885,7 @@ static const uint16_t ts_small_parse_table[] = { [163079] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7541), 30, + ACTIONS(7855), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -181347,7 +180919,7 @@ static const uint16_t ts_small_parse_table[] = { [163115] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7770), 30, + ACTIONS(7702), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -181381,7 +180953,7 @@ static const uint16_t ts_small_parse_table[] = { [163151] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7662), 30, + ACTIONS(7706), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -181415,7 +180987,7 @@ static const uint16_t ts_small_parse_table[] = { [163187] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7525), 30, + ACTIONS(7721), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -181449,7 +181021,7 @@ static const uint16_t ts_small_parse_table[] = { [163223] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7658), 30, + ACTIONS(7839), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -181483,7 +181055,7 @@ static const uint16_t ts_small_parse_table[] = { [163259] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7650), 30, + ACTIONS(7721), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -181517,7 +181089,7 @@ static const uint16_t ts_small_parse_table[] = { [163295] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7449), 30, + ACTIONS(7465), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -181551,7 +181123,7 @@ static const uint16_t ts_small_parse_table[] = { [163331] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7642), 30, + ACTIONS(7506), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -181585,7 +181157,7 @@ static const uint16_t ts_small_parse_table[] = { [163367] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7752), 30, + ACTIONS(7510), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -181619,7 +181191,7 @@ static const uint16_t ts_small_parse_table[] = { [163403] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7846), 30, + ACTIONS(7517), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -181653,7 +181225,7 @@ static const uint16_t ts_small_parse_table[] = { [163439] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7634), 30, + ACTIONS(7740), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -181687,7 +181259,7 @@ static const uint16_t ts_small_parse_table[] = { [163475] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7525), 30, + ACTIONS(7744), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -181721,7 +181293,7 @@ static const uint16_t ts_small_parse_table[] = { [163511] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7453), 30, + ACTIONS(7748), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -181789,7 +181361,7 @@ static const uint16_t ts_small_parse_table[] = { [163583] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7786), 30, + ACTIONS(7748), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -181823,7 +181395,7 @@ static const uint16_t ts_small_parse_table[] = { [163619] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7736), 30, + ACTIONS(7752), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -181857,7 +181429,7 @@ static const uint16_t ts_small_parse_table[] = { [163655] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7744), 30, + ACTIONS(7523), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -181891,7 +181463,7 @@ static const uint16_t ts_small_parse_table[] = { [163691] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7748), 30, + ACTIONS(7767), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -181925,7 +181497,7 @@ static const uint16_t ts_small_parse_table[] = { [163727] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7817), 30, + ACTIONS(7771), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -181959,7 +181531,7 @@ static const uint16_t ts_small_parse_table[] = { [163763] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7782), 30, + ACTIONS(7775), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -181993,7 +181565,7 @@ static const uint16_t ts_small_parse_table[] = { [163799] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7794), 30, + ACTIONS(7779), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -182027,7 +181599,7 @@ static const uint16_t ts_small_parse_table[] = { [163835] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7704), 30, + ACTIONS(7779), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -182061,7 +181633,7 @@ static const uint16_t ts_small_parse_table[] = { [163871] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7759), 30, + ACTIONS(7783), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -182095,7 +181667,7 @@ static const uint16_t ts_small_parse_table[] = { [163907] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7724), 30, + ACTIONS(7783), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -182129,7 +181701,7 @@ static const uint16_t ts_small_parse_table[] = { [163943] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7521), 30, + ACTIONS(7791), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -182163,7 +181735,7 @@ static const uint16_t ts_small_parse_table[] = { [163979] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7505), 30, + ACTIONS(7795), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -182197,7 +181769,7 @@ static const uint16_t ts_small_parse_table[] = { [164015] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7744), 30, + ACTIONS(7799), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -182231,7 +181803,7 @@ static const uint16_t ts_small_parse_table[] = { [164051] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7513), 30, + ACTIONS(7803), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -182265,7 +181837,7 @@ static const uint16_t ts_small_parse_table[] = { [164087] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7748), 30, + ACTIONS(7807), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -182299,7 +181871,7 @@ static const uint16_t ts_small_parse_table[] = { [164123] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7654), 30, + ACTIONS(7811), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -182333,7 +181905,7 @@ static const uint16_t ts_small_parse_table[] = { [164159] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7481), 30, + ACTIONS(7819), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -182367,7 +181939,7 @@ static const uint16_t ts_small_parse_table[] = { [164195] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7688), 30, + ACTIONS(7819), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -182401,7 +181973,7 @@ static const uint16_t ts_small_parse_table[] = { [164231] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7794), 30, + ACTIONS(7843), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -182435,7 +182007,7 @@ static const uint16_t ts_small_parse_table[] = { [164267] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7786), 30, + ACTIONS(7811), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -182469,7 +182041,7 @@ static const uint16_t ts_small_parse_table[] = { [164303] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7465), 30, + ACTIONS(7819), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -182503,7 +182075,7 @@ static const uint16_t ts_small_parse_table[] = { [164339] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7778), 30, + ACTIONS(7819), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -182537,7 +182109,7 @@ static const uint16_t ts_small_parse_table[] = { [164375] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7469), 30, + ACTIONS(7823), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -182571,7 +182143,7 @@ static const uint16_t ts_small_parse_table[] = { [164411] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7473), 30, + ACTIONS(7831), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -182605,7 +182177,7 @@ static const uint16_t ts_small_parse_table[] = { [164447] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7477), 30, + ACTIONS(7835), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -182639,7 +182211,7 @@ static const uint16_t ts_small_parse_table[] = { [164483] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7774), 30, + ACTIONS(7839), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -182673,7 +182245,7 @@ static const uint16_t ts_small_parse_table[] = { [164519] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7509), 30, + ACTIONS(7843), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -182707,7 +182279,7 @@ static const uint16_t ts_small_parse_table[] = { [164555] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7774), 30, + ACTIONS(7847), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -182741,7 +182313,7 @@ static const uint16_t ts_small_parse_table[] = { [164591] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7860), 30, + ACTIONS(7843), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -182775,7 +182347,7 @@ static const uint16_t ts_small_parse_table[] = { [164627] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7684), 30, + ACTIONS(7847), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -182809,7 +182381,7 @@ static const uint16_t ts_small_parse_table[] = { [164663] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7708), 30, + ACTIONS(7698), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -182843,11 +182415,11 @@ static const uint16_t ts_small_parse_table[] = { [164699] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10168), 1, + ACTIONS(8702), 1, anon_sym_COLON_COLON, ACTIONS(10276), 1, anon_sym_COLON, - ACTIONS(7617), 27, + ACTIONS(7477), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -182878,11 +182450,11 @@ static const uint16_t ts_small_parse_table[] = { [164738] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10168), 1, + ACTIONS(8702), 1, anon_sym_COLON_COLON, ACTIONS(10279), 1, anon_sym_COLON, - ACTIONS(7617), 27, + ACTIONS(7477), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -182913,11 +182485,11 @@ static const uint16_t ts_small_parse_table[] = { [164777] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10168), 1, + ACTIONS(8702), 1, anon_sym_COLON_COLON, ACTIONS(10282), 1, anon_sym_COLON, - ACTIONS(7617), 27, + ACTIONS(7477), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -182948,11 +182520,11 @@ static const uint16_t ts_small_parse_table[] = { [164816] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10168), 1, + ACTIONS(8702), 1, anon_sym_COLON_COLON, ACTIONS(10285), 1, anon_sym_COLON, - ACTIONS(7617), 27, + ACTIONS(7477), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -182983,11 +182555,11 @@ static const uint16_t ts_small_parse_table[] = { [164855] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10168), 1, + ACTIONS(8702), 1, anon_sym_COLON_COLON, ACTIONS(10288), 1, anon_sym_COLON, - ACTIONS(7617), 27, + ACTIONS(7477), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -183018,11 +182590,11 @@ static const uint16_t ts_small_parse_table[] = { [164894] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10168), 1, + ACTIONS(8702), 1, anon_sym_COLON_COLON, ACTIONS(10291), 1, anon_sym_COLON, - ACTIONS(7617), 27, + ACTIONS(7477), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -183053,11 +182625,11 @@ static const uint16_t ts_small_parse_table[] = { [164933] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10168), 1, + ACTIONS(8702), 1, anon_sym_COLON_COLON, ACTIONS(10294), 1, anon_sym_COLON, - ACTIONS(7617), 27, + ACTIONS(7477), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -183088,11 +182660,11 @@ static const uint16_t ts_small_parse_table[] = { [164972] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10168), 1, + ACTIONS(8702), 1, anon_sym_COLON_COLON, ACTIONS(10297), 1, anon_sym_COLON, - ACTIONS(7617), 27, + ACTIONS(7477), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -183123,11 +182695,11 @@ static const uint16_t ts_small_parse_table[] = { [165011] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10168), 1, + ACTIONS(8702), 1, anon_sym_COLON_COLON, ACTIONS(10300), 1, anon_sym_COLON, - ACTIONS(7617), 27, + ACTIONS(7477), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -183158,11 +182730,11 @@ static const uint16_t ts_small_parse_table[] = { [165050] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10168), 1, + ACTIONS(8702), 1, anon_sym_COLON_COLON, ACTIONS(10303), 1, anon_sym_COLON, - ACTIONS(7617), 27, + ACTIONS(7477), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -183193,11 +182765,11 @@ static const uint16_t ts_small_parse_table[] = { [165089] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10168), 1, + ACTIONS(8702), 1, anon_sym_COLON_COLON, ACTIONS(10306), 1, anon_sym_COLON, - ACTIONS(7617), 27, + ACTIONS(7477), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -183228,11 +182800,11 @@ static const uint16_t ts_small_parse_table[] = { [165128] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10168), 1, + ACTIONS(8702), 1, anon_sym_COLON_COLON, ACTIONS(10309), 1, anon_sym_COLON, - ACTIONS(7617), 27, + ACTIONS(7477), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -183263,11 +182835,11 @@ static const uint16_t ts_small_parse_table[] = { [165167] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10168), 1, + ACTIONS(8702), 1, anon_sym_COLON_COLON, ACTIONS(10312), 1, anon_sym_COLON, - ACTIONS(7617), 27, + ACTIONS(7477), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -183298,11 +182870,11 @@ static const uint16_t ts_small_parse_table[] = { [165206] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10168), 1, + ACTIONS(8702), 1, anon_sym_COLON_COLON, ACTIONS(10315), 1, anon_sym_COLON, - ACTIONS(7617), 27, + ACTIONS(7477), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -183333,11 +182905,11 @@ static const uint16_t ts_small_parse_table[] = { [165245] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10168), 1, + ACTIONS(8702), 1, anon_sym_COLON_COLON, ACTIONS(10318), 1, anon_sym_COLON, - ACTIONS(7617), 27, + ACTIONS(7477), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -183368,11 +182940,11 @@ static const uint16_t ts_small_parse_table[] = { [165284] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10168), 1, + ACTIONS(8702), 1, anon_sym_COLON_COLON, ACTIONS(10321), 1, anon_sym_COLON, - ACTIONS(7617), 27, + ACTIONS(7477), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -183403,11 +182975,11 @@ static const uint16_t ts_small_parse_table[] = { [165323] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10168), 1, + ACTIONS(8702), 1, anon_sym_COLON_COLON, ACTIONS(10324), 1, anon_sym_COLON, - ACTIONS(7617), 27, + ACTIONS(7477), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -183438,11 +183010,11 @@ static const uint16_t ts_small_parse_table[] = { [165362] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10168), 1, + ACTIONS(8702), 1, anon_sym_COLON_COLON, ACTIONS(10327), 1, anon_sym_COLON, - ACTIONS(7617), 27, + ACTIONS(7477), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -183470,48 +183042,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [165401] = 3, + [165401] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10332), 2, - anon_sym_COLON, - anon_sym_AT, - ACTIONS(10330), 27, - aux_sym_num_lit_token1, - anon_sym_TILDE, - anon_sym_SQUOTE, - anon_sym_COMMA, - anon_sym_AT_COLON, - anon_sym_COLON_AT, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - aux_sym_format_directive_type_token1, - aux_sym_format_directive_type_token2, - anon_sym_LF, - anon_sym_CR, - aux_sym_format_directive_type_token3, - aux_sym_format_directive_type_token4, - aux_sym_format_directive_type_token5, - aux_sym_format_directive_type_token6, - anon_sym__, - aux_sym_format_directive_type_token7, - aux_sym_format_directive_type_token8, - aux_sym_format_directive_type_token9, - aux_sym_format_directive_type_token10, - anon_sym_SEMI, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_Newline, - aux_sym_format_directive_type_token11, - [165438] = 4, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(10168), 1, + ACTIONS(8702), 1, anon_sym_COLON_COLON, - ACTIONS(10334), 1, + ACTIONS(10330), 1, anon_sym_COLON, - ACTIONS(7617), 27, + ACTIONS(7477), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -183539,14 +183077,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [165477] = 4, + [165440] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10168), 1, + ACTIONS(8702), 1, anon_sym_COLON_COLON, - ACTIONS(10337), 1, + ACTIONS(10333), 1, anon_sym_COLON, - ACTIONS(7617), 27, + ACTIONS(7477), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -183574,14 +183112,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, + [165479] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(10338), 2, + anon_sym_COLON, + anon_sym_AT, + ACTIONS(10336), 27, + aux_sym_num_lit_token1, + anon_sym_TILDE, + anon_sym_SQUOTE, + anon_sym_COMMA, + anon_sym_AT_COLON, + anon_sym_COLON_AT, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + aux_sym_format_directive_type_token1, + aux_sym_format_directive_type_token2, + anon_sym_LF, + anon_sym_CR, + aux_sym_format_directive_type_token3, + aux_sym_format_directive_type_token4, + aux_sym_format_directive_type_token5, + aux_sym_format_directive_type_token6, + anon_sym__, + aux_sym_format_directive_type_token7, + aux_sym_format_directive_type_token8, + aux_sym_format_directive_type_token9, + aux_sym_format_directive_type_token10, + anon_sym_SEMI, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_Newline, + aux_sym_format_directive_type_token11, [165516] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10168), 1, + ACTIONS(8702), 1, anon_sym_COLON_COLON, ACTIONS(10340), 1, anon_sym_COLON, - ACTIONS(7617), 27, + ACTIONS(7477), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -183612,11 +183184,11 @@ static const uint16_t ts_small_parse_table[] = { [165555] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10168), 1, + ACTIONS(8702), 1, anon_sym_COLON_COLON, ACTIONS(10343), 1, anon_sym_COLON, - ACTIONS(7617), 27, + ACTIONS(7477), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -183647,11 +183219,11 @@ static const uint16_t ts_small_parse_table[] = { [165594] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10168), 1, + ACTIONS(8702), 1, anon_sym_COLON_COLON, ACTIONS(10346), 1, anon_sym_COLON, - ACTIONS(7617), 27, + ACTIONS(7477), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -183682,11 +183254,11 @@ static const uint16_t ts_small_parse_table[] = { [165633] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10168), 1, + ACTIONS(8702), 1, anon_sym_COLON_COLON, ACTIONS(10349), 1, anon_sym_COLON, - ACTIONS(7617), 27, + ACTIONS(7477), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -183746,10 +183318,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [165706] = 2, + [165706] = 11, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10354), 28, + ACTIONS(1488), 1, + anon_sym_being, + ACTIONS(10356), 1, + anon_sym_POUND_, + ACTIONS(10358), 1, + anon_sym_COLON, + ACTIONS(10360), 1, + anon_sym_cl, + STATE(419), 1, + sym_for_clause_word, + STATE(1259), 1, + aux_sym_for_clause_repeat1, + STATE(1555), 1, + sym__for_part, + ACTIONS(10354), 2, + sym__ws, + sym_comment, + STATE(2746), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(1490), 16, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [165758] = 2, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(10362), 28, sym__ws, sym_comment, anon_sym_POUND_, @@ -183778,10 +183391,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [165740] = 2, + [165792] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10356), 28, + ACTIONS(10364), 28, sym__ws, sym_comment, anon_sym_POUND_, @@ -183810,10 +183423,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [165774] = 2, + [165826] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10358), 28, + ACTIONS(10366), 28, sym__ws, sym_comment, anon_sym_POUND_, @@ -183842,10 +183455,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [165808] = 2, + [165860] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10360), 28, + ACTIONS(10368), 28, sym__ws, sym_comment, anon_sym_POUND_, @@ -183874,10 +183487,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [165842] = 2, + [165894] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10362), 28, + ACTIONS(10370), 28, sym__ws, sym_comment, anon_sym_POUND_, @@ -183906,47 +183519,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [165876] = 11, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(1632), 1, - anon_sym_being, - ACTIONS(10366), 1, - anon_sym_POUND_, - ACTIONS(10368), 1, - anon_sym_COLON, - ACTIONS(10370), 1, - anon_sym_cl, - STATE(405), 1, - sym_for_clause_word, - STATE(1261), 1, - aux_sym_for_clause_repeat1, - STATE(1611), 1, - sym__for_part, - ACTIONS(10364), 2, - sym__ws, - sym_comment, - STATE(2746), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(1634), 16, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, [165928] = 2, ACTIONS(47), 1, sym_block_comment, @@ -183982,28 +183554,28 @@ static const uint16_t ts_small_parse_table[] = { [165962] = 11, ACTIONS(47), 1, sym_block_comment, - ACTIONS(1632), 1, + ACTIONS(1488), 1, anon_sym_being, - ACTIONS(10366), 1, + ACTIONS(10356), 1, anon_sym_POUND_, - ACTIONS(10368), 1, + ACTIONS(10358), 1, anon_sym_COLON, - ACTIONS(10370), 1, + ACTIONS(10360), 1, anon_sym_cl, - STATE(405), 1, + STATE(419), 1, sym_for_clause_word, - STATE(1259), 1, + STATE(1280), 1, aux_sym_for_clause_repeat1, - STATE(1611), 1, + STATE(1555), 1, sym__for_part, - ACTIONS(10364), 2, + ACTIONS(10354), 2, sym__ws, sym_comment, STATE(2746), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(1634), 16, + ACTIONS(1490), 16, anon_sym_in, anon_sym_across, anon_sym_using, @@ -184023,28 +183595,28 @@ static const uint16_t ts_small_parse_table[] = { [166014] = 11, ACTIONS(47), 1, sym_block_comment, - ACTIONS(1632), 1, + ACTIONS(1488), 1, anon_sym_being, - ACTIONS(10366), 1, + ACTIONS(10356), 1, anon_sym_POUND_, - ACTIONS(10368), 1, + ACTIONS(10358), 1, anon_sym_COLON, - ACTIONS(10370), 1, + ACTIONS(10360), 1, anon_sym_cl, - STATE(405), 1, + STATE(419), 1, sym_for_clause_word, - STATE(1276), 1, + STATE(1279), 1, aux_sym_for_clause_repeat1, - STATE(1611), 1, + STATE(1555), 1, sym__for_part, - ACTIONS(10364), 2, + ACTIONS(10354), 2, sym__ws, sym_comment, STATE(2746), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(1634), 16, + ACTIONS(1490), 16, anon_sym_in, anon_sym_across, anon_sym_using, @@ -184064,7 +183636,7 @@ static const uint16_t ts_small_parse_table[] = { [166066] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10360), 28, + ACTIONS(10374), 28, sym__ws, sym_comment, anon_sym_POUND_, @@ -184093,51 +183665,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [166100] = 11, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(1632), 1, - anon_sym_being, - ACTIONS(10366), 1, - anon_sym_POUND_, - ACTIONS(10368), 1, - anon_sym_COLON, - ACTIONS(10370), 1, - anon_sym_cl, - STATE(405), 1, - sym_for_clause_word, - STATE(1277), 1, - aux_sym_for_clause_repeat1, - STATE(1611), 1, - sym__for_part, - ACTIONS(10364), 2, - sym__ws, - sym_comment, - STATE(2746), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(1634), 16, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [166152] = 2, + [166100] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10360), 28, + ACTIONS(10376), 28, sym__ws, sym_comment, anon_sym_POUND_, @@ -184166,51 +183697,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [166186] = 11, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(1632), 1, - anon_sym_being, - ACTIONS(10366), 1, - anon_sym_POUND_, - ACTIONS(10368), 1, - anon_sym_COLON, - ACTIONS(10370), 1, - anon_sym_cl, - STATE(405), 1, - sym_for_clause_word, - STATE(1260), 1, - aux_sym_for_clause_repeat1, - STATE(1611), 1, - sym__for_part, - ACTIONS(10364), 2, - sym__ws, - sym_comment, - STATE(2746), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(1634), 16, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [166238] = 2, + [166134] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10374), 28, + ACTIONS(10378), 28, sym__ws, sym_comment, anon_sym_POUND_, @@ -184239,51 +183729,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [166272] = 11, + [166168] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(1632), 1, - anon_sym_being, - ACTIONS(10366), 1, + ACTIONS(10352), 28, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(10368), 1, anon_sym_COLON, - ACTIONS(10370), 1, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_cl, - STATE(405), 1, - sym_for_clause_word, - STATE(1269), 1, - aux_sym_for_clause_repeat1, - STATE(1611), 1, - sym__for_part, - ACTIONS(10364), 2, - sym__ws, - sym_comment, - STATE(2746), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(1634), 16, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [166324] = 2, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [166202] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10358), 28, + ACTIONS(10352), 28, sym__ws, sym_comment, anon_sym_POUND_, @@ -184312,10 +183793,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [166358] = 2, + [166236] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10376), 28, + ACTIONS(10366), 28, sym__ws, sym_comment, anon_sym_POUND_, @@ -184344,10 +183825,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [166392] = 2, + [166270] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10376), 28, + ACTIONS(10380), 28, sym__ws, sym_comment, anon_sym_POUND_, @@ -184376,10 +183857,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [166426] = 2, + [166304] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10378), 28, + ACTIONS(10352), 28, sym__ws, sym_comment, anon_sym_POUND_, @@ -184408,10 +183889,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [166460] = 2, + [166338] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10380), 28, + ACTIONS(10382), 28, sym__ws, sym_comment, anon_sym_POUND_, @@ -184440,31 +183921,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [166494] = 11, + [166372] = 11, ACTIONS(47), 1, sym_block_comment, - ACTIONS(1632), 1, + ACTIONS(1488), 1, anon_sym_being, - ACTIONS(10366), 1, + ACTIONS(10356), 1, anon_sym_POUND_, - ACTIONS(10368), 1, + ACTIONS(10358), 1, anon_sym_COLON, - ACTIONS(10370), 1, + ACTIONS(10360), 1, anon_sym_cl, - STATE(405), 1, + STATE(419), 1, sym_for_clause_word, - STATE(1262), 1, + STATE(1281), 1, aux_sym_for_clause_repeat1, - STATE(1611), 1, + STATE(1555), 1, sym__for_part, - ACTIONS(10364), 2, + ACTIONS(10354), 2, sym__ws, sym_comment, STATE(2746), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(1634), 16, + ACTIONS(1490), 16, anon_sym_in, anon_sym_across, anon_sym_using, @@ -184481,131 +183962,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [166546] = 9, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(8436), 1, - aux_sym_num_lit_token1, - ACTIONS(8444), 1, - anon_sym_SQUOTE, - ACTIONS(8452), 1, - anon_sym_SLASH, - ACTIONS(10382), 1, - anon_sym_COMMA, - STATE(2982), 1, - sym__format_token, - STATE(3998), 1, - aux_sym_format_modifiers_repeat1, - STATE(4016), 1, - sym_format_directive_type, - ACTIONS(8442), 21, - anon_sym_TILDE, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - aux_sym_format_directive_type_token1, - aux_sym_format_directive_type_token2, - anon_sym_LF, - anon_sym_CR, - aux_sym_format_directive_type_token3, - aux_sym_format_directive_type_token4, - aux_sym_format_directive_type_token5, - aux_sym_format_directive_type_token6, - anon_sym__, - aux_sym_format_directive_type_token7, - aux_sym_format_directive_type_token8, - aux_sym_format_directive_type_token9, - aux_sym_format_directive_type_token10, - anon_sym_SEMI, - anon_sym_QMARK, - anon_sym_Newline, - aux_sym_format_directive_type_token11, - [166594] = 11, + [166424] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(1632), 1, - anon_sym_being, - ACTIONS(10366), 1, + ACTIONS(10382), 28, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(10368), 1, anon_sym_COLON, - ACTIONS(10370), 1, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_cl, - STATE(405), 1, - sym_for_clause_word, - STATE(1263), 1, - aux_sym_for_clause_repeat1, - STATE(1611), 1, - sym__for_part, - ACTIONS(10364), 2, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [166458] = 2, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(10382), 28, sym__ws, sym_comment, - STATE(2746), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(1634), 16, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [166646] = 11, + anon_sym_POUND_, + anon_sym_COLON, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_cl, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [166492] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(1632), 1, - anon_sym_being, - ACTIONS(10366), 1, + ACTIONS(10384), 28, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(10368), 1, anon_sym_COLON, - ACTIONS(10370), 1, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_cl, - STATE(405), 1, - sym_for_clause_word, - STATE(1267), 1, - aux_sym_for_clause_repeat1, - STATE(1611), 1, - sym__for_part, - ACTIONS(10364), 2, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [166526] = 2, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(10386), 28, sym__ws, sym_comment, - STATE(2746), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(1634), 16, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [166698] = 2, + anon_sym_POUND_, + anon_sym_COLON, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_cl, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [166560] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10380), 28, + ACTIONS(10388), 28, sym__ws, sym_comment, anon_sym_POUND_, @@ -184634,10 +184122,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [166732] = 2, + [166594] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10378), 28, + ACTIONS(10390), 28, sym__ws, sym_comment, anon_sym_POUND_, @@ -184666,10 +184154,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [166766] = 2, + [166628] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10384), 28, + ACTIONS(10392), 28, sym__ws, sym_comment, anon_sym_POUND_, @@ -184698,10 +184186,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [166800] = 2, + [166662] = 11, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10380), 28, + ACTIONS(1488), 1, + anon_sym_being, + ACTIONS(10356), 1, + anon_sym_POUND_, + ACTIONS(10358), 1, + anon_sym_COLON, + ACTIONS(10360), 1, + anon_sym_cl, + STATE(419), 1, + sym_for_clause_word, + STATE(1260), 1, + aux_sym_for_clause_repeat1, + STATE(1555), 1, + sym__for_part, + ACTIONS(10354), 2, + sym__ws, + sym_comment, + STATE(2746), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(1490), 16, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [166714] = 2, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(10394), 28, sym__ws, sym_comment, anon_sym_POUND_, @@ -184730,10 +184259,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [166834] = 2, + [166748] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10386), 28, + ACTIONS(10396), 28, sym__ws, sym_comment, anon_sym_POUND_, @@ -184762,7 +184291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [166868] = 9, + [166782] = 9, ACTIONS(47), 1, sym_block_comment, ACTIONS(8436), 1, @@ -184771,13 +184300,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(8452), 1, anon_sym_SLASH, - ACTIONS(10382), 1, + ACTIONS(10398), 1, anon_sym_COMMA, - STATE(2982), 1, + STATE(2968), 1, sym__format_token, - STATE(3998), 1, + STATE(3917), 1, aux_sym_format_modifiers_repeat1, - STATE(4018), 1, + STATE(4014), 1, sym_format_directive_type, ACTIONS(8442), 21, anon_sym_TILDE, @@ -184801,10 +184330,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_Newline, aux_sym_format_directive_type_token11, - [166916] = 2, + [166830] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10388), 28, + ACTIONS(10378), 28, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_cl, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [166864] = 2, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(10400), 28, sym__ws, sym_comment, anon_sym_POUND_, @@ -184833,10 +184394,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [166950] = 2, + [166898] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10390), 28, + ACTIONS(10400), 28, sym__ws, sym_comment, anon_sym_POUND_, @@ -184865,10 +184426,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [166984] = 2, + [166932] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10380), 28, + ACTIONS(10386), 28, sym__ws, sym_comment, anon_sym_POUND_, @@ -184897,10 +184458,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [167018] = 2, + [166966] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10392), 28, + ACTIONS(10402), 28, sym__ws, sym_comment, anon_sym_POUND_, @@ -184929,10 +184490,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [167052] = 2, + [167000] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10354), 28, + ACTIONS(10400), 28, sym__ws, sym_comment, anon_sym_POUND_, @@ -184961,10 +184522,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [167086] = 2, + [167034] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10394), 28, + ACTIONS(10402), 28, sym__ws, sym_comment, anon_sym_POUND_, @@ -184993,10 +184554,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [167120] = 2, + [167068] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10378), 28, + ACTIONS(10372), 28, sym__ws, sym_comment, anon_sym_POUND_, @@ -185025,10 +184586,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [167154] = 2, + [167102] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10376), 28, + ACTIONS(10380), 28, sym__ws, sym_comment, anon_sym_POUND_, @@ -185057,31 +184618,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [167188] = 11, + [167136] = 11, ACTIONS(47), 1, sym_block_comment, - ACTIONS(1632), 1, + ACTIONS(1488), 1, anon_sym_being, - ACTIONS(10366), 1, + ACTIONS(10356), 1, anon_sym_POUND_, - ACTIONS(10368), 1, + ACTIONS(10358), 1, anon_sym_COLON, - ACTIONS(10370), 1, + ACTIONS(10360), 1, anon_sym_cl, - STATE(405), 1, + STATE(419), 1, sym_for_clause_word, - STATE(1278), 1, + STATE(1267), 1, aux_sym_for_clause_repeat1, - STATE(1611), 1, + STATE(1555), 1, sym__for_part, - ACTIONS(10364), 2, + ACTIONS(10354), 2, sym__ws, sym_comment, STATE(2746), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(1634), 16, + ACTIONS(1490), 16, anon_sym_in, anon_sym_across, anon_sym_using, @@ -185098,42 +184659,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [167240] = 2, + [167188] = 11, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10396), 28, - sym__ws, - sym_comment, + ACTIONS(1488), 1, + anon_sym_being, + ACTIONS(10356), 1, anon_sym_POUND_, + ACTIONS(10358), 1, anon_sym_COLON, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(10360), 1, anon_sym_cl, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_do, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [167274] = 2, + STATE(419), 1, + sym_for_clause_word, + STATE(1268), 1, + aux_sym_for_clause_repeat1, + STATE(1555), 1, + sym__for_part, + ACTIONS(10354), 2, + sym__ws, + sym_comment, + STATE(2746), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(1490), 16, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [167240] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10398), 28, + ACTIONS(10374), 28, sym__ws, sym_comment, anon_sym_POUND_, @@ -185162,10 +184732,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [167308] = 2, + [167274] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10400), 28, + ACTIONS(10404), 28, sym__ws, sym_comment, anon_sym_POUND_, @@ -185194,31 +184764,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [167342] = 11, + [167308] = 11, ACTIONS(47), 1, sym_block_comment, - ACTIONS(1632), 1, + ACTIONS(1488), 1, anon_sym_being, - ACTIONS(10366), 1, + ACTIONS(10356), 1, anon_sym_POUND_, - ACTIONS(10368), 1, + ACTIONS(10358), 1, anon_sym_COLON, - ACTIONS(10370), 1, + ACTIONS(10360), 1, anon_sym_cl, - STATE(405), 1, + STATE(419), 1, sym_for_clause_word, - STATE(1281), 1, + STATE(1272), 1, aux_sym_for_clause_repeat1, - STATE(1611), 1, + STATE(1555), 1, sym__for_part, - ACTIONS(10364), 2, + ACTIONS(10354), 2, sym__ws, sym_comment, STATE(2746), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(1634), 16, + ACTIONS(1490), 16, anon_sym_in, anon_sym_across, anon_sym_using, @@ -185235,74 +184805,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [167394] = 2, + [167360] = 11, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10402), 28, - sym__ws, - sym_comment, + ACTIONS(1488), 1, + anon_sym_being, + ACTIONS(10356), 1, anon_sym_POUND_, + ACTIONS(10358), 1, anon_sym_COLON, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(10360), 1, anon_sym_cl, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_do, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [167428] = 2, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(10404), 28, + STATE(419), 1, + sym_for_clause_word, + STATE(1258), 1, + aux_sym_for_clause_repeat1, + STATE(1555), 1, + sym__for_part, + ACTIONS(10354), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_cl, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_do, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [167462] = 2, + STATE(2746), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(1490), 16, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [167412] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10390), 28, + ACTIONS(10376), 28, sym__ws, sym_comment, anon_sym_POUND_, @@ -185331,63 +184878,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [167496] = 2, + [167446] = 11, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10406), 28, - sym__ws, - sym_comment, + ACTIONS(1488), 1, + anon_sym_being, + ACTIONS(10356), 1, anon_sym_POUND_, + ACTIONS(10358), 1, anon_sym_COLON, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(10360), 1, anon_sym_cl, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_do, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [167530] = 11, + STATE(419), 1, + sym_for_clause_word, + STATE(1270), 1, + aux_sym_for_clause_repeat1, + STATE(1555), 1, + sym__for_part, + ACTIONS(10354), 2, + sym__ws, + sym_comment, + STATE(2746), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(1490), 16, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [167498] = 11, ACTIONS(47), 1, sym_block_comment, - ACTIONS(1632), 1, + ACTIONS(1488), 1, anon_sym_being, - ACTIONS(10366), 1, + ACTIONS(10356), 1, anon_sym_POUND_, - ACTIONS(10368), 1, + ACTIONS(10358), 1, anon_sym_COLON, - ACTIONS(10370), 1, + ACTIONS(10360), 1, anon_sym_cl, - STATE(405), 1, + STATE(419), 1, sym_for_clause_word, - STATE(1275), 1, + STATE(1266), 1, aux_sym_for_clause_repeat1, - STATE(1611), 1, + STATE(1555), 1, sym__for_part, - ACTIONS(10364), 2, + ACTIONS(10354), 2, sym__ws, sym_comment, STATE(2746), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(1634), 16, + ACTIONS(1490), 16, anon_sym_in, anon_sym_across, anon_sym_using, @@ -185404,63 +184960,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [167582] = 2, + [167550] = 11, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10394), 28, - sym__ws, - sym_comment, + ACTIONS(1488), 1, + anon_sym_being, + ACTIONS(10356), 1, anon_sym_POUND_, + ACTIONS(10358), 1, anon_sym_COLON, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(10360), 1, anon_sym_cl, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_do, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [167616] = 11, + STATE(419), 1, + sym_for_clause_word, + STATE(1274), 1, + aux_sym_for_clause_repeat1, + STATE(1555), 1, + sym__for_part, + ACTIONS(10354), 2, + sym__ws, + sym_comment, + STATE(2746), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(1490), 16, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [167602] = 11, ACTIONS(47), 1, sym_block_comment, - ACTIONS(1632), 1, + ACTIONS(1488), 1, anon_sym_being, - ACTIONS(10366), 1, + ACTIONS(10356), 1, anon_sym_POUND_, - ACTIONS(10368), 1, + ACTIONS(10358), 1, anon_sym_COLON, - ACTIONS(10370), 1, + ACTIONS(10360), 1, anon_sym_cl, - STATE(405), 1, + STATE(419), 1, sym_for_clause_word, - STATE(1271), 1, + STATE(1269), 1, aux_sym_for_clause_repeat1, - STATE(1611), 1, + STATE(1555), 1, sym__for_part, - ACTIONS(10364), 2, + ACTIONS(10354), 2, sym__ws, sym_comment, STATE(2746), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(1634), 16, + ACTIONS(1490), 16, anon_sym_in, anon_sym_across, anon_sym_using, @@ -185477,7 +185042,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [167668] = 2, + [167654] = 2, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(10406), 28, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_cl, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [167688] = 2, ACTIONS(47), 1, sym_block_comment, ACTIONS(10408), 28, @@ -185509,7 +185106,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [167702] = 2, + [167722] = 2, ACTIONS(47), 1, sym_block_comment, ACTIONS(10410), 28, @@ -185541,7 +185138,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [167736] = 2, + [167756] = 2, ACTIONS(47), 1, sym_block_comment, ACTIONS(10412), 28, @@ -185573,74 +185170,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [167770] = 2, + [167790] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10414), 28, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_cl, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_do, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [167804] = 2, + ACTIONS(8436), 1, + aux_sym_num_lit_token1, + ACTIONS(8444), 1, + anon_sym_SQUOTE, + ACTIONS(8452), 1, + anon_sym_SLASH, + ACTIONS(10398), 1, + anon_sym_COMMA, + STATE(2968), 1, + sym__format_token, + STATE(3917), 1, + aux_sym_format_modifiers_repeat1, + STATE(4021), 1, + sym_format_directive_type, + ACTIONS(8442), 21, + anon_sym_TILDE, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + aux_sym_format_directive_type_token1, + aux_sym_format_directive_type_token2, + anon_sym_LF, + anon_sym_CR, + aux_sym_format_directive_type_token3, + aux_sym_format_directive_type_token4, + aux_sym_format_directive_type_token5, + aux_sym_format_directive_type_token6, + anon_sym__, + aux_sym_format_directive_type_token7, + aux_sym_format_directive_type_token8, + aux_sym_format_directive_type_token9, + aux_sym_format_directive_type_token10, + anon_sym_SEMI, + anon_sym_QMARK, + anon_sym_Newline, + aux_sym_format_directive_type_token11, + [167838] = 11, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10396), 28, - sym__ws, - sym_comment, + ACTIONS(1488), 1, + anon_sym_being, + ACTIONS(10356), 1, anon_sym_POUND_, + ACTIONS(10358), 1, anon_sym_COLON, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(10360), 1, anon_sym_cl, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_do, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [167838] = 2, + STATE(419), 1, + sym_for_clause_word, + STATE(1256), 1, + aux_sym_for_clause_repeat1, + STATE(1555), 1, + sym__for_part, + ACTIONS(10354), 2, + sym__ws, + sym_comment, + STATE(2746), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(1490), 16, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [167890] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10408), 28, + ACTIONS(10414), 28, sym__ws, sym_comment, anon_sym_POUND_, @@ -185669,10 +185282,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [167872] = 2, + [167924] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10398), 28, + ACTIONS(10388), 28, sym__ws, sym_comment, anon_sym_POUND_, @@ -185701,10 +185314,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [167906] = 2, + [167958] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10388), 28, + ACTIONS(10416), 28, sym__ws, sym_comment, anon_sym_POUND_, @@ -185733,31 +185346,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [167940] = 11, + [167992] = 11, ACTIONS(47), 1, sym_block_comment, - ACTIONS(1632), 1, + ACTIONS(1488), 1, anon_sym_being, - ACTIONS(10366), 1, + ACTIONS(10356), 1, anon_sym_POUND_, - ACTIONS(10368), 1, + ACTIONS(10358), 1, anon_sym_COLON, - ACTIONS(10370), 1, + ACTIONS(10360), 1, anon_sym_cl, - STATE(405), 1, + STATE(419), 1, sym_for_clause_word, - STATE(1268), 1, + STATE(1263), 1, aux_sym_for_clause_repeat1, - STATE(1611), 1, + STATE(1555), 1, sym__for_part, - ACTIONS(10364), 2, + ACTIONS(10354), 2, sym__ws, sym_comment, STATE(2746), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(1634), 16, + ACTIONS(1490), 16, anon_sym_in, anon_sym_across, anon_sym_using, @@ -185774,31 +185387,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [167992] = 11, + [168044] = 11, ACTIONS(47), 1, sym_block_comment, - ACTIONS(1632), 1, + ACTIONS(1488), 1, anon_sym_being, - ACTIONS(10366), 1, + ACTIONS(10356), 1, anon_sym_POUND_, - ACTIONS(10368), 1, + ACTIONS(10358), 1, anon_sym_COLON, - ACTIONS(10370), 1, + ACTIONS(10360), 1, anon_sym_cl, - STATE(405), 1, + STATE(419), 1, sym_for_clause_word, - STATE(1270), 1, + STATE(1276), 1, aux_sym_for_clause_repeat1, - STATE(1611), 1, + STATE(1555), 1, sym__for_part, - ACTIONS(10364), 2, + ACTIONS(10354), 2, sym__ws, sym_comment, STATE(2746), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(1634), 16, + ACTIONS(1490), 16, anon_sym_in, anon_sym_across, anon_sym_using, @@ -185815,10 +185428,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [168044] = 2, + [168096] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10378), 28, + ACTIONS(10418), 28, sym__ws, sym_comment, anon_sym_POUND_, @@ -185847,10 +185460,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [168078] = 2, + [168130] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10414), 28, + ACTIONS(10418), 28, sym__ws, sym_comment, anon_sym_POUND_, @@ -185879,10 +185492,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [168112] = 2, + [168164] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10352), 28, + ACTIONS(10418), 28, sym__ws, sym_comment, anon_sym_POUND_, @@ -185911,42 +185524,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [168146] = 2, + [168198] = 11, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10416), 28, - sym__ws, - sym_comment, + ACTIONS(1488), 1, + anon_sym_being, + ACTIONS(10356), 1, anon_sym_POUND_, + ACTIONS(10358), 1, anon_sym_COLON, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(10360), 1, anon_sym_cl, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_do, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [168180] = 2, + STATE(419), 1, + sym_for_clause_word, + STATE(1262), 1, + aux_sym_for_clause_repeat1, + STATE(1555), 1, + sym__for_part, + ACTIONS(10354), 2, + sym__ws, + sym_comment, + STATE(2746), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(1490), 16, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [168250] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10358), 28, + ACTIONS(10362), 28, sym__ws, sym_comment, anon_sym_POUND_, @@ -185975,10 +185597,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [168214] = 2, + [168284] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10352), 28, + ACTIONS(10362), 28, sym__ws, sym_comment, anon_sym_POUND_, @@ -186007,10 +185629,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [168248] = 2, + [168318] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10418), 28, + ACTIONS(10366), 28, sym__ws, sym_comment, anon_sym_POUND_, @@ -186039,31 +185661,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [168282] = 11, + [168352] = 11, ACTIONS(47), 1, sym_block_comment, - ACTIONS(1632), 1, + ACTIONS(1488), 1, anon_sym_being, - ACTIONS(10366), 1, + ACTIONS(10356), 1, anon_sym_POUND_, - ACTIONS(10368), 1, + ACTIONS(10358), 1, anon_sym_COLON, - ACTIONS(10370), 1, + ACTIONS(10360), 1, anon_sym_cl, - STATE(405), 1, + STATE(419), 1, sym_for_clause_word, - STATE(1273), 1, + STATE(1264), 1, aux_sym_for_clause_repeat1, - STATE(1611), 1, + STATE(1555), 1, sym__for_part, - ACTIONS(10364), 2, + ACTIONS(10354), 2, sym__ws, sym_comment, STATE(2746), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(1634), 16, + ACTIONS(1490), 16, anon_sym_in, anon_sym_across, anon_sym_using, @@ -186080,88 +185702,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [168334] = 11, + [168404] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(1632), 1, - anon_sym_being, - ACTIONS(10366), 1, - anon_sym_POUND_, - ACTIONS(10368), 1, - anon_sym_COLON, - ACTIONS(10370), 1, - anon_sym_cl, - STATE(405), 1, - sym_for_clause_word, - STATE(1257), 1, - aux_sym_for_clause_repeat1, - STATE(1611), 1, - sym__for_part, - ACTIONS(10364), 2, + ACTIONS(10362), 28, sym__ws, sym_comment, - STATE(2746), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(1634), 16, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [168386] = 11, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(1632), 1, - anon_sym_being, - ACTIONS(10366), 1, anon_sym_POUND_, - ACTIONS(10368), 1, anon_sym_COLON, - ACTIONS(10370), 1, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_cl, - STATE(405), 1, - sym_for_clause_word, - STATE(1258), 1, - aux_sym_for_clause_repeat1, - STATE(1611), 1, - sym__for_part, - ACTIONS(10364), 2, - sym__ws, - sym_comment, - STATE(2746), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(1634), 16, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, [168438] = 2, ACTIONS(47), 1, sym_block_comment, @@ -186197,15 +185769,15 @@ static const uint16_t ts_small_parse_table[] = { [168472] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(1632), 1, + ACTIONS(1488), 1, anon_sym_being, - ACTIONS(10366), 1, + ACTIONS(10356), 1, anon_sym_POUND_, - ACTIONS(10368), 1, + ACTIONS(10358), 1, anon_sym_COLON, - ACTIONS(10370), 1, + ACTIONS(10360), 1, anon_sym_cl, - STATE(432), 1, + STATE(834), 1, sym_for_clause_word, ACTIONS(10422), 2, sym__ws, @@ -186214,7 +185786,7 @@ static const uint16_t ts_small_parse_table[] = { sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(1634), 16, + ACTIONS(1490), 16, anon_sym_in, anon_sym_across, anon_sym_using, @@ -186343,83 +185915,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(10442), 1, anon_sym_POUND_QMARK, - STATE(2880), 1, + STATE(2886), 1, sym__bare_map_lit, - STATE(2901), 1, + STATE(2903), 1, sym__metadata_lit, - STATE(2973), 1, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(3105), 1, + STATE(3107), 1, aux_sym_list_lit_repeat1, ACTIONS(10434), 2, sym__ws, sym_comment, - STATE(2902), 3, + STATE(2901), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2883), 5, + STATE(2879), 5, sym_kwd_lit, sym_str_lit, sym_sym_lit, sym_map_lit, sym_read_cond_lit, - [168681] = 20, - ACTIONS(29), 1, - anon_sym_LPAREN, + [168681] = 18, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5029), 1, - anon_sym_COLON, - ACTIONS(5031), 1, - anon_sym_COLON_COLON, - ACTIONS(8099), 1, - anon_sym_CARET, - ACTIONS(8101), 1, - anon_sym_POUND_CARET, - ACTIONS(10446), 1, - anon_sym_POUND_, - ACTIONS(10448), 1, - aux_sym_sym_lit_token1, - ACTIONS(10450), 1, - anon_sym_COMMA, - STATE(2032), 1, - sym_unquoting_lit, - STATE(2033), 1, - sym_list_lit, - STATE(2847), 1, - sym_kwd_lit, - STATE(2857), 1, - sym_sym_lit, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3067), 1, - aux_sym_list_lit_repeat1, - ACTIONS(10444), 2, - sym__ws, - sym_comment, - STATE(1877), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(2986), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [168747] = 18, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(6041), 1, + ACTIONS(5041), 1, anon_sym_COLON, - ACTIONS(6043), 1, + ACTIONS(5043), 1, anon_sym_COLON_COLON, - ACTIONS(6045), 1, + ACTIONS(5045), 1, anon_sym_DQUOTE, ACTIONS(8099), 1, anon_sym_CARET, @@ -186429,126 +185955,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_, ACTIONS(10440), 1, anon_sym_LBRACE, - ACTIONS(10452), 1, + ACTIONS(10444), 1, aux_sym_sym_lit_token1, - ACTIONS(10454), 1, + ACTIONS(10446), 1, anon_sym_POUND_QMARK, - STATE(2880), 1, + STATE(2886), 1, sym__bare_map_lit, - STATE(2901), 1, + STATE(2903), 1, sym__metadata_lit, - STATE(2973), 1, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(3106), 1, + STATE(3104), 1, aux_sym_list_lit_repeat1, ACTIONS(10434), 2, sym__ws, sym_comment, - STATE(2902), 3, + STATE(2901), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2885), 5, + STATE(2879), 5, sym_kwd_lit, sym_str_lit, sym_sym_lit, sym_map_lit, sym_read_cond_lit, - [168809] = 20, + [168743] = 20, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5029), 1, + ACTIONS(4997), 1, anon_sym_COLON, - ACTIONS(5031), 1, + ACTIONS(4999), 1, anon_sym_COLON_COLON, ACTIONS(8099), 1, anon_sym_CARET, ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(10446), 1, + ACTIONS(10450), 1, anon_sym_POUND_, - ACTIONS(10448), 1, + ACTIONS(10452), 1, aux_sym_sym_lit_token1, - ACTIONS(10450), 1, + ACTIONS(10454), 1, anon_sym_COMMA, - STATE(2028), 1, + STATE(2009), 1, sym_list_lit, - STATE(2029), 1, + STATE(2010), 1, sym_unquoting_lit, - STATE(2866), 1, + STATE(2857), 1, sym_kwd_lit, - STATE(2867), 1, + STATE(2858), 1, sym_sym_lit, - STATE(2901), 1, + STATE(2903), 1, sym__metadata_lit, - STATE(2973), 1, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(3067), 1, + STATE(3100), 1, aux_sym_list_lit_repeat1, - ACTIONS(10444), 2, + ACTIONS(10448), 2, sym__ws, sym_comment, - STATE(1877), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2986), 3, + STATE(2981), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [168809] = 18, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(5041), 1, + anon_sym_COLON, + ACTIONS(5043), 1, + anon_sym_COLON_COLON, + ACTIONS(5045), 1, + anon_sym_DQUOTE, + ACTIONS(8099), 1, + anon_sym_CARET, + ACTIONS(8101), 1, + anon_sym_POUND_CARET, + ACTIONS(10436), 1, + anon_sym_POUND_, + ACTIONS(10440), 1, + anon_sym_LBRACE, + ACTIONS(10444), 1, + aux_sym_sym_lit_token1, + ACTIONS(10446), 1, + anon_sym_POUND_QMARK, + STATE(2886), 1, + sym__bare_map_lit, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3104), 1, + aux_sym_list_lit_repeat1, + ACTIONS(10456), 2, + sym__ws, + sym_comment, + STATE(2761), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168875] = 20, + STATE(2881), 5, + sym_kwd_lit, + sym_str_lit, + sym_sym_lit, + sym_map_lit, + sym_read_cond_lit, + [168871] = 20, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5029), 1, + ACTIONS(4997), 1, anon_sym_COLON, - ACTIONS(5031), 1, + ACTIONS(4999), 1, anon_sym_COLON_COLON, ACTIONS(8099), 1, anon_sym_CARET, ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(10446), 1, + ACTIONS(10450), 1, anon_sym_POUND_, - ACTIONS(10448), 1, + ACTIONS(10452), 1, aux_sym_sym_lit_token1, - ACTIONS(10450), 1, + ACTIONS(10454), 1, anon_sym_COMMA, - STATE(2030), 1, - sym_unquoting_lit, - STATE(2031), 1, + STATE(2008), 1, sym_list_lit, - STATE(2862), 1, + STATE(2014), 1, + sym_unquoting_lit, + STATE(2856), 1, sym_kwd_lit, - STATE(2864), 1, + STATE(2861), 1, sym_sym_lit, - STATE(2901), 1, + STATE(2903), 1, sym__metadata_lit, - STATE(2973), 1, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(3067), 1, + STATE(3100), 1, aux_sym_list_lit_repeat1, - ACTIONS(10456), 2, + ACTIONS(10458), 2, sym__ws, sym_comment, - STATE(1877), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2753), 3, + STATE(2756), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168941] = 18, + [168937] = 18, ACTIONS(17), 1, anon_sym_COLON, ACTIONS(19), 1, @@ -186569,81 +186139,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(10442), 1, anon_sym_POUND_QMARK, - STATE(2880), 1, + STATE(2886), 1, sym__bare_map_lit, - STATE(2901), 1, + STATE(2903), 1, sym__metadata_lit, - STATE(2973), 1, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(3105), 1, + STATE(3107), 1, aux_sym_list_lit_repeat1, - ACTIONS(10458), 2, + ACTIONS(10434), 2, sym__ws, sym_comment, - STATE(2750), 3, + STATE(2901), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2887), 5, + STATE(2877), 5, sym_kwd_lit, sym_str_lit, sym_sym_lit, sym_map_lit, sym_read_cond_lit, - [169003] = 18, + [168999] = 20, + ACTIONS(29), 1, + anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6041), 1, + ACTIONS(4997), 1, anon_sym_COLON, - ACTIONS(6043), 1, + ACTIONS(4999), 1, anon_sym_COLON_COLON, - ACTIONS(6045), 1, - anon_sym_DQUOTE, ACTIONS(8099), 1, anon_sym_CARET, ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(10436), 1, + ACTIONS(10450), 1, anon_sym_POUND_, - ACTIONS(10440), 1, - anon_sym_LBRACE, ACTIONS(10452), 1, aux_sym_sym_lit_token1, ACTIONS(10454), 1, - anon_sym_POUND_QMARK, - STATE(2880), 1, - sym__bare_map_lit, - STATE(2901), 1, + anon_sym_COMMA, + STATE(1995), 1, + sym_list_lit, + STATE(1996), 1, + sym_unquoting_lit, + STATE(2869), 1, + sym_sym_lit, + STATE(2870), 1, + sym_kwd_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2973), 1, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(3106), 1, + STATE(3100), 1, aux_sym_list_lit_repeat1, - ACTIONS(10434), 2, + ACTIONS(10448), 2, sym__ws, sym_comment, - STATE(2902), 3, + STATE(1790), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2981), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2883), 5, - sym_kwd_lit, - sym_str_lit, - sym_sym_lit, - sym_map_lit, - sym_read_cond_lit, [169065] = 18, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6041), 1, + ACTIONS(5041), 1, anon_sym_COLON, - ACTIONS(6043), 1, + ACTIONS(5043), 1, anon_sym_COLON_COLON, - ACTIONS(6045), 1, + ACTIONS(5045), 1, anon_sym_DQUOTE, ACTIONS(8099), 1, anon_sym_CARET, @@ -186653,78 +186225,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_, ACTIONS(10440), 1, anon_sym_LBRACE, - ACTIONS(10452), 1, + ACTIONS(10444), 1, aux_sym_sym_lit_token1, - ACTIONS(10454), 1, + ACTIONS(10446), 1, anon_sym_POUND_QMARK, - STATE(2880), 1, + STATE(2886), 1, sym__bare_map_lit, - STATE(2901), 1, + STATE(2903), 1, sym__metadata_lit, - STATE(2973), 1, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(3106), 1, + STATE(3104), 1, aux_sym_list_lit_repeat1, ACTIONS(10460), 2, sym__ws, sym_comment, - STATE(2752), 3, + STATE(2751), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2877), 5, + STATE(2884), 5, sym_kwd_lit, sym_str_lit, sym_sym_lit, sym_map_lit, sym_read_cond_lit, - [169127] = 18, + [169127] = 20, + ACTIONS(29), 1, + anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6041), 1, + ACTIONS(4997), 1, anon_sym_COLON, - ACTIONS(6043), 1, + ACTIONS(4999), 1, anon_sym_COLON_COLON, - ACTIONS(6045), 1, - anon_sym_DQUOTE, ACTIONS(8099), 1, anon_sym_CARET, ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(10436), 1, + ACTIONS(10450), 1, anon_sym_POUND_, - ACTIONS(10440), 1, - anon_sym_LBRACE, ACTIONS(10452), 1, aux_sym_sym_lit_token1, ACTIONS(10454), 1, - anon_sym_POUND_QMARK, - STATE(2880), 1, - sym__bare_map_lit, - STATE(2901), 1, + anon_sym_COMMA, + STATE(2011), 1, + sym_list_lit, + STATE(2012), 1, + sym_unquoting_lit, + STATE(2851), 1, + sym_kwd_lit, + STATE(2852), 1, + sym_sym_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2973), 1, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(3106), 1, + STATE(3100), 1, aux_sym_list_lit_repeat1, ACTIONS(10462), 2, sym__ws, sym_comment, - STATE(2756), 3, + STATE(1790), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2752), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2887), 5, - sym_kwd_lit, - sym_str_lit, - sym_sym_lit, - sym_map_lit, - sym_read_cond_lit, - [169189] = 18, + [169193] = 18, ACTIONS(17), 1, anon_sym_COLON, ACTIONS(19), 1, @@ -186745,114 +186319,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(10442), 1, anon_sym_POUND_QMARK, - STATE(2880), 1, + STATE(2886), 1, sym__bare_map_lit, - STATE(2901), 1, + STATE(2903), 1, sym__metadata_lit, - STATE(2973), 1, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(3105), 1, + STATE(3107), 1, aux_sym_list_lit_repeat1, ACTIONS(10464), 2, sym__ws, sym_comment, - STATE(2761), 3, + STATE(2755), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2877), 5, + STATE(2881), 5, sym_kwd_lit, sym_str_lit, sym_sym_lit, sym_map_lit, sym_read_cond_lit, - [169251] = 20, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5029), 1, + [169255] = 18, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(5031), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, + ACTIONS(21), 1, + anon_sym_DQUOTE, + ACTIONS(47), 1, + sym_block_comment, ACTIONS(8099), 1, anon_sym_CARET, ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(10446), 1, + ACTIONS(10436), 1, anon_sym_POUND_, - ACTIONS(10448), 1, + ACTIONS(10438), 1, aux_sym_sym_lit_token1, - ACTIONS(10450), 1, - anon_sym_COMMA, - STATE(1996), 1, - sym_list_lit, - STATE(2005), 1, - sym_unquoting_lit, - STATE(2846), 1, - sym_kwd_lit, - STATE(2872), 1, - sym_sym_lit, - STATE(2901), 1, + ACTIONS(10440), 1, + anon_sym_LBRACE, + ACTIONS(10442), 1, + anon_sym_POUND_QMARK, + STATE(2886), 1, + sym__bare_map_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2973), 1, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(3067), 1, + STATE(3107), 1, aux_sym_list_lit_repeat1, ACTIONS(10466), 2, sym__ws, sym_comment, - STATE(1877), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(2751), 3, + STATE(2750), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, + STATE(2884), 5, + sym_kwd_lit, + sym_str_lit, + sym_sym_lit, + sym_map_lit, + sym_read_cond_lit, [169317] = 18, - ACTIONS(17), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(5041), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(5043), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(5045), 1, anon_sym_DQUOTE, - ACTIONS(47), 1, - sym_block_comment, ACTIONS(8099), 1, anon_sym_CARET, ACTIONS(8101), 1, anon_sym_POUND_CARET, ACTIONS(10436), 1, anon_sym_POUND_, - ACTIONS(10438), 1, - aux_sym_sym_lit_token1, ACTIONS(10440), 1, anon_sym_LBRACE, - ACTIONS(10442), 1, + ACTIONS(10444), 1, + aux_sym_sym_lit_token1, + ACTIONS(10446), 1, anon_sym_POUND_QMARK, - STATE(2880), 1, + STATE(2886), 1, sym__bare_map_lit, - STATE(2901), 1, + STATE(2903), 1, sym__metadata_lit, - STATE(2973), 1, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(3105), 1, + STATE(3104), 1, aux_sym_list_lit_repeat1, ACTIONS(10434), 2, sym__ws, sym_comment, - STATE(2902), 3, + STATE(2901), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2885), 5, + STATE(2877), 5, sym_kwd_lit, sym_str_lit, sym_sym_lit, @@ -186861,13 +186433,13 @@ static const uint16_t ts_small_parse_table[] = { [169379] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7718), 1, + ACTIONS(7479), 1, anon_sym_being, ACTIONS(10468), 1, anon_sym_COLON, - ACTIONS(10470), 1, + ACTIONS(10471), 1, anon_sym_COLON_COLON, - ACTIONS(7716), 20, + ACTIONS(7477), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -186888,19 +186460,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [169414] = 5, + [169414] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7455), 1, + ACTIONS(7445), 1, anon_sym_being, - ACTIONS(10468), 1, - anon_sym_COLON, - ACTIONS(10470), 1, - anon_sym_COLON_COLON, - ACTIONS(7453), 20, + ACTIONS(10473), 1, + aux_sym_num_lit_token2, + ACTIONS(7443), 21, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON, anon_sym_cl, anon_sym_in, anon_sym_across, @@ -186918,17 +186489,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [169449] = 3, + [169447] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7742), 2, - anon_sym_COLON, + ACTIONS(7479), 1, anon_sym_being, - ACTIONS(7740), 21, + ACTIONS(10471), 1, + anon_sym_COLON_COLON, + ACTIONS(10475), 1, + anon_sym_COLON, + ACTIONS(7477), 20, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_cl, anon_sym_in, anon_sym_across, @@ -186946,16 +186519,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [169480] = 5, + [169482] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7619), 1, + ACTIONS(7455), 1, anon_sym_being, - ACTIONS(10470), 1, + ACTIONS(10471), 1, anon_sym_COLON_COLON, - ACTIONS(10472), 1, + ACTIONS(10475), 1, anon_sym_COLON, - ACTIONS(7617), 20, + ACTIONS(7453), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -186976,18 +186549,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [169515] = 4, + [169517] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7445), 1, + ACTIONS(7817), 1, anon_sym_being, + ACTIONS(10471), 1, + anon_sym_COLON_COLON, ACTIONS(10475), 1, - aux_sym_num_lit_token2, - ACTIONS(7443), 21, + anon_sym_COLON, + ACTIONS(7815), 20, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON, anon_sym_cl, anon_sym_in, anon_sym_across, @@ -187005,19 +186579,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [169548] = 5, + [169552] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7619), 1, - anon_sym_being, - ACTIONS(10468), 1, + ACTIONS(7645), 2, anon_sym_COLON, - ACTIONS(10470), 1, - anon_sym_COLON_COLON, - ACTIONS(7617), 20, + anon_sym_being, + ACTIONS(7643), 21, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_cl, anon_sym_in, anon_sym_across, @@ -187038,9 +186610,9 @@ static const uint16_t ts_small_parse_table[] = { [169583] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7837), 1, + ACTIONS(7614), 1, anon_sym_being, - ACTIONS(7835), 21, + ACTIONS(7612), 21, sym__ws, sym_comment, anon_sym_POUND_, @@ -187065,9 +186637,9 @@ static const uint16_t ts_small_parse_table[] = { [169613] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7483), 1, + ACTIONS(7660), 1, anon_sym_being, - ACTIONS(7481), 21, + ACTIONS(7658), 21, sym__ws, sym_comment, anon_sym_POUND_, @@ -187092,9 +186664,9 @@ static const uint16_t ts_small_parse_table[] = { [169643] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7714), 1, + ACTIONS(7727), 1, anon_sym_being, - ACTIONS(7712), 21, + ACTIONS(7725), 21, sym__ws, sym_comment, anon_sym_POUND_, @@ -187119,9 +186691,9 @@ static const uint16_t ts_small_parse_table[] = { [169673] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7862), 1, + ACTIONS(7734), 1, anon_sym_being, - ACTIONS(7860), 21, + ACTIONS(7732), 21, sym__ws, sym_comment, anon_sym_POUND_, @@ -187146,9 +186718,9 @@ static const uint16_t ts_small_parse_table[] = { [169703] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7803), 1, + ACTIONS(7594), 1, anon_sym_being, - ACTIONS(7801), 21, + ACTIONS(7592), 21, sym__ws, sym_comment, anon_sym_POUND_, @@ -187173,9 +186745,9 @@ static const uint16_t ts_small_parse_table[] = { [169733] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7819), 1, + ACTIONS(7738), 1, anon_sym_being, - ACTIONS(7817), 21, + ACTIONS(7736), 21, sym__ws, sym_comment, anon_sym_POUND_, @@ -187200,9 +186772,9 @@ static const uint16_t ts_small_parse_table[] = { [169763] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7459), 1, + ACTIONS(7504), 1, anon_sym_being, - ACTIONS(7457), 21, + ACTIONS(7502), 21, sym__ws, sym_comment, anon_sym_POUND_, @@ -187227,9 +186799,9 @@ static const uint16_t ts_small_parse_table[] = { [169793] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7463), 1, + ACTIONS(7497), 1, anon_sym_being, - ACTIONS(7461), 21, + ACTIONS(7495), 21, sym__ws, sym_comment, anon_sym_POUND_, @@ -187254,9 +186826,9 @@ static const uint16_t ts_small_parse_table[] = { [169823] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7571), 1, + ACTIONS(7738), 1, anon_sym_being, - ACTIONS(7569), 21, + ACTIONS(7736), 21, sym__ws, sym_comment, anon_sym_POUND_, @@ -187281,9 +186853,9 @@ static const uint16_t ts_small_parse_table[] = { [169853] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7563), 1, + ACTIONS(7618), 1, anon_sym_being, - ACTIONS(7561), 21, + ACTIONS(7616), 21, sym__ws, sym_comment, anon_sym_POUND_, @@ -187308,9 +186880,9 @@ static const uint16_t ts_small_parse_table[] = { [169883] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7487), 1, + ACTIONS(7676), 1, anon_sym_being, - ACTIONS(7485), 21, + ACTIONS(7674), 21, sym__ws, sym_comment, anon_sym_POUND_, @@ -187335,9 +186907,9 @@ static const uint16_t ts_small_parse_table[] = { [169913] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7499), 1, + ACTIONS(7451), 1, anon_sym_being, - ACTIONS(7497), 21, + ACTIONS(7449), 21, sym__ws, sym_comment, anon_sym_POUND_, @@ -187362,9 +186934,9 @@ static const uint16_t ts_small_parse_table[] = { [169943] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7503), 1, + ACTIONS(7529), 1, anon_sym_being, - ACTIONS(7501), 21, + ACTIONS(7527), 21, sym__ws, sym_comment, anon_sym_POUND_, @@ -187389,9 +186961,9 @@ static const uint16_t ts_small_parse_table[] = { [169973] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7531), 1, + ACTIONS(7536), 1, anon_sym_being, - ACTIONS(7529), 21, + ACTIONS(7534), 21, sym__ws, sym_comment, anon_sym_POUND_, @@ -187416,9 +186988,9 @@ static const uint16_t ts_small_parse_table[] = { [170003] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7535), 1, + ACTIONS(7475), 1, anon_sym_being, - ACTIONS(7533), 21, + ACTIONS(7473), 21, sym__ws, sym_comment, anon_sym_POUND_, @@ -187443,9 +187015,9 @@ static const uint16_t ts_small_parse_table[] = { [170033] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7852), 1, + ACTIONS(7680), 1, anon_sym_being, - ACTIONS(7850), 21, + ACTIONS(7678), 21, sym__ws, sym_comment, anon_sym_POUND_, @@ -187470,9 +187042,9 @@ static const uint16_t ts_small_parse_table[] = { [170063] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7531), 1, + ACTIONS(7684), 1, anon_sym_being, - ACTIONS(7529), 21, + ACTIONS(7682), 21, sym__ws, sym_comment, anon_sym_POUND_, @@ -187497,9 +187069,9 @@ static const uint16_t ts_small_parse_table[] = { [170093] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7507), 1, + ACTIONS(7586), 1, anon_sym_being, - ACTIONS(7505), 21, + ACTIONS(7584), 21, sym__ws, sym_comment, anon_sym_POUND_, @@ -187524,9 +187096,9 @@ static const uint16_t ts_small_parse_table[] = { [170123] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7841), 1, + ACTIONS(7489), 1, anon_sym_being, - ACTIONS(7839), 21, + ACTIONS(7487), 21, sym__ws, sym_comment, anon_sym_POUND_, @@ -187551,9 +187123,9 @@ static const uint16_t ts_small_parse_table[] = { [170153] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7583), 1, + ACTIONS(7696), 1, anon_sym_being, - ACTIONS(7581), 21, + ACTIONS(7694), 21, sym__ws, sym_comment, anon_sym_POUND_, @@ -187578,9 +187150,9 @@ static const uint16_t ts_small_parse_table[] = { [170183] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7595), 1, + ACTIONS(7590), 1, anon_sym_being, - ACTIONS(7593), 21, + ACTIONS(7588), 21, sym__ws, sym_comment, anon_sym_POUND_, @@ -187605,9 +187177,9 @@ static const uint16_t ts_small_parse_table[] = { [170213] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7678), 1, + ACTIONS(7634), 1, anon_sym_being, - ACTIONS(7676), 21, + ACTIONS(7632), 21, sym__ws, sym_comment, anon_sym_POUND_, @@ -187632,9 +187204,9 @@ static const uint16_t ts_small_parse_table[] = { [170243] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7644), 1, + ACTIONS(7861), 1, anon_sym_being, - ACTIONS(7642), 21, + ACTIONS(7859), 21, sym__ws, sym_comment, anon_sym_POUND_, @@ -187659,9 +187231,9 @@ static const uint16_t ts_small_parse_table[] = { [170273] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7648), 1, + ACTIONS(7582), 1, anon_sym_being, - ACTIONS(7646), 21, + ACTIONS(7580), 21, sym__ws, sym_comment, anon_sym_POUND_, @@ -187686,9 +187258,9 @@ static const uint16_t ts_small_parse_table[] = { [170303] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7451), 1, + ACTIONS(7761), 1, anon_sym_being, - ACTIONS(7449), 21, + ACTIONS(7759), 21, sym__ws, sym_comment, anon_sym_POUND_, @@ -187713,9 +187285,9 @@ static const uint16_t ts_small_parse_table[] = { [170333] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7660), 1, + ACTIONS(7765), 1, anon_sym_being, - ACTIONS(7658), 21, + ACTIONS(7763), 21, sym__ws, sym_comment, anon_sym_POUND_, @@ -187740,9 +187312,9 @@ static const uint16_t ts_small_parse_table[] = { [170363] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7664), 1, + ACTIONS(7712), 1, anon_sym_being, - ACTIONS(7662), 21, + ACTIONS(7710), 21, sym__ws, sym_comment, anon_sym_POUND_, @@ -187767,9 +187339,9 @@ static const uint16_t ts_small_parse_table[] = { [170393] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7495), 1, + ACTIONS(7552), 1, anon_sym_being, - ACTIONS(7493), 21, + ACTIONS(7550), 21, sym__ws, sym_comment, anon_sym_POUND_, @@ -187794,9 +187366,9 @@ static const uint16_t ts_small_parse_table[] = { [170423] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7702), 1, + ACTIONS(7789), 1, anon_sym_being, - ACTIONS(7700), 21, + ACTIONS(7787), 21, sym__ws, sym_comment, anon_sym_POUND_, @@ -187821,9 +187393,9 @@ static const uint16_t ts_small_parse_table[] = { [170453] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7607), 1, + ACTIONS(7493), 1, anon_sym_being, - ACTIONS(7605), 21, + ACTIONS(7491), 21, sym__ws, sym_comment, anon_sym_POUND_, @@ -187848,9 +187420,9 @@ static const uint16_t ts_small_parse_table[] = { [170483] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7519), 1, + ACTIONS(7578), 1, anon_sym_being, - ACTIONS(7517), 21, + ACTIONS(7576), 21, sym__ws, sym_comment, anon_sym_POUND_, @@ -187872,40 +187444,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [170513] = 3, + [170513] = 20, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7803), 3, + ACTIONS(5227), 1, + anon_sym_LPAREN, + ACTIONS(10477), 1, anon_sym_POUND, - anon_sym_COLON, + ACTIONS(10479), 1, anon_sym_POUND_QMARK, - ACTIONS(7801), 18, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, - aux_sym_sym_lit_token1, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(10481), 1, anon_sym_POUND_QMARK_AT, + ACTIONS(10483), 1, anon_sym_POUND_SQUOTE, + ACTIONS(10485), 1, anon_sym_SQUOTE, + ACTIONS(10487), 1, anon_sym_COMMA_AT, + ACTIONS(10489), 1, anon_sym_POUND_PLUS, + ACTIONS(10491), 1, anon_sym_POUND_DASH, + ACTIONS(10493), 1, anon_sym_POUNDC, + ACTIONS(10495), 1, anon_sym_POUNDc, - [170542] = 3, + STATE(1716), 1, + sym__bare_set_lit, + STATE(2860), 1, + sym_old_meta_lit, + STATE(2871), 1, + sym_meta_lit, + STATE(2878), 1, + aux_sym_list_lit_repeat1, + STATE(2903), 1, + sym__metadata_lit, + STATE(1694), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [170576] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7595), 3, + ACTIONS(7734), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(7593), 18, + ACTIONS(7732), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -187924,14 +187513,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [170571] = 3, + [170605] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7583), 3, + ACTIONS(7738), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(7581), 18, + ACTIONS(7736), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -187950,14 +187539,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [170600] = 3, + [170634] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7852), 3, + ACTIONS(7738), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(7850), 18, + ACTIONS(7736), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -187976,83 +187565,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [170629] = 3, + [170663] = 20, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7451), 3, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(10497), 1, anon_sym_POUND, - anon_sym_COLON, + ACTIONS(10499), 1, anon_sym_POUND_QMARK, - ACTIONS(7449), 18, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, - aux_sym_sym_lit_token1, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(10501), 1, anon_sym_POUND_QMARK_AT, + ACTIONS(10503), 1, anon_sym_POUND_SQUOTE, + ACTIONS(10505), 1, anon_sym_SQUOTE, + ACTIONS(10507), 1, anon_sym_COMMA_AT, + ACTIONS(10509), 1, anon_sym_POUND_PLUS, + ACTIONS(10511), 1, anon_sym_POUND_DASH, + ACTIONS(10513), 1, anon_sym_POUNDC, + ACTIONS(10515), 1, anon_sym_POUNDc, - [170658] = 20, + STATE(2574), 1, + sym__bare_set_lit, + STATE(2860), 1, + sym_old_meta_lit, + STATE(2871), 1, + sym_meta_lit, + STATE(2878), 1, + aux_sym_list_lit_repeat1, + STATE(2903), 1, + sym__metadata_lit, + STATE(2573), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [170726] = 20, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4857), 1, + ACTIONS(4380), 1, anon_sym_LPAREN, - ACTIONS(10477), 1, + ACTIONS(10517), 1, anon_sym_POUND, - ACTIONS(10479), 1, + ACTIONS(10519), 1, anon_sym_POUND_QMARK, - ACTIONS(10481), 1, + ACTIONS(10521), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(10483), 1, + ACTIONS(10523), 1, anon_sym_POUND_SQUOTE, - ACTIONS(10485), 1, + ACTIONS(10525), 1, anon_sym_SQUOTE, - ACTIONS(10487), 1, + ACTIONS(10527), 1, anon_sym_COMMA_AT, - ACTIONS(10489), 1, + ACTIONS(10529), 1, anon_sym_POUND_PLUS, - ACTIONS(10491), 1, + ACTIONS(10531), 1, anon_sym_POUND_DASH, - ACTIONS(10493), 1, + ACTIONS(10533), 1, anon_sym_POUNDC, - ACTIONS(10495), 1, + ACTIONS(10535), 1, anon_sym_POUNDc, - STATE(1021), 1, + STATE(1159), 1, sym__bare_set_lit, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2876), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2878), 1, aux_sym_list_lit_repeat1, - STATE(2901), 1, + STATE(2903), 1, sym__metadata_lit, - STATE(1022), 3, + STATE(1158), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [170721] = 3, + [170789] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7495), 3, + ACTIONS(7761), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(7493), 18, + ACTIONS(7759), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -188071,14 +187677,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [170750] = 3, + [170818] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7714), 3, + ACTIONS(7765), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(7712), 18, + ACTIONS(7763), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -188097,14 +187703,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [170779] = 3, + [170847] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7664), 3, + ACTIONS(7789), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(7662), 18, + ACTIONS(7787), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -188123,57 +187729,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [170808] = 20, + [170876] = 20, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, - anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10497), 1, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(10537), 1, anon_sym_POUND, - ACTIONS(10499), 1, + ACTIONS(10539), 1, anon_sym_POUND_QMARK, - ACTIONS(10501), 1, + ACTIONS(10541), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(10503), 1, + ACTIONS(10543), 1, anon_sym_POUND_SQUOTE, - ACTIONS(10505), 1, + ACTIONS(10545), 1, anon_sym_SQUOTE, - ACTIONS(10507), 1, + ACTIONS(10547), 1, anon_sym_COMMA_AT, - ACTIONS(10509), 1, + ACTIONS(10549), 1, anon_sym_POUND_PLUS, - ACTIONS(10511), 1, + ACTIONS(10551), 1, anon_sym_POUND_DASH, - ACTIONS(10513), 1, + ACTIONS(10553), 1, anon_sym_POUNDC, - ACTIONS(10515), 1, + ACTIONS(10555), 1, anon_sym_POUNDc, - STATE(1861), 1, + STATE(1312), 1, sym__bare_set_lit, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2876), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2878), 1, aux_sym_list_lit_repeat1, - STATE(2901), 1, + STATE(2903), 1, sym__metadata_lit, - STATE(1862), 3, + STATE(1311), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [170871] = 3, + [170939] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7607), 3, + ACTIONS(7451), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(7605), 18, + ACTIONS(7449), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -188192,100 +187798,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [170900] = 20, + [170968] = 20, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, + ACTIONS(29), 1, + anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5181), 1, - anon_sym_LPAREN, - ACTIONS(10507), 1, - anon_sym_COMMA_AT, - ACTIONS(10517), 1, + ACTIONS(10557), 1, anon_sym_POUND, - ACTIONS(10519), 1, + ACTIONS(10559), 1, anon_sym_POUND_QMARK, - ACTIONS(10521), 1, + ACTIONS(10561), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(10523), 1, + ACTIONS(10563), 1, anon_sym_POUND_SQUOTE, - ACTIONS(10525), 1, + ACTIONS(10565), 1, anon_sym_SQUOTE, - ACTIONS(10527), 1, + ACTIONS(10567), 1, + anon_sym_COMMA_AT, + ACTIONS(10569), 1, anon_sym_POUND_PLUS, - ACTIONS(10529), 1, + ACTIONS(10571), 1, anon_sym_POUND_DASH, - ACTIONS(10531), 1, + ACTIONS(10573), 1, anon_sym_POUNDC, - ACTIONS(10533), 1, + ACTIONS(10575), 1, anon_sym_POUNDc, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(1820), 1, + sym__bare_set_lit, + STATE(2860), 1, sym_old_meta_lit, - STATE(2876), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2878), 1, aux_sym_list_lit_repeat1, - STATE(2901), 1, + STATE(2903), 1, sym__metadata_lit, - STATE(2987), 1, - sym__bare_set_lit, - STATE(2983), 3, + STATE(1819), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [170963] = 20, + [171031] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7696), 3, + anon_sym_POUND, + anon_sym_COLON, + anon_sym_POUND_QMARK, + ACTIONS(7694), 18, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + aux_sym_sym_lit_token1, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_COMMA_AT, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [171060] = 20, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, - anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10497), 1, + ACTIONS(4751), 1, + anon_sym_LPAREN, + ACTIONS(10577), 1, anon_sym_POUND, - ACTIONS(10499), 1, + ACTIONS(10579), 1, anon_sym_POUND_QMARK, - ACTIONS(10501), 1, + ACTIONS(10581), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(10513), 1, - anon_sym_POUNDC, - ACTIONS(10515), 1, - anon_sym_POUNDc, - ACTIONS(10535), 1, + ACTIONS(10583), 1, anon_sym_POUND_SQUOTE, - ACTIONS(10537), 1, + ACTIONS(10585), 1, anon_sym_SQUOTE, - ACTIONS(10539), 1, + ACTIONS(10587), 1, anon_sym_COMMA_AT, - ACTIONS(10541), 1, + ACTIONS(10589), 1, anon_sym_POUND_PLUS, - ACTIONS(10543), 1, + ACTIONS(10591), 1, anon_sym_POUND_DASH, - STATE(1861), 1, + ACTIONS(10593), 1, + anon_sym_POUNDC, + ACTIONS(10595), 1, + anon_sym_POUNDc, + STATE(1023), 1, sym__bare_set_lit, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2876), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2878), 1, aux_sym_list_lit_repeat1, - STATE(2901), 1, + STATE(2903), 1, sym__metadata_lit, - STATE(1862), 3, + STATE(1022), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [171026] = 3, + [171123] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7571), 3, + ACTIONS(7497), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(7569), 18, + ACTIONS(7495), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -188304,57 +187936,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [171055] = 20, + [171152] = 20, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4795), 1, + ACTIONS(4769), 1, anon_sym_LPAREN, - ACTIONS(10545), 1, + ACTIONS(10597), 1, anon_sym_POUND, - ACTIONS(10547), 1, + ACTIONS(10599), 1, anon_sym_POUND_QMARK, - ACTIONS(10549), 1, + ACTIONS(10601), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(10551), 1, + ACTIONS(10603), 1, anon_sym_POUND_SQUOTE, - ACTIONS(10553), 1, + ACTIONS(10605), 1, anon_sym_SQUOTE, - ACTIONS(10555), 1, + ACTIONS(10607), 1, anon_sym_COMMA_AT, - ACTIONS(10557), 1, + ACTIONS(10609), 1, anon_sym_POUND_PLUS, - ACTIONS(10559), 1, + ACTIONS(10611), 1, anon_sym_POUND_DASH, - ACTIONS(10561), 1, + ACTIONS(10613), 1, anon_sym_POUNDC, - ACTIONS(10563), 1, + ACTIONS(10615), 1, anon_sym_POUNDc, - STATE(1461), 1, - sym__bare_set_lit, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2876), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2878), 1, aux_sym_list_lit_repeat1, - STATE(2901), 1, + STATE(2903), 1, sym__metadata_lit, - STATE(1462), 3, + STATE(2974), 1, + sym__bare_set_lit, + STATE(2972), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [171118] = 3, + [171215] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7552), 3, + anon_sym_POUND, + anon_sym_COLON, + anon_sym_POUND_QMARK, + ACTIONS(7550), 18, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + aux_sym_sym_lit_token1, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_COMMA_AT, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [171244] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7531), 3, + ACTIONS(7578), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(7529), 18, + ACTIONS(7576), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -188373,57 +188031,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [171147] = 20, + [171273] = 20, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(10557), 1, + anon_sym_POUND, + ACTIONS(10559), 1, + anon_sym_POUND_QMARK, + ACTIONS(10561), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(10573), 1, + anon_sym_POUNDC, + ACTIONS(10575), 1, + anon_sym_POUNDc, + ACTIONS(10617), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(10619), 1, + anon_sym_SQUOTE, + ACTIONS(10621), 1, + anon_sym_COMMA_AT, + ACTIONS(10623), 1, + anon_sym_POUND_PLUS, + ACTIONS(10625), 1, + anon_sym_POUND_DASH, + STATE(1820), 1, + sym__bare_set_lit, + STATE(2860), 1, + sym_old_meta_lit, + STATE(2871), 1, + sym_meta_lit, + STATE(2878), 1, + aux_sym_list_lit_repeat1, + STATE(2903), 1, + sym__metadata_lit, + STATE(1819), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [171336] = 20, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6049), 1, + ACTIONS(5005), 1, anon_sym_LPAREN, - ACTIONS(10517), 1, + ACTIONS(10597), 1, anon_sym_POUND, - ACTIONS(10531), 1, + ACTIONS(10613), 1, anon_sym_POUNDC, - ACTIONS(10533), 1, + ACTIONS(10615), 1, anon_sym_POUNDc, - ACTIONS(10565), 1, + ACTIONS(10627), 1, anon_sym_POUND_QMARK, - ACTIONS(10567), 1, + ACTIONS(10629), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(10569), 1, + ACTIONS(10631), 1, anon_sym_POUND_SQUOTE, - ACTIONS(10571), 1, + ACTIONS(10633), 1, anon_sym_SQUOTE, - ACTIONS(10573), 1, + ACTIONS(10635), 1, anon_sym_COMMA_AT, - ACTIONS(10575), 1, + ACTIONS(10637), 1, anon_sym_POUND_PLUS, - ACTIONS(10577), 1, + ACTIONS(10639), 1, anon_sym_POUND_DASH, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2876), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2878), 1, aux_sym_list_lit_repeat1, - STATE(2901), 1, + STATE(2903), 1, sym__metadata_lit, - STATE(2987), 1, + STATE(2974), 1, sym__bare_set_lit, - STATE(2983), 3, + STATE(2972), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [171210] = 3, + [171399] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7862), 3, + ACTIONS(7676), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(7860), 18, + ACTIONS(7674), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -188442,14 +188143,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [171239] = 3, + [171428] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7531), 3, + ACTIONS(7529), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(7529), 18, + ACTIONS(7527), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -188468,14 +188169,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [171268] = 3, + [171457] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7644), 3, + ACTIONS(7582), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(7642), 18, + ACTIONS(7580), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -188494,14 +188195,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [171297] = 3, + [171486] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7819), 3, + ACTIONS(7586), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(7817), 18, + ACTIONS(7584), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -188520,14 +188221,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [171326] = 3, + [171515] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7648), 3, + ACTIONS(7504), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(7646), 18, + ACTIONS(7502), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -188546,14 +188247,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [171355] = 3, + [171544] = 20, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7660), 3, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(10497), 1, + anon_sym_POUND, + ACTIONS(10499), 1, + anon_sym_POUND_QMARK, + ACTIONS(10501), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(10513), 1, + anon_sym_POUNDC, + ACTIONS(10515), 1, + anon_sym_POUNDc, + ACTIONS(10641), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(10643), 1, + anon_sym_SQUOTE, + ACTIONS(10645), 1, + anon_sym_COMMA_AT, + ACTIONS(10647), 1, + anon_sym_POUND_PLUS, + ACTIONS(10649), 1, + anon_sym_POUND_DASH, + STATE(2574), 1, + sym__bare_set_lit, + STATE(2860), 1, + sym_old_meta_lit, + STATE(2871), 1, + sym_meta_lit, + STATE(2878), 1, + aux_sym_list_lit_repeat1, + STATE(2903), 1, + sym__metadata_lit, + STATE(2573), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [171607] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7645), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(7658), 18, + ACTIONS(7643), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -188572,14 +188316,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [171384] = 3, + [171636] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7463), 3, + ACTIONS(7590), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(7461), 18, + ACTIONS(7588), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -188598,57 +188342,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [171413] = 20, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(10517), 1, - anon_sym_POUND, - ACTIONS(10531), 1, - anon_sym_POUNDC, - ACTIONS(10533), 1, - anon_sym_POUNDc, - ACTIONS(10579), 1, - anon_sym_POUND_QMARK, - ACTIONS(10581), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(10583), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(10585), 1, - anon_sym_SQUOTE, - ACTIONS(10587), 1, - anon_sym_COMMA_AT, - ACTIONS(10589), 1, - anon_sym_POUND_PLUS, - ACTIONS(10591), 1, - anon_sym_POUND_DASH, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, - sym_old_meta_lit, - STATE(2876), 1, - aux_sym_list_lit_repeat1, - STATE(2901), 1, - sym__metadata_lit, - STATE(2987), 1, - sym__bare_set_lit, - STATE(2983), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [171476] = 3, + [171665] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7563), 3, + ACTIONS(7594), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(7561), 18, + ACTIONS(7592), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -188667,14 +188368,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [171505] = 3, + [171694] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7837), 3, + ACTIONS(7614), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(7835), 18, + ACTIONS(7612), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -188693,14 +188394,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [171534] = 3, + [171723] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7519), 3, + ACTIONS(7618), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(7517), 18, + ACTIONS(7616), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -188719,100 +188420,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [171563] = 20, + [171752] = 20, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4412), 1, + ACTIONS(1468), 1, anon_sym_LPAREN, - ACTIONS(10593), 1, + ACTIONS(10651), 1, anon_sym_POUND, - ACTIONS(10595), 1, + ACTIONS(10653), 1, anon_sym_POUND_QMARK, - ACTIONS(10597), 1, + ACTIONS(10655), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(10599), 1, + ACTIONS(10657), 1, anon_sym_POUND_SQUOTE, - ACTIONS(10601), 1, + ACTIONS(10659), 1, anon_sym_SQUOTE, - ACTIONS(10603), 1, + ACTIONS(10661), 1, anon_sym_COMMA_AT, - ACTIONS(10605), 1, + ACTIONS(10663), 1, anon_sym_POUND_PLUS, - ACTIONS(10607), 1, + ACTIONS(10665), 1, anon_sym_POUND_DASH, - ACTIONS(10609), 1, + ACTIONS(10667), 1, anon_sym_POUNDC, - ACTIONS(10611), 1, + ACTIONS(10669), 1, anon_sym_POUNDc, - STATE(1140), 1, + STATE(1900), 1, sym__bare_set_lit, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2876), 1, - aux_sym_list_lit_repeat1, - STATE(2901), 1, - sym__metadata_lit, - STATE(1139), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [171626] = 20, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(10613), 1, - anon_sym_POUND, - ACTIONS(10615), 1, - anon_sym_POUND_QMARK, - ACTIONS(10617), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(10619), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(10621), 1, - anon_sym_SQUOTE, - ACTIONS(10623), 1, - anon_sym_COMMA_AT, - ACTIONS(10625), 1, - anon_sym_POUND_PLUS, - ACTIONS(10627), 1, - anon_sym_POUND_DASH, - ACTIONS(10629), 1, - anon_sym_POUNDC, - ACTIONS(10631), 1, - anon_sym_POUNDc, - STATE(2604), 1, - sym__bare_set_lit, - STATE(2858), 1, + STATE(2871), 1, sym_meta_lit, - STATE(2859), 1, - sym_old_meta_lit, - STATE(2876), 1, + STATE(2878), 1, aux_sym_list_lit_repeat1, - STATE(2901), 1, + STATE(2903), 1, sym__metadata_lit, - STATE(2596), 3, + STATE(1899), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [171689] = 3, + [171815] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7535), 3, + ACTIONS(7536), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(7533), 18, + ACTIONS(7534), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -188831,40 +188489,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [171718] = 3, + [171844] = 20, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7459), 3, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(10671), 1, anon_sym_POUND, - anon_sym_COLON, + ACTIONS(10673), 1, anon_sym_POUND_QMARK, - ACTIONS(7457), 18, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, - aux_sym_sym_lit_token1, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(10675), 1, anon_sym_POUND_QMARK_AT, + ACTIONS(10677), 1, anon_sym_POUND_SQUOTE, + ACTIONS(10679), 1, anon_sym_SQUOTE, + ACTIONS(10681), 1, anon_sym_COMMA_AT, + ACTIONS(10683), 1, anon_sym_POUND_PLUS, + ACTIONS(10685), 1, anon_sym_POUND_DASH, + ACTIONS(10687), 1, anon_sym_POUNDC, + ACTIONS(10689), 1, anon_sym_POUNDc, - [171747] = 3, + STATE(1528), 1, + sym__bare_set_lit, + STATE(2860), 1, + sym_old_meta_lit, + STATE(2871), 1, + sym_meta_lit, + STATE(2878), 1, + aux_sym_list_lit_repeat1, + STATE(2903), 1, + sym__metadata_lit, + STATE(1527), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [171907] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7702), 3, + ACTIONS(7680), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(7700), 18, + ACTIONS(7678), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -188883,143 +188558,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [171776] = 20, + [171936] = 20, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6049), 1, + ACTIONS(5049), 1, anon_sym_LPAREN, - ACTIONS(10565), 1, - anon_sym_POUND_QMARK, - ACTIONS(10633), 1, + ACTIONS(10597), 1, anon_sym_POUND, - ACTIONS(10635), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(10637), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(10639), 1, - anon_sym_SQUOTE, - ACTIONS(10641), 1, - anon_sym_COMMA_AT, - ACTIONS(10643), 1, - anon_sym_POUND_PLUS, - ACTIONS(10645), 1, - anon_sym_POUND_DASH, - ACTIONS(10647), 1, + ACTIONS(10613), 1, anon_sym_POUNDC, - ACTIONS(10649), 1, + ACTIONS(10615), 1, anon_sym_POUNDc, - STATE(1906), 1, - sym__bare_set_lit, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, - sym_old_meta_lit, - STATE(2876), 1, - aux_sym_list_lit_repeat1, - STATE(2901), 1, - sym__metadata_lit, - STATE(1904), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [171839] = 20, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(6225), 1, - anon_sym_LPAREN, - ACTIONS(10651), 1, - anon_sym_POUND, - ACTIONS(10653), 1, + ACTIONS(10691), 1, anon_sym_POUND_QMARK, - ACTIONS(10655), 1, + ACTIONS(10693), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(10657), 1, + ACTIONS(10695), 1, anon_sym_POUND_SQUOTE, - ACTIONS(10659), 1, + ACTIONS(10697), 1, anon_sym_SQUOTE, - ACTIONS(10661), 1, + ACTIONS(10699), 1, anon_sym_COMMA_AT, - ACTIONS(10663), 1, + ACTIONS(10701), 1, anon_sym_POUND_PLUS, - ACTIONS(10665), 1, + ACTIONS(10703), 1, anon_sym_POUND_DASH, - ACTIONS(10667), 1, - anon_sym_POUNDC, - ACTIONS(10669), 1, - anon_sym_POUNDc, - STATE(1709), 1, - sym__bare_set_lit, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2876), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2878), 1, aux_sym_list_lit_repeat1, - STATE(2901), 1, + STATE(2903), 1, sym__metadata_lit, - STATE(1708), 3, + STATE(2974), 1, + sym__bare_set_lit, + STATE(2972), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [171902] = 20, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, + [171999] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(10613), 1, + ACTIONS(7634), 3, anon_sym_POUND, - ACTIONS(10615), 1, + anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(10617), 1, + ACTIONS(7632), 18, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + aux_sym_sym_lit_token1, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_POUND_QMARK_AT, - ACTIONS(10629), 1, - anon_sym_POUNDC, - ACTIONS(10631), 1, - anon_sym_POUNDc, - ACTIONS(10671), 1, anon_sym_POUND_SQUOTE, - ACTIONS(10673), 1, anon_sym_SQUOTE, - ACTIONS(10675), 1, anon_sym_COMMA_AT, - ACTIONS(10677), 1, anon_sym_POUND_PLUS, - ACTIONS(10679), 1, anon_sym_POUND_DASH, - STATE(2604), 1, - sym__bare_set_lit, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, - sym_old_meta_lit, - STATE(2876), 1, - aux_sym_list_lit_repeat1, - STATE(2901), 1, - sym__metadata_lit, - STATE(2596), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [171965] = 3, + anon_sym_POUNDC, + anon_sym_POUNDc, + [172028] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7841), 3, + ACTIONS(7684), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(7839), 18, + ACTIONS(7682), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -189038,14 +188653,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [171994] = 3, + [172057] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7742), 3, + ACTIONS(7660), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(7740), 18, + ACTIONS(7658), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -189064,14 +188679,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [172023] = 3, + [172086] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7678), 3, + ACTIONS(7861), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(7676), 18, + ACTIONS(7859), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -189090,14 +188705,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [172052] = 3, + [172115] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7507), 3, + ACTIONS(7727), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(7505), 18, + ACTIONS(7725), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -189116,169 +188731,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [172081] = 20, + [172144] = 20, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5181), 1, + ACTIONS(5005), 1, anon_sym_LPAREN, - ACTIONS(10517), 1, + ACTIONS(10597), 1, anon_sym_POUND, - ACTIONS(10519), 1, + ACTIONS(10613), 1, + anon_sym_POUNDC, + ACTIONS(10615), 1, + anon_sym_POUNDc, + ACTIONS(10621), 1, + anon_sym_COMMA_AT, + ACTIONS(10627), 1, anon_sym_POUND_QMARK, - ACTIONS(10521), 1, + ACTIONS(10629), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(10523), 1, + ACTIONS(10631), 1, anon_sym_POUND_SQUOTE, - ACTIONS(10525), 1, + ACTIONS(10633), 1, anon_sym_SQUOTE, - ACTIONS(10527), 1, + ACTIONS(10637), 1, anon_sym_POUND_PLUS, - ACTIONS(10529), 1, + ACTIONS(10639), 1, anon_sym_POUND_DASH, - ACTIONS(10531), 1, - anon_sym_POUNDC, - ACTIONS(10533), 1, - anon_sym_POUNDc, - ACTIONS(10681), 1, - anon_sym_COMMA_AT, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2876), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2878), 1, aux_sym_list_lit_repeat1, - STATE(2901), 1, + STATE(2903), 1, sym__metadata_lit, - STATE(2987), 1, + STATE(2974), 1, sym__bare_set_lit, - STATE(2983), 3, + STATE(2972), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [172144] = 20, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, + [172207] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(1612), 1, - anon_sym_LPAREN, - ACTIONS(10633), 1, + ACTIONS(7475), 3, anon_sym_POUND, - ACTIONS(10647), 1, - anon_sym_POUNDC, - ACTIONS(10649), 1, - anon_sym_POUNDc, - ACTIONS(10683), 1, + anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(10685), 1, + ACTIONS(7473), 18, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + aux_sym_sym_lit_token1, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_POUND_QMARK_AT, - ACTIONS(10687), 1, anon_sym_POUND_SQUOTE, - ACTIONS(10689), 1, anon_sym_SQUOTE, - ACTIONS(10691), 1, anon_sym_COMMA_AT, - ACTIONS(10693), 1, anon_sym_POUND_PLUS, - ACTIONS(10695), 1, anon_sym_POUND_DASH, - STATE(1906), 1, - sym__bare_set_lit, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, - sym_old_meta_lit, - STATE(2876), 1, - aux_sym_list_lit_repeat1, - STATE(2901), 1, - sym__metadata_lit, - STATE(1904), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [172207] = 20, + anon_sym_POUNDC, + anon_sym_POUNDc, + [172236] = 20, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4761), 1, + ACTIONS(5049), 1, anon_sym_LPAREN, - ACTIONS(10697), 1, + ACTIONS(10651), 1, anon_sym_POUND, - ACTIONS(10699), 1, + ACTIONS(10667), 1, + anon_sym_POUNDC, + ACTIONS(10669), 1, + anon_sym_POUNDc, + ACTIONS(10691), 1, anon_sym_POUND_QMARK, - ACTIONS(10701), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(10703), 1, - anon_sym_POUND_SQUOTE, ACTIONS(10705), 1, - anon_sym_SQUOTE, + anon_sym_POUND_QMARK_AT, ACTIONS(10707), 1, - anon_sym_COMMA_AT, + anon_sym_POUND_SQUOTE, ACTIONS(10709), 1, - anon_sym_POUND_PLUS, + anon_sym_SQUOTE, ACTIONS(10711), 1, - anon_sym_POUND_DASH, + anon_sym_COMMA_AT, ACTIONS(10713), 1, - anon_sym_POUNDC, + anon_sym_POUND_PLUS, ACTIONS(10715), 1, - anon_sym_POUNDc, - STATE(1519), 1, + anon_sym_POUND_DASH, + STATE(1900), 1, sym__bare_set_lit, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, + STATE(2860), 1, sym_old_meta_lit, - STATE(2876), 1, + STATE(2871), 1, + sym_meta_lit, + STATE(2878), 1, aux_sym_list_lit_repeat1, - STATE(2901), 1, + STATE(2903), 1, sym__metadata_lit, - STATE(1518), 3, + STATE(1899), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [172270] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7503), 3, - anon_sym_POUND, - anon_sym_COLON, - anon_sym_POUND_QMARK, - ACTIONS(7501), 18, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, - aux_sym_sym_lit_token1, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, [172299] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7499), 3, + ACTIONS(7489), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(7497), 18, + ACTIONS(7487), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -189300,11 +188872,11 @@ static const uint16_t ts_small_parse_table[] = { [172328] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7487), 3, + ACTIONS(7493), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(7485), 18, + ACTIONS(7491), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -189326,11 +188898,11 @@ static const uint16_t ts_small_parse_table[] = { [172357] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7483), 3, + ACTIONS(7712), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(7481), 18, + ACTIONS(7710), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -189349,7 +188921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [172386] = 15, + [172386] = 14, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, @@ -189358,102 +188930,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(10450), 1, + ACTIONS(10454), 1, anon_sym_COMMA, ACTIONS(10719), 1, anon_sym_POUND_, - STATE(2007), 1, - sym_unquoting_lit, - STATE(2010), 1, - sym_list_lit, - STATE(2901), 1, + STATE(2903), 1, sym__metadata_lit, - STATE(2973), 1, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(3067), 1, + STATE(3100), 1, aux_sym_list_lit_repeat1, ACTIONS(10717), 2, sym__ws, sym_comment, - STATE(1877), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(2849), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [172437] = 15, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(8099), 1, - anon_sym_CARET, - ACTIONS(8101), 1, - anon_sym_POUND_CARET, - ACTIONS(10450), 1, - anon_sym_COMMA, - ACTIONS(10719), 1, - anon_sym_POUND_, - STATE(2015), 1, + STATE(1981), 2, sym_list_lit, - STATE(2016), 1, sym_unquoting_lit, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3067), 1, - aux_sym_list_lit_repeat1, - ACTIONS(10721), 2, - sym__ws, - sym_comment, - STATE(1877), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2860), 3, + STATE(2865), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172488] = 11, + [172435] = 11, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10723), 1, + ACTIONS(10721), 1, aux_sym_accumulation_verb_token1, - ACTIONS(10727), 1, + ACTIONS(10725), 1, anon_sym_and, - ACTIONS(10729), 1, + ACTIONS(10727), 1, anon_sym_with, - ACTIONS(10731), 1, + ACTIONS(10729), 1, anon_sym_do, - ACTIONS(10735), 1, + ACTIONS(10733), 1, anon_sym_repeat, - ACTIONS(10739), 1, + ACTIONS(10737), 1, anon_sym_else, - ACTIONS(10725), 2, + ACTIONS(10723), 2, anon_sym_for, anon_sym_as, - ACTIONS(10733), 2, + ACTIONS(10731), 2, anon_sym_while, anon_sym_until, - ACTIONS(10741), 3, + ACTIONS(10739), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - ACTIONS(10737), 6, + ACTIONS(10735), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - [172531] = 15, + [172478] = 15, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, @@ -189462,60 +188997,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(10450), 1, + ACTIONS(10454), 1, anon_sym_COMMA, ACTIONS(10719), 1, anon_sym_POUND_, - STATE(2009), 1, - sym_list_lit, - STATE(2020), 1, + STATE(2015), 1, sym_unquoting_lit, - STATE(2901), 1, + STATE(2034), 1, + sym_list_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2973), 1, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(3067), 1, + STATE(3100), 1, aux_sym_list_lit_repeat1, - ACTIONS(10743), 2, + ACTIONS(10741), 2, sym__ws, sym_comment, - STATE(1877), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(3072), 3, + STATE(3084), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172582] = 5, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(1610), 1, - aux_sym_sym_lit_token1, - ACTIONS(10747), 1, - aux_sym_for_clause_word_token1, - STATE(1969), 1, - sym_sym_lit, - ACTIONS(10745), 16, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [172613] = 15, + [172529] = 15, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, @@ -189524,81 +189033,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(10450), 1, + ACTIONS(10454), 1, anon_sym_COMMA, ACTIONS(10719), 1, anon_sym_POUND_, - STATE(2012), 1, - sym_list_lit, - STATE(2014), 1, + STATE(1986), 1, sym_unquoting_lit, - STATE(2901), 1, + STATE(2017), 1, + sym_list_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2973), 1, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(3067), 1, + STATE(3100), 1, aux_sym_list_lit_repeat1, - ACTIONS(10743), 2, + ACTIONS(10741), 2, sym__ws, sym_comment, - STATE(1877), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(3072), 3, + STATE(3084), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172664] = 11, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(10749), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(10753), 1, - anon_sym_and, - ACTIONS(10755), 1, - anon_sym_with, - ACTIONS(10757), 1, - anon_sym_do, - ACTIONS(10761), 1, - anon_sym_repeat, - ACTIONS(10765), 1, - anon_sym_else, - ACTIONS(10751), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(10759), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(10767), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - ACTIONS(10763), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - [172707] = 6, + [172580] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10772), 1, + ACTIONS(10745), 1, anon_sym_POUND_, - ACTIONS(7405), 2, - anon_sym_POUND, - anon_sym_POUND_QMARK, - ACTIONS(10769), 2, + ACTIONS(10743), 2, sym__ws, sym_comment, - STATE(2853), 3, + ACTIONS(10747), 2, + anon_sym_POUND, + anon_sym_POUND_QMARK, + STATE(2868), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(7407), 11, + ACTIONS(10749), 11, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -189610,7 +189087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [172740] = 14, + [172613] = 15, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, @@ -189619,33 +189096,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(10450), 1, + ACTIONS(10454), 1, anon_sym_COMMA, ACTIONS(10719), 1, anon_sym_POUND_, - STATE(2901), 1, + STATE(2005), 1, + sym_list_lit, + STATE(2006), 1, + sym_unquoting_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2973), 1, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(3067), 1, + STATE(3100), 1, aux_sym_list_lit_repeat1, - ACTIONS(10743), 2, + ACTIONS(10751), 2, sym__ws, sym_comment, - STATE(1993), 2, - sym_list_lit, - sym_unquoting_lit, - STATE(1877), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(3072), 3, + STATE(2854), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172789] = 15, + [172664] = 15, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, @@ -189654,60 +189132,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(10450), 1, + ACTIONS(10454), 1, anon_sym_COMMA, ACTIONS(10719), 1, anon_sym_POUND_, - STATE(1980), 1, - sym_list_lit, - STATE(2021), 1, + STATE(1979), 1, sym_unquoting_lit, - STATE(2901), 1, + STATE(2007), 1, + sym_list_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2973), 1, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(3067), 1, + STATE(3100), 1, aux_sym_list_lit_repeat1, - ACTIONS(10743), 2, + ACTIONS(10753), 2, sym__ws, sym_comment, - STATE(1877), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(3072), 3, + STATE(2855), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172840] = 5, + [172715] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10775), 1, - aux_sym_sym_lit_token1, - ACTIONS(10779), 1, - aux_sym_for_clause_word_token1, - STATE(2793), 1, - sym_kwd_symbol, - ACTIONS(10777), 16, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [172871] = 15, + ACTIONS(10745), 1, + anon_sym_POUND_, + ACTIONS(10743), 2, + sym__ws, + sym_comment, + ACTIONS(10755), 2, + anon_sym_POUND, + anon_sym_POUND_QMARK, + STATE(2868), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(10757), 11, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_COMMA_AT, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [172748] = 15, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, @@ -189716,88 +189195,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(10450), 1, + ACTIONS(10454), 1, anon_sym_COMMA, ACTIONS(10719), 1, anon_sym_POUND_, - STATE(2022), 1, + STATE(1987), 1, sym_list_lit, - STATE(2023), 1, + STATE(1988), 1, sym_unquoting_lit, - STATE(2901), 1, + STATE(2903), 1, sym__metadata_lit, - STATE(2973), 1, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(3067), 1, + STATE(3100), 1, aux_sym_list_lit_repeat1, - ACTIONS(10781), 2, + ACTIONS(10741), 2, sym__ws, sym_comment, - STATE(1877), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2861), 3, + STATE(3084), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172922] = 6, + [172799] = 15, + ACTIONS(29), 1, + anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10785), 1, - anon_sym_POUND_, - ACTIONS(10783), 2, - sym__ws, - sym_comment, - ACTIONS(10787), 2, - anon_sym_POUND, - anon_sym_POUND_QMARK, - STATE(2868), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(10789), 11, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [172955] = 6, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(10785), 1, + ACTIONS(10454), 1, + anon_sym_COMMA, + ACTIONS(10719), 1, anon_sym_POUND_, - ACTIONS(10791), 2, + STATE(1989), 1, + sym_list_lit, + STATE(1990), 1, + sym_unquoting_lit, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3100), 1, + aux_sym_list_lit_repeat1, + ACTIONS(10741), 2, sym__ws, sym_comment, - ACTIONS(10793), 2, - anon_sym_POUND, - anon_sym_POUND_QMARK, - STATE(2869), 3, + STATE(1790), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(3084), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(10795), 11, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [172988] = 15, + [172850] = 15, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, @@ -189806,34 +189267,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(10450), 1, + ACTIONS(10454), 1, anon_sym_COMMA, ACTIONS(10719), 1, anon_sym_POUND_, - STATE(1982), 1, + STATE(1980), 1, sym_list_lit, STATE(1983), 1, sym_unquoting_lit, - STATE(2901), 1, + STATE(2903), 1, sym__metadata_lit, - STATE(2973), 1, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(3067), 1, + STATE(3100), 1, aux_sym_list_lit_repeat1, - ACTIONS(10743), 2, + ACTIONS(10759), 2, sym__ws, sym_comment, - STATE(1877), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(3072), 3, + STATE(2863), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173039] = 15, + [172901] = 15, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, @@ -189842,34 +189303,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(10450), 1, + ACTIONS(10454), 1, anon_sym_COMMA, ACTIONS(10719), 1, anon_sym_POUND_, - STATE(1985), 1, + STATE(1991), 1, sym_list_lit, - STATE(1987), 1, + STATE(1992), 1, sym_unquoting_lit, - STATE(2901), 1, + STATE(2903), 1, sym__metadata_lit, - STATE(2973), 1, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(3067), 1, + STATE(3100), 1, aux_sym_list_lit_repeat1, - ACTIONS(10743), 2, + ACTIONS(10761), 2, sym__ws, sym_comment, - STATE(1877), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(3072), 3, + STATE(2859), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173090] = 15, + [172952] = 15, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, @@ -189878,34 +189339,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(10450), 1, + ACTIONS(10454), 1, anon_sym_COMMA, ACTIONS(10719), 1, anon_sym_POUND_, - STATE(2024), 1, + STATE(1993), 1, sym_list_lit, - STATE(2025), 1, + STATE(1994), 1, sym_unquoting_lit, - STATE(2901), 1, + STATE(2903), 1, sym__metadata_lit, - STATE(2973), 1, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(3067), 1, + STATE(3100), 1, aux_sym_list_lit_repeat1, - ACTIONS(10797), 2, + ACTIONS(10763), 2, sym__ws, sym_comment, - STATE(1877), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2863), 3, + STATE(2862), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173141] = 15, + [173003] = 15, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, @@ -189914,34 +189375,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(10450), 1, + ACTIONS(10454), 1, anon_sym_COMMA, ACTIONS(10719), 1, anon_sym_POUND_, - STATE(1995), 1, + STATE(2018), 1, sym_list_lit, - STATE(1998), 1, + STATE(2020), 1, sym_unquoting_lit, - STATE(2901), 1, + STATE(2903), 1, sym__metadata_lit, - STATE(2973), 1, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(3067), 1, + STATE(3100), 1, aux_sym_list_lit_repeat1, - ACTIONS(10743), 2, + ACTIONS(10741), 2, sym__ws, sym_comment, - STATE(1877), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(3072), 3, + STATE(3084), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [173054] = 6, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(10745), 1, + anon_sym_POUND_, + ACTIONS(10765), 2, + sym__ws, + sym_comment, + ACTIONS(10767), 2, + anon_sym_POUND, + anon_sym_POUND_QMARK, + STATE(2853), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173192] = 15, + ACTIONS(10769), 11, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_COMMA_AT, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [173087] = 15, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, @@ -189950,34 +189438,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(10450), 1, + ACTIONS(10454), 1, anon_sym_COMMA, ACTIONS(10719), 1, anon_sym_POUND_, - STATE(2026), 1, + STATE(1984), 1, sym_list_lit, - STATE(2027), 1, + STATE(1985), 1, sym_unquoting_lit, - STATE(2901), 1, + STATE(2903), 1, sym__metadata_lit, - STATE(2973), 1, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(3067), 1, + STATE(3100), 1, aux_sym_list_lit_repeat1, - ACTIONS(10799), 2, + ACTIONS(10771), 2, sym__ws, sym_comment, - STATE(1877), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2865), 3, + STATE(2864), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173243] = 15, + [173138] = 15, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, @@ -189986,34 +189474,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(10450), 1, + ACTIONS(10454), 1, anon_sym_COMMA, ACTIONS(10719), 1, anon_sym_POUND_, - STATE(1999), 1, + STATE(2022), 1, sym_list_lit, - STATE(2000), 1, + STATE(2023), 1, sym_unquoting_lit, - STATE(2901), 1, + STATE(2903), 1, sym__metadata_lit, - STATE(2973), 1, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(3067), 1, + STATE(3100), 1, aux_sym_list_lit_repeat1, - ACTIONS(10743), 2, + ACTIONS(10741), 2, sym__ws, sym_comment, - STATE(1877), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(3072), 3, + STATE(3084), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173294] = 15, + [173189] = 15, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, @@ -190022,34 +189510,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(10450), 1, + ACTIONS(10454), 1, anon_sym_COMMA, ACTIONS(10719), 1, anon_sym_POUND_, - STATE(2001), 1, + STATE(1997), 1, sym_list_lit, - STATE(2002), 1, + STATE(1998), 1, sym_unquoting_lit, - STATE(2901), 1, + STATE(2903), 1, sym__metadata_lit, - STATE(2973), 1, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(3067), 1, + STATE(3100), 1, aux_sym_list_lit_repeat1, - ACTIONS(10801), 2, + ACTIONS(10741), 2, sym__ws, sym_comment, - STATE(1877), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2871), 3, + STATE(3084), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173345] = 15, + [173240] = 15, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, @@ -190058,76 +189546,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(10450), 1, + ACTIONS(10454), 1, anon_sym_COMMA, ACTIONS(10719), 1, anon_sym_POUND_, - STATE(2003), 1, + STATE(1999), 1, sym_list_lit, - STATE(2004), 1, + STATE(2000), 1, sym_unquoting_lit, - STATE(2901), 1, + STATE(2903), 1, sym__metadata_lit, - STATE(2973), 1, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(3067), 1, + STATE(3100), 1, aux_sym_list_lit_repeat1, - ACTIONS(10803), 2, + ACTIONS(10741), 2, sym__ws, sym_comment, - STATE(1877), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2855), 3, + STATE(3084), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173396] = 6, + [173291] = 14, + ACTIONS(29), 1, + anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10785), 1, + ACTIONS(8099), 1, + anon_sym_CARET, + ACTIONS(8101), 1, + anon_sym_POUND_CARET, + ACTIONS(10454), 1, + anon_sym_COMMA, + ACTIONS(10719), 1, anon_sym_POUND_, - ACTIONS(10805), 2, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3100), 1, + aux_sym_list_lit_repeat1, + ACTIONS(10741), 2, sym__ws, sym_comment, - ACTIONS(10807), 2, - anon_sym_POUND, - anon_sym_POUND_QMARK, - STATE(2853), 3, + STATE(2016), 2, + sym_list_lit, + sym_unquoting_lit, + STATE(1790), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(3084), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(10809), 11, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [173429] = 6, + [173340] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(1466), 1, + aux_sym_sym_lit_token1, + ACTIONS(10775), 1, + aux_sym_for_clause_word_token1, + STATE(1909), 1, + sym_sym_lit, + ACTIONS(10773), 16, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [173371] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10785), 1, + ACTIONS(10777), 1, + aux_sym_sym_lit_token1, + ACTIONS(10781), 1, + aux_sym_for_clause_word_token1, + STATE(2786), 1, + sym_kwd_symbol, + ACTIONS(10779), 16, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [173402] = 6, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(10786), 1, anon_sym_POUND_, - ACTIONS(10805), 2, - sym__ws, - sym_comment, - ACTIONS(10811), 2, + ACTIONS(7405), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - STATE(2853), 3, + ACTIONS(10783), 2, + sym__ws, + sym_comment, + STATE(2868), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(10813), 11, + ACTIONS(7407), 11, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -190139,7 +189687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [173462] = 14, + [173435] = 15, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, @@ -190148,33 +189696,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(10450), 1, + ACTIONS(10454), 1, anon_sym_COMMA, ACTIONS(10719), 1, anon_sym_POUND_, - STATE(2901), 1, + STATE(2003), 1, + sym_list_lit, + STATE(2004), 1, + sym_unquoting_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2973), 1, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(3067), 1, + STATE(3100), 1, aux_sym_list_lit_repeat1, - ACTIONS(10815), 2, + ACTIONS(10789), 2, sym__ws, sym_comment, - STATE(1979), 2, - sym_list_lit, - sym_unquoting_lit, - STATE(1877), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2854), 3, + STATE(2849), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173511] = 15, + [173486] = 15, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, @@ -190183,69 +189732,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(10450), 1, + ACTIONS(10454), 1, anon_sym_COMMA, ACTIONS(10719), 1, anon_sym_POUND_, - STATE(2018), 1, + STATE(2001), 1, sym_list_lit, - STATE(2019), 1, + STATE(2002), 1, sym_unquoting_lit, - STATE(2901), 1, + STATE(2903), 1, sym__metadata_lit, - STATE(2973), 1, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(3067), 1, + STATE(3100), 1, aux_sym_list_lit_repeat1, - ACTIONS(10743), 2, + ACTIONS(10791), 2, sym__ws, sym_comment, - STATE(1877), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(3072), 3, + STATE(2848), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173562] = 15, - ACTIONS(29), 1, - anon_sym_LPAREN, + [173537] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8099), 1, - anon_sym_CARET, - ACTIONS(8101), 1, - anon_sym_POUND_CARET, - ACTIONS(10450), 1, - anon_sym_COMMA, - ACTIONS(10719), 1, + ACTIONS(10745), 1, anon_sym_POUND_, - STATE(2011), 1, - sym_list_lit, - STATE(2034), 1, - sym_unquoting_lit, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3067), 1, - aux_sym_list_lit_repeat1, - ACTIONS(10817), 2, + ACTIONS(10793), 2, sym__ws, sym_comment, - STATE(1877), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(2851), 3, + ACTIONS(10795), 2, + anon_sym_POUND, + anon_sym_POUND_QMARK, + STATE(2850), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, + ACTIONS(10797), 11, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_COMMA_AT, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [173570] = 11, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(10799), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(10803), 1, + anon_sym_and, + ACTIONS(10805), 1, + anon_sym_with, + ACTIONS(10807), 1, + anon_sym_do, + ACTIONS(10811), 1, + anon_sym_repeat, + ACTIONS(10815), 1, + anon_sym_else, + ACTIONS(10801), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(10809), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(10817), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + ACTIONS(10813), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, [173613] = 5, ACTIONS(47), 1, sym_block_comment, @@ -190253,10 +189825,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, ACTIONS(10821), 1, anon_sym_COLON_COLON, - ACTIONS(7619), 2, + ACTIONS(7455), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(7617), 14, + ACTIONS(7453), 14, sym__ws, sym_comment, anon_sym_POUND_, @@ -190278,10 +189850,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, ACTIONS(10821), 1, anon_sym_COLON_COLON, - ACTIONS(7718), 2, + ACTIONS(7479), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(7716), 14, + ACTIONS(7477), 14, sym__ws, sym_comment, anon_sym_POUND_, @@ -190303,10 +189875,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, ACTIONS(10821), 1, anon_sym_COLON_COLON, - ACTIONS(7455), 2, + ACTIONS(7817), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(7453), 14, + ACTIONS(7815), 14, sym__ws, sym_comment, anon_sym_POUND_, @@ -190321,25 +189893,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [173703] = 9, + [173703] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10825), 1, - anon_sym_CARET, - ACTIONS(10828), 1, - anon_sym_POUND_CARET, - STATE(2858), 1, - sym_meta_lit, - STATE(2859), 1, - sym_old_meta_lit, - STATE(2876), 1, - aux_sym_list_lit_repeat1, - STATE(2901), 1, - sym__metadata_lit, - ACTIONS(10823), 2, + ACTIONS(10823), 1, + aux_sym_num_lit_token2, + ACTIONS(7445), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(10831), 9, + ACTIONS(7443), 14, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_POUND_QMARK_AT, anon_sym_POUND_SQUOTE, @@ -190349,13 +189916,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [173740] = 3, + [173730] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10835), 2, + ACTIONS(10827), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(10833), 15, + ACTIONS(10825), 15, sym__ws, sym_comment, anon_sym_POUND_, @@ -190371,42 +189938,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [173765] = 3, + [173755] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10745), 1, - anon_sym_being, - ACTIONS(10747), 16, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [173790] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(10839), 2, - anon_sym_POUND, - anon_sym_POUND_QMARK, - ACTIONS(10837), 15, - sym__ws, - sym_comment, - anon_sym_POUND_, + ACTIONS(10831), 1, anon_sym_CARET, + ACTIONS(10834), 1, anon_sym_POUND_CARET, + STATE(2860), 1, + sym_old_meta_lit, + STATE(2871), 1, + sym_meta_lit, + STATE(2878), 1, + aux_sym_list_lit_repeat1, + STATE(2903), 1, + sym__metadata_lit, + ACTIONS(10829), 2, + anon_sym_POUND, + anon_sym_POUND_QMARK, + ACTIONS(10837), 9, anon_sym_LPAREN, - anon_sym_LBRACE, anon_sym_POUND_QMARK_AT, anon_sym_POUND_SQUOTE, anon_sym_SQUOTE, @@ -190415,13 +189966,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [173815] = 3, + [173792] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10843), 2, + ACTIONS(10841), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(10841), 15, + ACTIONS(10839), 15, sym__ws, sym_comment, anon_sym_POUND_, @@ -190437,35 +189988,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [173840] = 3, + [173817] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10777), 1, - anon_sym_being, - ACTIONS(10779), 16, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [173865] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(10847), 2, + ACTIONS(10845), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(10845), 15, + ACTIONS(10843), 15, sym__ws, sym_comment, anon_sym_POUND_, @@ -190481,13 +190010,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [173890] = 3, + [173842] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10851), 2, + ACTIONS(10849), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(10849), 15, + ACTIONS(10847), 15, sym__ws, sym_comment, anon_sym_POUND_, @@ -190503,13 +190032,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [173915] = 3, + [173867] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(10779), 1, + anon_sym_being, + ACTIONS(10781), 16, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [173892] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(10773), 1, + anon_sym_being, + ACTIONS(10775), 16, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [173917] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10855), 2, + ACTIONS(10853), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(10853), 15, + ACTIONS(10851), 15, sym__ws, sym_comment, anon_sym_POUND_, @@ -190525,13 +190098,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [173940] = 3, + [173942] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10859), 2, + ACTIONS(10857), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(10857), 15, + ACTIONS(10855), 15, sym__ws, sym_comment, anon_sym_POUND_, @@ -190547,21 +190120,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [173965] = 4, + [173967] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10861), 1, - aux_sym_num_lit_token2, - ACTIONS(7445), 2, + ACTIONS(10861), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(7443), 14, + ACTIONS(10859), 15, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_POUND_QMARK_AT, anon_sym_POUND_SQUOTE, anon_sym_SQUOTE, @@ -190595,11 +190167,11 @@ static const uint16_t ts_small_parse_table[] = { [174017] = 14, ACTIONS(47), 1, sym_block_comment, - ACTIONS(1612), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(7285), 1, + ACTIONS(7377), 1, aux_sym_char_lit_token1, - ACTIONS(7287), 1, + ACTIONS(7379), 1, anon_sym_LBRACE, ACTIONS(8099), 1, anon_sym_CARET, @@ -190607,30 +190179,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(10867), 1, aux_sym__form_token1, - STATE(1977), 1, + STATE(1314), 1, sym_list_lit, - STATE(2901), 1, + STATE(2903), 1, sym__metadata_lit, - STATE(2973), 1, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(3031), 1, + STATE(3050), 1, sym_array_dimension, - STATE(3103), 1, + STATE(3060), 1, aux_sym_list_lit_repeat1, - STATE(1892), 3, + STATE(1289), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, [174062] = 14, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, + ACTIONS(4380), 1, anon_sym_LPAREN, - ACTIONS(7309), 1, + ACTIONS(7337), 1, aux_sym_char_lit_token1, - ACTIONS(7311), 1, + ACTIONS(7339), 1, anon_sym_LBRACE, ACTIONS(8099), 1, anon_sym_CARET, @@ -190638,30 +190210,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(10869), 1, aux_sym__form_token1, - STATE(2901), 1, - sym__metadata_lit, - STATE(2929), 1, + STATE(1161), 1, sym_list_lit, - STATE(2973), 1, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(3014), 1, + STATE(3012), 1, sym_array_dimension, - STATE(3077), 1, + STATE(3103), 1, aux_sym_list_lit_repeat1, - STATE(2991), 3, + STATE(1137), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, [174107] = 14, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5181), 1, + ACTIONS(4751), 1, anon_sym_LPAREN, - ACTIONS(7309), 1, + ACTIONS(7389), 1, aux_sym_char_lit_token1, - ACTIONS(7311), 1, + ACTIONS(7391), 1, anon_sym_LBRACE, ACTIONS(8099), 1, anon_sym_CARET, @@ -190669,30 +190241,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(10871), 1, aux_sym__form_token1, - STATE(2901), 1, - sym__metadata_lit, - STATE(2929), 1, + STATE(1027), 1, sym_list_lit, - STATE(2973), 1, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(3002), 1, + STATE(3042), 1, sym_array_dimension, - STATE(3071), 1, + STATE(3093), 1, aux_sym_list_lit_repeat1, - STATE(2991), 3, + STATE(1109), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, [174152] = 14, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6049), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(7285), 1, + ACTIONS(7313), 1, aux_sym_char_lit_token1, - ACTIONS(7287), 1, + ACTIONS(7315), 1, anon_sym_LBRACE, ACTIONS(8099), 1, anon_sym_CARET, @@ -190700,30 +190272,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(10873), 1, aux_sym__form_token1, - STATE(1977), 1, + STATE(1727), 1, sym_list_lit, - STATE(2901), 1, + STATE(2903), 1, sym__metadata_lit, - STATE(2973), 1, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(3020), 1, + STATE(3018), 1, sym_array_dimension, - STATE(3074), 1, + STATE(3064), 1, aux_sym_list_lit_repeat1, - STATE(1892), 3, + STATE(1680), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, [174197] = 14, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4761), 1, + ACTIONS(4769), 1, anon_sym_LPAREN, - ACTIONS(7365), 1, + ACTIONS(7297), 1, aux_sym_char_lit_token1, - ACTIONS(7367), 1, + ACTIONS(7299), 1, anon_sym_LBRACE, ACTIONS(8099), 1, anon_sym_CARET, @@ -190731,30 +190303,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(10875), 1, aux_sym__form_token1, - STATE(1520), 1, - sym_list_lit, - STATE(2901), 1, + STATE(2903), 1, sym__metadata_lit, - STATE(2973), 1, + STATE(2977), 1, + sym_list_lit, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(3045), 1, + STATE(3020), 1, sym_array_dimension, - STATE(3066), 1, + STATE(3079), 1, aux_sym_list_lit_repeat1, - STATE(1612), 3, + STATE(2985), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, [174242] = 14, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, + ACTIONS(4769), 1, anon_sym_LPAREN, - ACTIONS(7321), 1, + ACTIONS(7361), 1, aux_sym_char_lit_token1, - ACTIONS(7323), 1, + ACTIONS(7363), 1, anon_sym_LBRACE, ACTIONS(8099), 1, anon_sym_CARET, @@ -190762,30 +190334,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(10877), 1, aux_sym__form_token1, - STATE(2615), 1, + STATE(2575), 1, sym_list_lit, - STATE(2901), 1, + STATE(2903), 1, sym__metadata_lit, - STATE(2973), 1, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(3040), 1, + STATE(3001), 1, sym_array_dimension, - STATE(3079), 1, + STATE(3058), 1, aux_sym_list_lit_repeat1, - STATE(2648), 3, + STATE(2584), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, [174287] = 14, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6225), 1, + ACTIONS(5049), 1, anon_sym_LPAREN, - ACTIONS(7341), 1, + ACTIONS(7297), 1, aux_sym_char_lit_token1, - ACTIONS(7343), 1, + ACTIONS(7299), 1, anon_sym_LBRACE, ACTIONS(8099), 1, anon_sym_CARET, @@ -190793,30 +190365,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(10879), 1, aux_sym__form_token1, - STATE(1712), 1, - sym_list_lit, - STATE(2901), 1, + STATE(2903), 1, sym__metadata_lit, - STATE(2973), 1, + STATE(2977), 1, + sym_list_lit, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(3038), 1, + STATE(3021), 1, sym_array_dimension, - STATE(3090), 1, + STATE(3099), 1, aux_sym_list_lit_repeat1, - STATE(1676), 3, + STATE(2985), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, [174332] = 14, - ACTIONS(29), 1, - anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7381), 1, + ACTIONS(5049), 1, + anon_sym_LPAREN, + ACTIONS(7349), 1, aux_sym_char_lit_token1, - ACTIONS(7383), 1, + ACTIONS(7351), 1, anon_sym_LBRACE, ACTIONS(8099), 1, anon_sym_CARET, @@ -190824,30 +190396,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(10881), 1, aux_sym__form_token1, - STATE(1858), 1, + STATE(1901), 1, sym_list_lit, - STATE(2901), 1, + STATE(2903), 1, sym__metadata_lit, - STATE(2973), 1, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(3018), 1, + STATE(3005), 1, sym_array_dimension, - STATE(3067), 1, + STATE(3097), 1, aux_sym_list_lit_repeat1, - STATE(1877), 3, + STATE(1975), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, [174377] = 14, + ACTIONS(29), 1, + anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4795), 1, - anon_sym_LPAREN, - ACTIONS(7353), 1, + ACTIONS(7325), 1, aux_sym_char_lit_token1, - ACTIONS(7355), 1, + ACTIONS(7327), 1, anon_sym_LBRACE, ACTIONS(8099), 1, anon_sym_CARET, @@ -190855,26 +190427,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(10883), 1, aux_sym__form_token1, - STATE(1459), 1, + STATE(1822), 1, sym_list_lit, - STATE(2901), 1, + STATE(2903), 1, sym__metadata_lit, - STATE(2973), 1, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(3005), 1, + STATE(3052), 1, sym_array_dimension, - STATE(3101), 1, + STATE(3100), 1, aux_sym_list_lit_repeat1, - STATE(1483), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, [174422] = 14, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4412), 1, + ACTIONS(5005), 1, anon_sym_LPAREN, ACTIONS(7297), 1, aux_sym_char_lit_token1, @@ -190886,30 +190458,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(10885), 1, aux_sym__form_token1, - STATE(1142), 1, - sym_list_lit, - STATE(2901), 1, + STATE(2903), 1, sym__metadata_lit, - STATE(2973), 1, + STATE(2977), 1, + sym_list_lit, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(3000), 1, + STATE(3051), 1, sym_array_dimension, - STATE(3073), 1, + STATE(3065), 1, aux_sym_list_lit_repeat1, - STATE(1187), 3, + STATE(2985), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, [174467] = 14, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6049), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(7309), 1, + ACTIONS(7285), 1, aux_sym_char_lit_token1, - ACTIONS(7311), 1, + ACTIONS(7287), 1, anon_sym_LBRACE, ACTIONS(8099), 1, anon_sym_CARET, @@ -190917,30 +190489,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(10887), 1, aux_sym__form_token1, - STATE(2901), 1, - sym__metadata_lit, - STATE(2929), 1, + STATE(1529), 1, sym_list_lit, - STATE(2973), 1, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(3024), 1, + STATE(3036), 1, sym_array_dimension, - STATE(3080), 1, + STATE(3071), 1, aux_sym_list_lit_repeat1, - STATE(2991), 3, + STATE(1504), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, [174512] = 14, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4857), 1, + ACTIONS(1468), 1, anon_sym_LPAREN, - ACTIONS(7393), 1, + ACTIONS(7349), 1, aux_sym_char_lit_token1, - ACTIONS(7395), 1, + ACTIONS(7351), 1, anon_sym_LBRACE, ACTIONS(8099), 1, anon_sym_CARET, @@ -190948,62 +190520,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(10889), 1, aux_sym__form_token1, - STATE(1016), 1, + STATE(1901), 1, sym_list_lit, - STATE(2901), 1, + STATE(2903), 1, sym__metadata_lit, - STATE(2973), 1, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(3029), 1, + STATE(3030), 1, sym_array_dimension, - STATE(3069), 1, + STATE(3061), 1, aux_sym_list_lit_repeat1, - STATE(1070), 3, + STATE(1975), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [174557] = 4, + [174557] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10891), 1, - aux_sym_num_lit_token2, - ACTIONS(7445), 2, - anon_sym_COLON, - aux_sym_sym_lit_token1, - ACTIONS(7443), 11, + ACTIONS(10894), 1, + anon_sym_POUND_, + ACTIONS(10891), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2900), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7407), 8, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_POUND_QMARK, - anon_sym_COMMA, - [174581] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(10893), 2, - anon_sym_POUND, - anon_sym_POUND_QMARK, - ACTIONS(10895), 12, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [174603] = 6, + [174583] = 6, ACTIONS(47), 1, sym_block_comment, ACTIONS(7405), 1, @@ -191013,7 +190567,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(10897), 2, sym__ws, sym_comment, - STATE(2902), 3, + STATE(2901), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, @@ -191025,33 +190579,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LBRACE, anon_sym_POUND_QMARK, - [174631] = 5, + [174611] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10906), 1, - anon_sym_POUND_, - ACTIONS(10903), 2, + ACTIONS(10903), 1, + aux_sym_num_lit_token2, + ACTIONS(7445), 2, + anon_sym_COLON, + aux_sym_sym_lit_token1, + ACTIONS(7443), 11, sym__ws, sym_comment, - STATE(2903), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(7407), 8, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_POUND_QMARK, + anon_sym_COMMA, + [174635] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(10905), 2, + anon_sym_POUND, + anon_sym_POUND_QMARK, + ACTIONS(10907), 12, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_COMMA_AT, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, [174657] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7776), 1, + ACTIONS(7467), 1, anon_sym_COLON, - ACTIONS(7774), 12, + ACTIONS(7465), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -191064,48 +190636,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [174678] = 3, + [174678] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7826), 1, - anon_sym_COLON, - ACTIONS(7824), 12, + ACTIONS(10911), 1, + anon_sym_POUND_, + ACTIONS(10909), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, - aux_sym_sym_lit_token1, + STATE(2900), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(10749), 7, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_POUND_QMARK, - anon_sym_COMMA, - [174699] = 3, + anon_sym_POUNDC, + anon_sym_POUNDc, + [174703] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7652), 1, - anon_sym_COLON, - ACTIONS(7650), 12, + ACTIONS(10911), 1, + anon_sym_POUND_, + ACTIONS(10909), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, - aux_sym_sym_lit_token1, + STATE(2900), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(10757), 7, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_POUND_QMARK, - anon_sym_COMMA, - [174720] = 3, + anon_sym_POUNDC, + anon_sym_POUNDc, + [174728] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7587), 1, + ACTIONS(7519), 1, anon_sym_COLON, - ACTIONS(7585), 12, + ACTIONS(7517), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -191118,12 +190694,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [174741] = 3, + [174749] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7555), 1, + ACTIONS(7742), 1, anon_sym_COLON, - ACTIONS(7553), 12, + ACTIONS(7740), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -191136,12 +190712,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [174762] = 3, + [174770] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7694), 1, + ACTIONS(7746), 1, anon_sym_COLON, - ACTIONS(7692), 12, + ACTIONS(7744), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -191154,12 +190730,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [174783] = 3, + [174791] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7559), 1, + ACTIONS(7750), 1, anon_sym_COLON, - ACTIONS(7557), 12, + ACTIONS(7748), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -191172,12 +190748,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [174804] = 3, + [174812] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7848), 1, + ACTIONS(7754), 1, anon_sym_COLON, - ACTIONS(7846), 12, + ACTIONS(7752), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -191190,12 +190766,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [174825] = 3, + [174833] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7788), 1, + ACTIONS(7598), 1, anon_sym_COLON, - ACTIONS(7786), 12, + ACTIONS(7596), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -191208,12 +190784,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [174846] = 3, + [174854] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7668), 1, + ACTIONS(7750), 1, anon_sym_COLON, - ACTIONS(7666), 12, + ACTIONS(7748), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -191226,12 +190802,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [174867] = 3, + [174875] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7599), 1, + ACTIONS(7754), 1, anon_sym_COLON, - ACTIONS(7597), 12, + ACTIONS(7752), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -191244,12 +190820,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [174888] = 3, + [174896] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7579), 1, + ACTIONS(7769), 1, anon_sym_COLON, - ACTIONS(7577), 12, + ACTIONS(7767), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -191262,12 +190838,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [174909] = 3, + [174917] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7682), 1, + ACTIONS(7773), 1, anon_sym_COLON, - ACTIONS(7680), 12, + ACTIONS(7771), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -191280,12 +190856,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [174930] = 3, + [174938] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7479), 1, + ACTIONS(7777), 1, anon_sym_COLON, - ACTIONS(7477), 12, + ACTIONS(7775), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -191298,12 +190874,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [174951] = 3, + [174959] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7698), 1, + ACTIONS(7781), 1, anon_sym_COLON, - ACTIONS(7696), 12, + ACTIONS(7779), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -191316,12 +190892,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [174972] = 3, + [174980] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7559), 1, + ACTIONS(7781), 1, anon_sym_COLON, - ACTIONS(7557), 12, + ACTIONS(7779), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -191334,12 +190910,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [174993] = 3, + [175001] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7555), 1, + ACTIONS(7785), 1, anon_sym_COLON, - ACTIONS(7553), 12, + ACTIONS(7783), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -191352,12 +190928,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [175014] = 3, + [175022] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7686), 1, + ACTIONS(7785), 1, anon_sym_COLON, - ACTIONS(7684), 12, + ACTIONS(7783), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -191370,12 +190946,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [175035] = 3, + [175043] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7551), 1, + ACTIONS(7602), 1, anon_sym_COLON, - ACTIONS(7549), 12, + ACTIONS(7600), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -191388,12 +190964,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [175056] = 3, + [175064] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7455), 1, + ACTIONS(7793), 1, anon_sym_COLON, - ACTIONS(7453), 12, + ACTIONS(7791), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -191406,12 +190982,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [175077] = 3, + [175085] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7682), 1, + ACTIONS(7797), 1, anon_sym_COLON, - ACTIONS(7680), 12, + ACTIONS(7795), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -191424,12 +191000,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [175098] = 3, + [175106] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7539), 1, + ACTIONS(7801), 1, anon_sym_COLON, - ACTIONS(7537), 12, + ACTIONS(7799), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -191442,12 +191018,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [175119] = 3, + [175127] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7694), 1, + ACTIONS(7805), 1, anon_sym_COLON, - ACTIONS(7692), 12, + ACTIONS(7803), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -191460,12 +191036,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [175140] = 3, + [175148] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7698), 1, + ACTIONS(7809), 1, anon_sym_COLON, - ACTIONS(7696), 12, + ACTIONS(7807), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -191478,12 +191054,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [175161] = 3, + [175169] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7698), 1, + ACTIONS(7813), 1, anon_sym_COLON, - ACTIONS(7696), 12, + ACTIONS(7811), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -191496,12 +191072,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [175182] = 3, + [175190] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7527), 1, + ACTIONS(7821), 1, anon_sym_COLON, - ACTIONS(7525), 12, + ACTIONS(7819), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -191514,12 +191090,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [175203] = 3, + [175211] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7722), 1, + ACTIONS(7821), 1, anon_sym_COLON, - ACTIONS(7720), 12, + ACTIONS(7819), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -191532,12 +191108,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [175224] = 3, + [175232] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7730), 1, + ACTIONS(7809), 1, anon_sym_COLON, - ACTIONS(7728), 12, + ACTIONS(7807), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -191550,12 +191126,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [175245] = 3, + [175253] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7527), 1, + ACTIONS(7813), 1, anon_sym_COLON, - ACTIONS(7525), 12, + ACTIONS(7811), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -191568,12 +191144,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [175266] = 3, + [175274] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7734), 1, + ACTIONS(7821), 1, anon_sym_COLON, - ACTIONS(7732), 12, + ACTIONS(7819), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -191586,12 +191162,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [175287] = 3, + [175295] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7636), 1, + ACTIONS(7821), 1, anon_sym_COLON, - ACTIONS(7634), 12, + ACTIONS(7819), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -191604,12 +191180,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [175308] = 3, + [175316] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7632), 1, + ACTIONS(7825), 1, anon_sym_COLON, - ACTIONS(7630), 12, + ACTIONS(7823), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -191622,12 +191198,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [175329] = 3, + [175337] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7615), 1, + ACTIONS(7833), 1, anon_sym_COLON, - ACTIONS(7613), 12, + ACTIONS(7831), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -191640,12 +191216,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [175350] = 3, + [175358] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7738), 1, + ACTIONS(7837), 1, anon_sym_COLON, - ACTIONS(7736), 12, + ACTIONS(7835), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -191658,12 +191234,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [175371] = 3, + [175379] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7746), 1, + ACTIONS(7841), 1, anon_sym_COLON, - ACTIONS(7744), 12, + ACTIONS(7839), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -191676,13 +191252,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [175392] = 3, + [175400] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10911), 2, + ACTIONS(10915), 2, anon_sym_COLON, anon_sym_AT, - ACTIONS(10909), 11, + ACTIONS(10913), 11, aux_sym_num_lit_token1, anon_sym_TILDE, anon_sym_SQUOTE, @@ -191694,48 +191270,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_STAR, aux_sym_format_directive_type_token11, - [175413] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7603), 1, - anon_sym_COLON, - ACTIONS(7601), 12, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, - aux_sym_sym_lit_token1, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - [175434] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7698), 1, - anon_sym_COLON, - ACTIONS(7696), 12, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, - aux_sym_sym_lit_token1, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - [175455] = 3, + [175421] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7750), 1, + ACTIONS(7606), 1, anon_sym_COLON, - ACTIONS(7748), 12, + ACTIONS(7604), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -191748,12 +191288,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [175476] = 3, + [175442] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7746), 1, + ACTIONS(7845), 1, anon_sym_COLON, - ACTIONS(7744), 12, + ACTIONS(7843), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -191766,12 +191306,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [175497] = 3, + [175463] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7784), 1, + ACTIONS(7849), 1, anon_sym_COLON, - ACTIONS(7782), 12, + ACTIONS(7847), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -191784,12 +191324,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [175518] = 3, + [175484] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7575), 1, + ACTIONS(7845), 1, anon_sym_COLON, - ACTIONS(7573), 12, + ACTIONS(7843), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -191802,12 +191342,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [175539] = 3, + [175505] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7750), 1, + ACTIONS(7849), 1, anon_sym_COLON, - ACTIONS(7748), 12, + ACTIONS(7847), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -191820,48 +191360,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [175560] = 3, + [175526] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7754), 1, - anon_sym_COLON, - ACTIONS(7752), 12, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, - aux_sym_sym_lit_token1, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - [175581] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7761), 1, - anon_sym_COLON, - ACTIONS(7759), 12, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, - aux_sym_sym_lit_token1, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - [175602] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7726), 1, + ACTIONS(7857), 1, anon_sym_COLON, - ACTIONS(7724), 12, + ACTIONS(7855), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -191874,12 +191378,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [175623] = 3, + [175547] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7833), 1, + ACTIONS(7841), 1, anon_sym_COLON, - ACTIONS(7831), 12, + ACTIONS(7839), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -191892,12 +191396,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [175644] = 3, + [175568] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7776), 1, + ACTIONS(7845), 1, anon_sym_COLON, - ACTIONS(7774), 12, + ACTIONS(7843), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -191910,12 +191414,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [175665] = 3, + [175589] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7796), 1, + ACTIONS(7849), 1, anon_sym_COLON, - ACTIONS(7794), 12, + ACTIONS(7847), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -191928,12 +191432,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [175686] = 3, + [175610] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7796), 1, + ACTIONS(7845), 1, anon_sym_COLON, - ACTIONS(7794), 12, + ACTIONS(7843), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -191946,12 +191450,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [175707] = 3, + [175631] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7788), 1, + ACTIONS(7849), 1, anon_sym_COLON, - ACTIONS(7786), 12, + ACTIONS(7847), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -191964,12 +191468,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [175728] = 3, + [175652] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7815), 1, + ACTIONS(7857), 1, anon_sym_COLON, - ACTIONS(7813), 12, + ACTIONS(7855), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -191982,12 +191486,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [175749] = 3, + [175673] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7672), 1, + ACTIONS(7723), 1, anon_sym_COLON, - ACTIONS(7670), 12, + ACTIONS(7721), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -192000,12 +191504,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [175770] = 3, + [175694] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7738), 1, + ACTIONS(7630), 1, anon_sym_COLON, - ACTIONS(7736), 12, + ACTIONS(7628), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -192018,12 +191522,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [175791] = 3, + [175715] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7780), 1, + ACTIONS(7630), 1, anon_sym_COLON, - ACTIONS(7778), 12, + ACTIONS(7628), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -192036,12 +191540,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [175812] = 3, + [175736] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7746), 1, + ACTIONS(7716), 1, anon_sym_COLON, - ACTIONS(7744), 12, + ACTIONS(7714), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -192054,12 +191558,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [175833] = 3, + [175757] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7792), 1, + ACTIONS(7672), 1, anon_sym_COLON, - ACTIONS(7790), 12, + ACTIONS(7670), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -192072,12 +191576,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [175854] = 3, + [175778] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7768), 1, + ACTIONS(7630), 1, anon_sym_COLON, - ACTIONS(7766), 12, + ACTIONS(7628), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -192090,12 +191594,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [175875] = 3, + [175799] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7640), 1, + ACTIONS(7630), 1, anon_sym_COLON, - ACTIONS(7638), 12, + ACTIONS(7628), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -192108,12 +191612,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [175896] = 3, + [175820] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7656), 1, + ACTIONS(7716), 1, anon_sym_COLON, - ACTIONS(7654), 12, + ACTIONS(7714), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -192126,12 +191630,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [175917] = 3, + [175841] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7567), 1, + ACTIONS(7672), 1, anon_sym_COLON, - ACTIONS(7565), 12, + ACTIONS(7670), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -192144,12 +191648,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [175938] = 3, + [175862] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7628), 1, + ACTIONS(7556), 1, anon_sym_COLON, - ACTIONS(7626), 12, + ACTIONS(7554), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -192162,12 +191666,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [175959] = 3, + [175883] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7750), 1, + ACTIONS(7556), 1, anon_sym_COLON, - ACTIONS(7748), 12, + ACTIONS(7554), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -192180,12 +191684,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [175980] = 3, + [175904] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7746), 1, + ACTIONS(7610), 1, anon_sym_COLON, - ACTIONS(7744), 12, + ACTIONS(7608), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -192198,12 +191702,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [176001] = 3, + [175925] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7611), 1, + ACTIONS(7525), 1, anon_sym_COLON, - ACTIONS(7609), 12, + ACTIONS(7523), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -192216,52 +191720,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [176022] = 5, + [175946] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, - anon_sym_POUND_, - ACTIONS(10913), 2, + ACTIONS(7622), 1, + anon_sym_COLON, + ACTIONS(7620), 12, sym__ws, sym_comment, - STATE(2903), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(10809), 7, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + aux_sym_sym_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_POUND_QMARK, - anon_sym_POUNDC, - anon_sym_POUNDc, - [176047] = 5, + anon_sym_COMMA, + [175967] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, - anon_sym_POUND_, - ACTIONS(10913), 2, + ACTIONS(7626), 1, + anon_sym_COLON, + ACTIONS(7624), 12, sym__ws, sym_comment, - STATE(2903), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(10813), 7, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + aux_sym_sym_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_POUND_QMARK, - anon_sym_POUNDC, - anon_sym_POUNDc, - [176072] = 3, + anon_sym_COMMA, + [175988] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7491), 1, + ACTIONS(7467), 1, anon_sym_COLON, - ACTIONS(7489), 12, + ACTIONS(7465), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -192274,12 +191774,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [176093] = 3, + [176009] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7690), 1, + ACTIONS(10923), 1, + anon_sym_STAR, + ACTIONS(10919), 2, anon_sym_COLON, - ACTIONS(7688), 12, + anon_sym_AT, + ACTIONS(10921), 4, + anon_sym_TILDE, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(10917), 6, + aux_sym_num_lit_token1, + anon_sym_SQUOTE, + anon_sym_COMMA, + anon_sym_AT_COLON, + anon_sym_COLON_AT, + aux_sym_format_directive_type_token11, + [176034] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7638), 1, + anon_sym_COLON, + ACTIONS(7636), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -192292,52 +191812,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [176114] = 5, + [176055] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, - anon_sym_POUND_, - ACTIONS(10917), 2, + ACTIONS(7649), 1, + anon_sym_COLON, + ACTIONS(7647), 12, sym__ws, sym_comment, - STATE(2969), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(10789), 7, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + aux_sym_sym_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_POUND_QMARK, - anon_sym_POUNDC, - anon_sym_POUNDc, - [176139] = 5, + anon_sym_COMMA, + [176076] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, - anon_sym_POUND_, - ACTIONS(10919), 2, + ACTIONS(7656), 1, + anon_sym_COLON, + ACTIONS(7654), 12, sym__ws, sym_comment, - STATE(2970), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(10795), 7, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + aux_sym_sym_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_POUND_QMARK, - anon_sym_POUNDC, - anon_sym_POUNDc, - [176164] = 3, + anon_sym_COMMA, + [176097] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7750), 1, + ACTIONS(7544), 1, anon_sym_COLON, - ACTIONS(7748), 12, + ACTIONS(7542), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -192350,13 +191866,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [176185] = 3, + [176118] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10923), 2, + ACTIONS(10927), 2, anon_sym_COLON, anon_sym_AT, - ACTIONS(10921), 11, + ACTIONS(10925), 11, aux_sym_num_lit_token1, anon_sym_TILDE, anon_sym_SQUOTE, @@ -192368,12 +191884,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_STAR, aux_sym_format_directive_type_token11, - [176206] = 3, + [176139] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7467), 1, + ACTIONS(7548), 1, anon_sym_COLON, - ACTIONS(7465), 12, + ACTIONS(7546), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -192386,12 +191902,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [176227] = 3, + [176160] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7754), 1, + ACTIONS(7508), 1, anon_sym_COLON, - ACTIONS(7752), 12, + ACTIONS(7506), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -192404,12 +191920,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [176248] = 3, + [176181] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7471), 1, + ACTIONS(7512), 1, anon_sym_COLON, - ACTIONS(7469), 12, + ACTIONS(7510), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -192422,12 +191938,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [176269] = 3, + [176202] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7491), 1, + ACTIONS(7467), 1, anon_sym_COLON, - ACTIONS(7489), 12, + ACTIONS(7465), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -192440,12 +191956,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [176290] = 3, + [176223] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7475), 1, + ACTIONS(7664), 1, anon_sym_COLON, - ACTIONS(7473), 12, + ACTIONS(7662), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -192458,32 +191974,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [176311] = 5, + [176244] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10931), 1, - anon_sym_STAR, - ACTIONS(10927), 2, + ACTIONS(7668), 1, anon_sym_COLON, - anon_sym_AT, - ACTIONS(10929), 4, - anon_sym_TILDE, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(10925), 6, - aux_sym_num_lit_token1, - anon_sym_SQUOTE, + ACTIONS(7666), 12, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + aux_sym_sym_lit_token1, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_POUND_QMARK, anon_sym_COMMA, - anon_sym_AT_COLON, - anon_sym_COLON_AT, - aux_sym_format_directive_type_token11, - [176336] = 3, + [176265] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7547), 1, + ACTIONS(7563), 1, anon_sym_COLON, - ACTIONS(7545), 12, + ACTIONS(7561), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -192496,12 +192010,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [176357] = 3, + [176286] = 6, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7405), 1, + anon_sym_COLON, + ACTIONS(10932), 1, + anon_sym_POUND_, + ACTIONS(10929), 2, + sym__ws, + sym_comment, + STATE(2981), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7407), 6, + anon_sym_COLON_COLON, + aux_sym_sym_lit_token1, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_COMMA, + [176313] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7776), 1, + ACTIONS(7567), 1, anon_sym_COLON, - ACTIONS(7774), 12, + ACTIONS(7565), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -192514,12 +192049,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [176378] = 3, + [176334] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(10911), 1, + anon_sym_POUND_, + ACTIONS(10935), 2, + sym__ws, + sym_comment, + STATE(2905), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(10797), 7, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_POUND_QMARK, + anon_sym_POUNDC, + anon_sym_POUNDc, + [176359] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7776), 1, + ACTIONS(10911), 1, + anon_sym_POUND_, + ACTIONS(10937), 2, + sym__ws, + sym_comment, + STATE(2906), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(10769), 7, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_POUND_QMARK, + anon_sym_POUNDC, + anon_sym_POUNDc, + [176384] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7829), 1, anon_sym_COLON, - ACTIONS(7774), 12, + ACTIONS(7827), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -192532,33 +192107,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [176399] = 6, + [176405] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7405), 1, + ACTIONS(7853), 1, anon_sym_COLON, - ACTIONS(10936), 1, - anon_sym_POUND_, - ACTIONS(10933), 2, + ACTIONS(7851), 12, sym__ws, sym_comment, - STATE(2986), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(7407), 6, + anon_sym_POUND_, anon_sym_COLON_COLON, + anon_sym_DQUOTE, aux_sym_sym_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_POUND_QMARK, anon_sym_COMMA, [176426] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7543), 1, + ACTIONS(7688), 1, anon_sym_COLON, - ACTIONS(7541), 12, + ACTIONS(7686), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -192574,9 +192146,9 @@ static const uint16_t ts_small_parse_table[] = { [176447] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7511), 1, + ACTIONS(7455), 1, anon_sym_COLON, - ACTIONS(7509), 12, + ACTIONS(7453), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -192592,9 +192164,9 @@ static const uint16_t ts_small_parse_table[] = { [176468] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7772), 1, + ACTIONS(7692), 1, anon_sym_COLON, - ACTIONS(7770), 12, + ACTIONS(7690), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -192610,9 +192182,9 @@ static const uint16_t ts_small_parse_table[] = { [176489] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7706), 1, + ACTIONS(7700), 1, anon_sym_COLON, - ACTIONS(7704), 12, + ACTIONS(7698), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -192628,9 +192200,9 @@ static const uint16_t ts_small_parse_table[] = { [176510] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7710), 1, + ACTIONS(7459), 1, anon_sym_COLON, - ACTIONS(7708), 12, + ACTIONS(7457), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -192646,9 +192218,9 @@ static const uint16_t ts_small_parse_table[] = { [176531] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7515), 1, + ACTIONS(7704), 1, anon_sym_COLON, - ACTIONS(7513), 12, + ACTIONS(7702), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -192664,9 +192236,9 @@ static const uint16_t ts_small_parse_table[] = { [176552] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7523), 1, + ACTIONS(7708), 1, anon_sym_COLON, - ACTIONS(7521), 12, + ACTIONS(7706), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -192682,9 +192254,9 @@ static const uint16_t ts_small_parse_table[] = { [176573] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7527), 1, + ACTIONS(7571), 1, anon_sym_COLON, - ACTIONS(7525), 12, + ACTIONS(7569), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -192700,9 +192272,9 @@ static const uint16_t ts_small_parse_table[] = { [176594] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7780), 1, + ACTIONS(7471), 1, anon_sym_COLON, - ACTIONS(7778), 12, + ACTIONS(7469), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -192718,9 +192290,9 @@ static const uint16_t ts_small_parse_table[] = { [176615] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7599), 1, + ACTIONS(7723), 1, anon_sym_COLON, - ACTIONS(7597), 12, + ACTIONS(7721), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -192736,9 +192308,9 @@ static const uint16_t ts_small_parse_table[] = { [176636] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7591), 1, + ACTIONS(7540), 1, anon_sym_COLON, - ACTIONS(7589), 12, + ACTIONS(7538), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -192754,9 +192326,9 @@ static const uint16_t ts_small_parse_table[] = { [176657] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7591), 1, + ACTIONS(7865), 1, anon_sym_COLON, - ACTIONS(7589), 12, + ACTIONS(7863), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -192789,754 +192361,687 @@ static const uint16_t ts_small_parse_table[] = { [176698] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4412), 1, - anon_sym_LPAREN, ACTIONS(8099), 1, anon_sym_CARET, ACTIONS(8101), 1, anon_sym_POUND_CARET, - STATE(1145), 1, - sym_list_lit, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3073), 1, - aux_sym_list_lit_repeat1, - STATE(1187), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [176731] = 8, - ACTIONS(47), 1, - sym_block_comment, - STATE(1976), 1, - sym_list_lit, - STATE(2901), 1, + ACTIONS(10941), 1, + aux_sym_num_lit_token1, + STATE(2903), 1, sym__metadata_lit, - STATE(2973), 1, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(3074), 1, + STATE(3211), 1, aux_sym_list_lit_repeat1, - ACTIONS(10941), 3, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - STATE(1892), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [176760] = 10, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + STATE(1887), 2, + sym_num_lit, + sym_complex_num_lit, + [176731] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5181), 1, + ACTIONS(4769), 1, anon_sym_LPAREN, ACTIONS(8099), 1, anon_sym_CARET, ACTIONS(8101), 1, anon_sym_POUND_CARET, - STATE(2901), 1, + STATE(2581), 1, + sym_list_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2973), 1, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(2988), 1, - sym_list_lit, - STATE(3071), 1, + STATE(3058), 1, aux_sym_list_lit_repeat1, - STATE(2991), 3, + STATE(2584), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [176793] = 8, + [176764] = 8, ACTIONS(47), 1, sym_block_comment, - STATE(2901), 1, + STATE(1336), 1, + sym_list_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2973), 1, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(2993), 1, - sym_list_lit, - STATE(3071), 1, + STATE(3060), 1, aux_sym_list_lit_repeat1, - ACTIONS(10941), 3, + ACTIONS(10943), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(2991), 3, + STATE(1289), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [176822] = 8, + [176793] = 8, ACTIONS(47), 1, sym_block_comment, - STATE(1437), 1, + STATE(1902), 1, sym_list_lit, - STATE(2901), 1, + STATE(2903), 1, sym__metadata_lit, - STATE(2973), 1, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(3101), 1, + STATE(3097), 1, aux_sym_list_lit_repeat1, - ACTIONS(10941), 3, + ACTIONS(10943), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(1483), 3, + STATE(1975), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [176851] = 10, + [176822] = 8, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4795), 1, - anon_sym_LPAREN, - ACTIONS(8099), 1, + ACTIONS(10945), 1, anon_sym_CARET, - ACTIONS(8101), 1, + ACTIONS(10948), 1, anon_sym_POUND_CARET, - STATE(1456), 1, - sym_list_lit, - STATE(2901), 1, + STATE(2903), 1, sym__metadata_lit, - STATE(2973), 1, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(3101), 1, + STATE(3004), 1, aux_sym_list_lit_repeat1, - STATE(1483), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [176884] = 8, + ACTIONS(10837), 5, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_POUND_QMARK, + anon_sym_POUNDC, + anon_sym_POUNDc, + [176851] = 10, ACTIONS(47), 1, sym_block_comment, - STATE(2901), 1, - sym__metadata_lit, - STATE(2911), 1, - sym_list_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3071), 1, - aux_sym_list_lit_repeat1, - ACTIONS(10941), 3, + ACTIONS(5049), 1, + anon_sym_LPAREN, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - STATE(2991), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [176913] = 8, - ACTIONS(47), 1, - sym_block_comment, - STATE(2901), 1, + STATE(1904), 1, + sym_list_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2973), 1, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(2993), 1, - sym_list_lit, - STATE(3077), 1, + STATE(3097), 1, aux_sym_list_lit_repeat1, - ACTIONS(10941), 3, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - STATE(2991), 3, + STATE(1975), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [176942] = 8, + [176884] = 8, ACTIONS(47), 1, sym_block_comment, - STATE(2901), 1, + STATE(2903), 1, sym__metadata_lit, - STATE(2911), 1, + STATE(2980), 1, sym_list_lit, - STATE(2973), 1, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(3077), 1, + STATE(3099), 1, aux_sym_list_lit_repeat1, - ACTIONS(10941), 3, + ACTIONS(10943), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(2991), 3, + STATE(2985), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [176971] = 10, + [176913] = 10, ACTIONS(47), 1, sym_block_comment, ACTIONS(8099), 1, anon_sym_CARET, ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(10943), 1, + ACTIONS(10951), 1, aux_sym_num_lit_token1, - STATE(2901), 1, + STATE(2903), 1, sym__metadata_lit, - STATE(2973), 1, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(3117), 1, + STATE(3418), 1, aux_sym_list_lit_repeat1, - ACTIONS(5061), 2, + ACTIONS(5253), 2, anon_sym_POUNDC, anon_sym_POUNDc, - STATE(2932), 2, + STATE(1653), 2, sym_num_lit, sym_complex_num_lit, - [177004] = 10, + [176946] = 10, ACTIONS(47), 1, sym_block_comment, ACTIONS(8099), 1, anon_sym_CARET, ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(10945), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - STATE(2901), 1, + STATE(2903), 1, sym__metadata_lit, - STATE(2973), 1, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(3114), 1, + STATE(3280), 1, aux_sym_list_lit_repeat1, - ACTIONS(129), 2, + ACTIONS(4883), 2, anon_sym_POUNDC, anon_sym_POUNDc, - STATE(2598), 2, + STATE(1517), 2, sym_num_lit, sym_complex_num_lit, - [177037] = 8, + [176979] = 8, ACTIONS(47), 1, sym_block_comment, - STATE(1964), 1, + STATE(2599), 1, sym_list_lit, - STATE(2901), 1, + STATE(2903), 1, sym__metadata_lit, - STATE(2973), 1, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(3103), 1, + STATE(3058), 1, aux_sym_list_lit_repeat1, - ACTIONS(10941), 3, + ACTIONS(10943), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(1892), 3, + STATE(2584), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [177066] = 10, + [177008] = 8, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8099), 1, - anon_sym_CARET, - ACTIONS(8101), 1, - anon_sym_POUND_CARET, - ACTIONS(10947), 1, - aux_sym_num_lit_token1, - STATE(2901), 1, + STATE(2903), 1, sym__metadata_lit, - STATE(2973), 1, + STATE(2978), 1, + sym_list_lit, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(3113), 1, + STATE(3065), 1, aux_sym_list_lit_repeat1, - ACTIONS(2781), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - STATE(1471), 2, - sym_num_lit, - sym_complex_num_lit, - [177099] = 10, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(8099), 1, + ACTIONS(10943), 3, anon_sym_CARET, - ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(10949), 1, - aux_sym_num_lit_token1, - STATE(2901), 1, + anon_sym_LPAREN, + STATE(2985), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [177037] = 8, + ACTIONS(47), 1, + sym_block_comment, + STATE(1162), 1, + sym_list_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2973), 1, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(3117), 1, + STATE(3103), 1, aux_sym_list_lit_repeat1, - ACTIONS(5061), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - STATE(2932), 2, - sym_num_lit, - sym_complex_num_lit, - [177132] = 10, + ACTIONS(10943), 3, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + STATE(1137), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [177066] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, + ACTIONS(4380), 1, anon_sym_LPAREN, ACTIONS(8099), 1, anon_sym_CARET, ACTIONS(8101), 1, anon_sym_POUND_CARET, - STATE(2901), 1, + STATE(1164), 1, + sym_list_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2973), 1, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(2988), 1, - sym_list_lit, - STATE(3077), 1, + STATE(3103), 1, aux_sym_list_lit_repeat1, - STATE(2991), 3, + STATE(1137), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [177165] = 8, + [177099] = 8, ACTIONS(47), 1, sym_block_comment, - STATE(1458), 1, + STATE(1183), 1, sym_list_lit, - STATE(2901), 1, + STATE(2903), 1, sym__metadata_lit, - STATE(2973), 1, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(3101), 1, + STATE(3103), 1, aux_sym_list_lit_repeat1, - ACTIONS(10941), 3, + ACTIONS(10943), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(1483), 3, + STATE(1137), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [177194] = 10, + [177128] = 10, ACTIONS(47), 1, sym_block_comment, ACTIONS(8099), 1, anon_sym_CARET, ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(10951), 1, + ACTIONS(10955), 1, aux_sym_num_lit_token1, - STATE(2901), 1, + STATE(2903), 1, sym__metadata_lit, - STATE(2973), 1, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(3112), 1, + STATE(3420), 1, aux_sym_list_lit_repeat1, - ACTIONS(192), 2, + ACTIONS(236), 2, anon_sym_POUNDC, anon_sym_POUNDc, - STATE(1050), 2, + STATE(2610), 2, sym_num_lit, sym_complex_num_lit, - [177227] = 10, + [177161] = 8, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8099), 1, - anon_sym_CARET, - ACTIONS(8101), 1, - anon_sym_POUND_CARET, - ACTIONS(10953), 1, - aux_sym_num_lit_token1, - STATE(2901), 1, + STATE(2903), 1, sym__metadata_lit, - STATE(2973), 1, + STATE(2978), 1, + sym_list_lit, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(3424), 1, + STATE(3099), 1, aux_sym_list_lit_repeat1, - ACTIONS(57), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - STATE(1874), 2, - sym_num_lit, - sym_complex_num_lit, - [177260] = 10, - ACTIONS(29), 1, + ACTIONS(10943), 3, + anon_sym_CARET, + anon_sym_POUND_CARET, anon_sym_LPAREN, + STATE(2985), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [177190] = 8, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8099), 1, - anon_sym_CARET, - ACTIONS(8101), 1, - anon_sym_POUND_CARET, - STATE(1855), 1, + STATE(1735), 1, sym_list_lit, - STATE(2901), 1, + STATE(2903), 1, sym__metadata_lit, - STATE(2973), 1, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(3067), 1, + STATE(3064), 1, aux_sym_list_lit_repeat1, - STATE(1877), 3, + ACTIONS(10943), 3, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + STATE(1680), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [177293] = 8, + [177219] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10955), 1, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(10958), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - STATE(2901), 1, + ACTIONS(10957), 1, + aux_sym_num_lit_token1, + STATE(2903), 1, sym__metadata_lit, - STATE(2973), 1, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(3019), 1, + STATE(3211), 1, aux_sym_list_lit_repeat1, - ACTIONS(10831), 5, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_POUND_QMARK, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - [177322] = 10, + STATE(1887), 2, + sym_num_lit, + sym_complex_num_lit, + [177252] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6049), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, ACTIONS(8099), 1, anon_sym_CARET, ACTIONS(8101), 1, anon_sym_POUND_CARET, - STATE(1974), 1, + STATE(1624), 1, sym_list_lit, - STATE(2901), 1, + STATE(2903), 1, sym__metadata_lit, - STATE(2973), 1, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(3074), 1, + STATE(3064), 1, aux_sym_list_lit_repeat1, - STATE(1892), 3, + STATE(1680), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [177355] = 8, + [177285] = 8, ACTIONS(47), 1, sym_block_comment, - STATE(2901), 1, + STATE(2903), 1, sym__metadata_lit, - STATE(2973), 1, + STATE(2980), 1, + sym_list_lit, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(2993), 1, - sym_list_lit, - STATE(3080), 1, + STATE(3079), 1, aux_sym_list_lit_repeat1, - ACTIONS(10941), 3, + ACTIONS(10943), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(2991), 3, + STATE(2985), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [177384] = 10, + [177314] = 10, ACTIONS(47), 1, sym_block_comment, + ACTIONS(4769), 1, + anon_sym_LPAREN, ACTIONS(8099), 1, anon_sym_CARET, ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(10961), 1, - aux_sym_num_lit_token1, - STATE(2901), 1, + STATE(2903), 1, sym__metadata_lit, - STATE(2973), 1, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(3115), 1, + STATE(2994), 1, + sym_list_lit, + STATE(3079), 1, aux_sym_list_lit_repeat1, - ACTIONS(1642), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - STATE(1898), 2, - sym_num_lit, - sym_complex_num_lit, - [177417] = 10, + STATE(2985), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [177347] = 10, ACTIONS(47), 1, sym_block_comment, + ACTIONS(5049), 1, + anon_sym_LPAREN, ACTIONS(8099), 1, anon_sym_CARET, ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(10963), 1, - aux_sym_num_lit_token1, - STATE(2901), 1, + STATE(2903), 1, sym__metadata_lit, - STATE(2973), 1, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(3114), 1, + STATE(2994), 1, + sym_list_lit, + STATE(3099), 1, aux_sym_list_lit_repeat1, - ACTIONS(129), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - STATE(2598), 2, - sym_num_lit, - sym_complex_num_lit, - [177450] = 10, + STATE(2985), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [177380] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6049), 1, - anon_sym_LPAREN, ACTIONS(8099), 1, anon_sym_CARET, ACTIONS(8101), 1, anon_sym_POUND_CARET, - STATE(2901), 1, + ACTIONS(10959), 1, + aux_sym_num_lit_token1, + STATE(2903), 1, sym__metadata_lit, - STATE(2973), 1, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(2988), 1, - sym_list_lit, - STATE(3080), 1, + STATE(3422), 1, aux_sym_list_lit_repeat1, - STATE(2991), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [177483] = 8, + ACTIONS(120), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + STATE(1010), 2, + sym_num_lit, + sym_complex_num_lit, + [177413] = 8, ACTIONS(47), 1, sym_block_comment, - STATE(1964), 1, - sym_list_lit, - STATE(2901), 1, + STATE(2903), 1, sym__metadata_lit, - STATE(2973), 1, + STATE(2978), 1, + sym_list_lit, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(3074), 1, + STATE(3079), 1, aux_sym_list_lit_repeat1, - ACTIONS(10941), 3, + ACTIONS(10943), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(1892), 3, + STATE(2985), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [177512] = 10, + [177442] = 10, ACTIONS(47), 1, sym_block_comment, ACTIONS(8099), 1, anon_sym_CARET, ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(10965), 1, + ACTIONS(10961), 1, aux_sym_num_lit_token1, - STATE(2901), 1, + STATE(2903), 1, sym__metadata_lit, - STATE(2973), 1, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(3424), 1, + STATE(3419), 1, aux_sym_list_lit_repeat1, - ACTIONS(57), 2, + ACTIONS(1498), 2, anon_sym_POUNDC, anon_sym_POUNDc, - STATE(1874), 2, + STATE(1893), 2, sym_num_lit, sym_complex_num_lit, - [177545] = 8, + [177475] = 8, ACTIONS(47), 1, sym_block_comment, - STATE(2613), 1, + STATE(1823), 1, sym_list_lit, - STATE(2901), 1, + STATE(2903), 1, sym__metadata_lit, - STATE(2973), 1, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(3079), 1, + STATE(3100), 1, aux_sym_list_lit_repeat1, - ACTIONS(10941), 3, + ACTIONS(10943), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(2648), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [177574] = 8, + [177504] = 8, ACTIONS(47), 1, sym_block_comment, - STATE(1015), 1, + STATE(1640), 1, sym_list_lit, - STATE(2901), 1, + STATE(2903), 1, sym__metadata_lit, - STATE(2973), 1, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(3069), 1, + STATE(3064), 1, aux_sym_list_lit_repeat1, - ACTIONS(10941), 3, + ACTIONS(10943), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(1070), 3, + STATE(1680), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [177603] = 10, + [177533] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4857), 1, - anon_sym_LPAREN, ACTIONS(8099), 1, anon_sym_CARET, ACTIONS(8101), 1, anon_sym_POUND_CARET, - STATE(1012), 1, - sym_list_lit, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3069), 1, - aux_sym_list_lit_repeat1, - STATE(1070), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [177636] = 8, - ACTIONS(47), 1, - sym_block_comment, - STATE(1165), 1, - sym_list_lit, - STATE(2901), 1, + ACTIONS(10963), 1, + aux_sym_num_lit_token1, + STATE(2903), 1, sym__metadata_lit, - STATE(2973), 1, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(3073), 1, + STATE(3419), 1, aux_sym_list_lit_repeat1, - ACTIONS(10941), 3, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - STATE(1187), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [177665] = 10, + ACTIONS(1498), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + STATE(1893), 2, + sym_num_lit, + sym_complex_num_lit, + [177566] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(1612), 1, - anon_sym_LPAREN, ACTIONS(8099), 1, anon_sym_CARET, ACTIONS(8101), 1, anon_sym_POUND_CARET, - STATE(1974), 1, - sym_list_lit, - STATE(2901), 1, + ACTIONS(10965), 1, + aux_sym_num_lit_token1, + STATE(2903), 1, sym__metadata_lit, - STATE(2973), 1, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(3103), 1, + STATE(3420), 1, aux_sym_list_lit_repeat1, - STATE(1892), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [177698] = 8, + ACTIONS(236), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + STATE(2610), 2, + sym_num_lit, + sym_complex_num_lit, + [177599] = 8, ACTIONS(47), 1, sym_block_comment, - STATE(1126), 1, + STATE(1902), 1, sym_list_lit, - STATE(2901), 1, + STATE(2903), 1, sym__metadata_lit, - STATE(2973), 1, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(3069), 1, + STATE(3061), 1, aux_sym_list_lit_repeat1, - ACTIONS(10941), 3, + ACTIONS(10943), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(1070), 3, + STATE(1975), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [177727] = 8, + [177628] = 10, ACTIONS(47), 1, sym_block_comment, - STATE(1849), 1, + ACTIONS(1468), 1, + anon_sym_LPAREN, + ACTIONS(8099), 1, + anon_sym_CARET, + ACTIONS(8101), 1, + anon_sym_POUND_CARET, + STATE(1904), 1, sym_list_lit, - STATE(2901), 1, + STATE(2903), 1, sym__metadata_lit, - STATE(2973), 1, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(3067), 1, + STATE(3061), 1, aux_sym_list_lit_repeat1, - ACTIONS(10941), 3, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - STATE(1877), 3, + STATE(1975), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [177756] = 10, + [177661] = 10, ACTIONS(47), 1, sym_block_comment, ACTIONS(8099), 1, @@ -193545,196 +193050,179 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(10967), 1, aux_sym_num_lit_token1, - STATE(2901), 1, + STATE(2903), 1, sym__metadata_lit, - STATE(2973), 1, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(3115), 1, + STATE(3423), 1, aux_sym_list_lit_repeat1, - ACTIONS(1642), 2, + ACTIONS(160), 2, anon_sym_POUNDC, anon_sym_POUNDc, - STATE(1898), 2, + STATE(1149), 2, sym_num_lit, sym_complex_num_lit, - [177789] = 8, + [177694] = 8, ACTIONS(47), 1, sym_block_comment, - STATE(1976), 1, + STATE(1914), 1, sym_list_lit, - STATE(2901), 1, + STATE(2903), 1, sym__metadata_lit, - STATE(2973), 1, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(3103), 1, + STATE(3061), 1, aux_sym_list_lit_repeat1, - ACTIONS(10941), 3, + ACTIONS(10943), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(1892), 3, + STATE(1975), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [177818] = 8, + [177723] = 8, ACTIONS(47), 1, sym_block_comment, - STATE(1713), 1, + STATE(1914), 1, sym_list_lit, - STATE(2901), 1, + STATE(2903), 1, sym__metadata_lit, - STATE(2973), 1, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(3090), 1, + STATE(3097), 1, aux_sym_list_lit_repeat1, - ACTIONS(10941), 3, + ACTIONS(10943), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(1676), 3, + STATE(1975), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [177847] = 8, + [177752] = 10, ACTIONS(47), 1, sym_block_comment, - STATE(1822), 1, - sym_list_lit, - STATE(2901), 1, + ACTIONS(8099), 1, + anon_sym_CARET, + ACTIONS(8101), 1, + anon_sym_POUND_CARET, + ACTIONS(10969), 1, + aux_sym_num_lit_token1, + STATE(2903), 1, sym__metadata_lit, - STATE(2973), 1, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(3067), 1, + STATE(3417), 1, aux_sym_list_lit_repeat1, - ACTIONS(10941), 3, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - STATE(1877), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [177876] = 10, + ACTIONS(5027), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + STATE(2967), 2, + sym_num_lit, + sym_complex_num_lit, + [177785] = 8, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6225), 1, - anon_sym_LPAREN, - ACTIONS(8099), 1, - anon_sym_CARET, - ACTIONS(8101), 1, - anon_sym_POUND_CARET, - STATE(1715), 1, + STATE(1530), 1, sym_list_lit, - STATE(2901), 1, + STATE(2903), 1, sym__metadata_lit, - STATE(2973), 1, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(3090), 1, + STATE(3071), 1, aux_sym_list_lit_repeat1, - STATE(1676), 3, + ACTIONS(10943), 3, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + STATE(1504), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [177909] = 4, + [177814] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10969), 1, - anon_sym_COLON, - ACTIONS(10971), 1, - anon_sym_COLON_COLON, - ACTIONS(7716), 9, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_DQUOTE, - aux_sym_sym_lit_token1, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LBRACE, - anon_sym_POUND_QMARK, - [177930] = 10, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4811), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, ACTIONS(8099), 1, anon_sym_CARET, ACTIONS(8101), 1, anon_sym_POUND_CARET, - STATE(2644), 1, + STATE(1532), 1, sym_list_lit, - STATE(2901), 1, + STATE(2903), 1, sym__metadata_lit, - STATE(2973), 1, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(3079), 1, + STATE(3071), 1, aux_sym_list_lit_repeat1, - STATE(2648), 3, + STATE(1504), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [177963] = 8, + [177847] = 8, ACTIONS(47), 1, sym_block_comment, - STATE(2628), 1, + STATE(1556), 1, sym_list_lit, - STATE(2901), 1, + STATE(2903), 1, sym__metadata_lit, - STATE(2973), 1, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(3079), 1, + STATE(3071), 1, aux_sym_list_lit_repeat1, - ACTIONS(10941), 3, + ACTIONS(10943), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(2648), 3, + STATE(1504), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [177992] = 8, + [177876] = 8, ACTIONS(47), 1, sym_block_comment, - STATE(1558), 1, + STATE(1028), 1, sym_list_lit, - STATE(2901), 1, + STATE(2903), 1, sym__metadata_lit, - STATE(2973), 1, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(3066), 1, + STATE(3093), 1, aux_sym_list_lit_repeat1, - ACTIONS(10941), 3, + ACTIONS(10943), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(1612), 3, + STATE(1109), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [178021] = 4, + [177905] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10969), 1, - anon_sym_COLON, ACTIONS(10971), 1, + anon_sym_COLON, + ACTIONS(10973), 1, anon_sym_COLON_COLON, - ACTIONS(7617), 9, + ACTIONS(7477), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -193744,14 +193232,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LBRACE, anon_sym_POUND_QMARK, - [178042] = 4, + [177926] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10969), 1, - anon_sym_COLON, ACTIONS(10971), 1, + anon_sym_COLON, + ACTIONS(10973), 1, anon_sym_COLON_COLON, - ACTIONS(7453), 9, + ACTIONS(7815), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -193761,264 +193249,272 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LBRACE, anon_sym_POUND_QMARK, - [178063] = 10, + [177947] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4761), 1, + ACTIONS(8099), 1, + anon_sym_CARET, + ACTIONS(8101), 1, + anon_sym_POUND_CARET, + ACTIONS(10975), 1, + aux_sym_num_lit_token1, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3417), 1, + aux_sym_list_lit_repeat1, + ACTIONS(5027), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + STATE(2967), 2, + sym_num_lit, + sym_complex_num_lit, + [177980] = 10, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4751), 1, anon_sym_LPAREN, ACTIONS(8099), 1, anon_sym_CARET, ACTIONS(8101), 1, anon_sym_POUND_CARET, - STATE(1523), 1, + STATE(1031), 1, sym_list_lit, - STATE(2901), 1, + STATE(2903), 1, sym__metadata_lit, - STATE(2973), 1, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(3066), 1, + STATE(3093), 1, aux_sym_list_lit_repeat1, - STATE(1612), 3, + STATE(1109), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [178096] = 8, + [178013] = 8, ACTIONS(47), 1, sym_block_comment, - STATE(1143), 1, + STATE(1883), 1, sym_list_lit, - STATE(2901), 1, + STATE(2903), 1, sym__metadata_lit, - STATE(2973), 1, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(3073), 1, + STATE(3100), 1, aux_sym_list_lit_repeat1, - ACTIONS(10941), 3, + ACTIONS(10943), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(1187), 3, + STATE(1790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [178125] = 10, + [178042] = 10, ACTIONS(47), 1, sym_block_comment, ACTIONS(8099), 1, anon_sym_CARET, ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(10973), 1, + ACTIONS(10977), 1, aux_sym_num_lit_token1, - STATE(2901), 1, + STATE(2903), 1, sym__metadata_lit, - STATE(2973), 1, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(3111), 1, + STATE(3421), 1, aux_sym_list_lit_repeat1, - ACTIONS(672), 2, + ACTIONS(1741), 2, anon_sym_POUNDC, anon_sym_POUNDc, - STATE(1182), 2, + STATE(1302), 2, sym_num_lit, sym_complex_num_lit, - [178158] = 10, + [178075] = 8, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8099), 1, - anon_sym_CARET, - ACTIONS(8101), 1, - anon_sym_POUND_CARET, - ACTIONS(10975), 1, - aux_sym_num_lit_token1, - STATE(2901), 1, + STATE(2578), 1, + sym_list_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2973), 1, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(3116), 1, + STATE(3058), 1, aux_sym_list_lit_repeat1, - ACTIONS(6251), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - STATE(1689), 2, - sym_num_lit, - sym_complex_num_lit, - [178191] = 10, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(8099), 1, + ACTIONS(10943), 3, anon_sym_CARET, - ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(10977), 1, - aux_sym_num_lit_token1, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3110), 1, - aux_sym_list_lit_repeat1, - ACTIONS(4787), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - STATE(1508), 2, - sym_num_lit, - sym_complex_num_lit, - [178224] = 8, + anon_sym_LPAREN, + STATE(2584), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [178104] = 8, ACTIONS(47), 1, sym_block_comment, - STATE(2901), 1, - sym__metadata_lit, - STATE(2911), 1, + STATE(1315), 1, sym_list_lit, - STATE(2973), 1, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(3080), 1, + STATE(3060), 1, aux_sym_list_lit_repeat1, - ACTIONS(10941), 3, + ACTIONS(10943), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(2991), 3, + STATE(1289), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [178253] = 8, + [178133] = 4, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(10971), 1, + anon_sym_COLON, + ACTIONS(10973), 1, + anon_sym_COLON_COLON, + ACTIONS(7453), 9, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_DQUOTE, + aux_sym_sym_lit_token1, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LBRACE, + anon_sym_POUND_QMARK, + [178154] = 8, ACTIONS(47), 1, sym_block_comment, - STATE(1521), 1, + STATE(1055), 1, sym_list_lit, - STATE(2901), 1, + STATE(2903), 1, sym__metadata_lit, - STATE(2973), 1, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(3066), 1, + STATE(3093), 1, aux_sym_list_lit_repeat1, - ACTIONS(10941), 3, + ACTIONS(10943), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(1612), 3, + STATE(1109), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [178282] = 8, + [178183] = 8, ACTIONS(47), 1, sym_block_comment, - STATE(1741), 1, - sym_list_lit, - STATE(2901), 1, + STATE(2903), 1, sym__metadata_lit, - STATE(2973), 1, + STATE(2980), 1, + sym_list_lit, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(3090), 1, + STATE(3065), 1, aux_sym_list_lit_repeat1, - ACTIONS(10941), 3, + ACTIONS(10943), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(1676), 3, + STATE(2985), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [178311] = 4, + [178212] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10979), 1, - anon_sym_COLON, - ACTIONS(10981), 1, - anon_sym_COLON_COLON, - ACTIONS(7617), 8, - sym__ws, - sym_comment, - anon_sym_POUND_, - aux_sym_sym_lit_token1, - anon_sym_CARET, - anon_sym_POUND_CARET, + ACTIONS(4793), 1, anon_sym_LPAREN, - anon_sym_COMMA, - [178331] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7714), 1, - anon_sym_COLON, - ACTIONS(7712), 9, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - aux_sym_sym_lit_token1, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_COMMA, - [178349] = 3, + STATE(1317), 1, + sym_list_lit, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3060), 1, + aux_sym_list_lit_repeat1, + STATE(1289), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [178245] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7648), 1, - anon_sym_COLON, - ACTIONS(7646), 9, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - aux_sym_sym_lit_token1, - anon_sym_CARET, - anon_sym_POUND_CARET, + ACTIONS(5005), 1, anon_sym_LPAREN, - anon_sym_COMMA, - [178367] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7563), 1, - anon_sym_COLON, - ACTIONS(7561), 9, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - aux_sym_sym_lit_token1, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(2994), 1, + sym_list_lit, + STATE(3065), 1, + aux_sym_list_lit_repeat1, + STATE(2985), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [178278] = 10, + ACTIONS(29), 1, anon_sym_LPAREN, - anon_sym_COMMA, - [178385] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7571), 1, - anon_sym_COLON, - ACTIONS(7569), 9, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - aux_sym_sym_lit_token1, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_COMMA, - [178403] = 3, + STATE(1825), 1, + sym_list_lit, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3100), 1, + aux_sym_list_lit_repeat1, + STATE(1790), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [178311] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7531), 1, + ACTIONS(7618), 1, anon_sym_COLON, - ACTIONS(7529), 9, + ACTIONS(7616), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -194028,12 +193524,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [178421] = 3, + [178329] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7531), 1, + ACTIONS(7684), 1, anon_sym_COLON, - ACTIONS(7529), 9, + ACTIONS(7682), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -194043,42 +193539,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [178439] = 3, + [178347] = 8, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7742), 1, - anon_sym_COLON, - ACTIONS(7740), 9, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - aux_sym_sym_lit_token1, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, + ACTIONS(8436), 1, + aux_sym_num_lit_token1, + ACTIONS(8444), 1, + anon_sym_SQUOTE, + ACTIONS(10981), 1, anon_sym_COMMA, - [178457] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7595), 1, + ACTIONS(10985), 1, + aux_sym_format_directive_type_token11, + ACTIONS(10979), 2, anon_sym_COLON, - ACTIONS(7593), 9, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - aux_sym_sym_lit_token1, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_COMMA, - [178475] = 3, + anon_sym_AT, + ACTIONS(10983), 2, + anon_sym_AT_COLON, + anon_sym_COLON_AT, + STATE(3068), 2, + sym__format_token, + aux_sym_format_modifiers_repeat1, + [178375] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7583), 1, + ACTIONS(7586), 1, anon_sym_COLON, - ACTIONS(7581), 9, + ACTIONS(7584), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -194088,12 +193574,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [178493] = 3, + [178393] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7519), 1, + ACTIONS(7497), 1, anon_sym_COLON, - ACTIONS(7517), 9, + ACTIONS(7495), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -194103,27 +193589,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [178511] = 3, + [178411] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7495), 1, - anon_sym_COLON, - ACTIONS(7493), 9, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - aux_sym_sym_lit_token1, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_COMMA, - [178529] = 3, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3004), 1, + aux_sym_list_lit_repeat1, + STATE(2573), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [178441] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7607), 1, + ACTIONS(7504), 1, anon_sym_COLON, - ACTIONS(7605), 9, + ACTIONS(7502), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -194133,54 +193625,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [178547] = 9, + [178459] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4761), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, ACTIONS(8099), 1, anon_sym_CARET, ACTIONS(8101), 1, anon_sym_POUND_CARET, - STATE(2901), 1, + STATE(2903), 1, sym__metadata_lit, - STATE(2973), 1, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(3019), 1, + STATE(3004), 1, aux_sym_list_lit_repeat1, - STATE(1518), 3, + STATE(1311), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [178577] = 9, - ACTIONS(29), 1, - anon_sym_LPAREN, + [178489] = 9, ACTIONS(47), 1, sym_block_comment, + ACTIONS(1468), 1, + anon_sym_LPAREN, ACTIONS(8099), 1, anon_sym_CARET, ACTIONS(8101), 1, anon_sym_POUND_CARET, - STATE(2901), 1, + STATE(2903), 1, sym__metadata_lit, - STATE(2973), 1, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(3019), 1, + STATE(3004), 1, aux_sym_list_lit_repeat1, - STATE(1862), 3, + STATE(1899), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [178607] = 3, + [178519] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7819), 1, + ACTIONS(7727), 1, anon_sym_COLON, - ACTIONS(7817), 9, + ACTIONS(7725), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -194190,33 +193682,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [178625] = 9, + [178537] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4857), 1, - anon_sym_LPAREN, - ACTIONS(8099), 1, - anon_sym_CARET, - ACTIONS(8101), 1, - anon_sym_POUND_CARET, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3019), 1, - aux_sym_list_lit_repeat1, - STATE(1022), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [178655] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7678), 1, + ACTIONS(7578), 1, anon_sym_COLON, - ACTIONS(7676), 9, + ACTIONS(7576), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -194226,92 +193697,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [178673] = 9, + [178555] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5181), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, ACTIONS(8099), 1, anon_sym_CARET, ACTIONS(8101), 1, anon_sym_POUND_CARET, - STATE(2901), 1, + STATE(2903), 1, sym__metadata_lit, - STATE(2973), 1, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(3019), 1, + STATE(3004), 1, aux_sym_list_lit_repeat1, - STATE(2983), 3, + STATE(1694), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [178703] = 5, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(10986), 1, - anon_sym_POUND_, - ACTIONS(10983), 2, - sym__ws, - sym_comment, - STATE(3072), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(7407), 4, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_COMMA, - [178725] = 9, + [178585] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4412), 1, + ACTIONS(5005), 1, anon_sym_LPAREN, ACTIONS(8099), 1, anon_sym_CARET, ACTIONS(8101), 1, anon_sym_POUND_CARET, - STATE(2901), 1, + STATE(2903), 1, sym__metadata_lit, - STATE(2973), 1, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(3019), 1, + STATE(3004), 1, aux_sym_list_lit_repeat1, - STATE(1139), 3, + STATE(2972), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [178755] = 9, + [178615] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6049), 1, - anon_sym_LPAREN, - ACTIONS(8099), 1, + ACTIONS(7582), 1, + anon_sym_COLON, + ACTIONS(7580), 9, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + aux_sym_sym_lit_token1, anon_sym_CARET, - ACTIONS(8101), 1, anon_sym_POUND_CARET, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3019), 1, - aux_sym_list_lit_repeat1, - STATE(1904), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [178785] = 3, + anon_sym_LPAREN, + anon_sym_COMMA, + [178633] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7837), 1, + ACTIONS(7789), 1, anon_sym_COLON, - ACTIONS(7835), 9, + ACTIONS(7787), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -194321,107 +193769,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [178803] = 4, + [178651] = 7, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10979), 1, + ACTIONS(10987), 1, + aux_sym_num_lit_token1, + ACTIONS(10992), 1, + anon_sym_SQUOTE, + ACTIONS(10995), 1, + anon_sym_COMMA, + ACTIONS(10990), 2, anon_sym_COLON, - ACTIONS(10981), 1, + anon_sym_AT, + STATE(3068), 2, + sym__format_token, + aux_sym_format_modifiers_repeat1, + ACTIONS(10998), 3, + anon_sym_AT_COLON, + anon_sym_COLON_AT, + aux_sym_format_directive_type_token11, + [178677] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7676), 1, + anon_sym_COLON, + ACTIONS(7674), 9, + sym__ws, + sym_comment, + anon_sym_POUND_, anon_sym_COLON_COLON, - ACTIONS(7453), 8, + aux_sym_sym_lit_token1, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_COMMA, + [178695] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7529), 1, + anon_sym_COLON, + ACTIONS(7527), 9, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, aux_sym_sym_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [178823] = 9, + [178713] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, ACTIONS(8099), 1, anon_sym_CARET, ACTIONS(8101), 1, anon_sym_POUND_CARET, - STATE(2901), 1, + STATE(2903), 1, sym__metadata_lit, - STATE(2973), 1, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(3019), 1, + STATE(3004), 1, aux_sym_list_lit_repeat1, - STATE(2983), 3, + STATE(1527), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [178853] = 4, + [178743] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10979), 1, + ACTIONS(7734), 1, anon_sym_COLON, - ACTIONS(10981), 1, - anon_sym_COLON_COLON, - ACTIONS(7716), 8, + ACTIONS(7732), 9, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, aux_sym_sym_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [178873] = 9, + [178761] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(8099), 1, + ACTIONS(7475), 1, + anon_sym_COLON, + ACTIONS(7473), 9, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + aux_sym_sym_lit_token1, anon_sym_CARET, - ACTIONS(8101), 1, anon_sym_POUND_CARET, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3019), 1, - aux_sym_list_lit_repeat1, - STATE(2596), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [178903] = 9, + anon_sym_LPAREN, + anon_sym_COMMA, + [178779] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6049), 1, - anon_sym_LPAREN, - ACTIONS(8099), 1, + ACTIONS(7489), 1, + anon_sym_COLON, + ACTIONS(7487), 9, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + aux_sym_sym_lit_token1, anon_sym_CARET, - ACTIONS(8101), 1, anon_sym_POUND_CARET, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3019), 1, - aux_sym_list_lit_repeat1, - STATE(2983), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [178933] = 3, + anon_sym_LPAREN, + anon_sym_COMMA, + [178797] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7803), 1, + ACTIONS(7614), 1, anon_sym_COLON, - ACTIONS(7801), 9, + ACTIONS(7612), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -194431,12 +193899,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [178951] = 3, + [178815] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7503), 1, + ACTIONS(7680), 1, anon_sym_COLON, - ACTIONS(7501), 9, + ACTIONS(7678), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -194446,12 +193914,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [178969] = 3, + [178833] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7499), 1, + ACTIONS(7451), 1, anon_sym_COLON, - ACTIONS(7497), 9, + ACTIONS(7449), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -194461,46 +193929,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [178987] = 3, + [178851] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7664), 1, + ACTIONS(11000), 1, anon_sym_COLON, - ACTIONS(7662), 9, + ACTIONS(11002), 1, + anon_sym_COLON_COLON, + ACTIONS(7477), 8, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, aux_sym_sym_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [179005] = 7, + [178871] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10989), 1, - aux_sym_num_lit_token1, - ACTIONS(10994), 1, - anon_sym_SQUOTE, - ACTIONS(10997), 1, - anon_sym_COMMA, - ACTIONS(10992), 2, - anon_sym_COLON, - anon_sym_AT, - STATE(3085), 2, - sym__format_token, - aux_sym_format_modifiers_repeat1, - ACTIONS(11000), 3, - anon_sym_AT_COLON, - anon_sym_COLON_AT, - aux_sym_format_directive_type_token11, - [179031] = 3, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(8099), 1, + anon_sym_CARET, + ACTIONS(8101), 1, + anon_sym_POUND_CARET, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3004), 1, + aux_sym_list_lit_repeat1, + STATE(2972), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [178901] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7660), 1, + ACTIONS(7645), 1, anon_sym_COLON, - ACTIONS(7658), 9, + ACTIONS(7643), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -194510,12 +193981,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [179049] = 3, + [178919] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7451), 1, + ACTIONS(7493), 1, anon_sym_COLON, - ACTIONS(7449), 9, + ACTIONS(7491), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -194525,12 +193996,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [179067] = 3, + [178937] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7644), 1, + ACTIONS(7861), 1, anon_sym_COLON, - ACTIONS(7642), 9, + ACTIONS(7859), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -194540,12 +194011,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [179085] = 3, + [178955] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7702), 1, + ACTIONS(7738), 1, anon_sym_COLON, - ACTIONS(7700), 9, + ACTIONS(7736), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -194555,33 +194026,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [179103] = 9, + [178973] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6225), 1, - anon_sym_LPAREN, - ACTIONS(8099), 1, + ACTIONS(11007), 1, + anon_sym_POUND_, + ACTIONS(11004), 2, + sym__ws, + sym_comment, + STATE(3084), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7407), 4, anon_sym_CARET, - ACTIONS(8101), 1, anon_sym_POUND_CARET, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3019), 1, - aux_sym_list_lit_repeat1, - STATE(1708), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [179133] = 3, + anon_sym_LPAREN, + anon_sym_COMMA, + [178995] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7487), 1, + ACTIONS(7712), 1, anon_sym_COLON, - ACTIONS(7485), 9, + ACTIONS(7710), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -194591,32 +194058,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [179151] = 8, + [179013] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8436), 1, - aux_sym_num_lit_token1, - ACTIONS(8444), 1, - anon_sym_SQUOTE, - ACTIONS(11004), 1, - anon_sym_COMMA, - ACTIONS(11008), 1, - aux_sym_format_directive_type_token11, - ACTIONS(11002), 2, + ACTIONS(7590), 1, anon_sym_COLON, - anon_sym_AT, - ACTIONS(11006), 2, - anon_sym_AT_COLON, - anon_sym_COLON_AT, - STATE(3085), 2, - sym__format_token, - aux_sym_format_modifiers_repeat1, - [179179] = 3, + ACTIONS(7588), 9, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + aux_sym_sym_lit_token1, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_COMMA, + [179031] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7852), 1, + ACTIONS(7634), 1, anon_sym_COLON, - ACTIONS(7850), 9, + ACTIONS(7632), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -194626,7 +194088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [179197] = 5, + [179049] = 5, ACTIONS(47), 1, sym_block_comment, ACTIONS(11013), 1, @@ -194634,7 +194096,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(11010), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, @@ -194643,12 +194105,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_cl, anon_sym_into, - [179219] = 3, + [179071] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7507), 1, + ACTIONS(7765), 1, anon_sym_COLON, - ACTIONS(7505), 9, + ACTIONS(7763), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -194658,12 +194120,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [179237] = 3, + [179089] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7483), 1, + ACTIONS(7536), 1, anon_sym_COLON, - ACTIONS(7481), 9, + ACTIONS(7534), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -194673,12 +194135,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [179255] = 3, + [179107] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7463), 1, + ACTIONS(7761), 1, + anon_sym_COLON, + ACTIONS(7759), 9, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + aux_sym_sym_lit_token1, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_COMMA, + [179125] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7552), 1, anon_sym_COLON, - ACTIONS(7461), 9, + ACTIONS(7550), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -194688,42 +194165,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [179273] = 3, + [179143] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7535), 1, + ACTIONS(4751), 1, + anon_sym_LPAREN, + ACTIONS(8099), 1, + anon_sym_CARET, + ACTIONS(8101), 1, + anon_sym_POUND_CARET, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3004), 1, + aux_sym_list_lit_repeat1, + STATE(1022), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [179173] = 4, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(11000), 1, anon_sym_COLON, - ACTIONS(7533), 9, + ACTIONS(11002), 1, + anon_sym_COLON_COLON, + ACTIONS(7815), 8, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, aux_sym_sym_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [179291] = 3, + [179193] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7841), 1, + ACTIONS(11000), 1, anon_sym_COLON, - ACTIONS(7839), 9, + ACTIONS(11002), 1, + anon_sym_COLON_COLON, + ACTIONS(7453), 8, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, aux_sym_sym_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [179309] = 3, + [179213] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7459), 1, + ACTIONS(7594), 1, anon_sym_COLON, - ACTIONS(7457), 9, + ACTIONS(7592), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -194733,33 +194233,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [179327] = 9, + [179231] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4795), 1, + ACTIONS(5049), 1, anon_sym_LPAREN, ACTIONS(8099), 1, anon_sym_CARET, ACTIONS(8101), 1, anon_sym_POUND_CARET, - STATE(2901), 1, + STATE(2903), 1, sym__metadata_lit, - STATE(2973), 1, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(3019), 1, + STATE(3004), 1, aux_sym_list_lit_repeat1, - STATE(1462), 3, + STATE(1899), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [179357] = 3, + [179261] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7862), 1, + ACTIONS(7738), 1, anon_sym_COLON, - ACTIONS(7860), 9, + ACTIONS(7736), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -194769,67 +194269,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [179375] = 9, + [179279] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(1612), 1, + ACTIONS(5049), 1, anon_sym_LPAREN, ACTIONS(8099), 1, anon_sym_CARET, ACTIONS(8101), 1, anon_sym_POUND_CARET, - STATE(2901), 1, + STATE(2903), 1, sym__metadata_lit, - STATE(2973), 1, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(3019), 1, + STATE(3004), 1, aux_sym_list_lit_repeat1, - STATE(1904), 3, + STATE(2972), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [179405] = 7, + [179309] = 9, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8099), 1, + anon_sym_CARET, + ACTIONS(8101), 1, + anon_sym_POUND_CARET, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3004), 1, + aux_sym_list_lit_repeat1, + STATE(1819), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [179339] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(11018), 1, + ACTIONS(7696), 1, + anon_sym_COLON, + ACTIONS(7694), 9, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(11020), 1, + anon_sym_COLON_COLON, + aux_sym_sym_lit_token1, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_COMMA, + [179357] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7660), 1, anon_sym_COLON, - ACTIONS(11022), 1, - anon_sym_cl, - ACTIONS(11024), 1, - anon_sym_into, - ACTIONS(11016), 2, + ACTIONS(7658), 9, sym__ws, sym_comment, - STATE(3094), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [179430] = 10, + anon_sym_POUND_, + anon_sym_COLON_COLON, + aux_sym_sym_lit_token1, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_COMMA, + [179375] = 9, ACTIONS(47), 1, sym_block_comment, + ACTIONS(4380), 1, + anon_sym_LPAREN, ACTIONS(8099), 1, anon_sym_CARET, ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(10440), 1, - anon_sym_LBRACE, - ACTIONS(11026), 1, - anon_sym_POUND_QMARK, - STATE(2884), 1, - sym__bare_map_lit, - STATE(2901), 1, + STATE(2903), 1, sym__metadata_lit, - STATE(2973), 1, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(3019), 1, + STATE(3004), 1, aux_sym_list_lit_repeat1, - [179461] = 10, + STATE(1158), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [179405] = 10, ACTIONS(47), 1, sym_block_comment, ACTIONS(8099), 1, @@ -194838,5111 +194371,5077 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(10440), 1, anon_sym_LBRACE, - ACTIONS(11028), 1, + ACTIONS(11016), 1, anon_sym_POUND_QMARK, - STATE(2884), 1, + STATE(2880), 1, sym__bare_map_lit, - STATE(2901), 1, + STATE(2903), 1, sym__metadata_lit, - STATE(2973), 1, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(3019), 1, + STATE(3004), 1, aux_sym_list_lit_repeat1, - [179492] = 7, + [179436] = 7, ACTIONS(47), 1, sym_block_comment, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - ACTIONS(11030), 1, + ACTIONS(11022), 1, anon_sym_COLON, - ACTIONS(11032), 1, + ACTIONS(11024), 1, anon_sym_cl, - ACTIONS(11034), 1, + ACTIONS(11026), 1, anon_sym_into, - ACTIONS(11016), 2, - sym__ws, - sym_comment, - STATE(3094), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [179517] = 6, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(10945), 1, - aux_sym_num_lit_token1, - ACTIONS(11018), 1, - anon_sym_POUND_, - STATE(3410), 1, - sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179539] = 6, + [179461] = 7, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, - aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3591), 1, - sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11028), 1, + anon_sym_COLON, + ACTIONS(11030), 1, + anon_sym_cl, + ACTIONS(11032), 1, + anon_sym_into, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179561] = 9, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(8099), 1, - anon_sym_CARET, - ACTIONS(8101), 1, - anon_sym_POUND_CARET, - ACTIONS(10713), 1, - anon_sym_POUNDC, - ACTIONS(10715), 1, - anon_sym_POUNDc, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3019), 1, - aux_sym_list_lit_repeat1, - [179589] = 9, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(8099), 1, - anon_sym_CARET, - ACTIONS(8101), 1, - anon_sym_POUND_CARET, - ACTIONS(10609), 1, - anon_sym_POUNDC, - ACTIONS(10611), 1, - anon_sym_POUNDc, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3019), 1, - aux_sym_list_lit_repeat1, - [179617] = 9, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(8099), 1, - anon_sym_CARET, - ACTIONS(8101), 1, - anon_sym_POUND_CARET, - ACTIONS(10493), 1, - anon_sym_POUNDC, - ACTIONS(10495), 1, - anon_sym_POUNDc, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3019), 1, - aux_sym_list_lit_repeat1, - [179645] = 9, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(8099), 1, - anon_sym_CARET, - ACTIONS(8101), 1, - anon_sym_POUND_CARET, - ACTIONS(10561), 1, - anon_sym_POUNDC, - ACTIONS(10563), 1, - anon_sym_POUNDc, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3019), 1, - aux_sym_list_lit_repeat1, - [179673] = 9, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(8099), 1, - anon_sym_CARET, - ACTIONS(8101), 1, - anon_sym_POUND_CARET, - ACTIONS(10629), 1, - anon_sym_POUNDC, - ACTIONS(10631), 1, - anon_sym_POUNDc, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3019), 1, - aux_sym_list_lit_repeat1, - [179701] = 9, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(8099), 1, - anon_sym_CARET, - ACTIONS(8101), 1, - anon_sym_POUND_CARET, - ACTIONS(10647), 1, - anon_sym_POUNDC, - ACTIONS(10649), 1, - anon_sym_POUNDc, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3019), 1, - aux_sym_list_lit_repeat1, - [179729] = 9, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(8099), 1, - anon_sym_CARET, - ACTIONS(8101), 1, - anon_sym_POUND_CARET, - ACTIONS(10667), 1, - anon_sym_POUNDC, - ACTIONS(10669), 1, - anon_sym_POUNDc, - STATE(2901), 1, - sym__metadata_lit, - STATE(2973), 1, - sym_meta_lit, - STATE(2974), 1, - sym_old_meta_lit, - STATE(3019), 1, - aux_sym_list_lit_repeat1, - [179757] = 9, + [179486] = 10, ACTIONS(47), 1, sym_block_comment, ACTIONS(8099), 1, anon_sym_CARET, ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(10531), 1, - anon_sym_POUNDC, - ACTIONS(10533), 1, - anon_sym_POUNDc, - STATE(2901), 1, + ACTIONS(10440), 1, + anon_sym_LBRACE, + ACTIONS(11034), 1, + anon_sym_POUND_QMARK, + STATE(2880), 1, + sym__bare_map_lit, + STATE(2903), 1, sym__metadata_lit, - STATE(2973), 1, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, sym_old_meta_lit, - STATE(3019), 1, + STATE(3004), 1, aux_sym_list_lit_repeat1, - [179785] = 6, + [179517] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3217), 1, + STATE(3731), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179807] = 6, + [179539] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3220), 1, + STATE(3574), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179829] = 6, + [179561] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3224), 1, + STATE(3576), 1, sym_num_lit, ACTIONS(11036), 2, sym__ws, sym_comment, - STATE(3118), 3, + STATE(3131), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179851] = 6, + [179583] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3225), 1, + STATE(3577), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11038), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3132), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179873] = 6, + [179605] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3227), 1, + STATE(3133), 1, sym_num_lit, - ACTIONS(11038), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3119), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179895] = 6, + [179627] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3228), 1, + STATE(3110), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179917] = 6, + [179649] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3230), 1, + STATE(3716), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11040), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3120), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179939] = 6, + [179671] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3232), 1, + STATE(3121), 1, sym_num_lit, - ACTIONS(11040), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3121), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179961] = 6, + [179693] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3233), 1, + STATE(3111), 1, sym_num_lit, ACTIONS(11042), 2, sym__ws, sym_comment, - STATE(3123), 3, + STATE(3112), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179983] = 6, + [179715] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3234), 1, + STATE(3426), 1, sym_num_lit, - ACTIONS(11044), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3124), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180005] = 6, + [179737] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, - aux_sym_num_lit_token1, - ACTIONS(11018), 1, - anon_sym_POUND_, - STATE(3234), 1, - sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11044), 1, + aux_sym_num_lit_token2, + ACTIONS(7443), 7, sym__ws, sym_comment, - STATE(3094), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [180027] = 6, + anon_sym_POUND_, + aux_sym_num_lit_token1, + anon_sym_COLON, + anon_sym_cl, + anon_sym_into, + [179753] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3236), 1, + STATE(3121), 1, sym_num_lit, ACTIONS(11046), 2, sym__ws, sym_comment, - STATE(3128), 3, + STATE(3122), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180049] = 6, + [179775] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3239), 1, + STATE(3430), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180071] = 6, + [179797] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3242), 1, + STATE(3431), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11048), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3125), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180093] = 6, + [179819] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3246), 1, + STATE(3126), 1, sym_num_lit, - ACTIONS(11048), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3130), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180115] = 6, + [179841] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3247), 1, + STATE(3777), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180137] = 6, + [179863] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3250), 1, + STATE(3114), 1, sym_num_lit, ACTIONS(11050), 2, sym__ws, sym_comment, - STATE(3131), 3, + STATE(3115), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180159] = 6, + [179885] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3251), 1, + STATE(3882), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180181] = 6, + [179907] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3254), 1, + STATE(3516), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11052), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3127), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180203] = 6, + [179929] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3256), 1, + STATE(3429), 1, sym_num_lit, - ACTIONS(11052), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3133), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180225] = 6, + [179951] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3257), 1, + STATE(3708), 1, sym_num_lit, - ACTIONS(11054), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3135), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180247] = 6, + [179973] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3258), 1, + STATE(3770), 1, sym_num_lit, - ACTIONS(11056), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3136), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180269] = 6, + [179995] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3258), 1, + STATE(3772), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11054), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3123), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180291] = 6, + [180017] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3260), 1, + STATE(3575), 1, sym_num_lit, - ACTIONS(11058), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3140), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180313] = 6, + [180039] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3264), 1, + STATE(3709), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180335] = 6, + [180061] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3267), 1, + STATE(3628), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11056), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3117), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180357] = 6, + [180083] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(11058), 1, + aux_sym_num_lit_token2, + ACTIONS(7443), 7, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_COMMA, + [180099] = 6, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3271), 1, + STATE(3137), 1, sym_num_lit, ACTIONS(11060), 2, sym__ws, sym_comment, - STATE(3142), 3, + STATE(3138), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180379] = 6, + [180121] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3272), 1, + STATE(3144), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11062), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3113), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180401] = 6, + [180143] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3274), 1, + STATE(3630), 1, sym_num_lit, - ACTIONS(11062), 2, + ACTIONS(11064), 2, sym__ws, sym_comment, - STATE(3143), 3, + STATE(3139), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180423] = 6, + [180165] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3275), 1, + STATE(3140), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180445] = 6, + [180187] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3277), 1, + STATE(3566), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180467] = 6, + [180209] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3279), 1, + STATE(3570), 1, sym_num_lit, - ACTIONS(11064), 2, + ACTIONS(11066), 2, sym__ws, sym_comment, - STATE(3145), 3, + STATE(3128), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180489] = 6, + [180231] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3280), 1, + STATE(3142), 1, sym_num_lit, - ACTIONS(11066), 2, + ACTIONS(11068), 2, sym__ws, sym_comment, - STATE(3147), 3, + STATE(3143), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180511] = 6, + [180253] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3281), 1, + STATE(3571), 1, sym_num_lit, - ACTIONS(11068), 2, + ACTIONS(11070), 2, sym__ws, sym_comment, - STATE(3148), 3, + STATE(3129), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180533] = 6, + [180275] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3281), 1, + STATE(3130), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180555] = 6, + [180297] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3283), 1, + STATE(3633), 1, sym_num_lit, - ACTIONS(11070), 2, + ACTIONS(11072), 2, sym__ws, sym_comment, - STATE(3152), 3, + STATE(3109), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180577] = 6, + [180319] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3286), 1, + STATE(3433), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11074), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3146), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180599] = 6, + [180341] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3289), 1, + STATE(3437), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180621] = 6, + [180363] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3293), 1, + STATE(3438), 1, sym_num_lit, - ACTIONS(11072), 2, + ACTIONS(11076), 2, sym__ws, sym_comment, - STATE(3154), 3, + STATE(3150), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180643] = 6, + [180385] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3294), 1, + STATE(3444), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11078), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3152), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180665] = 6, + [180407] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3296), 1, + STATE(3483), 1, sym_num_lit, - ACTIONS(11074), 2, + ACTIONS(11080), 2, sym__ws, sym_comment, STATE(3155), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180687] = 6, + [180429] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3297), 1, + STATE(3486), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180709] = 6, + [180451] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3299), 1, + STATE(3487), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11082), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3158), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180731] = 6, + [180473] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3301), 1, + STATE(3489), 1, sym_num_lit, - ACTIONS(11076), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3157), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180753] = 6, + [180495] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3302), 1, + STATE(3490), 1, sym_num_lit, - ACTIONS(11078), 2, + ACTIONS(11084), 2, sym__ws, sym_comment, STATE(3159), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180775] = 6, + [180517] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3303), 1, + STATE(3491), 1, sym_num_lit, - ACTIONS(11080), 2, + ACTIONS(11086), 2, sym__ws, sym_comment, STATE(3160), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180797] = 6, + [180539] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3303), 1, + STATE(3493), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180819] = 6, + [180561] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3305), 1, + STATE(3494), 1, sym_num_lit, - ACTIONS(11082), 2, + ACTIONS(11088), 2, sym__ws, sym_comment, - STATE(3164), 3, + STATE(3162), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180841] = 6, + [180583] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3308), 1, + STATE(3495), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11090), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3163), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180863] = 6, + [180605] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3311), 1, + STATE(3498), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180885] = 6, + [180627] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3316), 1, + STATE(3501), 1, sym_num_lit, - ACTIONS(11084), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3166), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180907] = 6, + [180649] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3317), 1, + STATE(3503), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180929] = 6, + [180671] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3320), 1, + STATE(3504), 1, sym_num_lit, - ACTIONS(11086), 2, + ACTIONS(11092), 2, sym__ws, sym_comment, - STATE(3167), 3, + STATE(3165), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180951] = 6, + [180693] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3321), 1, + STATE(3507), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180973] = 6, + [180715] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3324), 1, + STATE(3509), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180995] = 6, + [180737] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3326), 1, + STATE(3510), 1, sym_num_lit, - ACTIONS(11088), 2, + ACTIONS(11094), 2, sym__ws, sym_comment, - STATE(3169), 3, + STATE(3166), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181017] = 6, + [180759] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3328), 1, + STATE(3517), 1, sym_num_lit, - ACTIONS(11090), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3171), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181039] = 6, + [180781] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3329), 1, + STATE(3564), 1, sym_num_lit, - ACTIONS(11092), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3172), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181061] = 6, + [180803] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3329), 1, + STATE(3632), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11096), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3168), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181083] = 6, + [180825] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3331), 1, + STATE(3635), 1, sym_num_lit, - ACTIONS(11094), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3176), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181105] = 6, + [180847] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3335), 1, + STATE(3636), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11098), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3172), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181127] = 6, + [180869] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3339), 1, + STATE(3637), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11100), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3174), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181149] = 6, + [180891] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3343), 1, + STATE(3638), 1, sym_num_lit, - ACTIONS(11096), 2, + ACTIONS(11102), 2, sym__ws, sym_comment, - STATE(3178), 3, + STATE(3177), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181171] = 6, + [180913] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3344), 1, + STATE(3641), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181193] = 6, + [180935] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3346), 1, + STATE(3642), 1, sym_num_lit, - ACTIONS(11098), 2, + ACTIONS(11104), 2, sym__ws, sym_comment, - STATE(3179), 3, + STATE(3180), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181215] = 6, + [180957] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3347), 1, + STATE(3644), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181237] = 6, + [180979] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3349), 1, + STATE(3645), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11106), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3181), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181259] = 6, + [181001] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3351), 1, + STATE(3646), 1, sym_num_lit, - ACTIONS(11100), 2, + ACTIONS(11108), 2, sym__ws, sym_comment, - STATE(3181), 3, + STATE(3182), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181281] = 6, + [181023] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3352), 1, + STATE(3648), 1, sym_num_lit, - ACTIONS(11102), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3183), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181303] = 6, + [181045] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3353), 1, + STATE(3649), 1, sym_num_lit, - ACTIONS(11104), 2, + ACTIONS(11110), 2, sym__ws, sym_comment, STATE(3184), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181325] = 6, + [181067] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3353), 1, + STATE(3650), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11112), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3185), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181347] = 6, + [181089] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3355), 1, + STATE(3657), 1, sym_num_lit, - ACTIONS(11106), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3188), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181369] = 6, + [181111] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3358), 1, + STATE(3706), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181391] = 6, + [181133] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3361), 1, + STATE(3735), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181413] = 6, + [181155] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3365), 1, + STATE(3769), 1, sym_num_lit, - ACTIONS(11108), 2, + ACTIONS(11114), 2, sym__ws, sym_comment, - STATE(3190), 3, + STATE(3187), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181435] = 6, + [181177] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3366), 1, + STATE(3781), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181457] = 6, + [181199] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3368), 1, + STATE(3806), 1, sym_num_lit, - ACTIONS(11110), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3191), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181479] = 6, + [181221] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3369), 1, + STATE(3819), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11116), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3188), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181501] = 6, + [181243] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3371), 1, + STATE(3719), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181523] = 6, + [181265] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3373), 1, + STATE(3624), 1, sym_num_lit, - ACTIONS(11112), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3193), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181545] = 6, + [181287] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3374), 1, + STATE(3654), 1, sym_num_lit, - ACTIONS(11114), 2, + ACTIONS(11118), 2, sym__ws, sym_comment, - STATE(3195), 3, + STATE(3190), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181567] = 6, + [181309] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3375), 1, + STATE(3660), 1, sym_num_lit, - ACTIONS(11116), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3196), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181589] = 6, + [181331] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3375), 1, + STATE(3661), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11120), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3194), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181611] = 6, + [181353] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3377), 1, + STATE(3662), 1, sym_num_lit, - ACTIONS(11118), 2, + ACTIONS(11122), 2, sym__ws, sym_comment, - STATE(3200), 3, + STATE(3196), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181633] = 6, + [181375] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3380), 1, + STATE(3663), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11124), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3199), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181655] = 6, + [181397] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3383), 1, + STATE(3666), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181677] = 6, + [181419] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3387), 1, + STATE(3667), 1, sym_num_lit, - ACTIONS(11120), 2, + ACTIONS(11126), 2, sym__ws, sym_comment, STATE(3202), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181699] = 6, + [181441] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3388), 1, + STATE(3669), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181721] = 6, + [181463] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3390), 1, + STATE(3670), 1, sym_num_lit, - ACTIONS(11122), 2, + ACTIONS(11128), 2, sym__ws, sym_comment, STATE(3203), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181743] = 6, + [181485] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3391), 1, + STATE(3671), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11130), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3204), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181765] = 6, + [181507] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3393), 1, + STATE(3673), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181787] = 6, + [181529] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3395), 1, + STATE(3674), 1, sym_num_lit, - ACTIONS(11124), 2, + ACTIONS(11132), 2, sym__ws, sym_comment, - STATE(3205), 3, + STATE(3206), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181809] = 6, + [181551] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3396), 1, + STATE(3675), 1, sym_num_lit, - ACTIONS(11126), 2, + ACTIONS(11134), 2, sym__ws, sym_comment, STATE(3207), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181831] = 6, + [181573] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3397), 1, + STATE(3678), 1, sym_num_lit, - ACTIONS(11128), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3208), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181853] = 6, + [181595] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3397), 1, + STATE(3684), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181875] = 6, + [181617] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3699), 1, + STATE(3686), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181897] = 6, + [181639] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3399), 1, + STATE(3687), 1, sym_num_lit, - ACTIONS(11130), 2, + ACTIONS(11136), 2, sym__ws, sym_comment, - STATE(3212), 3, + STATE(3209), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181919] = 6, + [181661] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3682), 1, + STATE(3690), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181941] = 6, + [181683] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3678), 1, + STATE(3692), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181963] = 6, + [181705] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3673), 1, + STATE(3693), 1, sym_num_lit, - ACTIONS(11132), 2, + ACTIONS(11138), 2, sym__ws, sym_comment, - STATE(3215), 3, + STATE(3210), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181985] = 6, + [181727] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3672), 1, + STATE(3698), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182007] = 6, + [181749] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3670), 1, + STATE(3702), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182029] = 6, + [181771] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(8099), 1, + anon_sym_CARET, + ACTIONS(8101), 1, + anon_sym_POUND_CARET, + ACTIONS(10573), 1, + anon_sym_POUNDC, + ACTIONS(10575), 1, + anon_sym_POUNDc, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3004), 1, + aux_sym_list_lit_repeat1, + [181799] = 6, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3667), 1, + STATE(3720), 1, sym_num_lit, - ACTIONS(11134), 2, + ACTIONS(11140), 2, sym__ws, sym_comment, - STATE(3216), 3, + STATE(3213), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182051] = 6, + [181821] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3666), 1, + STATE(3722), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182073] = 6, + [181843] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3664), 1, + STATE(3723), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11142), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3217), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182095] = 6, + [181865] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3661), 1, + STATE(3724), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11144), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3108), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182117] = 6, + [181887] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3658), 1, + STATE(3725), 1, sym_num_lit, - ACTIONS(11136), 2, + ACTIONS(11146), 2, sym__ws, sym_comment, - STATE(3218), 3, + STATE(3221), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182139] = 6, + [181909] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3657), 1, + STATE(3728), 1, sym_num_lit, - ACTIONS(11138), 2, + ACTIONS(11018), 2, + sym__ws, + sym_comment, + STATE(3088), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [181931] = 6, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(10957), 1, + aux_sym_num_lit_token1, + ACTIONS(11020), 1, + anon_sym_POUND_, + STATE(3729), 1, + sym_num_lit, + ACTIONS(11148), 2, sym__ws, sym_comment, - STATE(3219), 3, + STATE(3224), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182161] = 6, + [181953] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3656), 1, + STATE(3732), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11150), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3225), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182183] = 6, + [181975] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3426), 1, + STATE(3733), 1, sym_num_lit, - ACTIONS(11140), 2, + ACTIONS(11152), 2, sym__ws, sym_comment, - STATE(3221), 3, + STATE(3226), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182205] = 6, + [181997] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3653), 1, + STATE(3737), 1, sym_num_lit, - ACTIONS(11142), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3222), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182227] = 6, + [182019] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3652), 1, + STATE(3738), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11154), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3228), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182249] = 6, + [182041] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3650), 1, + STATE(3739), 1, sym_num_lit, - ACTIONS(11144), 2, + ACTIONS(11156), 2, sym__ws, sym_comment, - STATE(3223), 3, + STATE(3229), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182271] = 6, + [182063] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3649), 1, + STATE(3742), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182293] = 6, + [182085] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3645), 1, + STATE(3745), 1, sym_num_lit, - ACTIONS(11146), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3226), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182315] = 6, + [182107] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3644), 1, + STATE(3747), 1, sym_num_lit, - ACTIONS(11148), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3229), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182337] = 6, + [182129] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3643), 1, + STATE(3748), 1, sym_num_lit, - ACTIONS(11150), 2, + ACTIONS(11158), 2, sym__ws, sym_comment, STATE(3231), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182359] = 6, + [182151] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3642), 1, + STATE(3751), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182381] = 6, + [182173] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3637), 1, + STATE(3753), 1, sym_num_lit, - ACTIONS(11152), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3235), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182403] = 6, + [182195] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3588), 1, + STATE(3754), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11160), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3232), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182425] = 6, + [182217] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3584), 1, + STATE(3760), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182447] = 6, + [182239] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3579), 1, + STATE(3764), 1, sym_num_lit, - ACTIONS(11154), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3237), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182469] = 6, + [182261] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3578), 1, + STATE(3779), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11162), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3234), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182491] = 6, + [182283] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3576), 1, + STATE(3783), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182513] = 6, + [182305] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3573), 1, + STATE(3784), 1, sym_num_lit, - ACTIONS(11156), 2, + ACTIONS(11164), 2, sym__ws, sym_comment, STATE(3238), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182535] = 6, + [182327] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3572), 1, + STATE(3785), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11166), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3240), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182557] = 6, + [182349] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3570), 1, + STATE(3786), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11168), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3243), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182579] = 6, + [182371] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3567), 1, + STATE(3789), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182601] = 6, + [182393] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3564), 1, + STATE(3790), 1, sym_num_lit, - ACTIONS(11158), 2, + ACTIONS(11170), 2, sym__ws, sym_comment, - STATE(3240), 3, + STATE(3246), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182623] = 6, + [182415] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3563), 1, + STATE(3792), 1, sym_num_lit, - ACTIONS(11160), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3241), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182645] = 6, + [182437] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3562), 1, + STATE(3794), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11172), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3247), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182667] = 6, + [182459] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3420), 1, + STATE(3795), 1, sym_num_lit, - ACTIONS(11162), 2, + ACTIONS(11174), 2, sym__ws, sym_comment, - STATE(3108), 3, + STATE(3248), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182689] = 6, + [182481] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3560), 1, + STATE(3797), 1, sym_num_lit, - ACTIONS(11164), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3243), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182711] = 6, + [182503] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3559), 1, + STATE(3798), 1, sym_num_lit, - ACTIONS(11166), 2, + ACTIONS(11176), 2, sym__ws, sym_comment, - STATE(3244), 3, + STATE(3250), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182733] = 6, + [182525] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3558), 1, + STATE(3799), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11178), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3251), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182755] = 6, + [182547] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3423), 1, + STATE(3802), 1, sym_num_lit, - ACTIONS(11168), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3422), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182777] = 6, + [182569] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3556), 1, + STATE(3805), 1, sym_num_lit, - ACTIONS(11170), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3245), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182799] = 6, + [182591] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3555), 1, + STATE(3808), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182821] = 6, + [182613] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3551), 1, + STATE(3809), 1, sym_num_lit, - ACTIONS(11172), 2, + ACTIONS(11180), 2, sym__ws, sym_comment, - STATE(3248), 3, + STATE(3253), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182843] = 6, + [182635] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3550), 1, + STATE(3812), 1, sym_num_lit, - ACTIONS(11174), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3252), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182865] = 6, + [182657] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3549), 1, + STATE(3814), 1, sym_num_lit, - ACTIONS(11176), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3255), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182887] = 6, + [182679] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3548), 1, + STATE(3815), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11182), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3254), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182909] = 6, + [182701] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3543), 1, + STATE(3821), 1, sym_num_lit, - ACTIONS(11178), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3259), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182931] = 6, + [182723] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3494), 1, + STATE(3825), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182953] = 6, + [182745] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3490), 1, + STATE(3435), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11184), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182975] = 6, + [182767] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3860), 1, + STATE(3440), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182997] = 6, + [182789] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3485), 1, + STATE(3441), 1, sym_num_lit, - ACTIONS(11180), 2, + ACTIONS(11186), 2, sym__ws, sym_comment, - STATE(3261), 3, + STATE(3260), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183019] = 6, + [182811] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3484), 1, + STATE(3442), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11188), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3262), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183041] = 6, + [182833] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3482), 1, + STATE(3443), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11190), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3265), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183063] = 6, + [182855] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3479), 1, + STATE(3447), 1, sym_num_lit, - ACTIONS(11182), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3262), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183085] = 6, + [182877] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3478), 1, + STATE(3448), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11192), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3268), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183107] = 6, + [182899] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3476), 1, + STATE(3450), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183129] = 6, + [182921] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3473), 1, + STATE(3451), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11194), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3269), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183151] = 6, + [182943] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3470), 1, + STATE(3452), 1, sym_num_lit, - ACTIONS(11184), 2, + ACTIONS(11196), 2, sym__ws, sym_comment, - STATE(3265), 3, + STATE(3270), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183173] = 6, + [182965] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3469), 1, + STATE(3454), 1, sym_num_lit, - ACTIONS(11186), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3266), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183195] = 6, + [182987] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3468), 1, + STATE(3455), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11198), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3272), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183217] = 6, + [183009] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3466), 1, + STATE(3456), 1, sym_num_lit, - ACTIONS(11188), 2, + ACTIONS(11200), 2, sym__ws, sym_comment, - STATE(3268), 3, + STATE(3273), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183239] = 6, + [183031] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3465), 1, + STATE(3459), 1, sym_num_lit, - ACTIONS(11190), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3269), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183261] = 6, + [183053] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3464), 1, + STATE(3462), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183283] = 6, + [183075] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3462), 1, + STATE(3464), 1, sym_num_lit, - ACTIONS(11192), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3270), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183305] = 6, + [183097] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3461), 1, + STATE(3465), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11202), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3275), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183327] = 6, + [183119] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3457), 1, + STATE(3468), 1, sym_num_lit, - ACTIONS(11194), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3273), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183349] = 6, + [183141] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3456), 1, + STATE(3470), 1, sym_num_lit, - ACTIONS(11196), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3276), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183371] = 6, + [183163] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3455), 1, + STATE(3471), 1, sym_num_lit, - ACTIONS(11198), 2, + ACTIONS(11204), 2, sym__ws, sym_comment, - STATE(3278), 3, + STATE(3276), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183393] = 6, + [183185] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3454), 1, + STATE(3476), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183415] = 6, + [183207] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3449), 1, + STATE(3480), 1, sym_num_lit, - ACTIONS(11200), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3282), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183437] = 6, + [183229] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3701), 1, + STATE(3515), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11206), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3278), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183459] = 6, + [183251] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3796), 1, + STATE(3519), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183481] = 6, + [183273] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3801), 1, + STATE(3520), 1, sym_num_lit, - ACTIONS(11202), 2, + ACTIONS(11208), 2, sym__ws, sym_comment, - STATE(3284), 3, + STATE(3282), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183503] = 6, + [183295] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(8099), 1, + anon_sym_CARET, + ACTIONS(8101), 1, + anon_sym_POUND_CARET, + ACTIONS(10687), 1, + anon_sym_POUNDC, + ACTIONS(10689), 1, + anon_sym_POUNDc, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3004), 1, + aux_sym_list_lit_repeat1, + [183323] = 6, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3802), 1, + STATE(3522), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11210), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3287), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183525] = 6, + [183345] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3804), 1, + STATE(3526), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183547] = 6, + [183367] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3807), 1, + STATE(3527), 1, sym_num_lit, - ACTIONS(11204), 2, + ACTIONS(11212), 2, sym__ws, sym_comment, - STATE(3285), 3, + STATE(3290), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183569] = 6, + [183389] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3808), 1, + STATE(3529), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183591] = 6, + [183411] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3810), 1, + STATE(3530), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11214), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3291), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183613] = 6, + [183433] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3813), 1, + STATE(3531), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11216), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3292), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183635] = 6, + [183455] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3821), 1, + STATE(3533), 1, sym_num_lit, - ACTIONS(11206), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3287), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183657] = 6, + [183477] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3822), 1, + STATE(3534), 1, sym_num_lit, - ACTIONS(11208), 2, + ACTIONS(11218), 2, sym__ws, sym_comment, - STATE(3288), 3, + STATE(3294), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183679] = 6, + [183499] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3823), 1, + STATE(3535), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11220), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3295), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183701] = 6, + [183521] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3825), 1, + STATE(3538), 1, sym_num_lit, - ACTIONS(11210), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3290), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183723] = 6, + [183543] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3826), 1, + STATE(3541), 1, sym_num_lit, - ACTIONS(11212), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3291), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183745] = 6, + [183565] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3827), 1, + STATE(3543), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183767] = 6, + [183587] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3829), 1, + STATE(3544), 1, sym_num_lit, - ACTIONS(11214), 2, + ACTIONS(11222), 2, sym__ws, sym_comment, - STATE(3292), 3, + STATE(3297), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183789] = 6, + [183609] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3830), 1, + STATE(3547), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183811] = 6, + [183631] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3834), 1, + STATE(3549), 1, sym_num_lit, - ACTIONS(11216), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3295), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183833] = 6, + [183653] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3835), 1, + STATE(3550), 1, sym_num_lit, - ACTIONS(11218), 2, + ACTIONS(11224), 2, sym__ws, sym_comment, STATE(3298), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183855] = 6, + [183675] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3836), 1, + STATE(3555), 1, sym_num_lit, - ACTIONS(11220), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3300), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183877] = 6, + [183697] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3837), 1, + STATE(3559), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183899] = 6, + [183719] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3846), 1, + STATE(3579), 1, sym_num_lit, - ACTIONS(11222), 2, + ACTIONS(11226), 2, sym__ws, sym_comment, - STATE(3304), 3, + STATE(3300), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183921] = 6, + [183741] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3880), 1, + STATE(3581), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183943] = 6, + [183763] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3884), 1, + STATE(3582), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11228), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3304), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183965] = 6, + [183785] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3870), 1, + STATE(3583), 1, sym_num_lit, - ACTIONS(11224), 2, + ACTIONS(11230), 2, sym__ws, sym_comment, STATE(3306), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183987] = 6, + [183807] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3871), 1, + STATE(3425), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11232), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3309), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184009] = 6, + [183829] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3877), 1, + STATE(3587), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184031] = 6, + [183851] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3864), 1, + STATE(3588), 1, sym_num_lit, - ACTIONS(11226), 2, + ACTIONS(11234), 2, sym__ws, sym_comment, - STATE(3307), 3, + STATE(3312), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184053] = 6, + [183873] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3863), 1, + STATE(3590), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184075] = 6, + [183895] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3859), 1, + STATE(3591), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11236), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3313), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184097] = 6, + [183917] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3327), 1, + STATE(3592), 1, sym_num_lit, - ACTIONS(11228), 2, + ACTIONS(11238), 2, sym__ws, sym_comment, - STATE(3336), 3, + STATE(3314), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184119] = 6, + [183939] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3854), 1, + STATE(3594), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184141] = 6, + [183961] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3842), 1, + STATE(3595), 1, sym_num_lit, - ACTIONS(11230), 2, + ACTIONS(11240), 2, sym__ws, sym_comment, - STATE(3309), 3, + STATE(3316), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184163] = 6, + [183983] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3841), 1, + STATE(3596), 1, sym_num_lit, - ACTIONS(11232), 2, + ACTIONS(11242), 2, sym__ws, sym_comment, - STATE(3310), 3, + STATE(3317), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184185] = 6, + [184005] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3327), 1, + STATE(3599), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184207] = 6, + [184027] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3819), 1, + STATE(3602), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184229] = 6, + [184049] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3815), 1, + STATE(3604), 1, sym_num_lit, - ACTIONS(11234), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3312), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184251] = 6, + [184071] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3814), 1, + STATE(3605), 1, sym_num_lit, - ACTIONS(11236), 2, + ACTIONS(11244), 2, sym__ws, sym_comment, - STATE(3313), 3, + STATE(3319), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184273] = 6, + [184093] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3879), 1, + STATE(3608), 1, sym_num_lit, - ACTIONS(11238), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3213), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184295] = 6, + [184115] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3792), 1, + STATE(3610), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184317] = 6, + [184137] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3788), 1, + STATE(3611), 1, sym_num_lit, - ACTIONS(11240), 2, + ACTIONS(11246), 2, sym__ws, sym_comment, - STATE(3315), 3, + STATE(3320), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184339] = 6, + [184159] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3787), 1, + STATE(3616), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184361] = 6, + [184181] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3784), 1, + STATE(3620), 1, sym_num_lit, - ACTIONS(11242), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3319), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184383] = 6, + [184203] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3700), 1, + STATE(3145), 1, sym_num_lit, - ACTIONS(11244), 2, + ACTIONS(11248), 2, sym__ws, sym_comment, - STATE(3416), 3, + STATE(3322), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184405] = 6, + [184225] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3783), 1, + STATE(3147), 1, sym_num_lit, - ACTIONS(11246), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3323), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184427] = 6, + [184247] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3781), 1, + STATE(3147), 1, sym_num_lit, - ACTIONS(11248), 2, + ACTIONS(11250), 2, sym__ws, sym_comment, - STATE(3325), 3, + STATE(3326), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184449] = 6, + [184269] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3780), 1, + STATE(3148), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11252), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3327), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184471] = 6, + [184291] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3777), 1, + STATE(3149), 1, sym_num_lit, - ACTIONS(11250), 2, + ACTIONS(11254), 2, sym__ws, sym_comment, - STATE(3330), 3, + STATE(3329), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184493] = 6, + [184313] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3878), 1, + STATE(3151), 1, sym_num_lit, - ACTIONS(11252), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3263), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184515] = 6, + [184335] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3742), 1, + STATE(3153), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184537] = 6, + [184357] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3736), 1, + STATE(3154), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11256), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3331), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184559] = 6, + [184379] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3731), 1, + STATE(3156), 1, sym_num_lit, - ACTIONS(11254), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3333), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184581] = 6, + [184401] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3415), 1, + STATE(3157), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11258), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3332), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184603] = 6, + [184423] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3730), 1, + STATE(3161), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184625] = 6, + [184445] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3727), 1, + STATE(3164), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184647] = 6, + [184467] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3723), 1, + STATE(3167), 1, sym_num_lit, - ACTIONS(11256), 2, + ACTIONS(11260), 2, sym__ws, sym_comment, STATE(3334), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184669] = 6, + [184489] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3722), 1, + STATE(3169), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184691] = 6, + [184511] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3720), 1, + STATE(3169), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11262), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3338), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184713] = 6, + [184533] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3717), 1, + STATE(3170), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11264), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3339), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184735] = 6, + [184555] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3714), 1, + STATE(3171), 1, sym_num_lit, - ACTIONS(11258), 2, + ACTIONS(11266), 2, sym__ws, sym_comment, - STATE(3337), 3, + STATE(3341), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184757] = 6, + [184577] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3706), 1, + STATE(3173), 1, sym_num_lit, - ACTIONS(11260), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3338), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184779] = 6, + [184599] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3705), 1, + STATE(3175), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184801] = 6, + [184621] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3702), 1, + STATE(3176), 1, sym_num_lit, - ACTIONS(11262), 2, + ACTIONS(11268), 2, sym__ws, sym_comment, - STATE(3340), 3, + STATE(3343), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184823] = 6, + [184643] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3698), 1, + STATE(3178), 1, sym_num_lit, - ACTIONS(11264), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3341), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184845] = 6, + [184665] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3694), 1, + STATE(3179), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11270), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3344), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184867] = 6, + [184687] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3769), 1, + STATE(3183), 1, sym_num_lit, - ACTIONS(11266), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3342), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184889] = 6, + [184709] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3691), 1, + STATE(3186), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184911] = 6, + [184731] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3688), 1, + STATE(3189), 1, sym_num_lit, - ACTIONS(11268), 2, + ACTIONS(11272), 2, sym__ws, sym_comment, - STATE(3345), 3, + STATE(3346), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184933] = 6, + [184753] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3687), 1, + STATE(3191), 1, sym_num_lit, - ACTIONS(11270), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3348), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184955] = 6, + [184775] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3686), 1, + STATE(3191), 1, sym_num_lit, - ACTIONS(11272), 2, + ACTIONS(11274), 2, sym__ws, sym_comment, STATE(3350), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184977] = 6, + [184797] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3646), 1, + STATE(3192), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11276), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3351), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184999] = 6, + [184819] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3639), 1, + STATE(3193), 1, sym_num_lit, - ACTIONS(11274), 2, + ACTIONS(11278), 2, sym__ws, sym_comment, - STATE(3354), 3, + STATE(3353), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185021] = 6, + [184841] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3443), 1, + STATE(3195), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185043] = 6, + [184863] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3427), 1, + STATE(3197), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185065] = 6, + [184885] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3621), 1, + STATE(3198), 1, sym_num_lit, - ACTIONS(11276), 2, + ACTIONS(11280), 2, sym__ws, sym_comment, - STATE(3356), 3, + STATE(3355), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185087] = 6, + [184907] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3620), 1, + STATE(3200), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185109] = 6, + [184929] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3618), 1, + STATE(3201), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11282), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3356), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185131] = 6, + [184951] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3614), 1, + STATE(3205), 1, sym_num_lit, - ACTIONS(11278), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3357), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185153] = 6, + [184973] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3612), 1, + STATE(3208), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185175] = 6, + [184995] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3451), 1, + STATE(3212), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11284), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3358), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185197] = 6, + [185017] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3628), 1, + STATE(3214), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185219] = 6, + [185039] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3631), 1, + STATE(3214), 1, sym_num_lit, - ACTIONS(11280), 2, + ACTIONS(11286), 2, sym__ws, sym_comment, - STATE(3359), 3, + STATE(3362), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185241] = 6, + [185061] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3632), 1, + STATE(3215), 1, sym_num_lit, - ACTIONS(11282), 2, + ACTIONS(11288), 2, sym__ws, sym_comment, - STATE(3360), 3, + STATE(3363), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185263] = 6, + [185083] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3633), 1, + STATE(3216), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11290), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3365), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185285] = 6, + [185105] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3635), 1, + STATE(3218), 1, sym_num_lit, - ACTIONS(11284), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3362), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185307] = 6, + [185127] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3636), 1, + STATE(3219), 1, sym_num_lit, - ACTIONS(11286), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3363), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185329] = 6, + [185149] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3638), 1, + STATE(3220), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11292), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3367), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185351] = 6, + [185171] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3748), 1, + STATE(3222), 1, sym_num_lit, - ACTIONS(11288), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3364), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185373] = 6, + [185193] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3753), 1, + STATE(3223), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11294), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3368), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185395] = 6, + [185215] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3762), 1, + STATE(3227), 1, sym_num_lit, - ACTIONS(11290), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3367), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185417] = 6, + [185237] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3764), 1, + STATE(3230), 1, sym_num_lit, - ACTIONS(11292), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3370), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185439] = 6, + [185259] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3770), 1, + STATE(3233), 1, sym_num_lit, - ACTIONS(11294), 2, + ACTIONS(11296), 2, sym__ws, sym_comment, - STATE(3372), 3, + STATE(3370), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185461] = 6, + [185281] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3771), 1, + STATE(3235), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185483] = 6, + [185303] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3773), 1, + STATE(3235), 1, sym_num_lit, - ACTIONS(11296), 2, + ACTIONS(11298), 2, sym__ws, sym_comment, - STATE(3376), 3, + STATE(3374), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185505] = 6, + [185325] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3852), 1, + STATE(3236), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11300), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3375), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185527] = 6, + [185347] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3848), 1, + STATE(3237), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11302), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3377), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185549] = 6, + [185369] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3711), 1, + STATE(3239), 1, sym_num_lit, - ACTIONS(11298), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3378), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185571] = 6, + [185391] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3709), 1, + STATE(3241), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185593] = 6, + [185413] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3704), 1, + STATE(3242), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11304), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185615] = 6, + [185435] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3546), 1, + STATE(3244), 1, sym_num_lit, - ACTIONS(11300), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3379), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185637] = 6, + [185457] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3545), 1, + STATE(3245), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11306), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3380), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185659] = 6, + [185479] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3430), 1, + STATE(3249), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185681] = 6, + [185501] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3433), 1, + STATE(3252), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185703] = 6, + [185523] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3438), 1, + STATE(3255), 1, sym_num_lit, - ACTIONS(11302), 2, + ACTIONS(11308), 2, sym__ws, sym_comment, - STATE(3381), 3, + STATE(3382), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185725] = 6, + [185545] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3439), 1, + STATE(3257), 1, sym_num_lit, - ACTIONS(11304), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3382), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185747] = 6, + [185567] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3442), 1, + STATE(3257), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11310), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3386), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185769] = 6, + [185589] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3446), 1, + STATE(3258), 1, sym_num_lit, - ACTIONS(11306), 2, + ACTIONS(11312), 2, sym__ws, sym_comment, - STATE(3384), 3, + STATE(3387), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185791] = 6, + [185611] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3447), 1, + STATE(3259), 1, sym_num_lit, - ACTIONS(11308), 2, + ACTIONS(11314), 2, sym__ws, sym_comment, - STATE(3385), 3, + STATE(3389), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185813] = 6, + [185633] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3452), 1, + STATE(3261), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185835] = 6, + [185655] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3498), 1, + STATE(3263), 1, sym_num_lit, - ACTIONS(11310), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3386), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185857] = 6, + [185677] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3499), 1, + STATE(3264), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11316), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3391), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185879] = 6, + [185699] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3511), 1, + STATE(3266), 1, sym_num_lit, - ACTIONS(11312), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3389), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185901] = 6, + [185721] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3512), 1, + STATE(3267), 1, sym_num_lit, - ACTIONS(11314), 2, + ACTIONS(11318), 2, sym__ws, sym_comment, STATE(3392), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185923] = 6, + [185743] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3516), 1, + STATE(3271), 1, sym_num_lit, - ACTIONS(11316), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3394), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185945] = 6, + [185765] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3519), 1, + STATE(3274), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185967] = 6, + [185787] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3527), 1, + STATE(3277), 1, sym_num_lit, - ACTIONS(11318), 2, + ACTIONS(11320), 2, sym__ws, sym_comment, - STATE(3398), 3, + STATE(3394), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185989] = 6, + [185809] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3533), 1, + STATE(3279), 1, sym_num_lit, - ACTIONS(11320), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3109), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186011] = 6, + [185831] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3862), 1, + STATE(3279), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11322), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3398), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186033] = 6, + [185853] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3524), 1, + STATE(3424), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11324), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3399), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186055] = 6, + [185875] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3765), 1, + STATE(3281), 1, sym_num_lit, - ACTIONS(11322), 2, + ACTIONS(11326), 2, sym__ws, sym_comment, STATE(3401), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186077] = 6, + [185897] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3536), 1, + STATE(3283), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186099] = 6, + [185919] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3624), 1, + STATE(3285), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186121] = 6, + [185941] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3696), 1, + STATE(3286), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11328), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3403), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186143] = 3, + [185963] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(11324), 1, - aux_sym_num_lit_token2, - ACTIONS(7443), 7, - sym__ws, - sym_comment, + ACTIONS(10965), 1, + aux_sym_num_lit_token1, + ACTIONS(11020), 1, anon_sym_POUND_, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_COMMA, - [186159] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(11326), 1, - aux_sym_num_lit_token2, - ACTIONS(7443), 7, + STATE(3288), 1, + sym_num_lit, + ACTIONS(11018), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, - anon_sym_COLON, - anon_sym_cl, - anon_sym_into, - [186175] = 6, + STATE(3088), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [185985] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3332), 1, + STATE(3289), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11330), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3404), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186197] = 6, + [186007] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3761), 1, + STATE(3293), 1, sym_num_lit, - ACTIONS(11328), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3402), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186219] = 6, + [186029] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3759), 1, + STATE(3296), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186241] = 6, + [186051] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3400), 1, + STATE(3299), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11332), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3406), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186263] = 6, + [186073] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3752), 1, + STATE(3301), 1, sym_num_lit, - ACTIONS(11330), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3405), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186285] = 6, + [186095] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3751), 1, + STATE(3301), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11334), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3410), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186307] = 6, + [186117] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3746), 1, + STATE(3302), 1, sym_num_lit, - ACTIONS(11332), 2, + ACTIONS(11336), 2, sym__ws, sym_comment, - STATE(3406), 3, + STATE(3411), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186329] = 6, + [186139] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3745), 1, + STATE(3303), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11338), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3413), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186351] = 6, + [186161] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3322), 1, + STATE(3305), 1, sym_num_lit, - ACTIONS(11334), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3318), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186373] = 6, + [186183] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3403), 1, + STATE(3307), 1, sym_num_lit, - ACTIONS(11336), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3409), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186395] = 6, + [186205] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3755), 1, + STATE(3308), 1, sym_num_lit, - ACTIONS(11338), 2, + ACTIONS(11340), 2, sym__ws, sym_comment, - STATE(3404), 3, + STATE(3415), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186417] = 6, + [186227] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3712), 1, + STATE(3310), 1, sym_num_lit, - ACTIONS(11340), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3411), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186439] = 6, + [186249] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3419), 1, + STATE(3311), 1, sym_num_lit, ACTIONS(11342), 2, sym__ws, sym_comment, - STATE(3412), 3, + STATE(3416), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186461] = 6, + [186271] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10945), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3413), 1, + STATE(3315), 1, sym_num_lit, - ACTIONS(11016), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186483] = 6, + [186293] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10953), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - ACTIONS(11018), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3707), 1, + STATE(3318), 1, sym_num_lit, - ACTIONS(11344), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3414), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186505] = 9, + [186315] = 9, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8099), 1, + anon_sym_CARET, + ACTIONS(8101), 1, + anon_sym_POUND_CARET, + ACTIONS(10613), 1, + anon_sym_POUNDC, + ACTIONS(10615), 1, + anon_sym_POUNDc, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3004), 1, + aux_sym_list_lit_repeat1, + [186343] = 9, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8099), 1, + anon_sym_CARET, + ACTIONS(8101), 1, + anon_sym_POUND_CARET, + ACTIONS(10493), 1, + anon_sym_POUNDC, + ACTIONS(10495), 1, + anon_sym_POUNDc, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3004), 1, + aux_sym_list_lit_repeat1, + [186371] = 9, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8099), 1, + anon_sym_CARET, + ACTIONS(8101), 1, + anon_sym_POUND_CARET, + ACTIONS(10667), 1, + anon_sym_POUNDC, + ACTIONS(10669), 1, + anon_sym_POUNDc, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3004), 1, + aux_sym_list_lit_repeat1, + [186399] = 9, ACTIONS(47), 1, sym_block_comment, ACTIONS(8099), 1, @@ -199953,568 +199452,641 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDC, ACTIONS(10515), 1, anon_sym_POUNDc, - STATE(2901), 1, + STATE(2903), 1, sym__metadata_lit, - STATE(2973), 1, + STATE(2983), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3004), 1, + aux_sym_list_lit_repeat1, + [186427] = 9, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8099), 1, + anon_sym_CARET, + ACTIONS(8101), 1, + anon_sym_POUND_CARET, + ACTIONS(10553), 1, + anon_sym_POUNDC, + ACTIONS(10555), 1, + anon_sym_POUNDc, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3004), 1, + aux_sym_list_lit_repeat1, + [186455] = 9, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8099), 1, + anon_sym_CARET, + ACTIONS(8101), 1, + anon_sym_POUND_CARET, + ACTIONS(10593), 1, + anon_sym_POUNDC, + ACTIONS(10595), 1, + anon_sym_POUNDc, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, + sym_old_meta_lit, + STATE(3004), 1, + aux_sym_list_lit_repeat1, + [186483] = 9, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8099), 1, + anon_sym_CARET, + ACTIONS(8101), 1, + anon_sym_POUND_CARET, + ACTIONS(10533), 1, + anon_sym_POUNDC, + ACTIONS(10535), 1, + anon_sym_POUNDc, + STATE(2903), 1, + sym__metadata_lit, + STATE(2983), 1, + sym_meta_lit, + STATE(2984), 1, sym_old_meta_lit, - STATE(3019), 1, + STATE(3004), 1, aux_sym_list_lit_repeat1, + [186511] = 6, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(10957), 1, + aux_sym_num_lit_token1, + ACTIONS(11020), 1, + anon_sym_POUND_, + STATE(3521), 1, + sym_num_lit, + ACTIONS(11344), 2, + sym__ws, + sym_comment, + STATE(3284), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, [186533] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11346), 1, + ACTIONS(11348), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(11346), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3593), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [186552] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11350), 1, + ACTIONS(11352), 1, anon_sym_RPAREN, - ACTIONS(11348), 2, + ACTIONS(11350), 2, sym__ws, sym_comment, - STATE(3665), 3, + STATE(3717), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [186571] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11354), 1, - anon_sym_RPAREN, - ACTIONS(11352), 2, + ACTIONS(11356), 1, + anon_sym_LPAREN, + ACTIONS(11354), 2, sym__ws, sym_comment, - STATE(3448), 3, + STATE(3629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [186590] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11356), 1, + ACTIONS(11358), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [186609] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11358), 1, + ACTIONS(11362), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(11360), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3767), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [186628] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11362), 1, + ACTIONS(11366), 1, anon_sym_RPAREN, - ACTIONS(11360), 2, + ACTIONS(11364), 2, sym__ws, sym_comment, - STATE(3756), 3, + STATE(3778), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [186647] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11364), 1, + ACTIONS(11370), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(11368), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3830), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [186666] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11366), 1, - anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(11372), 1, + anon_sym_LPAREN, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [186685] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11370), 1, + ACTIONS(11376), 1, anon_sym_RPAREN, - ACTIONS(11368), 2, + ACTIONS(11374), 2, sym__ws, sym_comment, - STATE(3738), 3, + STATE(3436), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [186704] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11372), 1, + ACTIONS(11378), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [186723] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11374), 1, + ACTIONS(11382), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(11380), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3439), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [186742] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11376), 1, + ACTIONS(11384), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [186761] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11378), 1, + ACTIONS(11388), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(11386), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3484), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [186780] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11382), 1, + ACTIONS(11392), 1, anon_sym_RPAREN, - ACTIONS(11380), 2, + ACTIONS(11390), 2, sym__ws, sym_comment, - STATE(3708), 3, + STATE(3485), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [186799] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11386), 1, + ACTIONS(11394), 1, anon_sym_RPAREN, - ACTIONS(11384), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3531), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [186818] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11388), 1, + ACTIONS(11398), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(11396), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3445), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [186837] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11390), 1, + ACTIONS(11402), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(11400), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3446), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [186856] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11394), 1, + ACTIONS(11406), 1, anon_sym_RPAREN, - ACTIONS(11392), 2, + ACTIONS(11404), 2, sym__ws, sym_comment, - STATE(3617), 3, + STATE(3449), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [186875] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11398), 1, + ACTIONS(11410), 1, anon_sym_RPAREN, - ACTIONS(11396), 2, + ACTIONS(11408), 2, sym__ws, sym_comment, - STATE(3450), 3, + STATE(3453), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [186894] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11400), 1, + ACTIONS(11414), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(11412), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3488), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [186913] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11402), 1, + ACTIONS(11416), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [186932] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11406), 1, + ACTIONS(11418), 1, anon_sym_RPAREN, - ACTIONS(11404), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3429), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [186951] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11410), 1, + ACTIONS(11422), 1, anon_sym_RPAREN, - ACTIONS(11408), 2, + ACTIONS(11420), 2, sym__ws, sym_comment, - STATE(3431), 3, + STATE(3457), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [186970] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11412), 1, + ACTIONS(11426), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(11424), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3458), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [186989] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11416), 1, + ACTIONS(11428), 1, anon_sym_RPAREN, - ACTIONS(11414), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3453), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [187008] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11418), 1, + ACTIONS(11432), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(11430), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3884), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [187027] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11422), 1, + ACTIONS(11436), 1, anon_sym_RPAREN, - ACTIONS(11420), 2, + ACTIONS(11434), 2, sym__ws, sym_comment, - STATE(3623), 3, + STATE(3461), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [187046] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11426), 1, + ACTIONS(11440), 1, anon_sym_RPAREN, - ACTIONS(11424), 2, + ACTIONS(11438), 2, sym__ws, sym_comment, - STATE(3432), 3, + STATE(3463), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [187065] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11428), 1, + ACTIONS(11442), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [187084] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11432), 1, + ACTIONS(11446), 1, anon_sym_RPAREN, - ACTIONS(11430), 2, + ACTIONS(11444), 2, sym__ws, sym_comment, - STATE(3459), 3, + STATE(3466), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [187103] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11436), 1, + ACTIONS(11450), 1, anon_sym_RPAREN, - ACTIONS(11434), 2, + ACTIONS(11448), 2, sym__ws, sym_comment, - STATE(3460), 3, + STATE(3467), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [187122] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11440), 1, + ACTIONS(11454), 1, anon_sym_RPAREN, - ACTIONS(11438), 2, + ACTIONS(11452), 2, sym__ws, sym_comment, - STATE(3463), 3, + STATE(3469), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [187141] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11444), 1, + ACTIONS(11456), 1, anon_sym_RPAREN, - ACTIONS(11442), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3467), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [187160] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11446), 1, - anon_sym_LPAREN, - ACTIONS(10913), 2, + ACTIONS(11458), 1, + anon_sym_RPAREN, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [187179] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11448), 1, + ACTIONS(11462), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(11460), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3472), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [187198] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11450), 1, + ACTIONS(11464), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [187217] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11454), 1, + ACTIONS(11466), 1, anon_sym_RPAREN, - ACTIONS(11452), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3471), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [187236] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11458), 1, + ACTIONS(11470), 1, anon_sym_RPAREN, - ACTIONS(11456), 2, + ACTIONS(11468), 2, sym__ws, sym_comment, - STATE(3472), 3, + STATE(3473), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [187255] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11460), 1, + ACTIONS(11472), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [187274] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11464), 1, + ACTIONS(11476), 1, anon_sym_RPAREN, - ACTIONS(11462), 2, + ACTIONS(11474), 2, sym__ws, sym_comment, STATE(3474), 3, @@ -200524,11 +200096,11 @@ static const uint16_t ts_small_parse_table[] = { [187293] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11468), 1, + ACTIONS(11480), 1, anon_sym_RPAREN, - ACTIONS(11466), 2, + ACTIONS(11478), 2, sym__ws, sym_comment, STATE(3475), 3, @@ -200538,2811 +200110,2811 @@ static const uint16_t ts_small_parse_table[] = { [187312] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11472), 1, + ACTIONS(11482), 1, anon_sym_RPAREN, - ACTIONS(11470), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3477), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [187331] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11474), 1, + ACTIONS(11484), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [187350] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11478), 1, + ACTIONS(11488), 1, anon_sym_RPAREN, - ACTIONS(11476), 2, + ACTIONS(11486), 2, sym__ws, sym_comment, - STATE(3480), 3, + STATE(3477), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [187369] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11482), 1, + ACTIONS(11490), 1, anon_sym_RPAREN, - ACTIONS(11480), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3481), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [187388] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11486), 1, + ACTIONS(11494), 1, anon_sym_RPAREN, - ACTIONS(11484), 2, + ACTIONS(11492), 2, sym__ws, sym_comment, - STATE(3483), 3, + STATE(3478), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [187407] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11488), 1, + ACTIONS(11498), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(11496), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3479), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [187426] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11490), 1, + ACTIONS(11500), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [187445] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11494), 1, + ACTIONS(11502), 1, anon_sym_RPAREN, - ACTIONS(11492), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3486), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [187464] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11496), 1, + ACTIONS(11504), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [187483] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11498), 1, + ACTIONS(11506), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [187502] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11502), 1, + ACTIONS(11510), 1, anon_sym_RPAREN, - ACTIONS(11500), 2, + ACTIONS(11508), 2, sym__ws, sym_comment, - STATE(3487), 3, + STATE(3481), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [187521] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11504), 1, + ACTIONS(11512), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [187540] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11508), 1, + ACTIONS(11514), 1, anon_sym_RPAREN, - ACTIONS(11506), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3488), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [187559] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11512), 1, + ACTIONS(11516), 1, anon_sym_RPAREN, - ACTIONS(11510), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3489), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [187578] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11514), 1, + ACTIONS(11520), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(11518), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3482), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [187597] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11516), 1, + ACTIONS(11522), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [187616] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11520), 1, + ACTIONS(11524), 1, anon_sym_RPAREN, - ACTIONS(11518), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3491), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [187635] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11522), 1, + ACTIONS(11528), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(11526), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3492), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [187654] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11526), 1, + ACTIONS(11530), 1, anon_sym_RPAREN, - ACTIONS(11524), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3492), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [187673] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11530), 1, + ACTIONS(11532), 1, anon_sym_RPAREN, - ACTIONS(11528), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3493), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [187692] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11532), 1, + ACTIONS(11536), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(11534), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3496), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [187711] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11534), 1, + ACTIONS(11540), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(11538), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3497), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [187730] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11536), 1, + ACTIONS(11542), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [187749] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11538), 1, + ACTIONS(11546), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(11544), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3499), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [187768] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11542), 1, + ACTIONS(11550), 1, anon_sym_RPAREN, - ACTIONS(11540), 2, + ACTIONS(11548), 2, sym__ws, sym_comment, - STATE(3495), 3, + STATE(3500), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [187787] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11544), 1, + ACTIONS(11554), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(11552), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3502), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [187806] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11546), 1, + ACTIONS(11556), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [187825] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11548), 1, + ACTIONS(11560), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(11558), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3505), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [187844] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11552), 1, + ACTIONS(11564), 1, anon_sym_RPAREN, - ACTIONS(11550), 2, + ACTIONS(11562), 2, sym__ws, sym_comment, - STATE(3496), 3, + STATE(3506), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [187863] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11554), 1, + ACTIONS(11568), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(11566), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3508), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [187882] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11556), 1, + ACTIONS(11570), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [187901] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11558), 1, - anon_sym_LPAREN, - ACTIONS(10913), 2, + ACTIONS(11572), 1, + anon_sym_RPAREN, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [187920] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11562), 1, + ACTIONS(11576), 1, anon_sym_RPAREN, - ACTIONS(11560), 2, + ACTIONS(11574), 2, sym__ws, sym_comment, - STATE(3434), 3, + STATE(3511), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [187939] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11566), 1, + ACTIONS(11578), 1, anon_sym_RPAREN, - ACTIONS(11564), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3437), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [187958] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11570), 1, - anon_sym_LPAREN, - ACTIONS(11568), 2, + ACTIONS(11580), 1, + anon_sym_RPAREN, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3458), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [187977] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11574), 1, - anon_sym_LPAREN, - ACTIONS(11572), 2, + ACTIONS(11584), 1, + anon_sym_RPAREN, + ACTIONS(11582), 2, sym__ws, sym_comment, - STATE(3497), 3, + STATE(3512), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [187996] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11576), 1, - anon_sym_LPAREN, - ACTIONS(10913), 2, + ACTIONS(11586), 1, + anon_sym_RPAREN, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [188015] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11580), 1, - anon_sym_LPAREN, - ACTIONS(11578), 2, + ACTIONS(11590), 1, + anon_sym_RPAREN, + ACTIONS(11588), 2, sym__ws, sym_comment, - STATE(3502), 3, + STATE(3513), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [188034] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11582), 1, - anon_sym_LPAREN, - ACTIONS(10913), 2, + ACTIONS(11594), 1, + anon_sym_RPAREN, + ACTIONS(11592), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3514), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [188053] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11584), 1, - anon_sym_LPAREN, - ACTIONS(10913), 2, + ACTIONS(11596), 1, + anon_sym_RPAREN, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [188072] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11588), 1, - anon_sym_LPAREN, - ACTIONS(11586), 2, + ACTIONS(11598), 1, + anon_sym_RPAREN, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3504), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [188091] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11590), 1, + ACTIONS(11602), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(11600), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3523), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [188110] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11592), 1, + ACTIONS(11604), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [188129] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11594), 1, + ACTIONS(11608), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(11606), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3562), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [188148] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11598), 1, - anon_sym_LPAREN, - ACTIONS(11596), 2, + ACTIONS(11612), 1, + anon_sym_RPAREN, + ACTIONS(11610), 2, sym__ws, sym_comment, - STATE(3505), 3, + STATE(3563), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [188167] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11602), 1, + ACTIONS(11614), 1, anon_sym_RPAREN, - ACTIONS(11600), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3445), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [188186] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11606), 1, + ACTIONS(11616), 1, anon_sym_RPAREN, - ACTIONS(11604), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3875), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [188205] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11608), 1, - anon_sym_LPAREN, - ACTIONS(10913), 2, + ACTIONS(11618), 1, + anon_sym_RPAREN, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [188224] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11612), 1, - anon_sym_LPAREN, - ACTIONS(11610), 2, + ACTIONS(11620), 1, + anon_sym_RPAREN, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3513), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [188243] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11614), 1, - anon_sym_LPAREN, - ACTIONS(10913), 2, + ACTIONS(11624), 1, + anon_sym_RPAREN, + ACTIONS(11622), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3518), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [188262] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11618), 1, + ACTIONS(11628), 1, anon_sym_RPAREN, - ACTIONS(11616), 2, + ACTIONS(11626), 2, sym__ws, sym_comment, - STATE(3507), 3, + STATE(3881), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [188281] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11620), 1, - anon_sym_LPAREN, - ACTIONS(10913), 2, + ACTIONS(11632), 1, + anon_sym_RPAREN, + ACTIONS(11630), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3567), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [188300] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11624), 1, - anon_sym_LPAREN, - ACTIONS(11622), 2, + ACTIONS(11634), 1, + anon_sym_RPAREN, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3515), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [188319] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11628), 1, + ACTIONS(11638), 1, anon_sym_RPAREN, - ACTIONS(11626), 2, + ACTIONS(11636), 2, sym__ws, sym_comment, - STATE(3508), 3, + STATE(3524), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [188338] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11632), 1, - anon_sym_LPAREN, - ACTIONS(11630), 2, + ACTIONS(11642), 1, + anon_sym_RPAREN, + ACTIONS(11640), 2, sym__ws, sym_comment, - STATE(3517), 3, + STATE(3525), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [188357] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11634), 1, - anon_sym_LPAREN, - ACTIONS(10913), 2, + ACTIONS(11646), 1, + anon_sym_RPAREN, + ACTIONS(11644), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3528), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [188376] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11638), 1, - anon_sym_LPAREN, - ACTIONS(11636), 2, + ACTIONS(11650), 1, + anon_sym_RPAREN, + ACTIONS(11648), 2, sym__ws, sym_comment, - STATE(3521), 3, + STATE(3532), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [188395] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11640), 1, + ACTIONS(11652), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [188414] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11644), 1, + ACTIONS(11654), 1, anon_sym_RPAREN, - ACTIONS(11642), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3435), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [188433] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11646), 1, + ACTIONS(11656), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [188452] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11648), 1, + ACTIONS(11660), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(11658), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3536), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [188471] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11652), 1, + ACTIONS(11664), 1, anon_sym_RPAREN, - ACTIONS(11650), 2, + ACTIONS(11662), 2, sym__ws, sym_comment, - STATE(3523), 3, + STATE(3537), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [188490] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11654), 1, + ACTIONS(11666), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [188509] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11656), 1, - anon_sym_LPAREN, - ACTIONS(10913), 2, + ACTIONS(11670), 1, + anon_sym_RPAREN, + ACTIONS(11668), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3539), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [188528] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11658), 1, - anon_sym_LPAREN, - ACTIONS(10913), 2, + ACTIONS(11674), 1, + anon_sym_RPAREN, + ACTIONS(11672), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3540), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [188547] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11660), 1, + ACTIONS(11678), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(11676), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3542), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [188566] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11664), 1, - anon_sym_LPAREN, - ACTIONS(11662), 2, + ACTIONS(11680), 1, + anon_sym_RPAREN, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3529), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [188585] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11668), 1, + ACTIONS(11684), 1, anon_sym_RPAREN, - ACTIONS(11666), 2, + ACTIONS(11682), 2, sym__ws, sym_comment, - STATE(3713), 3, + STATE(3545), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [188604] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11672), 1, - anon_sym_LPAREN, - ACTIONS(11670), 2, + ACTIONS(11688), 1, + anon_sym_RPAREN, + ACTIONS(11686), 2, sym__ws, sym_comment, - STATE(3530), 3, + STATE(3546), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [188623] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11674), 1, - anon_sym_LPAREN, - ACTIONS(10913), 2, + ACTIONS(11692), 1, + anon_sym_RPAREN, + ACTIONS(11690), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3548), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [188642] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11678), 1, + ACTIONS(11694), 1, anon_sym_RPAREN, - ACTIONS(11676), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3833), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [188661] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11682), 1, - anon_sym_LPAREN, - ACTIONS(11680), 2, + ACTIONS(11696), 1, + anon_sym_RPAREN, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3535), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [188680] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11684), 1, - anon_sym_LPAREN, - ACTIONS(10913), 2, + ACTIONS(11700), 1, + anon_sym_RPAREN, + ACTIONS(11698), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3551), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [188699] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11686), 1, - anon_sym_LPAREN, - ACTIONS(10913), 2, + ACTIONS(11702), 1, + anon_sym_RPAREN, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [188718] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11690), 1, - anon_sym_LPAREN, - ACTIONS(11688), 2, + ACTIONS(11704), 1, + anon_sym_RPAREN, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3538), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [188737] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11694), 1, - anon_sym_LPAREN, - ACTIONS(11692), 2, + ACTIONS(11708), 1, + anon_sym_RPAREN, + ACTIONS(11706), 2, sym__ws, sym_comment, - STATE(3539), 3, + STATE(3552), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [188756] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11696), 1, - anon_sym_LPAREN, - ACTIONS(10913), 2, + ACTIONS(11710), 1, + anon_sym_RPAREN, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [188775] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11700), 1, + ACTIONS(11714), 1, anon_sym_RPAREN, - ACTIONS(11698), 2, + ACTIONS(11712), 2, sym__ws, sym_comment, - STATE(3547), 3, + STATE(3553), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [188794] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11704), 1, - anon_sym_LPAREN, - ACTIONS(11702), 2, + ACTIONS(11718), 1, + anon_sym_RPAREN, + ACTIONS(11716), 2, sym__ws, sym_comment, - STATE(3542), 3, + STATE(3554), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [188813] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11708), 1, + ACTIONS(11720), 1, anon_sym_RPAREN, - ACTIONS(11706), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3763), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [188832] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11712), 1, + ACTIONS(11722), 1, anon_sym_RPAREN, - ACTIONS(11710), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3847), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [188851] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11714), 1, + ACTIONS(11726), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(11724), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3556), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [188870] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11718), 1, + ACTIONS(11728), 1, anon_sym_RPAREN, - ACTIONS(11716), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3553), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [188889] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11722), 1, + ACTIONS(11732), 1, anon_sym_RPAREN, - ACTIONS(11720), 2, + ACTIONS(11730), 2, sym__ws, sym_comment, - STATE(3554), 3, + STATE(3557), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [188908] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11726), 1, + ACTIONS(11736), 1, anon_sym_RPAREN, - ACTIONS(11724), 2, + ACTIONS(11734), 2, sym__ws, sym_comment, - STATE(3557), 3, + STATE(3558), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [188927] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11730), 1, + ACTIONS(11738), 1, anon_sym_RPAREN, - ACTIONS(11728), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3561), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [188946] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11732), 1, - anon_sym_LPAREN, - ACTIONS(10913), 2, + ACTIONS(11740), 1, + anon_sym_RPAREN, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [188965] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11734), 1, + ACTIONS(11742), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [188984] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11736), 1, + ACTIONS(11744), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [189003] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11740), 1, + ACTIONS(11748), 1, anon_sym_RPAREN, - ACTIONS(11738), 2, + ACTIONS(11746), 2, sym__ws, sym_comment, - STATE(3565), 3, + STATE(3560), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [189022] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11744), 1, + ACTIONS(11750), 1, anon_sym_RPAREN, - ACTIONS(11742), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3566), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [189041] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11746), 1, + ACTIONS(11752), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [189060] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11750), 1, + ACTIONS(11754), 1, anon_sym_RPAREN, - ACTIONS(11748), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3568), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [189079] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11754), 1, + ACTIONS(11758), 1, anon_sym_RPAREN, - ACTIONS(11752), 2, + ACTIONS(11756), 2, sym__ws, sym_comment, - STATE(3569), 3, + STATE(3561), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [189098] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11758), 1, + ACTIONS(11760), 1, anon_sym_RPAREN, - ACTIONS(11756), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3571), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [189117] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11760), 1, + ACTIONS(11762), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [189136] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, ACTIONS(11764), 1, anon_sym_RPAREN, - ACTIONS(11762), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3574), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [189155] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11768), 1, + ACTIONS(11766), 1, anon_sym_RPAREN, - ACTIONS(11766), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3575), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [189174] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11772), 1, + ACTIONS(11770), 1, anon_sym_RPAREN, - ACTIONS(11770), 2, + ACTIONS(11768), 2, sym__ws, sym_comment, - STATE(3577), 3, + STATE(3568), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [189193] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11774), 1, + ACTIONS(11772), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [189212] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, ACTIONS(11776), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(11774), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3623), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [189231] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11780), 1, + ACTIONS(11778), 1, anon_sym_RPAREN, - ACTIONS(11778), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3580), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [189250] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11782), 1, + ACTIONS(11780), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [189269] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11784), 1, + ACTIONS(11782), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [189288] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11788), 1, + ACTIONS(11786), 1, anon_sym_RPAREN, - ACTIONS(11786), 2, + ACTIONS(11784), 2, sym__ws, sym_comment, - STATE(3581), 3, + STATE(3707), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [189307] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, ACTIONS(11790), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(11788), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3710), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [189326] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11794), 1, + ACTIONS(11792), 1, anon_sym_RPAREN, - ACTIONS(11792), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3582), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [189345] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11798), 1, + ACTIONS(11794), 1, anon_sym_RPAREN, - ACTIONS(11796), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3583), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [189364] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11800), 1, + ACTIONS(11798), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(11796), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3625), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [189383] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, ACTIONS(11802), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(11800), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3829), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [189402] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, ACTIONS(11806), 1, anon_sym_RPAREN, ACTIONS(11804), 2, sym__ws, sym_comment, - STATE(3585), 3, + STATE(3569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [189421] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11808), 1, + ACTIONS(11810), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(11808), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3627), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [189440] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, ACTIONS(11812), 1, anon_sym_RPAREN, - ACTIONS(11810), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3586), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [189459] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, ACTIONS(11816), 1, anon_sym_RPAREN, ACTIONS(11814), 2, sym__ws, sym_comment, - STATE(3587), 3, + STATE(3580), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [189478] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, ACTIONS(11818), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [189497] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11820), 1, + ACTIONS(11822), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(11820), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3585), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [189516] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11822), 1, + ACTIONS(11826), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(11824), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3586), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [189535] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11824), 1, + ACTIONS(11830), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(11828), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3589), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [189554] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11828), 1, + ACTIONS(11832), 1, anon_sym_RPAREN, - ACTIONS(11826), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3589), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [189573] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11830), 1, + ACTIONS(11834), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [189592] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11832), 1, + ACTIONS(11836), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [189611] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11834), 1, + ACTIONS(11840), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(11838), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3597), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [189630] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11838), 1, + ACTIONS(11844), 1, anon_sym_RPAREN, - ACTIONS(11836), 2, + ACTIONS(11842), 2, sym__ws, sym_comment, - STATE(3590), 3, + STATE(3598), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [189649] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11840), 1, + ACTIONS(11846), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [189668] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11842), 1, + ACTIONS(11850), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(11848), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3600), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [189687] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11846), 1, + ACTIONS(11854), 1, anon_sym_RPAREN, - ACTIONS(11844), 2, + ACTIONS(11852), 2, sym__ws, sym_comment, - STATE(3729), 3, + STATE(3601), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [189706] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11850), 1, - anon_sym_LPAREN, - ACTIONS(11848), 2, + ACTIONS(11858), 1, + anon_sym_RPAREN, + ACTIONS(11856), 2, sym__ws, sym_comment, - STATE(3774), 3, + STATE(3603), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [189725] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11854), 1, - anon_sym_LPAREN, - ACTIONS(11852), 2, + ACTIONS(11860), 1, + anon_sym_RPAREN, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3776), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [189744] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11856), 1, - anon_sym_LPAREN, - ACTIONS(10913), 2, + ACTIONS(11864), 1, + anon_sym_RPAREN, + ACTIONS(11862), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3606), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [189763] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11860), 1, - anon_sym_LPAREN, - ACTIONS(11858), 2, + ACTIONS(11868), 1, + anon_sym_RPAREN, + ACTIONS(11866), 2, sym__ws, sym_comment, - STATE(3552), 3, + STATE(3607), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [189782] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11864), 1, - anon_sym_LPAREN, - ACTIONS(11862), 2, + ACTIONS(11872), 1, + anon_sym_RPAREN, + ACTIONS(11870), 2, sym__ws, sym_comment, - STATE(3594), 3, + STATE(3609), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [189801] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11866), 1, - anon_sym_LPAREN, - ACTIONS(10913), 2, + ACTIONS(11874), 1, + anon_sym_RPAREN, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [189820] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11870), 1, - anon_sym_LPAREN, - ACTIONS(11868), 2, + ACTIONS(11876), 1, + anon_sym_RPAREN, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3597), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [189839] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11872), 1, - anon_sym_LPAREN, - ACTIONS(10913), 2, + ACTIONS(11880), 1, + anon_sym_RPAREN, + ACTIONS(11878), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3612), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [189858] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11874), 1, - anon_sym_LPAREN, - ACTIONS(10913), 2, + ACTIONS(11882), 1, + anon_sym_RPAREN, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [189877] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11878), 1, - anon_sym_LPAREN, - ACTIONS(11876), 2, + ACTIONS(11884), 1, + anon_sym_RPAREN, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3599), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [189896] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11882), 1, - anon_sym_LPAREN, - ACTIONS(11880), 2, + ACTIONS(11888), 1, + anon_sym_RPAREN, + ACTIONS(11886), 2, sym__ws, sym_comment, - STATE(3600), 3, + STATE(3613), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [189915] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11884), 1, - anon_sym_LPAREN, - ACTIONS(10913), 2, + ACTIONS(11890), 1, + anon_sym_RPAREN, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [189934] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11888), 1, - anon_sym_LPAREN, - ACTIONS(11886), 2, + ACTIONS(11894), 1, + anon_sym_RPAREN, + ACTIONS(11892), 2, sym__ws, sym_comment, - STATE(3603), 3, + STATE(3614), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [189953] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11890), 1, - anon_sym_LPAREN, - ACTIONS(10913), 2, + ACTIONS(11898), 1, + anon_sym_RPAREN, + ACTIONS(11896), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3615), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [189972] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11892), 1, - anon_sym_LPAREN, - ACTIONS(10913), 2, + ACTIONS(11900), 1, + anon_sym_RPAREN, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [189991] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11896), 1, - anon_sym_LPAREN, - ACTIONS(11894), 2, + ACTIONS(11902), 1, + anon_sym_RPAREN, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3605), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [190010] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11900), 1, - anon_sym_LPAREN, - ACTIONS(11898), 2, + ACTIONS(11906), 1, + anon_sym_RPAREN, + ACTIONS(11904), 2, sym__ws, sym_comment, - STATE(3606), 3, + STATE(3617), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [190029] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11902), 1, - anon_sym_LPAREN, - ACTIONS(10913), 2, + ACTIONS(11908), 1, + anon_sym_RPAREN, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [190048] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11906), 1, - anon_sym_LPAREN, - ACTIONS(11904), 2, + ACTIONS(11912), 1, + anon_sym_RPAREN, + ACTIONS(11910), 2, sym__ws, sym_comment, - STATE(3609), 3, + STATE(3618), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [190067] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11908), 1, + ACTIONS(11916), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(11914), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3619), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [190086] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11912), 1, + ACTIONS(11918), 1, anon_sym_RPAREN, - ACTIONS(11910), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3824), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [190105] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11914), 1, - anon_sym_LPAREN, - ACTIONS(10913), 2, + ACTIONS(11920), 1, + anon_sym_RPAREN, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [190124] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11918), 1, + ACTIONS(11922), 1, anon_sym_RPAREN, - ACTIONS(11916), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3692), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [190143] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11920), 1, + ACTIONS(11924), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [190162] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11922), 1, + ACTIONS(11928), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(11926), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3621), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [190181] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11924), 1, + ACTIONS(11930), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [190200] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11928), 1, + ACTIONS(11932), 1, anon_sym_RPAREN, - ACTIONS(11926), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3428), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [190219] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11930), 1, + ACTIONS(11934), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [190238] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11934), 1, + ACTIONS(11938), 1, anon_sym_RPAREN, - ACTIONS(11932), 2, + ACTIONS(11936), 2, sym__ws, sym_comment, - STATE(3440), 3, + STATE(3622), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [190257] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11938), 1, + ACTIONS(11940), 1, anon_sym_RPAREN, - ACTIONS(11936), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3441), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [190276] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11940), 1, + ACTIONS(11942), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [190295] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11942), 1, + ACTIONS(11944), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [190314] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11946), 1, + ACTIONS(11948), 1, anon_sym_RPAREN, - ACTIONS(11944), 2, + ACTIONS(11946), 2, sym__ws, sym_comment, - STATE(3839), 3, + STATE(3652), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [190333] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11948), 1, + ACTIONS(11950), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [190352] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11950), 1, - anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(11952), 1, + anon_sym_LPAREN, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [190371] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11952), 1, + ACTIONS(11954), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [190390] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11956), 1, + ACTIONS(11958), 1, anon_sym_RPAREN, - ACTIONS(11954), 2, + ACTIONS(11956), 2, sym__ws, sym_comment, - STATE(3622), 3, + STATE(3883), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [190409] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11958), 1, - anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(11960), 1, + anon_sym_LPAREN, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [190428] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11960), 1, + ACTIONS(11964), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(11962), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3565), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [190447] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11964), 1, + ACTIONS(11966), 1, anon_sym_RPAREN, - ACTIONS(11962), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3619), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [190466] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11968), 1, + ACTIONS(11970), 1, anon_sym_RPAREN, - ACTIONS(11966), 2, + ACTIONS(11968), 2, sym__ws, sym_comment, - STATE(3616), 3, + STATE(3634), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [190485] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11972), 1, + ACTIONS(11974), 1, anon_sym_RPAREN, - ACTIONS(11970), 2, + ACTIONS(11972), 2, sym__ws, sym_comment, - STATE(3615), 3, + STATE(3573), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [190504] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11974), 1, + ACTIONS(11976), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [190523] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11978), 1, + ACTIONS(11980), 1, anon_sym_RPAREN, - ACTIONS(11976), 2, + ACTIONS(11978), 2, sym__ws, sym_comment, - STATE(3611), 3, + STATE(3639), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [190542] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11982), 1, + ACTIONS(11984), 1, anon_sym_RPAREN, - ACTIONS(11980), 2, + ACTIONS(11982), 2, sym__ws, sym_comment, - STATE(3626), 3, + STATE(3640), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [190561] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11986), 1, + ACTIONS(11988), 1, anon_sym_RPAREN, - ACTIONS(11984), 2, + ACTIONS(11986), 2, sym__ws, sym_comment, - STATE(3641), 3, + STATE(3643), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [190580] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11990), 1, + ACTIONS(11992), 1, anon_sym_RPAREN, - ACTIONS(11988), 2, + ACTIONS(11990), 2, sym__ws, sym_comment, - STATE(3627), 3, + STATE(3647), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [190599] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, ACTIONS(11994), 1, anon_sym_RPAREN, - ACTIONS(11992), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3640), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [190618] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, ACTIONS(11996), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [190637] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(11998), 1, + ACTIONS(12000), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(11998), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3655), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [190656] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12002), 1, + ACTIONS(12004), 1, anon_sym_RPAREN, - ACTIONS(12000), 2, + ACTIONS(12002), 2, sym__ws, sym_comment, - STATE(3647), 3, + STATE(3656), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [190675] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, ACTIONS(12006), 1, anon_sym_RPAREN, - ACTIONS(12004), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3648), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [190694] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, ACTIONS(12010), 1, anon_sym_RPAREN, ACTIONS(12008), 2, sym__ws, sym_comment, - STATE(3651), 3, + STATE(3680), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [190713] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, ACTIONS(12014), 1, anon_sym_RPAREN, ACTIONS(12012), 2, sym__ws, sym_comment, - STATE(3655), 3, + STATE(3681), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [190732] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, ACTIONS(12018), 1, anon_sym_RPAREN, ACTIONS(12016), 2, sym__ws, sym_comment, - STATE(3689), 3, + STATE(3711), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [190751] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, ACTIONS(12020), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [190770] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12022), 1, + ACTIONS(12024), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(12022), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3774), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [190789] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12026), 1, + ACTIONS(12028), 1, anon_sym_RPAREN, - ACTIONS(12024), 2, + ACTIONS(12026), 2, sym__ws, sym_comment, - STATE(3659), 3, + STATE(3775), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [190808] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12030), 1, + ACTIONS(12032), 1, anon_sym_RPAREN, - ACTIONS(12028), 2, + ACTIONS(12030), 2, sym__ws, sym_comment, - STATE(3660), 3, + STATE(3793), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [190827] = 5, + ACTIONS(23), 1, + aux_sym_sym_lit_token1, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, - anon_sym_POUND_, - ACTIONS(12032), 1, - anon_sym_RPAREN, - ACTIONS(10913), 2, - sym__ws, - sym_comment, - STATE(2903), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, + ACTIONS(12034), 1, + anon_sym_loop, + STATE(1867), 1, + sym_sym_lit, + ACTIONS(12036), 4, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, [190846] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12036), 1, + ACTIONS(12038), 1, anon_sym_RPAREN, - ACTIONS(12034), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3662), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [190865] = 5, + ACTIONS(23), 1, + aux_sym_sym_lit_token1, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, - anon_sym_POUND_, ACTIONS(12040), 1, - anon_sym_RPAREN, - ACTIONS(12038), 2, - sym__ws, - sym_comment, - STATE(3663), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, + anon_sym_loop, + STATE(1867), 1, + sym_sym_lit, + ACTIONS(12036), 4, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, [190884] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12042), 1, + ACTIONS(12044), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(12042), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3659), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [190903] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12044), 1, + ACTIONS(12046), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [190922] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, ACTIONS(12048), 1, anon_sym_RPAREN, - ACTIONS(12046), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3668), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [190941] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, ACTIONS(12052), 1, anon_sym_RPAREN, ACTIONS(12050), 2, sym__ws, sym_comment, - STATE(3669), 3, + STATE(3828), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [190960] = 5, + ACTIONS(23), 1, + aux_sym_sym_lit_token1, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, - anon_sym_POUND_, - ACTIONS(12056), 1, - anon_sym_RPAREN, - ACTIONS(12054), 2, - sym__ws, - sym_comment, - STATE(3671), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, + ACTIONS(12054), 1, + anon_sym_loop, + STATE(1867), 1, + sym_sym_lit, + ACTIONS(12036), 4, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, [190979] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12058), 1, + ACTIONS(12056), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [190998] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, ACTIONS(12060), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(12058), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3664), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [191017] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, ACTIONS(12064), 1, anon_sym_RPAREN, ACTIONS(12062), 2, sym__ws, sym_comment, - STATE(3674), 3, + STATE(3665), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [191036] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12066), 1, + ACTIONS(12068), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(12066), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3668), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [191055] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12068), 1, + ACTIONS(12072), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(12070), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3672), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [191074] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12072), 1, + ACTIONS(12074), 1, anon_sym_RPAREN, - ACTIONS(12070), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3675), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [191093] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12074), 1, + ACTIONS(12076), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [191112] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12078), 1, + ACTIONS(12080), 1, anon_sym_RPAREN, - ACTIONS(12076), 2, + ACTIONS(12078), 2, sym__ws, sym_comment, STATE(3676), 3, @@ -203352,11 +202924,11 @@ static const uint16_t ts_small_parse_table[] = { [191131] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12082), 1, + ACTIONS(12084), 1, anon_sym_RPAREN, - ACTIONS(12080), 2, + ACTIONS(12082), 2, sym__ws, sym_comment, STATE(3677), 3, @@ -203366,4524 +202938,4524 @@ static const uint16_t ts_small_parse_table[] = { [191150] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12084), 1, + ACTIONS(12086), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [191169] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12086), 1, + ACTIONS(12090), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(12088), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3679), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [191188] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12090), 1, + ACTIONS(12094), 1, anon_sym_RPAREN, - ACTIONS(12088), 2, + ACTIONS(12092), 2, sym__ws, sym_comment, - STATE(3679), 3, + STATE(3683), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [191207] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12092), 1, + ACTIONS(12098), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(12096), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3685), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [191226] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12096), 1, + ACTIONS(12100), 1, anon_sym_RPAREN, - ACTIONS(12094), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3680), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [191245] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12100), 1, + ACTIONS(12104), 1, anon_sym_RPAREN, - ACTIONS(12098), 2, + ACTIONS(12102), 2, sym__ws, sym_comment, - STATE(3681), 3, + STATE(3688), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [191264] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12102), 1, + ACTIONS(12108), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(12106), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3689), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [191283] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12104), 1, + ACTIONS(12112), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(12110), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3691), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [191302] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12106), 1, + ACTIONS(12114), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [191321] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12108), 1, + ACTIONS(12116), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [191340] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12112), 1, + ACTIONS(12120), 1, anon_sym_RPAREN, - ACTIONS(12110), 2, + ACTIONS(12118), 2, sym__ws, sym_comment, - STATE(3683), 3, + STATE(3694), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [191359] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12114), 1, + ACTIONS(12122), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [191378] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12116), 1, + ACTIONS(12124), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [191397] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12118), 1, + ACTIONS(12126), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [191416] = 5, + ACTIONS(23), 1, + aux_sym_sym_lit_token1, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, - anon_sym_POUND_, - ACTIONS(12122), 1, - anon_sym_RPAREN, - ACTIONS(12120), 2, - sym__ws, - sym_comment, - STATE(3684), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, + ACTIONS(12128), 1, + anon_sym_loop, + STATE(1867), 1, + sym_sym_lit, + ACTIONS(12036), 4, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, [191435] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12124), 1, + ACTIONS(12130), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [191454] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12126), 1, + ACTIONS(12134), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(12132), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3695), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [191473] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12128), 1, + ACTIONS(12136), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [191492] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12132), 1, + ACTIONS(12140), 1, anon_sym_RPAREN, - ACTIONS(12130), 2, + ACTIONS(12138), 2, sym__ws, sym_comment, - STATE(3690), 3, + STATE(3696), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [191511] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12136), 1, + ACTIONS(12144), 1, anon_sym_RPAREN, - ACTIONS(12134), 2, + ACTIONS(12142), 2, sym__ws, sym_comment, - STATE(3693), 3, + STATE(3697), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [191530] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12140), 1, + ACTIONS(12146), 1, anon_sym_RPAREN, - ACTIONS(12138), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3703), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [191549] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12142), 1, + ACTIONS(12148), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [191568] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12144), 1, + ACTIONS(12152), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(12150), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3699), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [191587] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12148), 1, + ACTIONS(12154), 1, anon_sym_RPAREN, - ACTIONS(12146), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3715), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [191606] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12150), 1, + ACTIONS(12158), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(12156), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3700), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [191625] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12152), 1, + ACTIONS(12162), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(12160), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3701), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [191644] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12156), 1, + ACTIONS(12164), 1, anon_sym_RPAREN, - ACTIONS(12154), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3718), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [191663] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12158), 1, + ACTIONS(12166), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [191682] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12162), 1, + ACTIONS(12168), 1, anon_sym_RPAREN, - ACTIONS(12160), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3840), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [191701] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12164), 1, + ACTIONS(12170), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [191720] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12168), 1, + ACTIONS(12174), 1, anon_sym_RPAREN, - ACTIONS(12166), 2, + ACTIONS(12172), 2, sym__ws, sym_comment, - STATE(3719), 3, + STATE(3703), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [191739] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12172), 1, + ACTIONS(12176), 1, anon_sym_RPAREN, - ACTIONS(12170), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3741), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [191758] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12176), 1, + ACTIONS(12178), 1, anon_sym_RPAREN, - ACTIONS(12174), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3744), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [191777] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, ACTIONS(12180), 1, anon_sym_RPAREN, - ACTIONS(12178), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3766), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [191796] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, ACTIONS(12184), 1, anon_sym_RPAREN, ACTIONS(12182), 2, sym__ws, sym_comment, - STATE(3721), 3, + STATE(3704), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [191815] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, ACTIONS(12186), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [191834] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12190), 1, + ACTIONS(12188), 1, anon_sym_RPAREN, - ACTIONS(12188), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3849), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [191853] = 5, + ACTIONS(23), 1, + aux_sym_sym_lit_token1, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, - anon_sym_POUND_, - ACTIONS(12194), 1, - anon_sym_RPAREN, - ACTIONS(12192), 2, - sym__ws, - sym_comment, - STATE(3724), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, + ACTIONS(12190), 1, + anon_sym_loop, + STATE(1867), 1, + sym_sym_lit, + ACTIONS(12036), 4, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, [191872] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12198), 1, + ACTIONS(12194), 1, anon_sym_RPAREN, - ACTIONS(12196), 2, + ACTIONS(12192), 2, sym__ws, sym_comment, - STATE(3725), 3, + STATE(3832), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [191891] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12202), 1, + ACTIONS(12196), 1, anon_sym_RPAREN, - ACTIONS(12200), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3750), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [191910] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12204), 1, + ACTIONS(12200), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(12198), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3771), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [191929] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12208), 1, + ACTIONS(12204), 1, anon_sym_RPAREN, - ACTIONS(12206), 2, + ACTIONS(12202), 2, sym__ws, sym_comment, - STATE(3850), 3, + STATE(3831), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [191948] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12210), 1, + ACTIONS(12206), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [191967] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12214), 1, + ACTIONS(12208), 1, anon_sym_RPAREN, - ACTIONS(12212), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3851), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [191986] = 5, + ACTIONS(23), 1, + aux_sym_sym_lit_token1, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, - anon_sym_POUND_, - ACTIONS(12218), 1, - anon_sym_RPAREN, - ACTIONS(12216), 2, - sym__ws, - sym_comment, - STATE(3758), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, + ACTIONS(12210), 1, + anon_sym_loop, + STATE(1867), 1, + sym_sym_lit, + ACTIONS(12036), 4, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, [192005] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12220), 1, - anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(12214), 1, + anon_sym_LPAREN, + ACTIONS(12212), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3432), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [192024] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12224), 1, + ACTIONS(12216), 1, anon_sym_RPAREN, - ACTIONS(12222), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3728), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [192043] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12226), 1, - anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(12220), 1, + anon_sym_LPAREN, + ACTIONS(12218), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3626), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [192062] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12228), 1, + ACTIONS(12224), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(12222), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [192081] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12232), 1, + ACTIONS(12226), 1, anon_sym_RPAREN, - ACTIONS(12230), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3732), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [192100] = 5, + ACTIONS(23), 1, + aux_sym_sym_lit_token1, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, - anon_sym_POUND_, - ACTIONS(12234), 1, - anon_sym_RPAREN, - ACTIONS(10913), 2, - sym__ws, - sym_comment, - STATE(2903), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, + ACTIONS(12228), 1, + anon_sym_loop, + STATE(1867), 1, + sym_sym_lit, + ACTIONS(12036), 4, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, [192119] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12236), 1, + ACTIONS(12232), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(12230), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3631), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [192138] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12240), 1, + ACTIONS(12236), 1, anon_sym_RPAREN, - ACTIONS(12238), 2, + ACTIONS(12234), 2, sym__ws, sym_comment, - STATE(3733), 3, + STATE(3721), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [192157] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12242), 1, + ACTIONS(12238), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [192176] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12246), 1, + ACTIONS(12242), 1, anon_sym_RPAREN, - ACTIONS(12244), 2, + ACTIONS(12240), 2, sym__ws, sym_comment, - STATE(3734), 3, + STATE(3726), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [192195] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12250), 1, + ACTIONS(12246), 1, anon_sym_RPAREN, - ACTIONS(12248), 2, + ACTIONS(12244), 2, sym__ws, sym_comment, - STATE(3735), 3, + STATE(3727), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [192214] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12252), 1, + ACTIONS(12250), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(12248), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3730), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [192233] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, ACTIONS(12254), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(12252), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3734), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [192252] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, ACTIONS(12256), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [192271] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12260), 1, + ACTIONS(12258), 1, anon_sym_RPAREN, - ACTIONS(12258), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3737), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [192290] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, ACTIONS(12262), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(12260), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3740), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [192309] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12264), 1, + ACTIONS(12266), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(12264), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3741), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [192328] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, ACTIONS(12268), 1, anon_sym_RPAREN, - ACTIONS(12266), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3739), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [192347] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, ACTIONS(12272), 1, anon_sym_RPAREN, ACTIONS(12270), 2, sym__ws, sym_comment, - STATE(3740), 3, + STATE(3743), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [192366] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12274), 1, + ACTIONS(12276), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(12274), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3744), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [192385] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12276), 1, + ACTIONS(12280), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(12278), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3746), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [192404] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12278), 1, + ACTIONS(12282), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [192423] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12280), 1, + ACTIONS(12286), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(12284), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3584), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [192442] = 5, + ACTIONS(23), 1, + aux_sym_sym_lit_token1, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, - anon_sym_POUND_, - ACTIONS(12284), 1, - anon_sym_RPAREN, - ACTIONS(12282), 2, - sym__ws, - sym_comment, - STATE(3743), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, + ACTIONS(12288), 1, + anon_sym_loop, + STATE(1867), 1, + sym_sym_lit, + ACTIONS(12036), 4, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, [192461] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12286), 1, + ACTIONS(12292), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(12290), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3749), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [192480] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12288), 1, + ACTIONS(12296), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(12294), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3750), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [192499] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12290), 1, + ACTIONS(12300), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(12298), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3752), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [192518] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12292), 1, + ACTIONS(12302), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [192537] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12294), 1, + ACTIONS(12304), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [192556] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12298), 1, + ACTIONS(12308), 1, anon_sym_RPAREN, - ACTIONS(12296), 2, + ACTIONS(12306), 2, sym__ws, sym_comment, - STATE(3747), 3, + STATE(3755), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [192575] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12300), 1, + ACTIONS(12310), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [192594] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12302), 1, + ACTIONS(12312), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [192613] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12306), 1, + ACTIONS(12316), 1, anon_sym_RPAREN, - ACTIONS(12304), 2, + ACTIONS(12314), 2, sym__ws, sym_comment, - STATE(3782), 3, + STATE(3756), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [192632] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12310), 1, + ACTIONS(12318), 1, anon_sym_RPAREN, - ACTIONS(12308), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3710), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [192651] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12312), 1, + ACTIONS(12322), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(12320), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3757), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [192670] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12316), 1, + ACTIONS(12326), 1, anon_sym_RPAREN, - ACTIONS(12314), 2, + ACTIONS(12324), 2, sym__ws, sym_comment, - STATE(3629), 3, + STATE(3758), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [192689] = 5, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12318), 1, - anon_sym_loop, - STATE(1832), 1, - sym_sym_lit, - ACTIONS(12320), 4, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, + ACTIONS(10911), 1, + anon_sym_POUND_, + ACTIONS(12328), 1, + anon_sym_RPAREN, + ACTIONS(10909), 2, + sym__ws, + sym_comment, + STATE(2900), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, [192708] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12322), 1, + ACTIONS(12330), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [192727] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12326), 1, + ACTIONS(12334), 1, anon_sym_RPAREN, - ACTIONS(12324), 2, + ACTIONS(12332), 2, sym__ws, sym_comment, - STATE(3695), 3, + STATE(3761), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [192746] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12330), 1, + ACTIONS(12336), 1, anon_sym_RPAREN, - ACTIONS(12328), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3685), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [192765] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12334), 1, + ACTIONS(12340), 1, anon_sym_RPAREN, - ACTIONS(12332), 2, + ACTIONS(12338), 2, sym__ws, sym_comment, - STATE(3630), 3, + STATE(3762), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [192784] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12336), 1, + ACTIONS(12344), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(12342), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3763), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [192803] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12340), 1, + ACTIONS(12346), 1, anon_sym_RPAREN, - ACTIONS(12338), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3528), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [192822] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12342), 1, + ACTIONS(12348), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [192841] = 5, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(12344), 1, - anon_sym_loop, - STATE(1832), 1, - sym_sym_lit, - ACTIONS(12320), 4, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - [192860] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12346), 1, + ACTIONS(12350), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [192879] = 5, + [192860] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12350), 1, + ACTIONS(12352), 1, anon_sym_RPAREN, - ACTIONS(12348), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3526), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, + [192879] = 5, + ACTIONS(23), 1, + aux_sym_sym_lit_token1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(12354), 1, + anon_sym_loop, + STATE(1867), 1, + sym_sym_lit, + ACTIONS(12036), 4, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, [192898] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12352), 1, + ACTIONS(12358), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(12356), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3765), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [192917] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12356), 1, + ACTIONS(12360), 1, anon_sym_RPAREN, - ACTIONS(12354), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3525), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [192936] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12360), 1, + ACTIONS(12362), 1, anon_sym_RPAREN, - ACTIONS(12358), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3634), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [192955] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12362), 1, + ACTIONS(12364), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [192974] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12366), 1, + ACTIONS(12368), 1, anon_sym_RPAREN, - ACTIONS(12364), 2, + ACTIONS(12366), 2, sym__ws, sym_comment, - STATE(3625), 3, + STATE(3766), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [192993] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, ACTIONS(12370), 1, anon_sym_RPAREN, - ACTIONS(12368), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3509), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [193012] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, ACTIONS(12372), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [193031] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(10911), 1, + anon_sym_POUND_, + ACTIONS(12374), 1, + anon_sym_RPAREN, + ACTIONS(10909), 2, + sym__ws, + sym_comment, + STATE(2900), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [193050] = 5, ACTIONS(23), 1, aux_sym_sym_lit_token1, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12374), 1, + ACTIONS(12376), 1, anon_sym_loop, - STATE(1832), 1, + STATE(1867), 1, sym_sym_lit, - ACTIONS(12320), 4, + ACTIONS(12036), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - [193050] = 5, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(10915), 1, - anon_sym_POUND_, - ACTIONS(12376), 1, - anon_sym_RPAREN, - ACTIONS(10913), 2, - sym__ws, - sym_comment, - STATE(2903), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, [193069] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, ACTIONS(12380), 1, anon_sym_RPAREN, ACTIONS(12378), 2, sym__ws, sym_comment, - STATE(3716), 3, + STATE(3460), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [193088] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, ACTIONS(12384), 1, anon_sym_RPAREN, ACTIONS(12382), 2, sym__ws, sym_comment, - STATE(3754), 3, + STATE(3773), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [193107] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12388), 1, + ACTIONS(12386), 1, anon_sym_RPAREN, - ACTIONS(12386), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3760), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [193126] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, ACTIONS(12390), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(12388), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3776), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [193145] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12394), 1, + ACTIONS(12392), 1, anon_sym_RPAREN, - ACTIONS(12392), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3772), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [193164] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12396), 1, - anon_sym_LPAREN, - ACTIONS(10913), 2, + ACTIONS(12394), 1, + anon_sym_RPAREN, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [193183] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12400), 1, - anon_sym_LPAREN, - ACTIONS(12398), 2, + ACTIONS(12396), 1, + anon_sym_RPAREN, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3613), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [193202] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12402), 1, - anon_sym_LPAREN, - ACTIONS(10913), 2, + ACTIONS(12398), 1, + anon_sym_RPAREN, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [193221] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12406), 1, + ACTIONS(12402), 1, anon_sym_RPAREN, - ACTIONS(12404), 2, + ACTIONS(12400), 2, sym__ws, sym_comment, - STATE(3779), 3, + STATE(3714), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [193240] = 5, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12408), 1, - anon_sym_loop, - STATE(1832), 1, - sym_sym_lit, - ACTIONS(12320), 4, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, + ACTIONS(10911), 1, + anon_sym_POUND_, + ACTIONS(12404), 1, + anon_sym_RPAREN, + ACTIONS(10909), 2, + sym__ws, + sym_comment, + STATE(2900), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, [193259] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12410), 1, + ACTIONS(12408), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(12406), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3782), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [193278] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12414), 1, + ACTIONS(12410), 1, anon_sym_RPAREN, - ACTIONS(12412), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3785), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [193297] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12418), 1, + ACTIONS(12414), 1, anon_sym_RPAREN, - ACTIONS(12416), 2, + ACTIONS(12412), 2, sym__ws, sym_comment, - STATE(3786), 3, + STATE(3434), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [193316] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12420), 1, + ACTIONS(12416), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [193335] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12424), 1, + ACTIONS(12420), 1, anon_sym_RPAREN, - ACTIONS(12422), 2, + ACTIONS(12418), 2, sym__ws, sym_comment, - STATE(3789), 3, + STATE(3787), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [193354] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12428), 1, + ACTIONS(12424), 1, anon_sym_RPAREN, - ACTIONS(12426), 2, + ACTIONS(12422), 2, sym__ws, sym_comment, - STATE(3816), 3, + STATE(3788), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [193373] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12430), 1, + ACTIONS(12428), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(12426), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3791), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [193392] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, ACTIONS(12432), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(12430), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3796), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [193411] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12436), 1, + ACTIONS(12434), 1, anon_sym_RPAREN, - ACTIONS(12434), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3844), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [193430] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12440), 1, + ACTIONS(12436), 1, anon_sym_RPAREN, - ACTIONS(12438), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3845), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [193449] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12442), 1, + ACTIONS(12440), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(12438), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3800), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [193468] = 5, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(47), 1, sym_block_comment, + ACTIONS(10911), 1, + anon_sym_POUND_, ACTIONS(12444), 1, - anon_sym_loop, - STATE(1832), 1, - sym_sym_lit, - ACTIONS(12320), 4, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, + anon_sym_RPAREN, + ACTIONS(12442), 2, + sym__ws, + sym_comment, + STATE(3801), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, [193487] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, ACTIONS(12446), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [193506] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, ACTIONS(12450), 1, anon_sym_RPAREN, ACTIONS(12448), 2, sym__ws, sym_comment, - STATE(3856), 3, + STATE(3803), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [193525] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, ACTIONS(12452), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [193544] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12454), 1, + ACTIONS(12456), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(12454), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3804), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [193563] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12456), 1, + ACTIONS(12460), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(12458), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3807), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [193582] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12460), 1, + ACTIONS(12462), 1, anon_sym_RPAREN, - ACTIONS(12458), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3768), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [193601] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12462), 1, + ACTIONS(12466), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(12464), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3810), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [193620] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12464), 1, + ACTIONS(12470), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(12468), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3811), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [193639] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12466), 1, + ACTIONS(12474), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(12472), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3813), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [193658] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12468), 1, + ACTIONS(12476), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [193677] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12472), 1, + ACTIONS(12478), 1, anon_sym_RPAREN, - ACTIONS(12470), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3793), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [193696] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12476), 1, + ACTIONS(12482), 1, anon_sym_RPAREN, - ACTIONS(12474), 2, + ACTIONS(12480), 2, sym__ws, sym_comment, - STATE(3794), 3, + STATE(3816), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [193715] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12478), 1, + ACTIONS(12484), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [193734] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12482), 1, + ACTIONS(12486), 1, anon_sym_RPAREN, - ACTIONS(12480), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3795), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [193753] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12484), 1, + ACTIONS(12490), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(12488), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3817), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [193772] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12486), 1, + ACTIONS(12494), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(12492), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3572), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [193791] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12490), 1, + ACTIONS(12496), 1, anon_sym_RPAREN, - ACTIONS(12488), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3797), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [193810] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12494), 1, + ACTIONS(12500), 1, anon_sym_RPAREN, - ACTIONS(12492), 2, + ACTIONS(12498), 2, sym__ws, sym_comment, - STATE(3798), 3, + STATE(3818), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [193829] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12496), 1, + ACTIONS(12504), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(12502), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3820), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [193848] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12500), 1, + ACTIONS(12506), 1, anon_sym_RPAREN, - ACTIONS(12498), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3799), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [193867] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12502), 1, + ACTIONS(12508), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [193886] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12504), 1, + ACTIONS(12512), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(12510), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3822), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [193905] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12508), 1, + ACTIONS(12514), 1, anon_sym_RPAREN, - ACTIONS(12506), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3800), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [193924] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12512), 1, + ACTIONS(12518), 1, anon_sym_RPAREN, - ACTIONS(12510), 2, + ACTIONS(12516), 2, sym__ws, sym_comment, - STATE(3858), 3, + STATE(3823), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [193943] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12516), 1, + ACTIONS(12522), 1, anon_sym_RPAREN, - ACTIONS(12514), 2, + ACTIONS(12520), 2, sym__ws, sym_comment, - STATE(3861), 3, + STATE(3824), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [193962] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12518), 1, + ACTIONS(12524), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [193981] = 5, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12520), 1, - anon_sym_loop, - STATE(1832), 1, - sym_sym_lit, - ACTIONS(12320), 4, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, + ACTIONS(10911), 1, + anon_sym_POUND_, + ACTIONS(12526), 1, + anon_sym_RPAREN, + ACTIONS(10909), 2, + sym__ws, + sym_comment, + STATE(2900), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, [194000] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12522), 1, + ACTIONS(12528), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [194019] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12526), 1, + ACTIONS(12532), 1, anon_sym_RPAREN, - ACTIONS(12524), 2, + ACTIONS(12530), 2, sym__ws, sym_comment, - STATE(3865), 3, + STATE(3578), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [194038] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12528), 1, + ACTIONS(12534), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [194057] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12532), 1, + ACTIONS(12538), 1, anon_sym_RPAREN, - ACTIONS(12530), 2, + ACTIONS(12536), 2, sym__ws, sym_comment, - STATE(3803), 3, + STATE(3826), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [194076] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12536), 1, + ACTIONS(12540), 1, anon_sym_RPAREN, - ACTIONS(12534), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3805), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [194095] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12540), 1, + ACTIONS(12542), 1, anon_sym_RPAREN, - ACTIONS(12538), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3806), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [194114] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12542), 1, + ACTIONS(12544), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [194133] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12546), 1, + ACTIONS(12548), 1, anon_sym_RPAREN, - ACTIONS(12544), 2, + ACTIONS(12546), 2, sym__ws, sym_comment, - STATE(3809), 3, + STATE(3827), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [194152] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, ACTIONS(12550), 1, anon_sym_RPAREN, - ACTIONS(12548), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3811), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [194171] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12554), 1, + ACTIONS(12552), 1, anon_sym_RPAREN, - ACTIONS(12552), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3812), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [194190] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12556), 1, + ACTIONS(12554), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [194209] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12560), 1, + ACTIONS(12556), 1, anon_sym_RPAREN, - ACTIONS(12558), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3818), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [194228] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12564), 1, + ACTIONS(12558), 1, anon_sym_RPAREN, - ACTIONS(12562), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3820), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [194247] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12566), 1, + ACTIONS(12560), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [194266] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12568), 1, + ACTIONS(12562), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [194285] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12570), 1, - anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(12566), 1, + anon_sym_LPAREN, + ACTIONS(12564), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3834), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [194304] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12574), 1, - anon_sym_RPAREN, - ACTIONS(12572), 2, + ACTIONS(12568), 1, + anon_sym_LPAREN, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3425), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [194323] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12578), 1, - anon_sym_RPAREN, - ACTIONS(12576), 2, + ACTIONS(12572), 1, + anon_sym_LPAREN, + ACTIONS(12570), 2, sym__ws, sym_comment, - STATE(3828), 3, + STATE(3837), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [194342] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12582), 1, - anon_sym_RPAREN, - ACTIONS(12580), 2, + ACTIONS(12576), 1, + anon_sym_LPAREN, + ACTIONS(12574), 2, sym__ws, sym_comment, - STATE(3791), 3, + STATE(3838), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [194361] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12586), 1, - anon_sym_RPAREN, - ACTIONS(12584), 2, + ACTIONS(12578), 1, + anon_sym_LPAREN, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3832), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [194380] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12588), 1, - anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(12580), 1, + anon_sym_LPAREN, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [194399] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12590), 1, - anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(12584), 1, + anon_sym_LPAREN, + ACTIONS(12582), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3840), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [194418] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12592), 1, - anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(12586), 1, + anon_sym_LPAREN, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [194437] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12596), 1, - anon_sym_RPAREN, - ACTIONS(12594), 2, + ACTIONS(12590), 1, + anon_sym_LPAREN, + ACTIONS(12588), 2, sym__ws, sym_comment, - STATE(3831), 3, + STATE(3843), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [194456] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12600), 1, - anon_sym_RPAREN, - ACTIONS(12598), 2, + ACTIONS(12594), 1, + anon_sym_LPAREN, + ACTIONS(12592), 2, sym__ws, sym_comment, - STATE(3873), 3, + STATE(3844), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [194475] = 5, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12602), 1, - anon_sym_loop, - STATE(1832), 1, - sym_sym_lit, - ACTIONS(12320), 4, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, + ACTIONS(10911), 1, + anon_sym_POUND_, + ACTIONS(12596), 1, + anon_sym_LPAREN, + ACTIONS(10909), 2, + sym__ws, + sym_comment, + STATE(2900), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, [194494] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12604), 1, - anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(12598), 1, + anon_sym_LPAREN, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [194513] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12606), 1, - anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(12602), 1, + anon_sym_LPAREN, + ACTIONS(12600), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3846), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [194532] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12610), 1, - anon_sym_RPAREN, - ACTIONS(12608), 2, + ACTIONS(12604), 1, + anon_sym_LPAREN, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3838), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [194551] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12612), 1, - anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(12608), 1, + anon_sym_LPAREN, + ACTIONS(12606), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3849), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [194570] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12616), 1, - anon_sym_RPAREN, - ACTIONS(12614), 2, + ACTIONS(12612), 1, + anon_sym_LPAREN, + ACTIONS(12610), 2, sym__ws, sym_comment, - STATE(3853), 3, + STATE(3850), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [194589] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12618), 1, - anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(12614), 1, + anon_sym_LPAREN, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [194608] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12620), 1, - anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(12616), 1, + anon_sym_LPAREN, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [194627] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12622), 1, - anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(12620), 1, + anon_sym_LPAREN, + ACTIONS(12618), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3852), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [194646] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12626), 1, - anon_sym_RPAREN, - ACTIONS(12624), 2, + ACTIONS(12622), 1, + anon_sym_LPAREN, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3857), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [194665] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12628), 1, - anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(12626), 1, + anon_sym_LPAREN, + ACTIONS(12624), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3855), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [194684] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12632), 1, - anon_sym_RPAREN, - ACTIONS(12630), 2, + ACTIONS(12630), 1, + anon_sym_LPAREN, + ACTIONS(12628), 2, sym__ws, sym_comment, - STATE(3869), 3, + STATE(3856), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [194703] = 5, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12634), 1, - anon_sym_loop, - STATE(1832), 1, - sym_sym_lit, - ACTIONS(12320), 4, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, + ACTIONS(10911), 1, + anon_sym_POUND_, + ACTIONS(12632), 1, + anon_sym_LPAREN, + ACTIONS(10909), 2, + sym__ws, + sym_comment, + STATE(2900), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, [194722] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12636), 1, - anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(12634), 1, + anon_sym_LPAREN, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [194741] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, ACTIONS(12638), 1, - anon_sym_RPAREN, - ACTIONS(10913), 2, + anon_sym_LPAREN, + ACTIONS(12636), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3858), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [194760] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, ACTIONS(12640), 1, - anon_sym_RPAREN, - ACTIONS(10913), 2, + anon_sym_LPAREN, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [194779] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, ACTIONS(12644), 1, - anon_sym_RPAREN, + anon_sym_LPAREN, ACTIONS(12642), 2, sym__ws, sym_comment, - STATE(3867), 3, + STATE(3861), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [194798] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, ACTIONS(12648), 1, - anon_sym_RPAREN, + anon_sym_LPAREN, ACTIONS(12646), 2, sym__ws, sym_comment, - STATE(3726), 3, + STATE(3862), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [194817] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, ACTIONS(12650), 1, - anon_sym_RPAREN, - ACTIONS(10913), 2, + anon_sym_LPAREN, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [194836] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12654), 1, - anon_sym_RPAREN, - ACTIONS(12652), 2, + ACTIONS(12652), 1, + anon_sym_LPAREN, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3436), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [194855] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12658), 1, - anon_sym_RPAREN, - ACTIONS(12656), 2, + ACTIONS(12656), 1, + anon_sym_LPAREN, + ACTIONS(12654), 2, sym__ws, sym_comment, - STATE(3866), 3, + STATE(3864), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [194874] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12662), 1, - anon_sym_RPAREN, - ACTIONS(12660), 2, + ACTIONS(12658), 1, + anon_sym_LPAREN, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3654), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [194893] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12664), 1, - anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(12662), 1, + anon_sym_LPAREN, + ACTIONS(12660), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3867), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [194912] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, ACTIONS(12666), 1, - anon_sym_RPAREN, - ACTIONS(10913), 2, + anon_sym_LPAREN, + ACTIONS(12664), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3868), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [194931] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, ACTIONS(12668), 1, - anon_sym_RPAREN, - ACTIONS(10913), 2, + anon_sym_LPAREN, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [194950] = 5, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(47), 1, sym_block_comment, + ACTIONS(10911), 1, + anon_sym_POUND_, ACTIONS(12670), 1, - anon_sym_loop, - STATE(1832), 1, - sym_sym_lit, - ACTIONS(12320), 4, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, + anon_sym_LPAREN, + ACTIONS(10909), 2, + sym__ws, + sym_comment, + STATE(2900), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, [194969] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12672), 1, - anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(12674), 1, + anon_sym_LPAREN, + ACTIONS(12672), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3870), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [194988] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, ACTIONS(12676), 1, - anon_sym_RPAREN, - ACTIONS(12674), 2, + anon_sym_LPAREN, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3881), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [195007] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, ACTIONS(12680), 1, - anon_sym_RPAREN, + anon_sym_LPAREN, ACTIONS(12678), 2, sym__ws, sym_comment, - STATE(3882), 3, + STATE(3873), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [195026] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12682), 1, - anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(12684), 1, + anon_sym_LPAREN, + ACTIONS(12682), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3874), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [195045] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12684), 1, - anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(12686), 1, + anon_sym_LPAREN, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [195064] = 5, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12686), 1, - anon_sym_loop, - STATE(1832), 1, - sym_sym_lit, - ACTIONS(12320), 4, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, + ACTIONS(10911), 1, + anon_sym_POUND_, + ACTIONS(12688), 1, + anon_sym_LPAREN, + ACTIONS(10909), 2, + sym__ws, + sym_comment, + STATE(2900), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, [195083] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12688), 1, - anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(12692), 1, + anon_sym_LPAREN, + ACTIONS(12690), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3876), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [195102] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12690), 1, - anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(12694), 1, + anon_sym_LPAREN, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [195121] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12694), 1, - anon_sym_RPAREN, - ACTIONS(12692), 2, + ACTIONS(12698), 1, + anon_sym_LPAREN, + ACTIONS(12696), 2, sym__ws, sym_comment, - STATE(3883), 3, + STATE(3879), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [195140] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12698), 1, - anon_sym_RPAREN, - ACTIONS(12696), 2, + ACTIONS(12702), 1, + anon_sym_LPAREN, + ACTIONS(12700), 2, sym__ws, sym_comment, - STATE(3444), 3, + STATE(3880), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [195159] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12702), 1, - anon_sym_RPAREN, - ACTIONS(12700), 2, + ACTIONS(12704), 1, + anon_sym_LPAREN, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3697), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [195178] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, ACTIONS(12706), 1, - anon_sym_RPAREN, - ACTIONS(12704), 2, + anon_sym_LPAREN, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3872), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [195197] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, ACTIONS(12708), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [195216] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12710), 1, + ACTIONS(12712), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(12710), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(3780), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [195235] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, - ACTIONS(12712), 1, + ACTIONS(12714), 1, anon_sym_RPAREN, - ACTIONS(10913), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [195254] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10915), 1, + ACTIONS(10911), 1, anon_sym_POUND_, ACTIONS(12716), 1, anon_sym_RPAREN, - ACTIONS(12714), 2, + ACTIONS(10909), 2, sym__ws, sym_comment, - STATE(3876), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, [195273] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, + ACTIONS(4751), 1, anon_sym_LPAREN, ACTIONS(12718), 1, sym__ws, - STATE(4038), 1, + STATE(3974), 1, aux_sym_read_cond_lit_repeat1, - STATE(3096), 3, + STATE(1012), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, [195291] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, + ACTIONS(4769), 1, anon_sym_LPAREN, - ACTIONS(12718), 1, + ACTIONS(12720), 1, sym__ws, - STATE(4038), 1, + STATE(4064), 1, aux_sym_read_cond_lit_repeat1, - STATE(2622), 3, + STATE(2577), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, [195309] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4795), 1, + ACTIONS(4380), 1, anon_sym_LPAREN, ACTIONS(12720), 1, sym__ws, - STATE(3919), 1, + STATE(4064), 1, aux_sym_read_cond_lit_repeat1, - STATE(1442), 3, + STATE(1192), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, [195327] = 5, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(8474), 1, + anon_sym_DQUOTE, + ACTIONS(12724), 1, + anon_sym_TILDE, + ACTIONS(12722), 2, + aux_sym_str_lit_token1, + aux_sym_str_lit_token2, + STATE(3963), 2, + sym_format_specifier, + aux_sym_str_lit_repeat1, + [195345] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4795), 1, + ACTIONS(5049), 1, anon_sym_LPAREN, - ACTIONS(12722), 1, + ACTIONS(12720), 1, sym__ws, - STATE(3898), 1, + STATE(4064), 1, aux_sym_read_cond_lit_repeat1, - STATE(1441), 3, + STATE(1905), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [195345] = 5, + [195363] = 5, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(12726), 1, + anon_sym_DQUOTE, + ACTIONS(12730), 1, + anon_sym_TILDE, + ACTIONS(12728), 2, + aux_sym_str_lit_token1, + aux_sym_str_lit_token2, + STATE(3888), 2, + sym_format_specifier, + aux_sym_str_lit_repeat1, + [195381] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, + ACTIONS(4769), 1, anon_sym_LPAREN, - ACTIONS(12724), 1, + ACTIONS(12732), 1, sym__ws, - STATE(3908), 1, + STATE(3896), 1, aux_sym_read_cond_lit_repeat1, - STATE(2949), 3, + STATE(2580), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [195363] = 5, + [195399] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6225), 1, + ACTIONS(5049), 1, anon_sym_LPAREN, - ACTIONS(12726), 1, + ACTIONS(12734), 1, sym__ws, STATE(3897), 1, aux_sym_read_cond_lit_repeat1, - STATE(1691), 3, + STATE(1911), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [195381] = 5, + [195417] = 5, + ACTIONS(29), 1, + anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(12718), 1, + ACTIONS(12736), 1, sym__ws, - STATE(4038), 1, + STATE(3902), 1, aux_sym_read_cond_lit_repeat1, - STATE(2642), 3, + STATE(1787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [195399] = 5, + [195435] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4795), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(12718), 1, + ACTIONS(12738), 1, sym__ws, - STATE(4038), 1, + STATE(3913), 1, aux_sym_read_cond_lit_repeat1, - STATE(1451), 3, + STATE(1696), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [195417] = 5, + [195453] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4857), 1, + ACTIONS(1468), 1, anon_sym_LPAREN, - ACTIONS(12718), 1, + ACTIONS(12720), 1, sym__ws, - STATE(4038), 1, + STATE(4064), 1, aux_sym_read_cond_lit_repeat1, - STATE(1118), 3, + STATE(2787), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [195435] = 5, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(8464), 1, - anon_sym_DQUOTE, - ACTIONS(12730), 1, - anon_sym_TILDE, - ACTIONS(12728), 2, - aux_sym_str_lit_token1, - aux_sym_str_lit_token2, - STATE(3902), 2, - sym_format_specifier, - aux_sym_str_lit_repeat1, - [195453] = 5, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(8456), 1, - anon_sym_DQUOTE, - ACTIONS(12732), 1, - anon_sym_TILDE, - ACTIONS(12728), 2, - aux_sym_str_lit_token1, - aux_sym_str_lit_token2, - STATE(3902), 2, - sym_format_specifier, - aux_sym_str_lit_repeat1, [195471] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6225), 1, + ACTIONS(4769), 1, anon_sym_LPAREN, - ACTIONS(12718), 1, + ACTIONS(12720), 1, sym__ws, - STATE(4038), 1, + STATE(4064), 1, aux_sym_read_cond_lit_repeat1, - STATE(1720), 3, + STATE(2583), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, [195489] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6225), 1, + ACTIONS(5049), 1, anon_sym_LPAREN, - ACTIONS(12718), 1, + ACTIONS(12720), 1, sym__ws, - STATE(4038), 1, + STATE(4064), 1, aux_sym_read_cond_lit_repeat1, - STATE(1721), 3, + STATE(1918), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, [195507] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4795), 1, + ACTIONS(4751), 1, anon_sym_LPAREN, - ACTIONS(12718), 1, + ACTIONS(12740), 1, sym__ws, - STATE(4038), 1, + STATE(3954), 1, aux_sym_read_cond_lit_repeat1, - STATE(1428), 3, + STATE(1047), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, [195525] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, + ACTIONS(4769), 1, anon_sym_LPAREN, - ACTIONS(12734), 1, + ACTIONS(12720), 1, sym__ws, - STATE(3891), 1, + STATE(4064), 1, aux_sym_read_cond_lit_repeat1, - STATE(2614), 3, + STATE(2990), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, [195543] = 5, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4795), 1, - anon_sym_LPAREN, - ACTIONS(12736), 1, - sym__ws, - STATE(3892), 1, - aux_sym_read_cond_lit_repeat1, - STATE(1470), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [195561] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(12738), 1, - anon_sym_DQUOTE, ACTIONS(12742), 1, - anon_sym_TILDE, - ACTIONS(12740), 2, - aux_sym_str_lit_token1, - aux_sym_str_lit_token2, - STATE(3894), 2, - sym_format_specifier, - aux_sym_str_lit_repeat1, - [195579] = 5, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(12744), 1, anon_sym_DQUOTE, - ACTIONS(12749), 1, + ACTIONS(12746), 1, anon_sym_TILDE, - ACTIONS(12746), 2, + ACTIONS(12744), 2, aux_sym_str_lit_token1, aux_sym_str_lit_token2, - STATE(3902), 2, + STATE(3982), 2, sym_format_specifier, aux_sym_str_lit_repeat1, - [195597] = 5, + [195561] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4795), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(12752), 1, + ACTIONS(12748), 1, sym__ws, - STATE(3925), 1, + STATE(3914), 1, aux_sym_read_cond_lit_repeat1, - STATE(1469), 3, + STATE(1673), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [195615] = 5, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(12754), 1, - anon_sym_DQUOTE, - ACTIONS(12758), 1, - anon_sym_TILDE, - ACTIONS(12756), 2, - aux_sym_str_lit_token1, - aux_sym_str_lit_token2, - STATE(3914), 2, - sym_format_specifier, - aux_sym_str_lit_repeat1, - [195633] = 5, + [195579] = 5, + ACTIONS(29), 1, + anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(1612), 1, - anon_sym_LPAREN, - ACTIONS(12718), 1, + ACTIONS(12720), 1, sym__ws, - STATE(4038), 1, + STATE(4064), 1, aux_sym_read_cond_lit_repeat1, - STATE(2773), 3, + STATE(1861), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [195651] = 5, + [195597] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6225), 1, + ACTIONS(5005), 1, anon_sym_LPAREN, - ACTIONS(12760), 1, + ACTIONS(12720), 1, sym__ws, - STATE(3944), 1, + STATE(4064), 1, aux_sym_read_cond_lit_repeat1, - STATE(1731), 3, + STATE(3096), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [195669] = 5, + [195615] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4412), 1, + ACTIONS(5005), 1, anon_sym_LPAREN, - ACTIONS(12762), 1, + ACTIONS(12720), 1, sym__ws, - STATE(3915), 1, + STATE(4064), 1, aux_sym_read_cond_lit_repeat1, - STATE(1132), 3, + STATE(2912), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [195687] = 5, + [195633] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(12718), 1, + ACTIONS(12750), 1, sym__ws, - STATE(4038), 1, + STATE(3908), 1, aux_sym_read_cond_lit_repeat1, - STATE(2955), 3, + STATE(1554), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [195705] = 5, + [195651] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, + ACTIONS(1468), 1, anon_sym_LPAREN, - ACTIONS(12764), 1, + ACTIONS(12752), 1, sym__ws, - STATE(3886), 1, + STATE(3909), 1, aux_sym_read_cond_lit_repeat1, - STATE(2600), 3, + STATE(1894), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [195723] = 5, + [195669] = 5, + ACTIONS(29), 1, + anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4857), 1, - anon_sym_LPAREN, - ACTIONS(12766), 1, + ACTIONS(12720), 1, sym__ws, - STATE(3916), 1, + STATE(4064), 1, aux_sym_read_cond_lit_repeat1, - STATE(1047), 3, + STATE(1794), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [195741] = 5, + [195687] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6225), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(12768), 1, + ACTIONS(12720), 1, sym__ws, - STATE(3896), 1, + STATE(4064), 1, aux_sym_read_cond_lit_repeat1, - STATE(1690), 3, + STATE(1497), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [195759] = 5, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(12770), 1, - anon_sym_DQUOTE, - ACTIONS(12774), 1, - anon_sym_TILDE, - ACTIONS(12772), 2, - aux_sym_str_lit_token1, - aux_sym_str_lit_token2, - STATE(3895), 2, - sym_format_specifier, - aux_sym_str_lit_repeat1, - [195777] = 5, + [195705] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4857), 1, + ACTIONS(1468), 1, anon_sym_LPAREN, - ACTIONS(12776), 1, + ACTIONS(12720), 1, sym__ws, - STATE(3929), 1, + STATE(4064), 1, aux_sym_read_cond_lit_repeat1, - STATE(1049), 3, + STATE(1905), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [195795] = 5, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(8478), 1, - anon_sym_DQUOTE, - ACTIONS(12778), 1, - anon_sym_TILDE, - ACTIONS(12728), 2, - aux_sym_str_lit_token1, - aux_sym_str_lit_token2, - STATE(3902), 2, - sym_format_specifier, - aux_sym_str_lit_repeat1, - [195813] = 5, + [195723] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4412), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(12718), 1, + ACTIONS(12754), 1, sym__ws, - STATE(4038), 1, + STATE(3915), 1, aux_sym_read_cond_lit_repeat1, - STATE(1151), 3, + STATE(1501), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [195831] = 5, + [195741] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4857), 1, + ACTIONS(1468), 1, anon_sym_LPAREN, - ACTIONS(12718), 1, + ACTIONS(12756), 1, sym__ws, - STATE(4038), 1, + STATE(3916), 1, aux_sym_read_cond_lit_repeat1, - STATE(1004), 3, + STATE(1911), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [195849] = 5, + [195759] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4412), 1, + ACTIONS(5005), 1, anon_sym_LPAREN, - ACTIONS(12780), 1, + ACTIONS(12758), 1, sym__ws, - STATE(3923), 1, + STATE(3951), 1, aux_sym_read_cond_lit_repeat1, - STATE(1160), 3, + STATE(3087), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [195867] = 5, + [195777] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4857), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(12782), 1, + ACTIONS(12720), 1, sym__ws, - STATE(3924), 1, + STATE(4064), 1, aux_sym_read_cond_lit_repeat1, - STATE(1079), 3, + STATE(1741), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [195885] = 5, + [195795] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4795), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(12718), 1, + ACTIONS(12720), 1, sym__ws, - STATE(4038), 1, + STATE(4064), 1, aux_sym_read_cond_lit_repeat1, - STATE(1429), 3, + STATE(1625), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [195903] = 5, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(8490), 1, - anon_sym_DQUOTE, - ACTIONS(12784), 1, - anon_sym_TILDE, - ACTIONS(12728), 2, - aux_sym_str_lit_token1, - aux_sym_str_lit_token2, - STATE(3902), 2, - sym_format_specifier, - aux_sym_str_lit_repeat1, - [195921] = 5, + [195813] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(12718), 1, + ACTIONS(12720), 1, sym__ws, - STATE(4038), 1, + STATE(4064), 1, aux_sym_read_cond_lit_repeat1, - STATE(2591), 3, + STATE(1513), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [195939] = 5, + [195831] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, + ACTIONS(1468), 1, anon_sym_LPAREN, - ACTIONS(12718), 1, + ACTIONS(12720), 1, sym__ws, - STATE(4038), 1, + STATE(4064), 1, aux_sym_read_cond_lit_repeat1, - STATE(2917), 3, + STATE(1918), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [195957] = 5, + [195849] = 6, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8436), 1, + aux_sym_num_lit_token1, + ACTIONS(8444), 1, + anon_sym_SQUOTE, + ACTIONS(10981), 1, + anon_sym_COMMA, + ACTIONS(10985), 1, + aux_sym_format_directive_type_token11, + STATE(3068), 2, + sym__format_token, + aux_sym_format_modifiers_repeat1, + [195869] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4412), 1, + ACTIONS(5005), 1, anon_sym_LPAREN, - ACTIONS(12718), 1, + ACTIONS(12760), 1, sym__ws, - STATE(4038), 1, + STATE(3952), 1, aux_sym_read_cond_lit_repeat1, - STATE(1173), 3, + STATE(2969), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [195975] = 5, + [195887] = 5, ACTIONS(47), 1, sym_block_comment, ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(12718), 1, + ACTIONS(12762), 1, sym__ws, - STATE(4038), 1, + STATE(3921), 1, aux_sym_read_cond_lit_repeat1, - STATE(1117), 3, + STATE(1518), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [195993] = 5, + [195905] = 5, + ACTIONS(29), 1, + anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4795), 1, - anon_sym_LPAREN, - ACTIONS(12718), 1, + ACTIONS(12720), 1, sym__ws, - STATE(4038), 1, + STATE(4064), 1, aux_sym_read_cond_lit_repeat1, - STATE(1450), 3, + STATE(1860), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [196011] = 5, + [195923] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(1612), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(12718), 1, + ACTIONS(12720), 1, sym__ws, - STATE(4038), 1, + STATE(4064), 1, aux_sym_read_cond_lit_repeat1, - STATE(2769), 3, + STATE(1537), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [196029] = 5, + [195941] = 5, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(12764), 1, + anon_sym_DQUOTE, + ACTIONS(12768), 1, + anon_sym_TILDE, + ACTIONS(12766), 2, + aux_sym_str_lit_token1, + aux_sym_str_lit_token2, + STATE(3983), 2, + sym_format_specifier, + aux_sym_str_lit_repeat1, + [195959] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6049), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(12718), 1, + ACTIONS(12770), 1, sym__ws, - STATE(4038), 1, + STATE(3925), 1, aux_sym_read_cond_lit_repeat1, - STATE(2955), 3, + STATE(1548), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [196047] = 5, + [195977] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6049), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(12718), 1, + ACTIONS(12772), 1, sym__ws, - STATE(4038), 1, + STATE(3995), 1, aux_sym_read_cond_lit_repeat1, - STATE(2819), 3, + STATE(1657), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [196065] = 5, + [195995] = 5, ACTIONS(47), 1, sym_block_comment, ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(12718), 1, + ACTIONS(12720), 1, sym__ws, - STATE(4038), 1, + STATE(4064), 1, aux_sym_read_cond_lit_repeat1, - STATE(1005), 3, + STATE(1563), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [196083] = 5, + [196013] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(8486), 1, + ACTIONS(12774), 1, anon_sym_DQUOTE, - ACTIONS(12786), 1, + ACTIONS(12778), 1, anon_sym_TILDE, - ACTIONS(12728), 2, + ACTIONS(12776), 2, aux_sym_str_lit_token1, aux_sym_str_lit_token2, - STATE(3902), 2, + STATE(3931), 2, sym_format_specifier, aux_sym_str_lit_repeat1, - [196101] = 5, + [196031] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4857), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(12788), 1, + ACTIONS(12780), 1, sym__ws, - STATE(3893), 1, + STATE(3933), 1, aux_sym_read_cond_lit_repeat1, - STATE(1071), 3, + STATE(1303), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [196119] = 5, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(12790), 1, - anon_sym_DQUOTE, - ACTIONS(12794), 1, - anon_sym_TILDE, - ACTIONS(12792), 2, - aux_sym_str_lit_token1, - aux_sym_str_lit_token2, - STATE(3942), 2, - sym_format_specifier, - aux_sym_str_lit_repeat1, - [196137] = 5, - ACTIONS(29), 1, - anon_sym_LPAREN, + [196049] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12796), 1, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(12782), 1, sym__ws, - STATE(3947), 1, + STATE(3934), 1, aux_sym_read_cond_lit_repeat1, - STATE(1827), 3, + STATE(2611), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [196155] = 5, + [196067] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, + ACTIONS(5049), 1, anon_sym_LPAREN, - ACTIONS(12798), 1, + ACTIONS(12720), 1, sym__ws, - STATE(3885), 1, + STATE(4064), 1, aux_sym_read_cond_lit_repeat1, - STATE(3088), 3, + STATE(2990), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [196173] = 5, + [196085] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6225), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(12800), 1, + ACTIONS(12784), 1, sym__ws, - STATE(3948), 1, + STATE(3940), 1, aux_sym_read_cond_lit_repeat1, - STATE(1732), 3, + STATE(1675), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [196191] = 5, + [196103] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(12802), 1, + ACTIONS(8466), 1, anon_sym_DQUOTE, - ACTIONS(12806), 1, + ACTIONS(12786), 1, anon_sym_TILDE, - ACTIONS(12804), 2, + ACTIONS(12722), 2, aux_sym_str_lit_token1, aux_sym_str_lit_token2, - STATE(3920), 2, + STATE(3963), 2, sym_format_specifier, aux_sym_str_lit_repeat1, - [196209] = 5, + [196121] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4412), 1, + ACTIONS(5005), 1, anon_sym_LPAREN, - ACTIONS(12808), 1, + ACTIONS(12788), 1, sym__ws, - STATE(3951), 1, + STATE(3903), 1, aux_sym_read_cond_lit_repeat1, - STATE(1179), 3, + STATE(3059), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [196227] = 5, - ACTIONS(29), 1, - anon_sym_LPAREN, + [196139] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12810), 1, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(12720), 1, sym__ws, - STATE(3980), 1, + STATE(4064), 1, aux_sym_read_cond_lit_repeat1, - STATE(1829), 3, + STATE(1322), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [196245] = 5, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(8468), 1, - anon_sym_DQUOTE, - ACTIONS(12812), 1, - anon_sym_TILDE, - ACTIONS(12728), 2, - aux_sym_str_lit_token1, - aux_sym_str_lit_token2, - STATE(3902), 2, - sym_format_specifier, - aux_sym_str_lit_repeat1, - [196263] = 5, + [196157] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6049), 1, + ACTIONS(4769), 1, anon_sym_LPAREN, - ACTIONS(12814), 1, + ACTIONS(12720), 1, sym__ws, - STATE(3927), 1, + STATE(4064), 1, aux_sym_read_cond_lit_repeat1, - STATE(2949), 3, + STATE(2585), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [196281] = 5, + [196175] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6049), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(12816), 1, + ACTIONS(12790), 1, sym__ws, - STATE(3928), 1, + STATE(3941), 1, aux_sym_read_cond_lit_repeat1, - STATE(2806), 3, + STATE(1331), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [196299] = 5, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(8482), 1, - anon_sym_DQUOTE, - ACTIONS(12818), 1, - anon_sym_TILDE, - ACTIONS(12728), 2, - aux_sym_str_lit_token1, - aux_sym_str_lit_token2, - STATE(3902), 2, - sym_format_specifier, - aux_sym_str_lit_repeat1, - [196317] = 5, - ACTIONS(29), 1, - anon_sym_LPAREN, + [196193] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12820), 1, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(12792), 1, sym__ws, - STATE(3992), 1, + STATE(3942), 1, aux_sym_read_cond_lit_repeat1, - STATE(1872), 3, + STATE(2592), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [196335] = 5, + [196211] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6225), 1, + ACTIONS(5005), 1, anon_sym_LPAREN, - ACTIONS(12718), 1, + ACTIONS(12794), 1, sym__ws, - STATE(4038), 1, + STATE(3904), 1, aux_sym_read_cond_lit_repeat1, - STATE(1673), 3, + STATE(2975), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [196353] = 5, + [196229] = 5, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(12796), 1, + anon_sym_DQUOTE, + ACTIONS(12800), 1, + anon_sym_TILDE, + ACTIONS(12798), 2, + aux_sym_str_lit_token1, + aux_sym_str_lit_token2, + STATE(3945), 2, + sym_format_specifier, + aux_sym_str_lit_repeat1, + [196247] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4761), 1, + ACTIONS(5049), 1, anon_sym_LPAREN, - ACTIONS(12822), 1, + ACTIONS(12802), 1, sym__ws, - STATE(3974), 1, + STATE(3961), 1, aux_sym_read_cond_lit_repeat1, - STATE(1505), 3, + STATE(2823), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [196371] = 5, - ACTIONS(29), 1, - anon_sym_LPAREN, + [196265] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12824), 1, + ACTIONS(5227), 1, + anon_sym_LPAREN, + ACTIONS(12720), 1, sym__ws, - STATE(3985), 1, + STATE(4064), 1, aux_sym_read_cond_lit_repeat1, - STATE(1871), 3, + STATE(1637), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [196389] = 5, - ACTIONS(29), 1, - anon_sym_LPAREN, + [196283] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12718), 1, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(12720), 1, sym__ws, - STATE(4038), 1, + STATE(4064), 1, aux_sym_read_cond_lit_repeat1, - STATE(1803), 3, + STATE(1344), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [196407] = 5, + [196301] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6225), 1, + ACTIONS(4769), 1, anon_sym_LPAREN, - ACTIONS(12718), 1, + ACTIONS(12720), 1, sym__ws, - STATE(4038), 1, + STATE(4064), 1, aux_sym_read_cond_lit_repeat1, - STATE(1638), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [196425] = 5, + [196319] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(12826), 1, + ACTIONS(12804), 1, anon_sym_DQUOTE, - ACTIONS(12830), 1, + ACTIONS(12808), 1, anon_sym_TILDE, - ACTIONS(12828), 2, + ACTIONS(12806), 2, aux_sym_str_lit_token1, aux_sym_str_lit_token2, - STATE(3966), 2, + STATE(3958), 2, sym_format_specifier, aux_sym_str_lit_repeat1, - [196443] = 5, + [196337] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6049), 1, + ACTIONS(4380), 1, anon_sym_LPAREN, - ACTIONS(12718), 1, + ACTIONS(12810), 1, sym__ws, - STATE(4038), 1, + STATE(3964), 1, aux_sym_read_cond_lit_repeat1, - STATE(2917), 3, + STATE(1150), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [196461] = 5, - ACTIONS(47), 1, + [196355] = 5, + ACTIONS(3), 1, sym_block_comment, - ACTIONS(4412), 1, - anon_sym_LPAREN, - ACTIONS(12718), 1, - sym__ws, - STATE(4038), 1, - aux_sym_read_cond_lit_repeat1, - STATE(1152), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [196479] = 5, + ACTIONS(8440), 1, + anon_sym_DQUOTE, + ACTIONS(12812), 1, + anon_sym_TILDE, + ACTIONS(12722), 2, + aux_sym_str_lit_token1, + aux_sym_str_lit_token2, + STATE(3963), 2, + sym_format_specifier, + aux_sym_str_lit_repeat1, + [196373] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(12832), 1, + ACTIONS(8458), 1, anon_sym_DQUOTE, - ACTIONS(12836), 1, + ACTIONS(12814), 1, anon_sym_TILDE, - ACTIONS(12834), 2, + ACTIONS(12722), 2, aux_sym_str_lit_token1, aux_sym_str_lit_token2, - STATE(3964), 2, + STATE(3963), 2, sym_format_specifier, aux_sym_str_lit_repeat1, - [196497] = 5, + [196391] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6049), 1, + ACTIONS(4380), 1, anon_sym_LPAREN, - ACTIONS(12718), 1, + ACTIONS(12720), 1, sym__ws, - STATE(4038), 1, + STATE(4064), 1, aux_sym_read_cond_lit_repeat1, - STATE(1960), 3, + STATE(1191), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [196515] = 5, + [196409] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(1612), 1, + ACTIONS(4751), 1, anon_sym_LPAREN, - ACTIONS(12838), 1, + ACTIONS(12720), 1, sym__ws, - STATE(3905), 1, + STATE(4064), 1, aux_sym_read_cond_lit_repeat1, - STATE(2770), 3, + STATE(1065), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [196533] = 5, + [196427] = 5, + ACTIONS(29), 1, + anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(12840), 1, + ACTIONS(12816), 1, sym__ws, - STATE(3921), 1, + STATE(3907), 1, aux_sym_read_cond_lit_repeat1, - STATE(2627), 3, + STATE(1869), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [196551] = 5, + [196445] = 5, + ACTIONS(29), 1, + anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, - anon_sym_LPAREN, - ACTIONS(12842), 1, + ACTIONS(12818), 1, sym__ws, - STATE(3971), 1, + STATE(3985), 1, aux_sym_read_cond_lit_repeat1, - STATE(3054), 3, + STATE(1870), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [196569] = 5, + [196463] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(1612), 1, + ACTIONS(5005), 1, anon_sym_LPAREN, - ACTIONS(12844), 1, + ACTIONS(12720), 1, sym__ws, - STATE(3984), 1, + STATE(4064), 1, aux_sym_read_cond_lit_repeat1, - STATE(1899), 3, + STATE(3101), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [196587] = 5, + [196481] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5181), 1, + ACTIONS(5005), 1, anon_sym_LPAREN, - ACTIONS(12846), 1, + ACTIONS(12720), 1, sym__ws, - STATE(3968), 1, + STATE(4064), 1, aux_sym_read_cond_lit_repeat1, - STATE(3088), 3, + STATE(2990), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [196605] = 5, + [196499] = 5, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(12820), 1, + anon_sym_DQUOTE, + ACTIONS(12824), 1, + anon_sym_TILDE, + ACTIONS(12822), 2, + aux_sym_str_lit_token1, + aux_sym_str_lit_token2, + STATE(3960), 2, + sym_format_specifier, + aux_sym_str_lit_repeat1, + [196517] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5181), 1, + ACTIONS(4751), 1, anon_sym_LPAREN, - ACTIONS(12848), 1, + ACTIONS(12720), 1, sym__ws, - STATE(3969), 1, + STATE(4064), 1, aux_sym_read_cond_lit_repeat1, - STATE(2934), 3, + STATE(1064), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [196623] = 5, + [196535] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4412), 1, + ACTIONS(4769), 1, anon_sym_LPAREN, - ACTIONS(12850), 1, + ACTIONS(12826), 1, sym__ws, - STATE(3979), 1, + STATE(3970), 1, aux_sym_read_cond_lit_repeat1, - STATE(1161), 3, + STATE(3059), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [196641] = 5, + [196553] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6049), 1, + ACTIONS(4380), 1, anon_sym_LPAREN, - ACTIONS(12718), 1, + ACTIONS(12828), 1, sym__ws, - STATE(4038), 1, + STATE(3971), 1, aux_sym_read_cond_lit_repeat1, - STATE(2845), 3, + STATE(1151), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [196659] = 5, + [196571] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(12852), 1, + ACTIONS(12720), 1, sym__ws, - STATE(3922), 1, + STATE(4064), 1, aux_sym_read_cond_lit_repeat1, - STATE(2934), 3, + STATE(1345), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [196677] = 5, + [196589] = 5, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(8484), 1, + anon_sym_DQUOTE, + ACTIONS(12830), 1, + anon_sym_TILDE, + ACTIONS(12722), 2, + aux_sym_str_lit_token1, + aux_sym_str_lit_token2, + STATE(3963), 2, + sym_format_specifier, + aux_sym_str_lit_repeat1, + [196607] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(1612), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(12854), 1, + ACTIONS(12832), 1, sym__ws, - STATE(3926), 1, + STATE(3957), 1, aux_sym_read_cond_lit_repeat1, - STATE(2790), 3, + STATE(1332), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [196695] = 5, + [196625] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(8440), 1, + ACTIONS(8488), 1, anon_sym_DQUOTE, - ACTIONS(12856), 1, + ACTIONS(12834), 1, anon_sym_TILDE, - ACTIONS(12728), 2, + ACTIONS(12722), 2, aux_sym_str_lit_token1, aux_sym_str_lit_token2, - STATE(3902), 2, + STATE(3963), 2, sym_format_specifier, aux_sym_str_lit_repeat1, - [196713] = 5, + [196643] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6049), 1, + ACTIONS(5049), 1, anon_sym_LPAREN, - ACTIONS(12858), 1, + ACTIONS(12720), 1, sym__ws, - STATE(3953), 1, + STATE(4064), 1, aux_sym_read_cond_lit_repeat1, - STATE(1891), 3, + STATE(2827), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [196731] = 5, + [196661] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(5049), 1, + anon_sym_LPAREN, + ACTIONS(12720), 1, + sym__ws, + STATE(4064), 1, + aux_sym_read_cond_lit_repeat1, + STATE(2912), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [196679] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(8460), 1, + ACTIONS(12836), 1, anon_sym_DQUOTE, - ACTIONS(12860), 1, + ACTIONS(12841), 1, anon_sym_TILDE, - ACTIONS(12728), 2, + ACTIONS(12838), 2, aux_sym_str_lit_token1, aux_sym_str_lit_token2, - STATE(3902), 2, + STATE(3963), 2, sym_format_specifier, aux_sym_str_lit_repeat1, - [196749] = 5, + [196697] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4380), 1, + anon_sym_LPAREN, + ACTIONS(12720), 1, + sym__ws, + STATE(4064), 1, + aux_sym_read_cond_lit_repeat1, + STATE(1169), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [196715] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(12862), 1, + ACTIONS(12844), 1, anon_sym_DQUOTE, - ACTIONS(12866), 1, + ACTIONS(12848), 1, anon_sym_TILDE, - ACTIONS(12864), 2, + ACTIONS(12846), 2, aux_sym_str_lit_token1, aux_sym_str_lit_token2, - STATE(3930), 2, + STATE(3994), 2, sym_format_specifier, aux_sym_str_lit_repeat1, - [196767] = 5, + [196733] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5181), 1, + ACTIONS(4751), 1, anon_sym_LPAREN, - ACTIONS(12718), 1, + ACTIONS(12850), 1, sym__ws, - STATE(4038), 1, + STATE(3996), 1, aux_sym_read_cond_lit_repeat1, - STATE(3096), 3, + STATE(1011), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [196785] = 5, + [196751] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5181), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(12718), 1, + ACTIONS(12852), 1, sym__ws, - STATE(4038), 1, + STATE(3997), 1, aux_sym_read_cond_lit_repeat1, - STATE(2917), 3, + STATE(1304), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [196803] = 5, + [196769] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6049), 1, + ACTIONS(5049), 1, anon_sym_LPAREN, - ACTIONS(12868), 1, + ACTIONS(12854), 1, sym__ws, - STATE(3961), 1, + STATE(3975), 1, aux_sym_read_cond_lit_repeat1, - STATE(2818), 3, + STATE(2835), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [196821] = 5, + [196787] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, + ACTIONS(5049), 1, anon_sym_LPAREN, - ACTIONS(12718), 1, + ACTIONS(12856), 1, sym__ws, - STATE(4038), 1, + STATE(3929), 1, aux_sym_read_cond_lit_repeat1, - STATE(3068), 3, + STATE(2969), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [196839] = 5, + [196805] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6049), 1, + ACTIONS(4769), 1, anon_sym_LPAREN, - ACTIONS(12718), 1, + ACTIONS(12720), 1, sym__ws, - STATE(4038), 1, + STATE(4064), 1, aux_sym_read_cond_lit_repeat1, - STATE(1973), 3, + STATE(3096), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [196857] = 5, + [196823] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, + ACTIONS(4380), 1, anon_sym_LPAREN, - ACTIONS(12718), 1, + ACTIONS(12720), 1, sym__ws, - STATE(4038), 1, + STATE(4064), 1, aux_sym_read_cond_lit_repeat1, - STATE(2634), 3, + STATE(1170), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [196875] = 5, + [196841] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4761), 1, + ACTIONS(4769), 1, anon_sym_LPAREN, - ACTIONS(12718), 1, + ACTIONS(12858), 1, sym__ws, - STATE(4038), 1, + STATE(3993), 1, aux_sym_read_cond_lit_repeat1, - STATE(1503), 3, + STATE(3087), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [196893] = 5, + [196859] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5181), 1, + ACTIONS(4380), 1, anon_sym_LPAREN, - ACTIONS(12870), 1, + ACTIONS(12860), 1, sym__ws, - STATE(3993), 1, + STATE(3887), 1, aux_sym_read_cond_lit_repeat1, - STATE(3054), 3, + STATE(1179), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [196911] = 5, + [196877] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4761), 1, + ACTIONS(4751), 1, anon_sym_LPAREN, - ACTIONS(12718), 1, + ACTIONS(12720), 1, sym__ws, - STATE(4038), 1, + STATE(4064), 1, aux_sym_read_cond_lit_repeat1, - STATE(1547), 3, + STATE(1038), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [196929] = 5, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(8472), 1, - anon_sym_DQUOTE, - ACTIONS(12872), 1, - anon_sym_TILDE, - ACTIONS(12728), 2, - aux_sym_str_lit_token1, - aux_sym_str_lit_token2, - STATE(3902), 2, - sym_format_specifier, - aux_sym_str_lit_repeat1, - [196947] = 5, + [196895] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5181), 1, + ACTIONS(5049), 1, anon_sym_LPAREN, - ACTIONS(12874), 1, + ACTIONS(12720), 1, sym__ws, - STATE(3995), 1, + STATE(4064), 1, aux_sym_read_cond_lit_repeat1, - STATE(2949), 3, + STATE(2811), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [196965] = 5, + [196913] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4412), 1, + ACTIONS(4380), 1, anon_sym_LPAREN, - ACTIONS(12718), 1, + ACTIONS(12862), 1, sym__ws, - STATE(4038), 1, + STATE(3947), 1, aux_sym_read_cond_lit_repeat1, - STATE(1174), 3, + STATE(1178), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [196983] = 5, - ACTIONS(29), 1, - anon_sym_LPAREN, + [196931] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12718), 1, + ACTIONS(4751), 1, + anon_sym_LPAREN, + ACTIONS(12864), 1, sym__ws, - STATE(4038), 1, + STATE(3948), 1, aux_sym_read_cond_lit_repeat1, - STATE(1782), 3, + STATE(1048), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [197001] = 5, + [196949] = 5, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(12866), 1, + anon_sym_DQUOTE, + ACTIONS(12870), 1, + anon_sym_TILDE, + ACTIONS(12868), 2, + aux_sym_str_lit_token1, + aux_sym_str_lit_token2, + STATE(3984), 2, + sym_format_specifier, + aux_sym_str_lit_repeat1, + [196967] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4761), 1, + ACTIONS(1468), 1, anon_sym_LPAREN, - ACTIONS(12876), 1, + ACTIONS(12872), 1, sym__ws, - STATE(3976), 1, + STATE(3986), 1, aux_sym_read_cond_lit_repeat1, - STATE(1536), 3, + STATE(2774), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [197019] = 5, + [196985] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4761), 1, + ACTIONS(4769), 1, anon_sym_LPAREN, - ACTIONS(12718), 1, + ACTIONS(12874), 1, sym__ws, - STATE(4038), 1, + STATE(3987), 1, aux_sym_read_cond_lit_repeat1, - STATE(1528), 3, + STATE(2975), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [197037] = 5, + [197003] = 5, + ACTIONS(29), 1, + anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4761), 1, - anon_sym_LPAREN, - ACTIONS(12878), 1, + ACTIONS(12876), 1, sym__ws, - STATE(3982), 1, + STATE(3920), 1, aux_sym_read_cond_lit_repeat1, - STATE(1509), 3, + STATE(1888), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [197055] = 5, - ACTIONS(47), 1, + [197021] = 5, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(8468), 1, + anon_sym_DQUOTE, + ACTIONS(12878), 1, + anon_sym_TILDE, + ACTIONS(12722), 2, + aux_sym_str_lit_token1, + aux_sym_str_lit_token2, + STATE(3963), 2, + sym_format_specifier, + aux_sym_str_lit_repeat1, + [197039] = 5, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(8464), 1, + anon_sym_DQUOTE, + ACTIONS(12880), 1, + anon_sym_TILDE, + ACTIONS(12722), 2, + aux_sym_str_lit_token1, + aux_sym_str_lit_token2, + STATE(3963), 2, + sym_format_specifier, + aux_sym_str_lit_repeat1, + [197057] = 5, + ACTIONS(3), 1, sym_block_comment, - ACTIONS(1612), 1, + ACTIONS(8472), 1, + anon_sym_DQUOTE, + ACTIONS(12882), 1, + anon_sym_TILDE, + ACTIONS(12722), 2, + aux_sym_str_lit_token1, + aux_sym_str_lit_token2, + STATE(3963), 2, + sym_format_specifier, + aux_sym_str_lit_repeat1, + [197075] = 5, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(12718), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(12720), 1, sym__ws, - STATE(4038), 1, + STATE(4064), 1, aux_sym_read_cond_lit_repeat1, - STATE(1973), 3, + STATE(1795), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [197073] = 5, - ACTIONS(29), 1, - anon_sym_LPAREN, + [197093] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12718), 1, + ACTIONS(1468), 1, + anon_sym_LPAREN, + ACTIONS(12720), 1, sym__ws, - STATE(4038), 1, + STATE(4064), 1, aux_sym_read_cond_lit_repeat1, - STATE(1840), 3, + STATE(2772), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [197091] = 5, + [197111] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6049), 1, + ACTIONS(4769), 1, anon_sym_LPAREN, - ACTIONS(12880), 1, + ACTIONS(12720), 1, sym__ws, - STATE(3972), 1, + STATE(4064), 1, aux_sym_read_cond_lit_repeat1, - STATE(1899), 3, + STATE(2912), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [197109] = 5, + [197129] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4811), 1, + ACTIONS(1468), 1, anon_sym_LPAREN, - ACTIONS(12882), 1, + ACTIONS(12884), 1, sym__ws, - STATE(3973), 1, + STATE(3895), 1, aux_sym_read_cond_lit_repeat1, - STATE(2611), 3, + STATE(2789), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [197127] = 5, + [197147] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4761), 1, + ACTIONS(4769), 1, anon_sym_LPAREN, - ACTIONS(12884), 1, + ACTIONS(12886), 1, sym__ws, - STATE(3997), 1, + STATE(3899), 1, aux_sym_read_cond_lit_repeat1, - STATE(1502), 3, + STATE(2969), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [197145] = 5, + [197165] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(12886), 1, + ACTIONS(12888), 1, anon_sym_DQUOTE, - ACTIONS(12890), 1, + ACTIONS(12892), 1, anon_sym_TILDE, - ACTIONS(12888), 2, + ACTIONS(12890), 2, aux_sym_str_lit_token1, aux_sym_str_lit_token2, - STATE(3977), 2, + STATE(3946), 2, sym_format_specifier, aux_sym_str_lit_repeat1, - [197163] = 5, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(6049), 1, - anon_sym_LPAREN, - ACTIONS(12892), 1, - sym__ws, - STATE(3950), 1, - aux_sym_read_cond_lit_repeat1, - STATE(2934), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [197181] = 5, + [197183] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(1612), 1, + ACTIONS(4769), 1, anon_sym_LPAREN, ACTIONS(12894), 1, sym__ws, - STATE(3996), 1, + STATE(3886), 1, aux_sym_read_cond_lit_repeat1, - STATE(1891), 3, + STATE(2571), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [197199] = 5, - ACTIONS(29), 1, - anon_sym_LPAREN, + [197201] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12718), 1, + ACTIONS(5049), 1, + anon_sym_LPAREN, + ACTIONS(12896), 1, sym__ws, - STATE(4038), 1, + STATE(3889), 1, aux_sym_read_cond_lit_repeat1, - STATE(1841), 3, + STATE(1894), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [197217] = 5, + [197219] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5181), 1, + ACTIONS(4769), 1, anon_sym_LPAREN, - ACTIONS(12718), 1, + ACTIONS(12720), 1, sym__ws, - STATE(4038), 1, + STATE(4064), 1, aux_sym_read_cond_lit_repeat1, - STATE(3068), 3, + STATE(3101), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [197235] = 5, + [197237] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(12896), 1, + ACTIONS(8470), 1, anon_sym_DQUOTE, - ACTIONS(12900), 1, + ACTIONS(12898), 1, anon_sym_TILDE, - ACTIONS(12898), 2, + ACTIONS(12722), 2, aux_sym_str_lit_token1, aux_sym_str_lit_token2, - STATE(3939), 2, + STATE(3963), 2, sym_format_specifier, aux_sym_str_lit_repeat1, - [197253] = 5, + [197255] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5181), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(12718), 1, + ACTIONS(12720), 1, sym__ws, - STATE(4038), 1, + STATE(4064), 1, aux_sym_read_cond_lit_repeat1, - STATE(2955), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [197271] = 5, + [197273] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(1612), 1, + ACTIONS(4751), 1, anon_sym_LPAREN, - ACTIONS(12718), 1, + ACTIONS(12720), 1, sym__ws, - STATE(4038), 1, + STATE(4064), 1, aux_sym_read_cond_lit_repeat1, - STATE(1960), 3, + STATE(1037), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [197289] = 5, + [197291] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4761), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(12718), 1, + ACTIONS(12720), 1, sym__ws, - STATE(4038), 1, + STATE(4064), 1, aux_sym_read_cond_lit_repeat1, - STATE(1500), 3, + STATE(1323), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [197307] = 6, + [197309] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8436), 1, - aux_sym_num_lit_token1, - ACTIONS(8444), 1, - anon_sym_SQUOTE, - ACTIONS(11004), 1, - anon_sym_COMMA, - ACTIONS(11008), 1, - aux_sym_format_directive_type_token11, - STATE(3085), 2, - sym__format_token, - aux_sym_format_modifiers_repeat1, + ACTIONS(5049), 1, + anon_sym_LPAREN, + ACTIONS(12900), 1, + sym__ws, + STATE(3962), 1, + aux_sym_read_cond_lit_repeat1, + STATE(2975), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, [197327] = 3, ACTIONS(47), 1, sym_block_comment, @@ -207894,51 +207466,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - [197340] = 3, + [197340] = 5, ACTIONS(47), 1, sym_block_comment, ACTIONS(12906), 1, - anon_sym_loop, - ACTIONS(12904), 4, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - [197353] = 3, + anon_sym_COLON, + ACTIONS(12910), 1, + aux_sym__sym_lit_without_slash_token1, + STATE(4009), 1, + aux_sym__sym_lit_without_slash_repeat1, + ACTIONS(12908), 2, + anon_sym_COLON_COLON, + anon_sym_SLASH, + [197357] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12908), 1, + ACTIONS(12912), 1, anon_sym_loop, ACTIONS(12904), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - [197366] = 6, + [197370] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12910), 1, + ACTIONS(12914), 1, anon_sym_cl, - ACTIONS(12912), 1, + ACTIONS(12916), 1, aux_sym__sym_lit_without_slash_token1, - STATE(4003), 1, + STATE(4000), 1, aux_sym__sym_lit_without_slash_repeat1, - STATE(4076), 1, + STATE(4043), 1, sym__sym_lit_without_slash, - STATE(4136), 1, + STATE(4157), 1, sym__package_lit_without_slash, - [197385] = 5, + [197389] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12914), 1, - anon_sym_COLON, ACTIONS(12918), 1, - aux_sym__sym_lit_without_slash_token1, - STATE(4008), 1, - aux_sym__sym_lit_without_slash_repeat1, - ACTIONS(12916), 2, - anon_sym_COLON_COLON, - anon_sym_SLASH, + anon_sym_loop, + ACTIONS(12904), 4, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, [197402] = 3, ACTIONS(47), 1, sym_block_comment, @@ -207979,28 +207551,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - [197454] = 5, + [197454] = 3, ACTIONS(47), 1, sym_block_comment, ACTIONS(12928), 1, - anon_sym_COLON, - ACTIONS(12932), 1, - aux_sym__sym_lit_without_slash_token1, - STATE(4008), 1, - aux_sym__sym_lit_without_slash_repeat1, - ACTIONS(12930), 2, - anon_sym_COLON_COLON, - anon_sym_SLASH, - [197471] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(12935), 1, anon_sym_loop, ACTIONS(12904), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, + [197467] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(12930), 1, + anon_sym_COLON, + ACTIONS(12934), 1, + aux_sym__sym_lit_without_slash_token1, + STATE(4009), 1, + aux_sym__sym_lit_without_slash_repeat1, + ACTIONS(12932), 2, + anon_sym_COLON_COLON, + anon_sym_SLASH, [197484] = 3, ACTIONS(47), 1, sym_block_comment, @@ -208105,937 +207677,937 @@ static const uint16_t ts_small_parse_table[] = { [197612] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(81), 1, - aux_sym_sym_lit_token1, ACTIONS(12963), 1, + aux_sym_sym_lit_token1, + ACTIONS(12965), 1, anon_sym_EQ, - STATE(2635), 1, - sym_sym_lit, + STATE(1006), 1, + sym_kwd_symbol, [197625] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(81), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(12965), 1, + ACTIONS(12967), 1, anon_sym_EQ, - STATE(2635), 1, + STATE(2590), 1, sym_sym_lit, [197638] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12967), 1, - aux_sym_sym_lit_token1, ACTIONS(12969), 1, + aux_sym_sym_lit_token1, + ACTIONS(12971), 1, anon_sym_EQ, - STATE(1055), 1, + STATE(2568), 1, sym_kwd_symbol, [197651] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(81), 1, + ACTIONS(12969), 1, aux_sym_sym_lit_token1, - ACTIONS(12971), 1, + ACTIONS(12973), 1, anon_sym_EQ, - STATE(2635), 1, - sym_sym_lit, + STATE(2568), 1, + sym_kwd_symbol, [197664] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12967), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(12973), 1, + ACTIONS(12975), 1, anon_sym_EQ, - STATE(1055), 1, - sym_kwd_symbol, + STATE(2590), 1, + sym_sym_lit, [197677] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12975), 1, + ACTIONS(78), 1, aux_sym_sym_lit_token1, ACTIONS(12977), 1, anon_sym_EQ, - STATE(2608), 1, - sym_kwd_symbol, + STATE(1044), 1, + sym_sym_lit, [197690] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(81), 1, + ACTIONS(12969), 1, aux_sym_sym_lit_token1, ACTIONS(12979), 1, anon_sym_EQ, - STATE(2635), 1, - sym_sym_lit, + STATE(2568), 1, + sym_kwd_symbol, [197703] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12975), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, ACTIONS(12981), 1, anon_sym_EQ, - STATE(2608), 1, - sym_kwd_symbol, + STATE(2590), 1, + sym_sym_lit, [197716] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12975), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, ACTIONS(12983), 1, anon_sym_EQ, - STATE(2608), 1, - sym_kwd_symbol, + STATE(2590), 1, + sym_sym_lit, [197729] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(150), 1, + ACTIONS(12963), 1, aux_sym_sym_lit_token1, ACTIONS(12985), 1, anon_sym_EQ, - STATE(1064), 1, - sym_sym_lit, + STATE(1006), 1, + sym_kwd_symbol, [197742] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(81), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, ACTIONS(12987), 1, anon_sym_EQ, - STATE(2635), 1, + STATE(2590), 1, sym_sym_lit, [197755] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(81), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, ACTIONS(12989), 1, anon_sym_EQ, - STATE(2635), 1, + STATE(2590), 1, sym_sym_lit, [197768] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12967), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, ACTIONS(12991), 1, anon_sym_EQ, - STATE(1055), 1, - sym_kwd_symbol, + STATE(2590), 1, + sym_sym_lit, [197781] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12975), 1, + ACTIONS(12969), 1, aux_sym_sym_lit_token1, ACTIONS(12993), 1, anon_sym_EQ, - STATE(2608), 1, + STATE(2568), 1, sym_kwd_symbol, [197794] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(81), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, ACTIONS(12995), 1, anon_sym_EQ, - STATE(2635), 1, + STATE(2590), 1, sym_sym_lit, [197807] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(81), 1, + ACTIONS(12969), 1, aux_sym_sym_lit_token1, ACTIONS(12997), 1, anon_sym_EQ, - STATE(2635), 1, - sym_sym_lit, + STATE(2568), 1, + sym_kwd_symbol, [197820] = 4, ACTIONS(47), 1, sym_block_comment, + ACTIONS(12969), 1, + aux_sym_sym_lit_token1, ACTIONS(12999), 1, - sym__ws, - ACTIONS(13002), 1, - anon_sym_LPAREN, - STATE(4038), 1, - aux_sym_read_cond_lit_repeat1, + anon_sym_EQ, + STATE(2568), 1, + sym_kwd_symbol, [197833] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(81), 1, + ACTIONS(12963), 1, aux_sym_sym_lit_token1, - ACTIONS(13004), 1, + ACTIONS(13001), 1, anon_sym_EQ, - STATE(2635), 1, - sym_sym_lit, + STATE(1006), 1, + sym_kwd_symbol, [197846] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12967), 1, + ACTIONS(12963), 1, aux_sym_sym_lit_token1, - ACTIONS(13006), 1, + ACTIONS(13003), 1, anon_sym_EQ, - STATE(1055), 1, + STATE(1006), 1, sym_kwd_symbol, [197859] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(150), 1, + ACTIONS(78), 1, aux_sym_sym_lit_token1, - ACTIONS(13008), 1, + ACTIONS(13005), 1, anon_sym_EQ, - STATE(1064), 1, + STATE(1044), 1, sym_sym_lit, [197872] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12975), 1, + ACTIONS(12963), 1, aux_sym_sym_lit_token1, - ACTIONS(13010), 1, + ACTIONS(13007), 1, anon_sym_EQ, - STATE(2608), 1, + STATE(1006), 1, sym_kwd_symbol, [197885] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12975), 1, - aux_sym_sym_lit_token1, - ACTIONS(13012), 1, - anon_sym_EQ, - STATE(2608), 1, - sym_kwd_symbol, + ACTIONS(13009), 1, + anon_sym_COLON, + ACTIONS(13011), 1, + anon_sym_COLON_COLON, + ACTIONS(13013), 1, + anon_sym_SLASH, [197898] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12975), 1, + ACTIONS(12963), 1, aux_sym_sym_lit_token1, - ACTIONS(13014), 1, + ACTIONS(13015), 1, anon_sym_EQ, - STATE(2608), 1, + STATE(1006), 1, sym_kwd_symbol, [197911] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(81), 1, + ACTIONS(12969), 1, aux_sym_sym_lit_token1, - ACTIONS(13016), 1, + ACTIONS(13017), 1, anon_sym_EQ, - STATE(2635), 1, - sym_sym_lit, + STATE(2568), 1, + sym_kwd_symbol, [197924] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12967), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(13018), 1, + ACTIONS(13019), 1, anon_sym_EQ, - STATE(1055), 1, - sym_kwd_symbol, + STATE(2590), 1, + sym_sym_lit, [197937] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(150), 1, + ACTIONS(12969), 1, aux_sym_sym_lit_token1, - ACTIONS(13020), 1, + ACTIONS(13021), 1, anon_sym_EQ, - STATE(1064), 1, - sym_sym_lit, + STATE(2568), 1, + sym_kwd_symbol, [197950] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12975), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(13022), 1, + ACTIONS(13023), 1, anon_sym_EQ, - STATE(2608), 1, - sym_kwd_symbol, + STATE(2590), 1, + sym_sym_lit, [197963] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12967), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(13024), 1, + ACTIONS(13025), 1, anon_sym_EQ, - STATE(1055), 1, - sym_kwd_symbol, + STATE(2590), 1, + sym_sym_lit, [197976] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(81), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(13026), 1, + ACTIONS(13027), 1, anon_sym_EQ, - STATE(2635), 1, + STATE(2590), 1, sym_sym_lit, [197989] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(81), 1, + ACTIONS(12969), 1, aux_sym_sym_lit_token1, - ACTIONS(13028), 1, + ACTIONS(13029), 1, anon_sym_EQ, - STATE(2635), 1, - sym_sym_lit, + STATE(2568), 1, + sym_kwd_symbol, [198002] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(81), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(13030), 1, + ACTIONS(13031), 1, anon_sym_EQ, - STATE(2635), 1, + STATE(2590), 1, sym_sym_lit, [198015] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(81), 1, + ACTIONS(12963), 1, aux_sym_sym_lit_token1, - ACTIONS(13032), 1, + ACTIONS(13033), 1, anon_sym_EQ, - STATE(2635), 1, - sym_sym_lit, + STATE(1006), 1, + sym_kwd_symbol, [198028] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12967), 1, + ACTIONS(12969), 1, aux_sym_sym_lit_token1, - ACTIONS(13034), 1, + ACTIONS(13035), 1, anon_sym_EQ, - STATE(1055), 1, + STATE(2568), 1, sym_kwd_symbol, [198041] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(81), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(13036), 1, + ACTIONS(13037), 1, anon_sym_EQ, - STATE(2635), 1, + STATE(2590), 1, sym_sym_lit, [198054] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(81), 1, + ACTIONS(12969), 1, aux_sym_sym_lit_token1, - ACTIONS(13038), 1, + ACTIONS(13039), 1, anon_sym_EQ, - STATE(2635), 1, - sym_sym_lit, + STATE(2568), 1, + sym_kwd_symbol, [198067] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12975), 1, + ACTIONS(78), 1, aux_sym_sym_lit_token1, - ACTIONS(13040), 1, + ACTIONS(13041), 1, anon_sym_EQ, - STATE(2608), 1, - sym_kwd_symbol, + STATE(1044), 1, + sym_sym_lit, [198080] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12967), 1, + ACTIONS(78), 1, aux_sym_sym_lit_token1, - ACTIONS(13042), 1, + ACTIONS(13043), 1, anon_sym_EQ, - STATE(1055), 1, - sym_kwd_symbol, + STATE(1044), 1, + sym_sym_lit, [198093] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12967), 1, + ACTIONS(78), 1, aux_sym_sym_lit_token1, - ACTIONS(13044), 1, + ACTIONS(13045), 1, anon_sym_EQ, - STATE(1055), 1, - sym_kwd_symbol, + STATE(1044), 1, + sym_sym_lit, [198106] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(81), 1, + ACTIONS(12963), 1, aux_sym_sym_lit_token1, - ACTIONS(13046), 1, + ACTIONS(13047), 1, anon_sym_EQ, - STATE(2635), 1, - sym_sym_lit, + STATE(1006), 1, + sym_kwd_symbol, [198119] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12975), 1, + ACTIONS(12969), 1, aux_sym_sym_lit_token1, - ACTIONS(13048), 1, + ACTIONS(13049), 1, anon_sym_EQ, - STATE(2608), 1, + STATE(2568), 1, sym_kwd_symbol, [198132] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(150), 1, + ACTIONS(12969), 1, aux_sym_sym_lit_token1, - ACTIONS(13050), 1, + ACTIONS(13051), 1, anon_sym_EQ, - STATE(1064), 1, - sym_sym_lit, + STATE(2568), 1, + sym_kwd_symbol, [198145] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(81), 1, + ACTIONS(78), 1, aux_sym_sym_lit_token1, - ACTIONS(13052), 1, + ACTIONS(13053), 1, anon_sym_EQ, - STATE(2635), 1, + STATE(1044), 1, sym_sym_lit, [198158] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(150), 1, - aux_sym_sym_lit_token1, - ACTIONS(13054), 1, - anon_sym_EQ, - STATE(1064), 1, - sym_sym_lit, + ACTIONS(13055), 1, + sym__ws, + ACTIONS(13058), 1, + anon_sym_LPAREN, + STATE(4064), 1, + aux_sym_read_cond_lit_repeat1, [198171] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(81), 1, + ACTIONS(12969), 1, aux_sym_sym_lit_token1, - ACTIONS(13056), 1, + ACTIONS(13060), 1, anon_sym_EQ, - STATE(2635), 1, - sym_sym_lit, + STATE(2568), 1, + sym_kwd_symbol, [198184] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12975), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(13058), 1, + ACTIONS(13062), 1, anon_sym_EQ, - STATE(2608), 1, - sym_kwd_symbol, + STATE(2590), 1, + sym_sym_lit, [198197] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(150), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(13060), 1, + ACTIONS(13064), 1, anon_sym_EQ, - STATE(1064), 1, + STATE(2590), 1, sym_sym_lit, [198210] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12975), 1, + ACTIONS(78), 1, aux_sym_sym_lit_token1, - ACTIONS(13062), 1, + ACTIONS(13066), 1, anon_sym_EQ, - STATE(2608), 1, - sym_kwd_symbol, + STATE(1044), 1, + sym_sym_lit, [198223] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12975), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(13064), 1, + ACTIONS(13068), 1, anon_sym_EQ, - STATE(2608), 1, - sym_kwd_symbol, + STATE(2590), 1, + sym_sym_lit, [198236] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(81), 1, + ACTIONS(12969), 1, aux_sym_sym_lit_token1, - ACTIONS(13066), 1, + ACTIONS(13070), 1, anon_sym_EQ, - STATE(2635), 1, - sym_sym_lit, + STATE(2568), 1, + sym_kwd_symbol, [198249] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12967), 1, + ACTIONS(12963), 1, aux_sym_sym_lit_token1, - ACTIONS(13068), 1, + ACTIONS(13072), 1, anon_sym_EQ, - STATE(1055), 1, + STATE(1006), 1, sym_kwd_symbol, [198262] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12967), 1, + ACTIONS(12969), 1, aux_sym_sym_lit_token1, - ACTIONS(13070), 1, + ACTIONS(13074), 1, anon_sym_EQ, - STATE(1055), 1, + STATE(2568), 1, sym_kwd_symbol, [198275] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12967), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(13072), 1, + ACTIONS(13076), 1, anon_sym_EQ, - STATE(1055), 1, - sym_kwd_symbol, + STATE(2590), 1, + sym_sym_lit, [198288] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12975), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, - ACTIONS(13074), 1, + ACTIONS(13078), 1, anon_sym_EQ, - STATE(2608), 1, - sym_kwd_symbol, + STATE(2590), 1, + sym_sym_lit, [198301] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(81), 1, + ACTIONS(12969), 1, aux_sym_sym_lit_token1, - ACTIONS(13076), 1, + ACTIONS(13080), 1, anon_sym_EQ, - STATE(2635), 1, - sym_sym_lit, + STATE(2568), 1, + sym_kwd_symbol, [198314] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13078), 1, - anon_sym_COLON, - ACTIONS(13080), 1, - anon_sym_COLON_COLON, + ACTIONS(78), 1, + aux_sym_sym_lit_token1, ACTIONS(13082), 1, - anon_sym_SLASH, + anon_sym_EQ, + STATE(1044), 1, + sym_sym_lit, [198327] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(150), 1, + ACTIONS(12963), 1, aux_sym_sym_lit_token1, ACTIONS(13084), 1, anon_sym_EQ, - STATE(1064), 1, - sym_sym_lit, + STATE(1006), 1, + sym_kwd_symbol, [198340] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(81), 1, + ACTIONS(12963), 1, aux_sym_sym_lit_token1, ACTIONS(13086), 1, anon_sym_EQ, - STATE(2635), 1, - sym_sym_lit, + STATE(1006), 1, + sym_kwd_symbol, [198353] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12975), 1, + ACTIONS(12969), 1, aux_sym_sym_lit_token1, ACTIONS(13088), 1, anon_sym_EQ, - STATE(2608), 1, + STATE(2568), 1, sym_kwd_symbol, [198366] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12918), 1, - aux_sym__sym_lit_without_slash_token1, - STATE(4003), 1, - aux_sym__sym_lit_without_slash_repeat1, - STATE(4158), 1, - sym__sym_lit_without_slash, - [198379] = 4, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(81), 1, + ACTIONS(78), 1, aux_sym_sym_lit_token1, ACTIONS(13090), 1, anon_sym_EQ, - STATE(2635), 1, + STATE(1044), 1, sym_sym_lit, - [198392] = 4, + [198379] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12975), 1, + ACTIONS(12969), 1, aux_sym_sym_lit_token1, ACTIONS(13092), 1, anon_sym_EQ, - STATE(2608), 1, + STATE(2568), 1, sym_kwd_symbol, - [198405] = 4, + [198392] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12975), 1, + ACTIONS(12969), 1, aux_sym_sym_lit_token1, ACTIONS(13094), 1, anon_sym_EQ, - STATE(2608), 1, + STATE(2568), 1, sym_kwd_symbol, - [198418] = 4, + [198405] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12975), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, ACTIONS(13096), 1, anon_sym_EQ, - STATE(2608), 1, - sym_kwd_symbol, - [198431] = 4, + STATE(2590), 1, + sym_sym_lit, + [198418] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(150), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, ACTIONS(13098), 1, anon_sym_EQ, - STATE(1064), 1, + STATE(2590), 1, sym_sym_lit, - [198444] = 4, + [198431] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12975), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, ACTIONS(13100), 1, anon_sym_EQ, - STATE(2608), 1, - sym_kwd_symbol, - [198457] = 4, + STATE(2590), 1, + sym_sym_lit, + [198444] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12975), 1, + ACTIONS(12969), 1, aux_sym_sym_lit_token1, ACTIONS(13102), 1, anon_sym_EQ, - STATE(2608), 1, + STATE(2568), 1, sym_kwd_symbol, - [198470] = 4, + [198457] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(150), 1, + ACTIONS(78), 1, aux_sym_sym_lit_token1, ACTIONS(13104), 1, anon_sym_EQ, - STATE(1064), 1, + STATE(1044), 1, sym_sym_lit, - [198483] = 4, + [198470] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12975), 1, + ACTIONS(78), 1, aux_sym_sym_lit_token1, ACTIONS(13106), 1, anon_sym_EQ, - STATE(2608), 1, + STATE(1044), 1, + sym_sym_lit, + [198483] = 4, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(12969), 1, + aux_sym_sym_lit_token1, + ACTIONS(13108), 1, + anon_sym_EQ, + STATE(2568), 1, sym_kwd_symbol, [198496] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(150), 1, + ACTIONS(12969), 1, aux_sym_sym_lit_token1, - ACTIONS(13108), 1, + ACTIONS(13110), 1, anon_sym_EQ, - STATE(1064), 1, - sym_sym_lit, + STATE(2568), 1, + sym_kwd_symbol, [198509] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(150), 1, + ACTIONS(78), 1, aux_sym_sym_lit_token1, - ACTIONS(13110), 1, + ACTIONS(13112), 1, anon_sym_EQ, - STATE(1064), 1, + STATE(1044), 1, sym_sym_lit, [198522] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12975), 1, + ACTIONS(12963), 1, aux_sym_sym_lit_token1, - ACTIONS(13112), 1, + ACTIONS(13114), 1, anon_sym_EQ, - STATE(2608), 1, + STATE(1006), 1, sym_kwd_symbol, [198535] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(150), 1, - aux_sym_sym_lit_token1, - ACTIONS(13114), 1, - anon_sym_EQ, - STATE(1064), 1, - sym_sym_lit, + ACTIONS(12910), 1, + aux_sym__sym_lit_without_slash_token1, + STATE(4000), 1, + aux_sym__sym_lit_without_slash_repeat1, + STATE(4159), 1, + sym__sym_lit_without_slash, [198548] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12975), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, ACTIONS(13116), 1, anon_sym_EQ, - STATE(2608), 1, - sym_kwd_symbol, + STATE(2590), 1, + sym_sym_lit, [198561] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12975), 1, + ACTIONS(188), 1, aux_sym_sym_lit_token1, ACTIONS(13118), 1, anon_sym_EQ, - STATE(2608), 1, - sym_kwd_symbol, + STATE(2590), 1, + sym_sym_lit, [198574] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(81), 1, + ACTIONS(12969), 1, aux_sym_sym_lit_token1, ACTIONS(13120), 1, anon_sym_EQ, - STATE(2635), 1, - sym_sym_lit, + STATE(2568), 1, + sym_kwd_symbol, [198587] = 3, ACTIONS(47), 1, sym_block_comment, ACTIONS(13122), 1, aux_sym_sym_lit_token1, - STATE(2608), 1, + STATE(3074), 1, sym_kwd_symbol, [198597] = 3, ACTIONS(47), 1, sym_block_comment, ACTIONS(13124), 1, aux_sym_sym_lit_token1, - STATE(1474), 1, + STATE(1006), 1, sym_kwd_symbol, [198607] = 3, ACTIONS(47), 1, sym_block_comment, ACTIONS(13126), 1, aux_sym_sym_lit_token1, - STATE(2635), 1, - sym_sym_lit, + STATE(2843), 1, + sym_kwd_symbol, [198617] = 3, ACTIONS(47), 1, sym_block_comment, ACTIONS(13128), 1, aux_sym_sym_lit_token1, - STATE(1444), 1, + STATE(2590), 1, sym_sym_lit, [198627] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13130), 1, + ACTIONS(10444), 1, aux_sym_sym_lit_token1, - STATE(1197), 1, - sym_kwd_symbol, + STATE(1909), 1, + sym_sym_lit, [198637] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13132), 1, + ACTIONS(13130), 1, aux_sym_sym_lit_token1, - STATE(1534), 1, - sym_sym_lit, + STATE(1146), 1, + sym_kwd_symbol, [198647] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13134), 1, + ACTIONS(13132), 1, aux_sym_sym_lit_token1, - STATE(3086), 1, + STATE(1540), 1, sym_kwd_symbol, [198657] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10448), 1, + ACTIONS(10452), 1, aux_sym_sym_lit_token1, - STATE(2972), 1, + STATE(2965), 1, sym_sym_lit, [198667] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10438), 1, + ACTIONS(13134), 1, aux_sym_sym_lit_token1, - STATE(1832), 1, + STATE(1634), 1, sym_sym_lit, [198677] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13136), 1, + ACTIONS(10444), 1, aux_sym_sym_lit_token1, - STATE(1158), 1, + STATE(2965), 1, sym_sym_lit, [198687] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13138), 1, + ACTIONS(13136), 1, aux_sym_sym_lit_token1, - STATE(1686), 1, + STATE(2786), 1, sym_kwd_symbol, [198697] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13140), 1, + ACTIONS(13138), 1, aux_sym_sym_lit_token1, - STATE(1064), 1, + STATE(1176), 1, sym_sym_lit, [198707] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10452), 1, + ACTIONS(10438), 1, aux_sym_sym_lit_token1, - STATE(1969), 1, + STATE(1867), 1, sym_sym_lit, [198717] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13142), 1, + ACTIONS(13140), 1, aux_sym_sym_lit_token1, - STATE(1727), 1, - sym_sym_lit, + STATE(1855), 1, + sym_kwd_symbol, [198727] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13144), 1, + ACTIONS(13142), 1, aux_sym_sym_lit_token1, - STATE(2821), 1, + STATE(1639), 1, sym_kwd_symbol, [198737] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13146), 1, - aux_sym_sym_lit_token1, - STATE(1507), 1, - sym_kwd_symbol, + ACTIONS(13009), 1, + anon_sym_COLON, + ACTIONS(13011), 1, + anon_sym_COLON_COLON, [198747] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13078), 1, - anon_sym_COLON, - ACTIONS(13080), 1, - anon_sym_COLON_COLON, + ACTIONS(13144), 1, + aux_sym_sym_lit_token1, + STATE(1909), 1, + sym_sym_lit, [198757] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13148), 1, + ACTIONS(13146), 1, aux_sym_sym_lit_token1, - STATE(2793), 1, - sym_kwd_symbol, + STATE(1546), 1, + sym_sym_lit, [198767] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10452), 1, + ACTIONS(13148), 1, aux_sym_sym_lit_token1, - STATE(2972), 1, + STATE(1329), 1, sym_sym_lit, [198777] = 3, ACTIONS(47), 1, sym_block_comment, ACTIONS(13150), 1, aux_sym_sym_lit_token1, - STATE(1883), 1, + STATE(2568), 1, sym_kwd_symbol, [198787] = 3, ACTIONS(47), 1, sym_block_comment, ACTIONS(13152), 1, aux_sym_sym_lit_token1, - STATE(1969), 1, - sym_sym_lit, + STATE(1299), 1, + sym_kwd_symbol, [198797] = 3, ACTIONS(47), 1, sym_block_comment, ACTIONS(13154), 1, aux_sym_sym_lit_token1, - STATE(1055), 1, - sym_kwd_symbol, + STATE(1044), 1, + sym_sym_lit, [198807] = 2, ACTIONS(47), 1, sym_block_comment, ACTIONS(13156), 1, - anon_sym_into, + aux_sym_path_lit_token1, [198814] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7299), 1, + ACTIONS(7363), 1, anon_sym_LBRACE, [198821] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7287), 1, - anon_sym_LBRACE, + ACTIONS(13158), 1, + anon_sym_COLON, [198828] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13158), 1, + ACTIONS(13160), 1, anon_sym_into, [198835] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13160), 1, - aux_sym_regex_lit_token1, + ACTIONS(13162), 1, + anon_sym_COLON, [198842] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13162), 1, - aux_sym_regex_lit_token1, + ACTIONS(13164), 1, + anon_sym_COLON, [198849] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13164), 1, - aux_sym_regex_lit_token1, + ACTIONS(13166), 1, + aux_sym_path_lit_token1, [198856] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13166), 1, - anon_sym_into, + ACTIONS(13168), 1, + anon_sym_COLON, [198863] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13168), 1, + ACTIONS(13170), 1, anon_sym_COLON, [198870] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13170), 1, + ACTIONS(13172), 1, anon_sym_COLON, [198877] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13172), 1, - anon_sym_COLON, + ACTIONS(13174), 1, + ts_builtin_sym_end, [198884] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13174), 1, - anon_sym_into, + ACTIONS(7315), 1, + anon_sym_LBRACE, [198891] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13176), 1, - aux_sym_regex_lit_token1, + ACTIONS(7287), 1, + anon_sym_LBRACE, [198898] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13178), 1, - anon_sym_into, + ACTIONS(13176), 1, + anon_sym_COLON, [198905] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13180), 1, + ACTIONS(13178), 1, anon_sym_COLON, [198912] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13182), 1, + ACTIONS(13180), 1, anon_sym_COLON, [198919] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13184), 1, - anon_sym_COLON, + ACTIONS(13182), 1, + aux_sym__format_token_token1, [198926] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13186), 1, - anon_sym_SLASH, + ACTIONS(13184), 1, + anon_sym_into, [198933] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13188), 1, - anon_sym_into, + ACTIONS(13186), 1, + aux_sym_path_lit_token1, [198940] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7311), 1, - anon_sym_LBRACE, + ACTIONS(13188), 1, + anon_sym_into, [198947] = 2, ACTIONS(47), 1, sym_block_comment, ACTIONS(13190), 1, - anon_sym_COLON, + aux_sym_path_lit_token1, [198954] = 2, ACTIONS(47), 1, sym_block_comment, @@ -209044,123 +208616,123 @@ static const uint16_t ts_small_parse_table[] = { [198961] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7355), 1, - anon_sym_LBRACE, + ACTIONS(13194), 1, + anon_sym_COLON, [198968] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7383), 1, - anon_sym_LBRACE, + ACTIONS(13196), 1, + aux_sym_path_lit_token1, [198975] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13194), 1, - anon_sym_COLON, + ACTIONS(13198), 1, + anon_sym_into, [198982] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7323), 1, - anon_sym_LBRACE, + ACTIONS(13200), 1, + anon_sym_COLON, [198989] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13196), 1, - anon_sym_into, + ACTIONS(7339), 1, + anon_sym_LBRACE, [198996] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13198), 1, - anon_sym_COLON, + ACTIONS(13202), 1, + anon_sym_into, [199003] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13200), 1, - anon_sym_into, + ACTIONS(13204), 1, + aux_sym_path_lit_token1, [199010] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7395), 1, - anon_sym_LBRACE, + ACTIONS(13206), 1, + anon_sym_into, [199017] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13202), 1, - aux_sym__format_token_token1, + ACTIONS(7351), 1, + anon_sym_LBRACE, [199024] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13204), 1, - aux_sym_regex_lit_token1, + ACTIONS(13208), 1, + anon_sym_COLON, [199031] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13206), 1, - anon_sym_COLON, + ACTIONS(13210), 1, + aux_sym_path_lit_token1, [199038] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13208), 1, - anon_sym_COLON, + ACTIONS(13212), 1, + anon_sym_into, [199045] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13210), 1, - aux_sym_regex_lit_token1, + ACTIONS(13214), 1, + aux_sym_path_lit_token1, [199052] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7367), 1, - anon_sym_LBRACE, + ACTIONS(13216), 1, + anon_sym_COLON, [199059] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13212), 1, - aux_sym_regex_lit_token1, + ACTIONS(7379), 1, + anon_sym_LBRACE, [199066] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13214), 1, + ACTIONS(13218), 1, anon_sym_COLON, [199073] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13216), 1, - ts_builtin_sym_end, + ACTIONS(13220), 1, + anon_sym_SLASH, [199080] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13218), 1, - anon_sym_SLASH, + ACTIONS(13222), 1, + anon_sym_into, [199087] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13220), 1, - anon_sym_COLON, + ACTIONS(13224), 1, + anon_sym_SLASH, [199094] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13222), 1, + ACTIONS(13226), 1, anon_sym_COLON, [199101] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7343), 1, + ACTIONS(7299), 1, anon_sym_LBRACE, [199108] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13224), 1, - anon_sym_COLON, + ACTIONS(13228), 1, + aux_sym_path_lit_token1, [199115] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13226), 1, - aux_sym_regex_lit_token1, + ACTIONS(7391), 1, + anon_sym_LBRACE, [199122] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13228), 1, - aux_sym_regex_lit_token1, + ACTIONS(7327), 1, + anon_sym_LBRACE, }; static const uint32_t ts_small_parse_table_map[] = { @@ -209200,228 +208772,228 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(438)] = 4455, [SMALL_STATE(439)] = 4590, [SMALL_STATE(440)] = 4725, - [SMALL_STATE(441)] = 4860, - [SMALL_STATE(442)] = 4995, - [SMALL_STATE(443)] = 5130, - [SMALL_STATE(444)] = 5265, - [SMALL_STATE(445)] = 5400, - [SMALL_STATE(446)] = 5535, - [SMALL_STATE(447)] = 5670, - [SMALL_STATE(448)] = 5805, - [SMALL_STATE(449)] = 5940, - [SMALL_STATE(450)] = 6075, - [SMALL_STATE(451)] = 6210, - [SMALL_STATE(452)] = 6345, - [SMALL_STATE(453)] = 6480, - [SMALL_STATE(454)] = 6615, - [SMALL_STATE(455)] = 6750, - [SMALL_STATE(456)] = 6885, - [SMALL_STATE(457)] = 7020, - [SMALL_STATE(458)] = 7155, - [SMALL_STATE(459)] = 7290, - [SMALL_STATE(460)] = 7425, - [SMALL_STATE(461)] = 7560, - [SMALL_STATE(462)] = 7695, - [SMALL_STATE(463)] = 7830, - [SMALL_STATE(464)] = 7965, - [SMALL_STATE(465)] = 8100, - [SMALL_STATE(466)] = 8235, - [SMALL_STATE(467)] = 8370, - [SMALL_STATE(468)] = 8505, - [SMALL_STATE(469)] = 8640, - [SMALL_STATE(470)] = 8775, - [SMALL_STATE(471)] = 8910, - [SMALL_STATE(472)] = 9045, - [SMALL_STATE(473)] = 9180, - [SMALL_STATE(474)] = 9315, - [SMALL_STATE(475)] = 9450, - [SMALL_STATE(476)] = 9585, - [SMALL_STATE(477)] = 9720, - [SMALL_STATE(478)] = 9855, - [SMALL_STATE(479)] = 9990, - [SMALL_STATE(480)] = 10125, - [SMALL_STATE(481)] = 10260, - [SMALL_STATE(482)] = 10395, - [SMALL_STATE(483)] = 10530, - [SMALL_STATE(484)] = 10665, - [SMALL_STATE(485)] = 10800, - [SMALL_STATE(486)] = 10935, - [SMALL_STATE(487)] = 11070, - [SMALL_STATE(488)] = 11205, - [SMALL_STATE(489)] = 11340, - [SMALL_STATE(490)] = 11475, - [SMALL_STATE(491)] = 11610, - [SMALL_STATE(492)] = 11745, - [SMALL_STATE(493)] = 11880, - [SMALL_STATE(494)] = 12015, - [SMALL_STATE(495)] = 12150, - [SMALL_STATE(496)] = 12285, - [SMALL_STATE(497)] = 12420, - [SMALL_STATE(498)] = 12555, - [SMALL_STATE(499)] = 12690, - [SMALL_STATE(500)] = 12825, - [SMALL_STATE(501)] = 12960, - [SMALL_STATE(502)] = 13095, - [SMALL_STATE(503)] = 13230, - [SMALL_STATE(504)] = 13365, - [SMALL_STATE(505)] = 13500, - [SMALL_STATE(506)] = 13635, - [SMALL_STATE(507)] = 13770, - [SMALL_STATE(508)] = 13905, - [SMALL_STATE(509)] = 14040, - [SMALL_STATE(510)] = 14175, - [SMALL_STATE(511)] = 14310, - [SMALL_STATE(512)] = 14445, - [SMALL_STATE(513)] = 14580, - [SMALL_STATE(514)] = 14715, - [SMALL_STATE(515)] = 14850, - [SMALL_STATE(516)] = 14985, - [SMALL_STATE(517)] = 15120, - [SMALL_STATE(518)] = 15255, - [SMALL_STATE(519)] = 15390, - [SMALL_STATE(520)] = 15525, - [SMALL_STATE(521)] = 15660, - [SMALL_STATE(522)] = 15795, - [SMALL_STATE(523)] = 15930, - [SMALL_STATE(524)] = 16065, - [SMALL_STATE(525)] = 16200, - [SMALL_STATE(526)] = 16335, - [SMALL_STATE(527)] = 16470, - [SMALL_STATE(528)] = 16605, - [SMALL_STATE(529)] = 16740, - [SMALL_STATE(530)] = 16875, - [SMALL_STATE(531)] = 17010, - [SMALL_STATE(532)] = 17145, - [SMALL_STATE(533)] = 17280, - [SMALL_STATE(534)] = 17415, - [SMALL_STATE(535)] = 17550, - [SMALL_STATE(536)] = 17685, - [SMALL_STATE(537)] = 17820, - [SMALL_STATE(538)] = 17955, - [SMALL_STATE(539)] = 18090, - [SMALL_STATE(540)] = 18225, - [SMALL_STATE(541)] = 18360, - [SMALL_STATE(542)] = 18495, - [SMALL_STATE(543)] = 18630, - [SMALL_STATE(544)] = 18765, - [SMALL_STATE(545)] = 18900, - [SMALL_STATE(546)] = 19035, - [SMALL_STATE(547)] = 19170, - [SMALL_STATE(548)] = 19305, - [SMALL_STATE(549)] = 19440, - [SMALL_STATE(550)] = 19575, - [SMALL_STATE(551)] = 19710, - [SMALL_STATE(552)] = 19845, - [SMALL_STATE(553)] = 19980, - [SMALL_STATE(554)] = 20115, - [SMALL_STATE(555)] = 20250, - [SMALL_STATE(556)] = 20385, - [SMALL_STATE(557)] = 20520, - [SMALL_STATE(558)] = 20655, - [SMALL_STATE(559)] = 20790, - [SMALL_STATE(560)] = 20925, - [SMALL_STATE(561)] = 21060, - [SMALL_STATE(562)] = 21195, - [SMALL_STATE(563)] = 21330, - [SMALL_STATE(564)] = 21465, - [SMALL_STATE(565)] = 21600, - [SMALL_STATE(566)] = 21735, - [SMALL_STATE(567)] = 21870, - [SMALL_STATE(568)] = 22005, - [SMALL_STATE(569)] = 22140, - [SMALL_STATE(570)] = 22275, - [SMALL_STATE(571)] = 22410, - [SMALL_STATE(572)] = 22545, - [SMALL_STATE(573)] = 22680, - [SMALL_STATE(574)] = 22815, - [SMALL_STATE(575)] = 22950, - [SMALL_STATE(576)] = 23085, - [SMALL_STATE(577)] = 23220, - [SMALL_STATE(578)] = 23355, - [SMALL_STATE(579)] = 23490, - [SMALL_STATE(580)] = 23625, - [SMALL_STATE(581)] = 23760, - [SMALL_STATE(582)] = 23895, - [SMALL_STATE(583)] = 24030, - [SMALL_STATE(584)] = 24165, - [SMALL_STATE(585)] = 24300, - [SMALL_STATE(586)] = 24435, - [SMALL_STATE(587)] = 24570, - [SMALL_STATE(588)] = 24705, - [SMALL_STATE(589)] = 24840, - [SMALL_STATE(590)] = 24975, - [SMALL_STATE(591)] = 25110, - [SMALL_STATE(592)] = 25245, - [SMALL_STATE(593)] = 25380, - [SMALL_STATE(594)] = 25515, - [SMALL_STATE(595)] = 25650, - [SMALL_STATE(596)] = 25785, - [SMALL_STATE(597)] = 25920, - [SMALL_STATE(598)] = 26055, - [SMALL_STATE(599)] = 26190, - [SMALL_STATE(600)] = 26325, - [SMALL_STATE(601)] = 26460, - [SMALL_STATE(602)] = 26595, - [SMALL_STATE(603)] = 26730, - [SMALL_STATE(604)] = 26865, - [SMALL_STATE(605)] = 27000, - [SMALL_STATE(606)] = 27135, - [SMALL_STATE(607)] = 27270, - [SMALL_STATE(608)] = 27405, - [SMALL_STATE(609)] = 27540, - [SMALL_STATE(610)] = 27675, - [SMALL_STATE(611)] = 27810, - [SMALL_STATE(612)] = 27945, - [SMALL_STATE(613)] = 28080, - [SMALL_STATE(614)] = 28215, - [SMALL_STATE(615)] = 28350, - [SMALL_STATE(616)] = 28485, - [SMALL_STATE(617)] = 28620, - [SMALL_STATE(618)] = 28755, - [SMALL_STATE(619)] = 28890, - [SMALL_STATE(620)] = 29025, - [SMALL_STATE(621)] = 29160, - [SMALL_STATE(622)] = 29295, - [SMALL_STATE(623)] = 29430, - [SMALL_STATE(624)] = 29565, - [SMALL_STATE(625)] = 29700, - [SMALL_STATE(626)] = 29835, - [SMALL_STATE(627)] = 29970, - [SMALL_STATE(628)] = 30105, - [SMALL_STATE(629)] = 30240, - [SMALL_STATE(630)] = 30375, - [SMALL_STATE(631)] = 30510, - [SMALL_STATE(632)] = 30645, - [SMALL_STATE(633)] = 30780, - [SMALL_STATE(634)] = 30915, - [SMALL_STATE(635)] = 31050, - [SMALL_STATE(636)] = 31185, - [SMALL_STATE(637)] = 31320, - [SMALL_STATE(638)] = 31455, - [SMALL_STATE(639)] = 31590, - [SMALL_STATE(640)] = 31725, - [SMALL_STATE(641)] = 31860, - [SMALL_STATE(642)] = 31995, - [SMALL_STATE(643)] = 32130, - [SMALL_STATE(644)] = 32265, - [SMALL_STATE(645)] = 32400, - [SMALL_STATE(646)] = 32535, - [SMALL_STATE(647)] = 32670, - [SMALL_STATE(648)] = 32805, - [SMALL_STATE(649)] = 32940, - [SMALL_STATE(650)] = 33075, - [SMALL_STATE(651)] = 33210, - [SMALL_STATE(652)] = 33345, - [SMALL_STATE(653)] = 33480, - [SMALL_STATE(654)] = 33615, - [SMALL_STATE(655)] = 33750, - [SMALL_STATE(656)] = 33885, - [SMALL_STATE(657)] = 34020, - [SMALL_STATE(658)] = 34155, - [SMALL_STATE(659)] = 34290, - [SMALL_STATE(660)] = 34425, - [SMALL_STATE(661)] = 34560, - [SMALL_STATE(662)] = 34695, + [SMALL_STATE(441)] = 4862, + [SMALL_STATE(442)] = 4997, + [SMALL_STATE(443)] = 5132, + [SMALL_STATE(444)] = 5267, + [SMALL_STATE(445)] = 5402, + [SMALL_STATE(446)] = 5537, + [SMALL_STATE(447)] = 5672, + [SMALL_STATE(448)] = 5807, + [SMALL_STATE(449)] = 5942, + [SMALL_STATE(450)] = 6077, + [SMALL_STATE(451)] = 6212, + [SMALL_STATE(452)] = 6347, + [SMALL_STATE(453)] = 6482, + [SMALL_STATE(454)] = 6617, + [SMALL_STATE(455)] = 6752, + [SMALL_STATE(456)] = 6887, + [SMALL_STATE(457)] = 7022, + [SMALL_STATE(458)] = 7157, + [SMALL_STATE(459)] = 7292, + [SMALL_STATE(460)] = 7427, + [SMALL_STATE(461)] = 7562, + [SMALL_STATE(462)] = 7697, + [SMALL_STATE(463)] = 7832, + [SMALL_STATE(464)] = 7967, + [SMALL_STATE(465)] = 8102, + [SMALL_STATE(466)] = 8237, + [SMALL_STATE(467)] = 8372, + [SMALL_STATE(468)] = 8507, + [SMALL_STATE(469)] = 8642, + [SMALL_STATE(470)] = 8777, + [SMALL_STATE(471)] = 8912, + [SMALL_STATE(472)] = 9047, + [SMALL_STATE(473)] = 9182, + [SMALL_STATE(474)] = 9317, + [SMALL_STATE(475)] = 9452, + [SMALL_STATE(476)] = 9587, + [SMALL_STATE(477)] = 9722, + [SMALL_STATE(478)] = 9857, + [SMALL_STATE(479)] = 9992, + [SMALL_STATE(480)] = 10127, + [SMALL_STATE(481)] = 10262, + [SMALL_STATE(482)] = 10397, + [SMALL_STATE(483)] = 10532, + [SMALL_STATE(484)] = 10667, + [SMALL_STATE(485)] = 10802, + [SMALL_STATE(486)] = 10937, + [SMALL_STATE(487)] = 11072, + [SMALL_STATE(488)] = 11207, + [SMALL_STATE(489)] = 11342, + [SMALL_STATE(490)] = 11477, + [SMALL_STATE(491)] = 11612, + [SMALL_STATE(492)] = 11747, + [SMALL_STATE(493)] = 11882, + [SMALL_STATE(494)] = 12017, + [SMALL_STATE(495)] = 12152, + [SMALL_STATE(496)] = 12287, + [SMALL_STATE(497)] = 12422, + [SMALL_STATE(498)] = 12557, + [SMALL_STATE(499)] = 12692, + [SMALL_STATE(500)] = 12827, + [SMALL_STATE(501)] = 12962, + [SMALL_STATE(502)] = 13097, + [SMALL_STATE(503)] = 13232, + [SMALL_STATE(504)] = 13367, + [SMALL_STATE(505)] = 13502, + [SMALL_STATE(506)] = 13637, + [SMALL_STATE(507)] = 13772, + [SMALL_STATE(508)] = 13907, + [SMALL_STATE(509)] = 14042, + [SMALL_STATE(510)] = 14177, + [SMALL_STATE(511)] = 14312, + [SMALL_STATE(512)] = 14447, + [SMALL_STATE(513)] = 14582, + [SMALL_STATE(514)] = 14717, + [SMALL_STATE(515)] = 14852, + [SMALL_STATE(516)] = 14987, + [SMALL_STATE(517)] = 15122, + [SMALL_STATE(518)] = 15257, + [SMALL_STATE(519)] = 15392, + [SMALL_STATE(520)] = 15527, + [SMALL_STATE(521)] = 15662, + [SMALL_STATE(522)] = 15797, + [SMALL_STATE(523)] = 15932, + [SMALL_STATE(524)] = 16067, + [SMALL_STATE(525)] = 16202, + [SMALL_STATE(526)] = 16337, + [SMALL_STATE(527)] = 16472, + [SMALL_STATE(528)] = 16607, + [SMALL_STATE(529)] = 16742, + [SMALL_STATE(530)] = 16877, + [SMALL_STATE(531)] = 17012, + [SMALL_STATE(532)] = 17147, + [SMALL_STATE(533)] = 17282, + [SMALL_STATE(534)] = 17417, + [SMALL_STATE(535)] = 17552, + [SMALL_STATE(536)] = 17687, + [SMALL_STATE(537)] = 17822, + [SMALL_STATE(538)] = 17957, + [SMALL_STATE(539)] = 18092, + [SMALL_STATE(540)] = 18227, + [SMALL_STATE(541)] = 18362, + [SMALL_STATE(542)] = 18497, + [SMALL_STATE(543)] = 18632, + [SMALL_STATE(544)] = 18767, + [SMALL_STATE(545)] = 18902, + [SMALL_STATE(546)] = 19037, + [SMALL_STATE(547)] = 19172, + [SMALL_STATE(548)] = 19307, + [SMALL_STATE(549)] = 19442, + [SMALL_STATE(550)] = 19577, + [SMALL_STATE(551)] = 19712, + [SMALL_STATE(552)] = 19847, + [SMALL_STATE(553)] = 19982, + [SMALL_STATE(554)] = 20117, + [SMALL_STATE(555)] = 20252, + [SMALL_STATE(556)] = 20387, + [SMALL_STATE(557)] = 20522, + [SMALL_STATE(558)] = 20657, + [SMALL_STATE(559)] = 20792, + [SMALL_STATE(560)] = 20927, + [SMALL_STATE(561)] = 21062, + [SMALL_STATE(562)] = 21197, + [SMALL_STATE(563)] = 21332, + [SMALL_STATE(564)] = 21467, + [SMALL_STATE(565)] = 21602, + [SMALL_STATE(566)] = 21737, + [SMALL_STATE(567)] = 21872, + [SMALL_STATE(568)] = 22007, + [SMALL_STATE(569)] = 22142, + [SMALL_STATE(570)] = 22277, + [SMALL_STATE(571)] = 22412, + [SMALL_STATE(572)] = 22547, + [SMALL_STATE(573)] = 22682, + [SMALL_STATE(574)] = 22817, + [SMALL_STATE(575)] = 22952, + [SMALL_STATE(576)] = 23087, + [SMALL_STATE(577)] = 23222, + [SMALL_STATE(578)] = 23357, + [SMALL_STATE(579)] = 23492, + [SMALL_STATE(580)] = 23627, + [SMALL_STATE(581)] = 23762, + [SMALL_STATE(582)] = 23897, + [SMALL_STATE(583)] = 24032, + [SMALL_STATE(584)] = 24167, + [SMALL_STATE(585)] = 24302, + [SMALL_STATE(586)] = 24437, + [SMALL_STATE(587)] = 24572, + [SMALL_STATE(588)] = 24707, + [SMALL_STATE(589)] = 24842, + [SMALL_STATE(590)] = 24977, + [SMALL_STATE(591)] = 25112, + [SMALL_STATE(592)] = 25247, + [SMALL_STATE(593)] = 25382, + [SMALL_STATE(594)] = 25517, + [SMALL_STATE(595)] = 25652, + [SMALL_STATE(596)] = 25787, + [SMALL_STATE(597)] = 25922, + [SMALL_STATE(598)] = 26057, + [SMALL_STATE(599)] = 26192, + [SMALL_STATE(600)] = 26327, + [SMALL_STATE(601)] = 26462, + [SMALL_STATE(602)] = 26597, + [SMALL_STATE(603)] = 26732, + [SMALL_STATE(604)] = 26867, + [SMALL_STATE(605)] = 27002, + [SMALL_STATE(606)] = 27137, + [SMALL_STATE(607)] = 27272, + [SMALL_STATE(608)] = 27407, + [SMALL_STATE(609)] = 27542, + [SMALL_STATE(610)] = 27677, + [SMALL_STATE(611)] = 27812, + [SMALL_STATE(612)] = 27947, + [SMALL_STATE(613)] = 28082, + [SMALL_STATE(614)] = 28217, + [SMALL_STATE(615)] = 28352, + [SMALL_STATE(616)] = 28487, + [SMALL_STATE(617)] = 28622, + [SMALL_STATE(618)] = 28757, + [SMALL_STATE(619)] = 28892, + [SMALL_STATE(620)] = 29027, + [SMALL_STATE(621)] = 29162, + [SMALL_STATE(622)] = 29297, + [SMALL_STATE(623)] = 29432, + [SMALL_STATE(624)] = 29567, + [SMALL_STATE(625)] = 29702, + [SMALL_STATE(626)] = 29837, + [SMALL_STATE(627)] = 29972, + [SMALL_STATE(628)] = 30107, + [SMALL_STATE(629)] = 30242, + [SMALL_STATE(630)] = 30377, + [SMALL_STATE(631)] = 30512, + [SMALL_STATE(632)] = 30647, + [SMALL_STATE(633)] = 30782, + [SMALL_STATE(634)] = 30917, + [SMALL_STATE(635)] = 31052, + [SMALL_STATE(636)] = 31187, + [SMALL_STATE(637)] = 31322, + [SMALL_STATE(638)] = 31457, + [SMALL_STATE(639)] = 31592, + [SMALL_STATE(640)] = 31727, + [SMALL_STATE(641)] = 31862, + [SMALL_STATE(642)] = 31997, + [SMALL_STATE(643)] = 32132, + [SMALL_STATE(644)] = 32267, + [SMALL_STATE(645)] = 32402, + [SMALL_STATE(646)] = 32537, + [SMALL_STATE(647)] = 32672, + [SMALL_STATE(648)] = 32807, + [SMALL_STATE(649)] = 32942, + [SMALL_STATE(650)] = 33077, + [SMALL_STATE(651)] = 33212, + [SMALL_STATE(652)] = 33347, + [SMALL_STATE(653)] = 33482, + [SMALL_STATE(654)] = 33617, + [SMALL_STATE(655)] = 33752, + [SMALL_STATE(656)] = 33887, + [SMALL_STATE(657)] = 34022, + [SMALL_STATE(658)] = 34157, + [SMALL_STATE(659)] = 34292, + [SMALL_STATE(660)] = 34427, + [SMALL_STATE(661)] = 34562, + [SMALL_STATE(662)] = 34697, [SMALL_STATE(663)] = 34832, [SMALL_STATE(664)] = 34967, [SMALL_STATE(665)] = 35102, @@ -209626,51 +209198,51 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(864)] = 61967, [SMALL_STATE(865)] = 62102, [SMALL_STATE(866)] = 62237, - [SMALL_STATE(867)] = 62372, - [SMALL_STATE(868)] = 62507, - [SMALL_STATE(869)] = 62642, - [SMALL_STATE(870)] = 62777, - [SMALL_STATE(871)] = 62912, - [SMALL_STATE(872)] = 63047, - [SMALL_STATE(873)] = 63182, - [SMALL_STATE(874)] = 63317, - [SMALL_STATE(875)] = 63452, - [SMALL_STATE(876)] = 63587, - [SMALL_STATE(877)] = 63722, - [SMALL_STATE(878)] = 63857, - [SMALL_STATE(879)] = 63992, - [SMALL_STATE(880)] = 64127, - [SMALL_STATE(881)] = 64262, - [SMALL_STATE(882)] = 64397, - [SMALL_STATE(883)] = 64532, - [SMALL_STATE(884)] = 64667, - [SMALL_STATE(885)] = 64802, - [SMALL_STATE(886)] = 64937, - [SMALL_STATE(887)] = 65072, - [SMALL_STATE(888)] = 65207, - [SMALL_STATE(889)] = 65342, - [SMALL_STATE(890)] = 65477, - [SMALL_STATE(891)] = 65612, - [SMALL_STATE(892)] = 65747, - [SMALL_STATE(893)] = 65882, - [SMALL_STATE(894)] = 66017, - [SMALL_STATE(895)] = 66152, - [SMALL_STATE(896)] = 66287, - [SMALL_STATE(897)] = 66422, - [SMALL_STATE(898)] = 66557, - [SMALL_STATE(899)] = 66692, - [SMALL_STATE(900)] = 66827, - [SMALL_STATE(901)] = 66962, - [SMALL_STATE(902)] = 67097, - [SMALL_STATE(903)] = 67232, - [SMALL_STATE(904)] = 67367, - [SMALL_STATE(905)] = 67502, - [SMALL_STATE(906)] = 67637, - [SMALL_STATE(907)] = 67772, - [SMALL_STATE(908)] = 67907, - [SMALL_STATE(909)] = 68042, - [SMALL_STATE(910)] = 68177, - [SMALL_STATE(911)] = 68312, + [SMALL_STATE(867)] = 62374, + [SMALL_STATE(868)] = 62509, + [SMALL_STATE(869)] = 62644, + [SMALL_STATE(870)] = 62779, + [SMALL_STATE(871)] = 62914, + [SMALL_STATE(872)] = 63049, + [SMALL_STATE(873)] = 63184, + [SMALL_STATE(874)] = 63319, + [SMALL_STATE(875)] = 63454, + [SMALL_STATE(876)] = 63589, + [SMALL_STATE(877)] = 63724, + [SMALL_STATE(878)] = 63859, + [SMALL_STATE(879)] = 63994, + [SMALL_STATE(880)] = 64129, + [SMALL_STATE(881)] = 64264, + [SMALL_STATE(882)] = 64399, + [SMALL_STATE(883)] = 64534, + [SMALL_STATE(884)] = 64669, + [SMALL_STATE(885)] = 64804, + [SMALL_STATE(886)] = 64939, + [SMALL_STATE(887)] = 65074, + [SMALL_STATE(888)] = 65209, + [SMALL_STATE(889)] = 65344, + [SMALL_STATE(890)] = 65479, + [SMALL_STATE(891)] = 65614, + [SMALL_STATE(892)] = 65749, + [SMALL_STATE(893)] = 65884, + [SMALL_STATE(894)] = 66019, + [SMALL_STATE(895)] = 66154, + [SMALL_STATE(896)] = 66289, + [SMALL_STATE(897)] = 66424, + [SMALL_STATE(898)] = 66559, + [SMALL_STATE(899)] = 66694, + [SMALL_STATE(900)] = 66829, + [SMALL_STATE(901)] = 66964, + [SMALL_STATE(902)] = 67099, + [SMALL_STATE(903)] = 67234, + [SMALL_STATE(904)] = 67369, + [SMALL_STATE(905)] = 67504, + [SMALL_STATE(906)] = 67639, + [SMALL_STATE(907)] = 67774, + [SMALL_STATE(908)] = 67909, + [SMALL_STATE(909)] = 68044, + [SMALL_STATE(910)] = 68179, + [SMALL_STATE(911)] = 68314, [SMALL_STATE(912)] = 68449, [SMALL_STATE(913)] = 68584, [SMALL_STATE(914)] = 68719, @@ -209760,224 +209332,224 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(998)] = 79525, [SMALL_STATE(999)] = 79586, [SMALL_STATE(1000)] = 79647, - [SMALL_STATE(1001)] = 79708, - [SMALL_STATE(1002)] = 79769, - [SMALL_STATE(1003)] = 79830, - [SMALL_STATE(1004)] = 79891, - [SMALL_STATE(1005)] = 79952, - [SMALL_STATE(1006)] = 80013, - [SMALL_STATE(1007)] = 80074, - [SMALL_STATE(1008)] = 80135, - [SMALL_STATE(1009)] = 80196, - [SMALL_STATE(1010)] = 80257, - [SMALL_STATE(1011)] = 80318, - [SMALL_STATE(1012)] = 80379, - [SMALL_STATE(1013)] = 80440, - [SMALL_STATE(1014)] = 80501, - [SMALL_STATE(1015)] = 80562, - [SMALL_STATE(1016)] = 80623, - [SMALL_STATE(1017)] = 80684, - [SMALL_STATE(1018)] = 80745, - [SMALL_STATE(1019)] = 80806, - [SMALL_STATE(1020)] = 80867, - [SMALL_STATE(1021)] = 80928, - [SMALL_STATE(1022)] = 80989, - [SMALL_STATE(1023)] = 81050, - [SMALL_STATE(1024)] = 81111, - [SMALL_STATE(1025)] = 81172, - [SMALL_STATE(1026)] = 81233, - [SMALL_STATE(1027)] = 81294, - [SMALL_STATE(1028)] = 81355, - [SMALL_STATE(1029)] = 81416, - [SMALL_STATE(1030)] = 81477, - [SMALL_STATE(1031)] = 81538, - [SMALL_STATE(1032)] = 81599, - [SMALL_STATE(1033)] = 81660, - [SMALL_STATE(1034)] = 81721, - [SMALL_STATE(1035)] = 81782, - [SMALL_STATE(1036)] = 81843, - [SMALL_STATE(1037)] = 81904, - [SMALL_STATE(1038)] = 81965, - [SMALL_STATE(1039)] = 82026, - [SMALL_STATE(1040)] = 82087, - [SMALL_STATE(1041)] = 82148, - [SMALL_STATE(1042)] = 82209, - [SMALL_STATE(1043)] = 82270, - [SMALL_STATE(1044)] = 82331, - [SMALL_STATE(1045)] = 82396, - [SMALL_STATE(1046)] = 82457, - [SMALL_STATE(1047)] = 82518, - [SMALL_STATE(1048)] = 82579, - [SMALL_STATE(1049)] = 82640, - [SMALL_STATE(1050)] = 82701, - [SMALL_STATE(1051)] = 82762, - [SMALL_STATE(1052)] = 82823, - [SMALL_STATE(1053)] = 82884, - [SMALL_STATE(1054)] = 82945, - [SMALL_STATE(1055)] = 83006, - [SMALL_STATE(1056)] = 83067, - [SMALL_STATE(1057)] = 83128, - [SMALL_STATE(1058)] = 83189, - [SMALL_STATE(1059)] = 83250, - [SMALL_STATE(1060)] = 83311, - [SMALL_STATE(1061)] = 83376, - [SMALL_STATE(1062)] = 83437, - [SMALL_STATE(1063)] = 83498, - [SMALL_STATE(1064)] = 83559, - [SMALL_STATE(1065)] = 83620, - [SMALL_STATE(1066)] = 83681, - [SMALL_STATE(1067)] = 83742, - [SMALL_STATE(1068)] = 83803, - [SMALL_STATE(1069)] = 83864, - [SMALL_STATE(1070)] = 83925, - [SMALL_STATE(1071)] = 83986, - [SMALL_STATE(1072)] = 84047, - [SMALL_STATE(1073)] = 84108, - [SMALL_STATE(1074)] = 84173, - [SMALL_STATE(1075)] = 84238, - [SMALL_STATE(1076)] = 84299, - [SMALL_STATE(1077)] = 84360, - [SMALL_STATE(1078)] = 84421, - [SMALL_STATE(1079)] = 84482, - [SMALL_STATE(1080)] = 84543, - [SMALL_STATE(1081)] = 84604, - [SMALL_STATE(1082)] = 84665, - [SMALL_STATE(1083)] = 84726, - [SMALL_STATE(1084)] = 84787, - [SMALL_STATE(1085)] = 84848, - [SMALL_STATE(1086)] = 84909, - [SMALL_STATE(1087)] = 84970, - [SMALL_STATE(1088)] = 85031, - [SMALL_STATE(1089)] = 85092, - [SMALL_STATE(1090)] = 85157, - [SMALL_STATE(1091)] = 85218, - [SMALL_STATE(1092)] = 85279, - [SMALL_STATE(1093)] = 85344, - [SMALL_STATE(1094)] = 85405, - [SMALL_STATE(1095)] = 85466, - [SMALL_STATE(1096)] = 85527, - [SMALL_STATE(1097)] = 85588, - [SMALL_STATE(1098)] = 85649, - [SMALL_STATE(1099)] = 85710, - [SMALL_STATE(1100)] = 85771, - [SMALL_STATE(1101)] = 85832, - [SMALL_STATE(1102)] = 85893, - [SMALL_STATE(1103)] = 85954, - [SMALL_STATE(1104)] = 86015, - [SMALL_STATE(1105)] = 86076, - [SMALL_STATE(1106)] = 86137, - [SMALL_STATE(1107)] = 86198, - [SMALL_STATE(1108)] = 86259, - [SMALL_STATE(1109)] = 86320, - [SMALL_STATE(1110)] = 86381, - [SMALL_STATE(1111)] = 86442, - [SMALL_STATE(1112)] = 86503, - [SMALL_STATE(1113)] = 86568, - [SMALL_STATE(1114)] = 86629, - [SMALL_STATE(1115)] = 86692, - [SMALL_STATE(1116)] = 86757, - [SMALL_STATE(1117)] = 86822, - [SMALL_STATE(1118)] = 86883, - [SMALL_STATE(1119)] = 86944, - [SMALL_STATE(1120)] = 87009, - [SMALL_STATE(1121)] = 87070, - [SMALL_STATE(1122)] = 87135, - [SMALL_STATE(1123)] = 87196, - [SMALL_STATE(1124)] = 87257, - [SMALL_STATE(1125)] = 87318, - [SMALL_STATE(1126)] = 87383, - [SMALL_STATE(1127)] = 87444, - [SMALL_STATE(1128)] = 87505, - [SMALL_STATE(1129)] = 87570, - [SMALL_STATE(1130)] = 87635, - [SMALL_STATE(1131)] = 87696, + [SMALL_STATE(1001)] = 79712, + [SMALL_STATE(1002)] = 79773, + [SMALL_STATE(1003)] = 79834, + [SMALL_STATE(1004)] = 79895, + [SMALL_STATE(1005)] = 79960, + [SMALL_STATE(1006)] = 80025, + [SMALL_STATE(1007)] = 80086, + [SMALL_STATE(1008)] = 80147, + [SMALL_STATE(1009)] = 80208, + [SMALL_STATE(1010)] = 80273, + [SMALL_STATE(1011)] = 80334, + [SMALL_STATE(1012)] = 80395, + [SMALL_STATE(1013)] = 80456, + [SMALL_STATE(1014)] = 80517, + [SMALL_STATE(1015)] = 80582, + [SMALL_STATE(1016)] = 80643, + [SMALL_STATE(1017)] = 80706, + [SMALL_STATE(1018)] = 80767, + [SMALL_STATE(1019)] = 80828, + [SMALL_STATE(1020)] = 80893, + [SMALL_STATE(1021)] = 80954, + [SMALL_STATE(1022)] = 81015, + [SMALL_STATE(1023)] = 81076, + [SMALL_STATE(1024)] = 81137, + [SMALL_STATE(1025)] = 81198, + [SMALL_STATE(1026)] = 81259, + [SMALL_STATE(1027)] = 81324, + [SMALL_STATE(1028)] = 81385, + [SMALL_STATE(1029)] = 81446, + [SMALL_STATE(1030)] = 81507, + [SMALL_STATE(1031)] = 81568, + [SMALL_STATE(1032)] = 81629, + [SMALL_STATE(1033)] = 81694, + [SMALL_STATE(1034)] = 81755, + [SMALL_STATE(1035)] = 81816, + [SMALL_STATE(1036)] = 81877, + [SMALL_STATE(1037)] = 81938, + [SMALL_STATE(1038)] = 81999, + [SMALL_STATE(1039)] = 82060, + [SMALL_STATE(1040)] = 82121, + [SMALL_STATE(1041)] = 82182, + [SMALL_STATE(1042)] = 82243, + [SMALL_STATE(1043)] = 82304, + [SMALL_STATE(1044)] = 82365, + [SMALL_STATE(1045)] = 82426, + [SMALL_STATE(1046)] = 82487, + [SMALL_STATE(1047)] = 82548, + [SMALL_STATE(1048)] = 82609, + [SMALL_STATE(1049)] = 82670, + [SMALL_STATE(1050)] = 82735, + [SMALL_STATE(1051)] = 82796, + [SMALL_STATE(1052)] = 82857, + [SMALL_STATE(1053)] = 82922, + [SMALL_STATE(1054)] = 82983, + [SMALL_STATE(1055)] = 83044, + [SMALL_STATE(1056)] = 83105, + [SMALL_STATE(1057)] = 83166, + [SMALL_STATE(1058)] = 83227, + [SMALL_STATE(1059)] = 83288, + [SMALL_STATE(1060)] = 83349, + [SMALL_STATE(1061)] = 83410, + [SMALL_STATE(1062)] = 83471, + [SMALL_STATE(1063)] = 83532, + [SMALL_STATE(1064)] = 83593, + [SMALL_STATE(1065)] = 83654, + [SMALL_STATE(1066)] = 83715, + [SMALL_STATE(1067)] = 83776, + [SMALL_STATE(1068)] = 83837, + [SMALL_STATE(1069)] = 83898, + [SMALL_STATE(1070)] = 83959, + [SMALL_STATE(1071)] = 84024, + [SMALL_STATE(1072)] = 84085, + [SMALL_STATE(1073)] = 84146, + [SMALL_STATE(1074)] = 84211, + [SMALL_STATE(1075)] = 84272, + [SMALL_STATE(1076)] = 84333, + [SMALL_STATE(1077)] = 84394, + [SMALL_STATE(1078)] = 84455, + [SMALL_STATE(1079)] = 84516, + [SMALL_STATE(1080)] = 84577, + [SMALL_STATE(1081)] = 84638, + [SMALL_STATE(1082)] = 84699, + [SMALL_STATE(1083)] = 84760, + [SMALL_STATE(1084)] = 84825, + [SMALL_STATE(1085)] = 84886, + [SMALL_STATE(1086)] = 84947, + [SMALL_STATE(1087)] = 85012, + [SMALL_STATE(1088)] = 85073, + [SMALL_STATE(1089)] = 85134, + [SMALL_STATE(1090)] = 85195, + [SMALL_STATE(1091)] = 85256, + [SMALL_STATE(1092)] = 85317, + [SMALL_STATE(1093)] = 85378, + [SMALL_STATE(1094)] = 85439, + [SMALL_STATE(1095)] = 85500, + [SMALL_STATE(1096)] = 85561, + [SMALL_STATE(1097)] = 85622, + [SMALL_STATE(1098)] = 85683, + [SMALL_STATE(1099)] = 85744, + [SMALL_STATE(1100)] = 85805, + [SMALL_STATE(1101)] = 85866, + [SMALL_STATE(1102)] = 85931, + [SMALL_STATE(1103)] = 85992, + [SMALL_STATE(1104)] = 86053, + [SMALL_STATE(1105)] = 86114, + [SMALL_STATE(1106)] = 86175, + [SMALL_STATE(1107)] = 86236, + [SMALL_STATE(1108)] = 86297, + [SMALL_STATE(1109)] = 86358, + [SMALL_STATE(1110)] = 86419, + [SMALL_STATE(1111)] = 86480, + [SMALL_STATE(1112)] = 86541, + [SMALL_STATE(1113)] = 86602, + [SMALL_STATE(1114)] = 86663, + [SMALL_STATE(1115)] = 86724, + [SMALL_STATE(1116)] = 86785, + [SMALL_STATE(1117)] = 86846, + [SMALL_STATE(1118)] = 86907, + [SMALL_STATE(1119)] = 86968, + [SMALL_STATE(1120)] = 87029, + [SMALL_STATE(1121)] = 87090, + [SMALL_STATE(1122)] = 87151, + [SMALL_STATE(1123)] = 87212, + [SMALL_STATE(1124)] = 87273, + [SMALL_STATE(1125)] = 87334, + [SMALL_STATE(1126)] = 87395, + [SMALL_STATE(1127)] = 87456, + [SMALL_STATE(1128)] = 87517, + [SMALL_STATE(1129)] = 87578, + [SMALL_STATE(1130)] = 87639, + [SMALL_STATE(1131)] = 87700, [SMALL_STATE(1132)] = 87761, [SMALL_STATE(1133)] = 87821, [SMALL_STATE(1134)] = 87881, - [SMALL_STATE(1135)] = 87941, - [SMALL_STATE(1136)] = 88001, - [SMALL_STATE(1137)] = 88061, - [SMALL_STATE(1138)] = 88121, - [SMALL_STATE(1139)] = 88181, - [SMALL_STATE(1140)] = 88241, - [SMALL_STATE(1141)] = 88301, - [SMALL_STATE(1142)] = 88361, - [SMALL_STATE(1143)] = 88421, - [SMALL_STATE(1144)] = 88481, - [SMALL_STATE(1145)] = 88541, - [SMALL_STATE(1146)] = 88601, - [SMALL_STATE(1147)] = 88661, - [SMALL_STATE(1148)] = 88727, - [SMALL_STATE(1149)] = 88787, - [SMALL_STATE(1150)] = 88847, - [SMALL_STATE(1151)] = 88907, - [SMALL_STATE(1152)] = 88967, - [SMALL_STATE(1153)] = 89027, - [SMALL_STATE(1154)] = 89087, - [SMALL_STATE(1155)] = 89147, - [SMALL_STATE(1156)] = 89207, - [SMALL_STATE(1157)] = 89267, - [SMALL_STATE(1158)] = 89327, - [SMALL_STATE(1159)] = 89387, - [SMALL_STATE(1160)] = 89447, - [SMALL_STATE(1161)] = 89507, - [SMALL_STATE(1162)] = 89567, - [SMALL_STATE(1163)] = 89627, - [SMALL_STATE(1164)] = 89687, - [SMALL_STATE(1165)] = 89747, - [SMALL_STATE(1166)] = 89807, - [SMALL_STATE(1167)] = 89867, - [SMALL_STATE(1168)] = 89927, - [SMALL_STATE(1169)] = 89987, - [SMALL_STATE(1170)] = 90047, - [SMALL_STATE(1171)] = 90107, - [SMALL_STATE(1172)] = 90167, - [SMALL_STATE(1173)] = 90227, - [SMALL_STATE(1174)] = 90287, - [SMALL_STATE(1175)] = 90347, - [SMALL_STATE(1176)] = 90407, - [SMALL_STATE(1177)] = 90467, - [SMALL_STATE(1178)] = 90527, - [SMALL_STATE(1179)] = 90587, - [SMALL_STATE(1180)] = 90647, - [SMALL_STATE(1181)] = 90707, - [SMALL_STATE(1182)] = 90767, - [SMALL_STATE(1183)] = 90827, - [SMALL_STATE(1184)] = 90887, - [SMALL_STATE(1185)] = 90947, - [SMALL_STATE(1186)] = 91011, - [SMALL_STATE(1187)] = 91075, - [SMALL_STATE(1188)] = 91135, - [SMALL_STATE(1189)] = 91195, - [SMALL_STATE(1190)] = 91255, - [SMALL_STATE(1191)] = 91315, - [SMALL_STATE(1192)] = 91375, - [SMALL_STATE(1193)] = 91435, - [SMALL_STATE(1194)] = 91495, - [SMALL_STATE(1195)] = 91555, - [SMALL_STATE(1196)] = 91615, - [SMALL_STATE(1197)] = 91675, - [SMALL_STATE(1198)] = 91735, - [SMALL_STATE(1199)] = 91795, - [SMALL_STATE(1200)] = 91855, - [SMALL_STATE(1201)] = 91915, - [SMALL_STATE(1202)] = 91975, - [SMALL_STATE(1203)] = 92035, - [SMALL_STATE(1204)] = 92095, - [SMALL_STATE(1205)] = 92155, - [SMALL_STATE(1206)] = 92215, - [SMALL_STATE(1207)] = 92275, - [SMALL_STATE(1208)] = 92335, - [SMALL_STATE(1209)] = 92395, - [SMALL_STATE(1210)] = 92455, - [SMALL_STATE(1211)] = 92515, - [SMALL_STATE(1212)] = 92575, - [SMALL_STATE(1213)] = 92635, - [SMALL_STATE(1214)] = 92695, - [SMALL_STATE(1215)] = 92755, - [SMALL_STATE(1216)] = 92815, - [SMALL_STATE(1217)] = 92875, - [SMALL_STATE(1218)] = 92935, + [SMALL_STATE(1135)] = 87947, + [SMALL_STATE(1136)] = 88011, + [SMALL_STATE(1137)] = 88075, + [SMALL_STATE(1138)] = 88135, + [SMALL_STATE(1139)] = 88195, + [SMALL_STATE(1140)] = 88255, + [SMALL_STATE(1141)] = 88315, + [SMALL_STATE(1142)] = 88375, + [SMALL_STATE(1143)] = 88439, + [SMALL_STATE(1144)] = 88499, + [SMALL_STATE(1145)] = 88559, + [SMALL_STATE(1146)] = 88619, + [SMALL_STATE(1147)] = 88679, + [SMALL_STATE(1148)] = 88739, + [SMALL_STATE(1149)] = 88799, + [SMALL_STATE(1150)] = 88859, + [SMALL_STATE(1151)] = 88919, + [SMALL_STATE(1152)] = 88979, + [SMALL_STATE(1153)] = 89039, + [SMALL_STATE(1154)] = 89099, + [SMALL_STATE(1155)] = 89159, + [SMALL_STATE(1156)] = 89219, + [SMALL_STATE(1157)] = 89279, + [SMALL_STATE(1158)] = 89339, + [SMALL_STATE(1159)] = 89399, + [SMALL_STATE(1160)] = 89459, + [SMALL_STATE(1161)] = 89519, + [SMALL_STATE(1162)] = 89579, + [SMALL_STATE(1163)] = 89639, + [SMALL_STATE(1164)] = 89699, + [SMALL_STATE(1165)] = 89759, + [SMALL_STATE(1166)] = 89819, + [SMALL_STATE(1167)] = 89879, + [SMALL_STATE(1168)] = 89939, + [SMALL_STATE(1169)] = 89999, + [SMALL_STATE(1170)] = 90059, + [SMALL_STATE(1171)] = 90119, + [SMALL_STATE(1172)] = 90179, + [SMALL_STATE(1173)] = 90239, + [SMALL_STATE(1174)] = 90299, + [SMALL_STATE(1175)] = 90359, + [SMALL_STATE(1176)] = 90419, + [SMALL_STATE(1177)] = 90479, + [SMALL_STATE(1178)] = 90539, + [SMALL_STATE(1179)] = 90599, + [SMALL_STATE(1180)] = 90659, + [SMALL_STATE(1181)] = 90719, + [SMALL_STATE(1182)] = 90779, + [SMALL_STATE(1183)] = 90839, + [SMALL_STATE(1184)] = 90899, + [SMALL_STATE(1185)] = 90959, + [SMALL_STATE(1186)] = 91019, + [SMALL_STATE(1187)] = 91079, + [SMALL_STATE(1188)] = 91139, + [SMALL_STATE(1189)] = 91199, + [SMALL_STATE(1190)] = 91259, + [SMALL_STATE(1191)] = 91319, + [SMALL_STATE(1192)] = 91379, + [SMALL_STATE(1193)] = 91439, + [SMALL_STATE(1194)] = 91499, + [SMALL_STATE(1195)] = 91559, + [SMALL_STATE(1196)] = 91619, + [SMALL_STATE(1197)] = 91679, + [SMALL_STATE(1198)] = 91739, + [SMALL_STATE(1199)] = 91799, + [SMALL_STATE(1200)] = 91859, + [SMALL_STATE(1201)] = 91919, + [SMALL_STATE(1202)] = 91979, + [SMALL_STATE(1203)] = 92039, + [SMALL_STATE(1204)] = 92099, + [SMALL_STATE(1205)] = 92159, + [SMALL_STATE(1206)] = 92219, + [SMALL_STATE(1207)] = 92279, + [SMALL_STATE(1208)] = 92339, + [SMALL_STATE(1209)] = 92399, + [SMALL_STATE(1210)] = 92459, + [SMALL_STATE(1211)] = 92519, + [SMALL_STATE(1212)] = 92579, + [SMALL_STATE(1213)] = 92639, + [SMALL_STATE(1214)] = 92699, + [SMALL_STATE(1215)] = 92759, + [SMALL_STATE(1216)] = 92819, + [SMALL_STATE(1217)] = 92879, + [SMALL_STATE(1218)] = 92939, [SMALL_STATE(1219)] = 92999, [SMALL_STATE(1220)] = 93059, [SMALL_STATE(1221)] = 93119, @@ -210044,213 +209616,213 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1282)] = 97292, [SMALL_STATE(1283)] = 97371, [SMALL_STATE(1284)] = 97431, - [SMALL_STATE(1285)] = 97488, - [SMALL_STATE(1286)] = 97593, + [SMALL_STATE(1285)] = 97536, + [SMALL_STATE(1286)] = 97641, [SMALL_STATE(1287)] = 97698, - [SMALL_STATE(1288)] = 97803, - [SMALL_STATE(1289)] = 97908, - [SMALL_STATE(1290)] = 98013, - [SMALL_STATE(1291)] = 98118, - [SMALL_STATE(1292)] = 98223, - [SMALL_STATE(1293)] = 98328, - [SMALL_STATE(1294)] = 98433, - [SMALL_STATE(1295)] = 98538, - [SMALL_STATE(1296)] = 98643, - [SMALL_STATE(1297)] = 98748, - [SMALL_STATE(1298)] = 98853, - [SMALL_STATE(1299)] = 98958, - [SMALL_STATE(1300)] = 99063, - [SMALL_STATE(1301)] = 99168, - [SMALL_STATE(1302)] = 99273, - [SMALL_STATE(1303)] = 99378, - [SMALL_STATE(1304)] = 99483, - [SMALL_STATE(1305)] = 99588, - [SMALL_STATE(1306)] = 99693, - [SMALL_STATE(1307)] = 99798, - [SMALL_STATE(1308)] = 99903, - [SMALL_STATE(1309)] = 100008, - [SMALL_STATE(1310)] = 100113, - [SMALL_STATE(1311)] = 100218, - [SMALL_STATE(1312)] = 100323, - [SMALL_STATE(1313)] = 100428, - [SMALL_STATE(1314)] = 100533, - [SMALL_STATE(1315)] = 100638, - [SMALL_STATE(1316)] = 100743, - [SMALL_STATE(1317)] = 100848, - [SMALL_STATE(1318)] = 100953, - [SMALL_STATE(1319)] = 101058, - [SMALL_STATE(1320)] = 101163, - [SMALL_STATE(1321)] = 101268, - [SMALL_STATE(1322)] = 101373, - [SMALL_STATE(1323)] = 101478, - [SMALL_STATE(1324)] = 101583, - [SMALL_STATE(1325)] = 101688, - [SMALL_STATE(1326)] = 101793, - [SMALL_STATE(1327)] = 101898, - [SMALL_STATE(1328)] = 102003, - [SMALL_STATE(1329)] = 102108, - [SMALL_STATE(1330)] = 102213, - [SMALL_STATE(1331)] = 102318, - [SMALL_STATE(1332)] = 102423, - [SMALL_STATE(1333)] = 102528, - [SMALL_STATE(1334)] = 102633, - [SMALL_STATE(1335)] = 102738, - [SMALL_STATE(1336)] = 102843, - [SMALL_STATE(1337)] = 102948, - [SMALL_STATE(1338)] = 103053, - [SMALL_STATE(1339)] = 103158, - [SMALL_STATE(1340)] = 103263, - [SMALL_STATE(1341)] = 103368, - [SMALL_STATE(1342)] = 103473, - [SMALL_STATE(1343)] = 103578, - [SMALL_STATE(1344)] = 103683, - [SMALL_STATE(1345)] = 103788, - [SMALL_STATE(1346)] = 103893, - [SMALL_STATE(1347)] = 103998, - [SMALL_STATE(1348)] = 104103, - [SMALL_STATE(1349)] = 104208, - [SMALL_STATE(1350)] = 104313, - [SMALL_STATE(1351)] = 104418, - [SMALL_STATE(1352)] = 104523, - [SMALL_STATE(1353)] = 104628, - [SMALL_STATE(1354)] = 104733, - [SMALL_STATE(1355)] = 104838, - [SMALL_STATE(1356)] = 104943, - [SMALL_STATE(1357)] = 105048, - [SMALL_STATE(1358)] = 105153, - [SMALL_STATE(1359)] = 105258, - [SMALL_STATE(1360)] = 105363, - [SMALL_STATE(1361)] = 105468, - [SMALL_STATE(1362)] = 105573, - [SMALL_STATE(1363)] = 105678, - [SMALL_STATE(1364)] = 105783, - [SMALL_STATE(1365)] = 105888, - [SMALL_STATE(1366)] = 105993, - [SMALL_STATE(1367)] = 106050, - [SMALL_STATE(1368)] = 106107, - [SMALL_STATE(1369)] = 106164, - [SMALL_STATE(1370)] = 106221, - [SMALL_STATE(1371)] = 106278, - [SMALL_STATE(1372)] = 106335, - [SMALL_STATE(1373)] = 106392, - [SMALL_STATE(1374)] = 106449, - [SMALL_STATE(1375)] = 106506, - [SMALL_STATE(1376)] = 106563, - [SMALL_STATE(1377)] = 106620, - [SMALL_STATE(1378)] = 106677, - [SMALL_STATE(1379)] = 106734, - [SMALL_STATE(1380)] = 106791, - [SMALL_STATE(1381)] = 106848, - [SMALL_STATE(1382)] = 106905, - [SMALL_STATE(1383)] = 106962, - [SMALL_STATE(1384)] = 107019, - [SMALL_STATE(1385)] = 107076, - [SMALL_STATE(1386)] = 107133, - [SMALL_STATE(1387)] = 107190, - [SMALL_STATE(1388)] = 107247, - [SMALL_STATE(1389)] = 107304, - [SMALL_STATE(1390)] = 107361, - [SMALL_STATE(1391)] = 107418, - [SMALL_STATE(1392)] = 107475, - [SMALL_STATE(1393)] = 107532, - [SMALL_STATE(1394)] = 107589, - [SMALL_STATE(1395)] = 107646, - [SMALL_STATE(1396)] = 107703, - [SMALL_STATE(1397)] = 107760, - [SMALL_STATE(1398)] = 107817, - [SMALL_STATE(1399)] = 107874, - [SMALL_STATE(1400)] = 107931, - [SMALL_STATE(1401)] = 107988, - [SMALL_STATE(1402)] = 108045, - [SMALL_STATE(1403)] = 108102, - [SMALL_STATE(1404)] = 108159, - [SMALL_STATE(1405)] = 108216, - [SMALL_STATE(1406)] = 108273, - [SMALL_STATE(1407)] = 108330, - [SMALL_STATE(1408)] = 108387, - [SMALL_STATE(1409)] = 108444, - [SMALL_STATE(1410)] = 108501, - [SMALL_STATE(1411)] = 108558, - [SMALL_STATE(1412)] = 108615, - [SMALL_STATE(1413)] = 108672, - [SMALL_STATE(1414)] = 108729, - [SMALL_STATE(1415)] = 108786, - [SMALL_STATE(1416)] = 108843, - [SMALL_STATE(1417)] = 108900, - [SMALL_STATE(1418)] = 108957, - [SMALL_STATE(1419)] = 109014, - [SMALL_STATE(1420)] = 109071, - [SMALL_STATE(1421)] = 109128, - [SMALL_STATE(1422)] = 109185, - [SMALL_STATE(1423)] = 109242, - [SMALL_STATE(1424)] = 109299, - [SMALL_STATE(1425)] = 109356, - [SMALL_STATE(1426)] = 109413, - [SMALL_STATE(1427)] = 109470, - [SMALL_STATE(1428)] = 109527, - [SMALL_STATE(1429)] = 109584, - [SMALL_STATE(1430)] = 109641, - [SMALL_STATE(1431)] = 109698, - [SMALL_STATE(1432)] = 109755, - [SMALL_STATE(1433)] = 109812, - [SMALL_STATE(1434)] = 109869, - [SMALL_STATE(1435)] = 109926, - [SMALL_STATE(1436)] = 109983, - [SMALL_STATE(1437)] = 110040, - [SMALL_STATE(1438)] = 110097, - [SMALL_STATE(1439)] = 110154, - [SMALL_STATE(1440)] = 110211, - [SMALL_STATE(1441)] = 110268, - [SMALL_STATE(1442)] = 110325, - [SMALL_STATE(1443)] = 110382, - [SMALL_STATE(1444)] = 110439, - [SMALL_STATE(1445)] = 110496, - [SMALL_STATE(1446)] = 110553, - [SMALL_STATE(1447)] = 110610, - [SMALL_STATE(1448)] = 110667, - [SMALL_STATE(1449)] = 110724, - [SMALL_STATE(1450)] = 110781, - [SMALL_STATE(1451)] = 110838, - [SMALL_STATE(1452)] = 110895, - [SMALL_STATE(1453)] = 110952, - [SMALL_STATE(1454)] = 111009, - [SMALL_STATE(1455)] = 111066, - [SMALL_STATE(1456)] = 111123, - [SMALL_STATE(1457)] = 111180, - [SMALL_STATE(1458)] = 111237, - [SMALL_STATE(1459)] = 111294, - [SMALL_STATE(1460)] = 111351, - [SMALL_STATE(1461)] = 111408, - [SMALL_STATE(1462)] = 111465, - [SMALL_STATE(1463)] = 111522, - [SMALL_STATE(1464)] = 111579, - [SMALL_STATE(1465)] = 111636, - [SMALL_STATE(1466)] = 111693, - [SMALL_STATE(1467)] = 111750, - [SMALL_STATE(1468)] = 111807, - [SMALL_STATE(1469)] = 111864, - [SMALL_STATE(1470)] = 111921, - [SMALL_STATE(1471)] = 111978, - [SMALL_STATE(1472)] = 112035, - [SMALL_STATE(1473)] = 112092, - [SMALL_STATE(1474)] = 112149, - [SMALL_STATE(1475)] = 112206, - [SMALL_STATE(1476)] = 112263, - [SMALL_STATE(1477)] = 112320, - [SMALL_STATE(1478)] = 112377, - [SMALL_STATE(1479)] = 112438, - [SMALL_STATE(1480)] = 112495, - [SMALL_STATE(1481)] = 112552, - [SMALL_STATE(1482)] = 112609, - [SMALL_STATE(1483)] = 112666, - [SMALL_STATE(1484)] = 112723, - [SMALL_STATE(1485)] = 112784, + [SMALL_STATE(1288)] = 97759, + [SMALL_STATE(1289)] = 97820, + [SMALL_STATE(1290)] = 97877, + [SMALL_STATE(1291)] = 97934, + [SMALL_STATE(1292)] = 97991, + [SMALL_STATE(1293)] = 98096, + [SMALL_STATE(1294)] = 98153, + [SMALL_STATE(1295)] = 98210, + [SMALL_STATE(1296)] = 98271, + [SMALL_STATE(1297)] = 98328, + [SMALL_STATE(1298)] = 98385, + [SMALL_STATE(1299)] = 98442, + [SMALL_STATE(1300)] = 98499, + [SMALL_STATE(1301)] = 98556, + [SMALL_STATE(1302)] = 98613, + [SMALL_STATE(1303)] = 98670, + [SMALL_STATE(1304)] = 98727, + [SMALL_STATE(1305)] = 98784, + [SMALL_STATE(1306)] = 98841, + [SMALL_STATE(1307)] = 98898, + [SMALL_STATE(1308)] = 98955, + [SMALL_STATE(1309)] = 99012, + [SMALL_STATE(1310)] = 99069, + [SMALL_STATE(1311)] = 99126, + [SMALL_STATE(1312)] = 99183, + [SMALL_STATE(1313)] = 99240, + [SMALL_STATE(1314)] = 99297, + [SMALL_STATE(1315)] = 99354, + [SMALL_STATE(1316)] = 99411, + [SMALL_STATE(1317)] = 99468, + [SMALL_STATE(1318)] = 99525, + [SMALL_STATE(1319)] = 99582, + [SMALL_STATE(1320)] = 99639, + [SMALL_STATE(1321)] = 99696, + [SMALL_STATE(1322)] = 99753, + [SMALL_STATE(1323)] = 99810, + [SMALL_STATE(1324)] = 99867, + [SMALL_STATE(1325)] = 99924, + [SMALL_STATE(1326)] = 99981, + [SMALL_STATE(1327)] = 100038, + [SMALL_STATE(1328)] = 100095, + [SMALL_STATE(1329)] = 100152, + [SMALL_STATE(1330)] = 100209, + [SMALL_STATE(1331)] = 100266, + [SMALL_STATE(1332)] = 100323, + [SMALL_STATE(1333)] = 100380, + [SMALL_STATE(1334)] = 100437, + [SMALL_STATE(1335)] = 100494, + [SMALL_STATE(1336)] = 100551, + [SMALL_STATE(1337)] = 100608, + [SMALL_STATE(1338)] = 100665, + [SMALL_STATE(1339)] = 100722, + [SMALL_STATE(1340)] = 100779, + [SMALL_STATE(1341)] = 100836, + [SMALL_STATE(1342)] = 100893, + [SMALL_STATE(1343)] = 100950, + [SMALL_STATE(1344)] = 101007, + [SMALL_STATE(1345)] = 101064, + [SMALL_STATE(1346)] = 101121, + [SMALL_STATE(1347)] = 101178, + [SMALL_STATE(1348)] = 101235, + [SMALL_STATE(1349)] = 101292, + [SMALL_STATE(1350)] = 101349, + [SMALL_STATE(1351)] = 101406, + [SMALL_STATE(1352)] = 101511, + [SMALL_STATE(1353)] = 101568, + [SMALL_STATE(1354)] = 101625, + [SMALL_STATE(1355)] = 101682, + [SMALL_STATE(1356)] = 101739, + [SMALL_STATE(1357)] = 101796, + [SMALL_STATE(1358)] = 101853, + [SMALL_STATE(1359)] = 101910, + [SMALL_STATE(1360)] = 101967, + [SMALL_STATE(1361)] = 102024, + [SMALL_STATE(1362)] = 102081, + [SMALL_STATE(1363)] = 102138, + [SMALL_STATE(1364)] = 102195, + [SMALL_STATE(1365)] = 102252, + [SMALL_STATE(1366)] = 102309, + [SMALL_STATE(1367)] = 102366, + [SMALL_STATE(1368)] = 102423, + [SMALL_STATE(1369)] = 102480, + [SMALL_STATE(1370)] = 102537, + [SMALL_STATE(1371)] = 102594, + [SMALL_STATE(1372)] = 102651, + [SMALL_STATE(1373)] = 102708, + [SMALL_STATE(1374)] = 102765, + [SMALL_STATE(1375)] = 102822, + [SMALL_STATE(1376)] = 102879, + [SMALL_STATE(1377)] = 102936, + [SMALL_STATE(1378)] = 102993, + [SMALL_STATE(1379)] = 103050, + [SMALL_STATE(1380)] = 103107, + [SMALL_STATE(1381)] = 103164, + [SMALL_STATE(1382)] = 103221, + [SMALL_STATE(1383)] = 103278, + [SMALL_STATE(1384)] = 103335, + [SMALL_STATE(1385)] = 103392, + [SMALL_STATE(1386)] = 103449, + [SMALL_STATE(1387)] = 103506, + [SMALL_STATE(1388)] = 103563, + [SMALL_STATE(1389)] = 103620, + [SMALL_STATE(1390)] = 103677, + [SMALL_STATE(1391)] = 103734, + [SMALL_STATE(1392)] = 103791, + [SMALL_STATE(1393)] = 103848, + [SMALL_STATE(1394)] = 103905, + [SMALL_STATE(1395)] = 103962, + [SMALL_STATE(1396)] = 104067, + [SMALL_STATE(1397)] = 104124, + [SMALL_STATE(1398)] = 104181, + [SMALL_STATE(1399)] = 104238, + [SMALL_STATE(1400)] = 104295, + [SMALL_STATE(1401)] = 104352, + [SMALL_STATE(1402)] = 104409, + [SMALL_STATE(1403)] = 104514, + [SMALL_STATE(1404)] = 104619, + [SMALL_STATE(1405)] = 104676, + [SMALL_STATE(1406)] = 104733, + [SMALL_STATE(1407)] = 104790, + [SMALL_STATE(1408)] = 104847, + [SMALL_STATE(1409)] = 104904, + [SMALL_STATE(1410)] = 105009, + [SMALL_STATE(1411)] = 105114, + [SMALL_STATE(1412)] = 105171, + [SMALL_STATE(1413)] = 105228, + [SMALL_STATE(1414)] = 105285, + [SMALL_STATE(1415)] = 105390, + [SMALL_STATE(1416)] = 105495, + [SMALL_STATE(1417)] = 105600, + [SMALL_STATE(1418)] = 105705, + [SMALL_STATE(1419)] = 105810, + [SMALL_STATE(1420)] = 105915, + [SMALL_STATE(1421)] = 106020, + [SMALL_STATE(1422)] = 106125, + [SMALL_STATE(1423)] = 106230, + [SMALL_STATE(1424)] = 106335, + [SMALL_STATE(1425)] = 106440, + [SMALL_STATE(1426)] = 106545, + [SMALL_STATE(1427)] = 106650, + [SMALL_STATE(1428)] = 106755, + [SMALL_STATE(1429)] = 106860, + [SMALL_STATE(1430)] = 106965, + [SMALL_STATE(1431)] = 107070, + [SMALL_STATE(1432)] = 107175, + [SMALL_STATE(1433)] = 107280, + [SMALL_STATE(1434)] = 107385, + [SMALL_STATE(1435)] = 107490, + [SMALL_STATE(1436)] = 107595, + [SMALL_STATE(1437)] = 107700, + [SMALL_STATE(1438)] = 107805, + [SMALL_STATE(1439)] = 107910, + [SMALL_STATE(1440)] = 108015, + [SMALL_STATE(1441)] = 108120, + [SMALL_STATE(1442)] = 108225, + [SMALL_STATE(1443)] = 108330, + [SMALL_STATE(1444)] = 108435, + [SMALL_STATE(1445)] = 108540, + [SMALL_STATE(1446)] = 108645, + [SMALL_STATE(1447)] = 108750, + [SMALL_STATE(1448)] = 108855, + [SMALL_STATE(1449)] = 108960, + [SMALL_STATE(1450)] = 109065, + [SMALL_STATE(1451)] = 109170, + [SMALL_STATE(1452)] = 109275, + [SMALL_STATE(1453)] = 109380, + [SMALL_STATE(1454)] = 109485, + [SMALL_STATE(1455)] = 109590, + [SMALL_STATE(1456)] = 109695, + [SMALL_STATE(1457)] = 109800, + [SMALL_STATE(1458)] = 109905, + [SMALL_STATE(1459)] = 110010, + [SMALL_STATE(1460)] = 110115, + [SMALL_STATE(1461)] = 110220, + [SMALL_STATE(1462)] = 110325, + [SMALL_STATE(1463)] = 110430, + [SMALL_STATE(1464)] = 110535, + [SMALL_STATE(1465)] = 110640, + [SMALL_STATE(1466)] = 110745, + [SMALL_STATE(1467)] = 110850, + [SMALL_STATE(1468)] = 110955, + [SMALL_STATE(1469)] = 111060, + [SMALL_STATE(1470)] = 111165, + [SMALL_STATE(1471)] = 111270, + [SMALL_STATE(1472)] = 111375, + [SMALL_STATE(1473)] = 111480, + [SMALL_STATE(1474)] = 111585, + [SMALL_STATE(1475)] = 111690, + [SMALL_STATE(1476)] = 111795, + [SMALL_STATE(1477)] = 111900, + [SMALL_STATE(1478)] = 112005, + [SMALL_STATE(1479)] = 112110, + [SMALL_STATE(1480)] = 112215, + [SMALL_STATE(1481)] = 112320, + [SMALL_STATE(1482)] = 112425, + [SMALL_STATE(1483)] = 112530, + [SMALL_STATE(1484)] = 112635, + [SMALL_STATE(1485)] = 112740, [SMALL_STATE(1486)] = 112845, [SMALL_STATE(1487)] = 112902, - [SMALL_STATE(1488)] = 112958, - [SMALL_STATE(1489)] = 113016, - [SMALL_STATE(1490)] = 113074, - [SMALL_STATE(1491)] = 113132, + [SMALL_STATE(1488)] = 112956, + [SMALL_STATE(1489)] = 113014, + [SMALL_STATE(1490)] = 113070, + [SMALL_STATE(1491)] = 113128, [SMALL_STATE(1492)] = 113186, [SMALL_STATE(1493)] = 113239, [SMALL_STATE(1494)] = 113292, @@ -210434,66 +210006,66 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1672)] = 122515, [SMALL_STATE(1673)] = 122562, [SMALL_STATE(1674)] = 122609, - [SMALL_STATE(1675)] = 122660, - [SMALL_STATE(1676)] = 122711, - [SMALL_STATE(1677)] = 122758, - [SMALL_STATE(1678)] = 122805, - [SMALL_STATE(1679)] = 122852, - [SMALL_STATE(1680)] = 122899, - [SMALL_STATE(1681)] = 122946, - [SMALL_STATE(1682)] = 122993, - [SMALL_STATE(1683)] = 123044, - [SMALL_STATE(1684)] = 123091, - [SMALL_STATE(1685)] = 123138, - [SMALL_STATE(1686)] = 123185, - [SMALL_STATE(1687)] = 123232, - [SMALL_STATE(1688)] = 123279, - [SMALL_STATE(1689)] = 123326, - [SMALL_STATE(1690)] = 123373, - [SMALL_STATE(1691)] = 123420, - [SMALL_STATE(1692)] = 123467, - [SMALL_STATE(1693)] = 123514, - [SMALL_STATE(1694)] = 123561, - [SMALL_STATE(1695)] = 123608, - [SMALL_STATE(1696)] = 123655, - [SMALL_STATE(1697)] = 123702, - [SMALL_STATE(1698)] = 123749, - [SMALL_STATE(1699)] = 123796, - [SMALL_STATE(1700)] = 123843, - [SMALL_STATE(1701)] = 123890, - [SMALL_STATE(1702)] = 123937, - [SMALL_STATE(1703)] = 123984, - [SMALL_STATE(1704)] = 124031, - [SMALL_STATE(1705)] = 124078, - [SMALL_STATE(1706)] = 124125, - [SMALL_STATE(1707)] = 124172, - [SMALL_STATE(1708)] = 124219, - [SMALL_STATE(1709)] = 124266, - [SMALL_STATE(1710)] = 124313, - [SMALL_STATE(1711)] = 124360, - [SMALL_STATE(1712)] = 124407, - [SMALL_STATE(1713)] = 124454, - [SMALL_STATE(1714)] = 124501, - [SMALL_STATE(1715)] = 124548, - [SMALL_STATE(1716)] = 124595, - [SMALL_STATE(1717)] = 124642, - [SMALL_STATE(1718)] = 124689, - [SMALL_STATE(1719)] = 124736, - [SMALL_STATE(1720)] = 124783, - [SMALL_STATE(1721)] = 124830, - [SMALL_STATE(1722)] = 124877, - [SMALL_STATE(1723)] = 124924, - [SMALL_STATE(1724)] = 124971, - [SMALL_STATE(1725)] = 125018, - [SMALL_STATE(1726)] = 125065, - [SMALL_STATE(1727)] = 125112, - [SMALL_STATE(1728)] = 125159, - [SMALL_STATE(1729)] = 125206, - [SMALL_STATE(1730)] = 125253, - [SMALL_STATE(1731)] = 125300, - [SMALL_STATE(1732)] = 125347, - [SMALL_STATE(1733)] = 125394, - [SMALL_STATE(1734)] = 125441, + [SMALL_STATE(1675)] = 122656, + [SMALL_STATE(1676)] = 122703, + [SMALL_STATE(1677)] = 122750, + [SMALL_STATE(1678)] = 122797, + [SMALL_STATE(1679)] = 122844, + [SMALL_STATE(1680)] = 122891, + [SMALL_STATE(1681)] = 122938, + [SMALL_STATE(1682)] = 122985, + [SMALL_STATE(1683)] = 123032, + [SMALL_STATE(1684)] = 123079, + [SMALL_STATE(1685)] = 123126, + [SMALL_STATE(1686)] = 123173, + [SMALL_STATE(1687)] = 123220, + [SMALL_STATE(1688)] = 123267, + [SMALL_STATE(1689)] = 123314, + [SMALL_STATE(1690)] = 123361, + [SMALL_STATE(1691)] = 123408, + [SMALL_STATE(1692)] = 123455, + [SMALL_STATE(1693)] = 123502, + [SMALL_STATE(1694)] = 123549, + [SMALL_STATE(1695)] = 123596, + [SMALL_STATE(1696)] = 123643, + [SMALL_STATE(1697)] = 123690, + [SMALL_STATE(1698)] = 123737, + [SMALL_STATE(1699)] = 123788, + [SMALL_STATE(1700)] = 123835, + [SMALL_STATE(1701)] = 123882, + [SMALL_STATE(1702)] = 123929, + [SMALL_STATE(1703)] = 123976, + [SMALL_STATE(1704)] = 124023, + [SMALL_STATE(1705)] = 124070, + [SMALL_STATE(1706)] = 124117, + [SMALL_STATE(1707)] = 124164, + [SMALL_STATE(1708)] = 124211, + [SMALL_STATE(1709)] = 124258, + [SMALL_STATE(1710)] = 124305, + [SMALL_STATE(1711)] = 124356, + [SMALL_STATE(1712)] = 124403, + [SMALL_STATE(1713)] = 124450, + [SMALL_STATE(1714)] = 124497, + [SMALL_STATE(1715)] = 124544, + [SMALL_STATE(1716)] = 124591, + [SMALL_STATE(1717)] = 124638, + [SMALL_STATE(1718)] = 124685, + [SMALL_STATE(1719)] = 124732, + [SMALL_STATE(1720)] = 124779, + [SMALL_STATE(1721)] = 124826, + [SMALL_STATE(1722)] = 124873, + [SMALL_STATE(1723)] = 124920, + [SMALL_STATE(1724)] = 124967, + [SMALL_STATE(1725)] = 125014, + [SMALL_STATE(1726)] = 125061, + [SMALL_STATE(1727)] = 125108, + [SMALL_STATE(1728)] = 125155, + [SMALL_STATE(1729)] = 125202, + [SMALL_STATE(1730)] = 125249, + [SMALL_STATE(1731)] = 125296, + [SMALL_STATE(1732)] = 125343, + [SMALL_STATE(1733)] = 125390, + [SMALL_STATE(1734)] = 125437, [SMALL_STATE(1735)] = 125488, [SMALL_STATE(1736)] = 125535, [SMALL_STATE(1737)] = 125582, @@ -210528,9 +210100,9 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1766)] = 127445, [SMALL_STATE(1767)] = 127514, [SMALL_STATE(1768)] = 127558, - [SMALL_STATE(1769)] = 127606, - [SMALL_STATE(1770)] = 127650, - [SMALL_STATE(1771)] = 127694, + [SMALL_STATE(1769)] = 127602, + [SMALL_STATE(1770)] = 127646, + [SMALL_STATE(1771)] = 127690, [SMALL_STATE(1772)] = 127738, [SMALL_STATE(1773)] = 127782, [SMALL_STATE(1774)] = 127826, @@ -210609,35 +210181,35 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1847)] = 131038, [SMALL_STATE(1848)] = 131082, [SMALL_STATE(1849)] = 131126, - [SMALL_STATE(1850)] = 131170, - [SMALL_STATE(1851)] = 131214, - [SMALL_STATE(1852)] = 131258, - [SMALL_STATE(1853)] = 131302, - [SMALL_STATE(1854)] = 131346, - [SMALL_STATE(1855)] = 131390, - [SMALL_STATE(1856)] = 131434, - [SMALL_STATE(1857)] = 131478, - [SMALL_STATE(1858)] = 131522, - [SMALL_STATE(1859)] = 131566, - [SMALL_STATE(1860)] = 131610, - [SMALL_STATE(1861)] = 131654, - [SMALL_STATE(1862)] = 131698, - [SMALL_STATE(1863)] = 131742, - [SMALL_STATE(1864)] = 131786, - [SMALL_STATE(1865)] = 131830, - [SMALL_STATE(1866)] = 131874, - [SMALL_STATE(1867)] = 131918, - [SMALL_STATE(1868)] = 131962, - [SMALL_STATE(1869)] = 132006, - [SMALL_STATE(1870)] = 132050, - [SMALL_STATE(1871)] = 132094, - [SMALL_STATE(1872)] = 132138, - [SMALL_STATE(1873)] = 132182, - [SMALL_STATE(1874)] = 132228, - [SMALL_STATE(1875)] = 132272, - [SMALL_STATE(1876)] = 132316, - [SMALL_STATE(1877)] = 132360, - [SMALL_STATE(1878)] = 132404, + [SMALL_STATE(1850)] = 131174, + [SMALL_STATE(1851)] = 131218, + [SMALL_STATE(1852)] = 131262, + [SMALL_STATE(1853)] = 131306, + [SMALL_STATE(1854)] = 131350, + [SMALL_STATE(1855)] = 131394, + [SMALL_STATE(1856)] = 131438, + [SMALL_STATE(1857)] = 131482, + [SMALL_STATE(1858)] = 131528, + [SMALL_STATE(1859)] = 131572, + [SMALL_STATE(1860)] = 131616, + [SMALL_STATE(1861)] = 131660, + [SMALL_STATE(1862)] = 131704, + [SMALL_STATE(1863)] = 131748, + [SMALL_STATE(1864)] = 131792, + [SMALL_STATE(1865)] = 131836, + [SMALL_STATE(1866)] = 131880, + [SMALL_STATE(1867)] = 131924, + [SMALL_STATE(1868)] = 131968, + [SMALL_STATE(1869)] = 132012, + [SMALL_STATE(1870)] = 132056, + [SMALL_STATE(1871)] = 132100, + [SMALL_STATE(1872)] = 132144, + [SMALL_STATE(1873)] = 132188, + [SMALL_STATE(1874)] = 132232, + [SMALL_STATE(1875)] = 132276, + [SMALL_STATE(1876)] = 132320, + [SMALL_STATE(1877)] = 132364, + [SMALL_STATE(1878)] = 132408, [SMALL_STATE(1879)] = 132452, [SMALL_STATE(1880)] = 132496, [SMALL_STATE(1881)] = 132540, @@ -210646,8 +210218,8 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1884)] = 132672, [SMALL_STATE(1885)] = 132716, [SMALL_STATE(1886)] = 132760, - [SMALL_STATE(1887)] = 132804, - [SMALL_STATE(1888)] = 132848, + [SMALL_STATE(1887)] = 132808, + [SMALL_STATE(1888)] = 132852, [SMALL_STATE(1889)] = 132896, [SMALL_STATE(1890)] = 132940, [SMALL_STATE(1891)] = 132983, @@ -210727,13 +210299,13 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1965)] = 136165, [SMALL_STATE(1966)] = 136208, [SMALL_STATE(1967)] = 136251, - [SMALL_STATE(1968)] = 136300, - [SMALL_STATE(1969)] = 136343, - [SMALL_STATE(1970)] = 136386, - [SMALL_STATE(1971)] = 136429, - [SMALL_STATE(1972)] = 136472, - [SMALL_STATE(1973)] = 136515, - [SMALL_STATE(1974)] = 136558, + [SMALL_STATE(1968)] = 136294, + [SMALL_STATE(1969)] = 136337, + [SMALL_STATE(1970)] = 136380, + [SMALL_STATE(1971)] = 136423, + [SMALL_STATE(1972)] = 136466, + [SMALL_STATE(1973)] = 136509, + [SMALL_STATE(1974)] = 136552, [SMALL_STATE(1975)] = 136601, [SMALL_STATE(1976)] = 136644, [SMALL_STATE(1977)] = 136687, @@ -210744,59 +210316,59 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1982)] = 136895, [SMALL_STATE(1983)] = 136936, [SMALL_STATE(1984)] = 136977, - [SMALL_STATE(1985)] = 137022, - [SMALL_STATE(1986)] = 137063, - [SMALL_STATE(1987)] = 137108, - [SMALL_STATE(1988)] = 137149, - [SMALL_STATE(1989)] = 137194, - [SMALL_STATE(1990)] = 137239, - [SMALL_STATE(1991)] = 137284, - [SMALL_STATE(1992)] = 137325, - [SMALL_STATE(1993)] = 137370, - [SMALL_STATE(1994)] = 137411, - [SMALL_STATE(1995)] = 137456, - [SMALL_STATE(1996)] = 137497, - [SMALL_STATE(1997)] = 137538, - [SMALL_STATE(1998)] = 137583, - [SMALL_STATE(1999)] = 137624, - [SMALL_STATE(2000)] = 137665, - [SMALL_STATE(2001)] = 137706, - [SMALL_STATE(2002)] = 137747, - [SMALL_STATE(2003)] = 137788, - [SMALL_STATE(2004)] = 137829, - [SMALL_STATE(2005)] = 137870, - [SMALL_STATE(2006)] = 137911, - [SMALL_STATE(2007)] = 137970, - [SMALL_STATE(2008)] = 138011, - [SMALL_STATE(2009)] = 138052, - [SMALL_STATE(2010)] = 138093, - [SMALL_STATE(2011)] = 138134, - [SMALL_STATE(2012)] = 138175, - [SMALL_STATE(2013)] = 138216, - [SMALL_STATE(2014)] = 138261, - [SMALL_STATE(2015)] = 138302, - [SMALL_STATE(2016)] = 138343, - [SMALL_STATE(2017)] = 138384, - [SMALL_STATE(2018)] = 138429, - [SMALL_STATE(2019)] = 138470, - [SMALL_STATE(2020)] = 138511, - [SMALL_STATE(2021)] = 138552, - [SMALL_STATE(2022)] = 138593, - [SMALL_STATE(2023)] = 138634, - [SMALL_STATE(2024)] = 138675, - [SMALL_STATE(2025)] = 138716, - [SMALL_STATE(2026)] = 138757, - [SMALL_STATE(2027)] = 138798, - [SMALL_STATE(2028)] = 138839, - [SMALL_STATE(2029)] = 138880, - [SMALL_STATE(2030)] = 138921, - [SMALL_STATE(2031)] = 138962, - [SMALL_STATE(2032)] = 139003, - [SMALL_STATE(2033)] = 139044, + [SMALL_STATE(1985)] = 137018, + [SMALL_STATE(1986)] = 137059, + [SMALL_STATE(1987)] = 137100, + [SMALL_STATE(1988)] = 137141, + [SMALL_STATE(1989)] = 137182, + [SMALL_STATE(1990)] = 137223, + [SMALL_STATE(1991)] = 137264, + [SMALL_STATE(1992)] = 137305, + [SMALL_STATE(1993)] = 137346, + [SMALL_STATE(1994)] = 137387, + [SMALL_STATE(1995)] = 137428, + [SMALL_STATE(1996)] = 137469, + [SMALL_STATE(1997)] = 137510, + [SMALL_STATE(1998)] = 137551, + [SMALL_STATE(1999)] = 137592, + [SMALL_STATE(2000)] = 137633, + [SMALL_STATE(2001)] = 137674, + [SMALL_STATE(2002)] = 137715, + [SMALL_STATE(2003)] = 137756, + [SMALL_STATE(2004)] = 137797, + [SMALL_STATE(2005)] = 137838, + [SMALL_STATE(2006)] = 137879, + [SMALL_STATE(2007)] = 137920, + [SMALL_STATE(2008)] = 137961, + [SMALL_STATE(2009)] = 138002, + [SMALL_STATE(2010)] = 138043, + [SMALL_STATE(2011)] = 138084, + [SMALL_STATE(2012)] = 138125, + [SMALL_STATE(2013)] = 138166, + [SMALL_STATE(2014)] = 138207, + [SMALL_STATE(2015)] = 138248, + [SMALL_STATE(2016)] = 138289, + [SMALL_STATE(2017)] = 138330, + [SMALL_STATE(2018)] = 138371, + [SMALL_STATE(2019)] = 138412, + [SMALL_STATE(2020)] = 138457, + [SMALL_STATE(2021)] = 138498, + [SMALL_STATE(2022)] = 138539, + [SMALL_STATE(2023)] = 138580, + [SMALL_STATE(2024)] = 138621, + [SMALL_STATE(2025)] = 138680, + [SMALL_STATE(2026)] = 138725, + [SMALL_STATE(2027)] = 138770, + [SMALL_STATE(2028)] = 138815, + [SMALL_STATE(2029)] = 138860, + [SMALL_STATE(2030)] = 138905, + [SMALL_STATE(2031)] = 138950, + [SMALL_STATE(2032)] = 138995, + [SMALL_STATE(2033)] = 139040, [SMALL_STATE(2034)] = 139085, [SMALL_STATE(2035)] = 139126, [SMALL_STATE(2036)] = 139176, - [SMALL_STATE(2037)] = 139216, + [SMALL_STATE(2037)] = 139226, [SMALL_STATE(2038)] = 139266, [SMALL_STATE(2039)] = 139306, [SMALL_STATE(2040)] = 139346, @@ -210806,511 +210378,511 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(2044)] = 139506, [SMALL_STATE(2045)] = 139546, [SMALL_STATE(2046)] = 139589, - [SMALL_STATE(2047)] = 139626, - [SMALL_STATE(2048)] = 139669, - [SMALL_STATE(2049)] = 139712, - [SMALL_STATE(2050)] = 139755, - [SMALL_STATE(2051)] = 139798, - [SMALL_STATE(2052)] = 139841, - [SMALL_STATE(2053)] = 139884, - [SMALL_STATE(2054)] = 139927, - [SMALL_STATE(2055)] = 139970, - [SMALL_STATE(2056)] = 140013, - [SMALL_STATE(2057)] = 140056, - [SMALL_STATE(2058)] = 140099, - [SMALL_STATE(2059)] = 140142, - [SMALL_STATE(2060)] = 140185, - [SMALL_STATE(2061)] = 140228, - [SMALL_STATE(2062)] = 140271, - [SMALL_STATE(2063)] = 140314, - [SMALL_STATE(2064)] = 140357, - [SMALL_STATE(2065)] = 140400, - [SMALL_STATE(2066)] = 140443, - [SMALL_STATE(2067)] = 140486, - [SMALL_STATE(2068)] = 140529, - [SMALL_STATE(2069)] = 140572, - [SMALL_STATE(2070)] = 140615, - [SMALL_STATE(2071)] = 140658, - [SMALL_STATE(2072)] = 140701, - [SMALL_STATE(2073)] = 140744, - [SMALL_STATE(2074)] = 140787, - [SMALL_STATE(2075)] = 140830, - [SMALL_STATE(2076)] = 140873, - [SMALL_STATE(2077)] = 140916, - [SMALL_STATE(2078)] = 140959, - [SMALL_STATE(2079)] = 141002, - [SMALL_STATE(2080)] = 141045, - [SMALL_STATE(2081)] = 141088, - [SMALL_STATE(2082)] = 141131, - [SMALL_STATE(2083)] = 141174, - [SMALL_STATE(2084)] = 141217, - [SMALL_STATE(2085)] = 141260, - [SMALL_STATE(2086)] = 141303, - [SMALL_STATE(2087)] = 141346, - [SMALL_STATE(2088)] = 141389, - [SMALL_STATE(2089)] = 141432, - [SMALL_STATE(2090)] = 141475, - [SMALL_STATE(2091)] = 141518, - [SMALL_STATE(2092)] = 141561, - [SMALL_STATE(2093)] = 141604, - [SMALL_STATE(2094)] = 141647, - [SMALL_STATE(2095)] = 141690, - [SMALL_STATE(2096)] = 141733, - [SMALL_STATE(2097)] = 141776, - [SMALL_STATE(2098)] = 141819, - [SMALL_STATE(2099)] = 141862, - [SMALL_STATE(2100)] = 141905, - [SMALL_STATE(2101)] = 141948, - [SMALL_STATE(2102)] = 141991, - [SMALL_STATE(2103)] = 142034, - [SMALL_STATE(2104)] = 142077, - [SMALL_STATE(2105)] = 142120, - [SMALL_STATE(2106)] = 142163, - [SMALL_STATE(2107)] = 142206, - [SMALL_STATE(2108)] = 142249, - [SMALL_STATE(2109)] = 142292, - [SMALL_STATE(2110)] = 142335, - [SMALL_STATE(2111)] = 142378, - [SMALL_STATE(2112)] = 142421, - [SMALL_STATE(2113)] = 142464, - [SMALL_STATE(2114)] = 142507, - [SMALL_STATE(2115)] = 142550, - [SMALL_STATE(2116)] = 142593, - [SMALL_STATE(2117)] = 142636, - [SMALL_STATE(2118)] = 142679, - [SMALL_STATE(2119)] = 142722, - [SMALL_STATE(2120)] = 142765, - [SMALL_STATE(2121)] = 142808, - [SMALL_STATE(2122)] = 142851, - [SMALL_STATE(2123)] = 142894, - [SMALL_STATE(2124)] = 142937, - [SMALL_STATE(2125)] = 142980, - [SMALL_STATE(2126)] = 143023, - [SMALL_STATE(2127)] = 143066, - [SMALL_STATE(2128)] = 143109, - [SMALL_STATE(2129)] = 143152, - [SMALL_STATE(2130)] = 143195, - [SMALL_STATE(2131)] = 143238, - [SMALL_STATE(2132)] = 143281, - [SMALL_STATE(2133)] = 143324, - [SMALL_STATE(2134)] = 143367, - [SMALL_STATE(2135)] = 143410, - [SMALL_STATE(2136)] = 143453, - [SMALL_STATE(2137)] = 143496, - [SMALL_STATE(2138)] = 143539, - [SMALL_STATE(2139)] = 143582, - [SMALL_STATE(2140)] = 143625, - [SMALL_STATE(2141)] = 143668, - [SMALL_STATE(2142)] = 143711, - [SMALL_STATE(2143)] = 143754, - [SMALL_STATE(2144)] = 143797, - [SMALL_STATE(2145)] = 143840, - [SMALL_STATE(2146)] = 143883, - [SMALL_STATE(2147)] = 143926, - [SMALL_STATE(2148)] = 143969, - [SMALL_STATE(2149)] = 144012, - [SMALL_STATE(2150)] = 144055, - [SMALL_STATE(2151)] = 144098, - [SMALL_STATE(2152)] = 144141, - [SMALL_STATE(2153)] = 144184, - [SMALL_STATE(2154)] = 144227, - [SMALL_STATE(2155)] = 144270, - [SMALL_STATE(2156)] = 144313, - [SMALL_STATE(2157)] = 144356, - [SMALL_STATE(2158)] = 144399, - [SMALL_STATE(2159)] = 144442, - [SMALL_STATE(2160)] = 144485, - [SMALL_STATE(2161)] = 144528, - [SMALL_STATE(2162)] = 144571, - [SMALL_STATE(2163)] = 144614, - [SMALL_STATE(2164)] = 144657, - [SMALL_STATE(2165)] = 144700, - [SMALL_STATE(2166)] = 144743, - [SMALL_STATE(2167)] = 144786, - [SMALL_STATE(2168)] = 144829, - [SMALL_STATE(2169)] = 144872, - [SMALL_STATE(2170)] = 144915, - [SMALL_STATE(2171)] = 144958, - [SMALL_STATE(2172)] = 145001, - [SMALL_STATE(2173)] = 145044, - [SMALL_STATE(2174)] = 145087, - [SMALL_STATE(2175)] = 145130, - [SMALL_STATE(2176)] = 145173, - [SMALL_STATE(2177)] = 145216, - [SMALL_STATE(2178)] = 145259, - [SMALL_STATE(2179)] = 145302, - [SMALL_STATE(2180)] = 145345, - [SMALL_STATE(2181)] = 145388, - [SMALL_STATE(2182)] = 145431, - [SMALL_STATE(2183)] = 145474, - [SMALL_STATE(2184)] = 145517, - [SMALL_STATE(2185)] = 145560, - [SMALL_STATE(2186)] = 145603, - [SMALL_STATE(2187)] = 145646, - [SMALL_STATE(2188)] = 145689, - [SMALL_STATE(2189)] = 145732, - [SMALL_STATE(2190)] = 145775, - [SMALL_STATE(2191)] = 145818, - [SMALL_STATE(2192)] = 145861, - [SMALL_STATE(2193)] = 145904, - [SMALL_STATE(2194)] = 145947, - [SMALL_STATE(2195)] = 145990, - [SMALL_STATE(2196)] = 146033, - [SMALL_STATE(2197)] = 146076, - [SMALL_STATE(2198)] = 146119, - [SMALL_STATE(2199)] = 146162, - [SMALL_STATE(2200)] = 146205, - [SMALL_STATE(2201)] = 146248, - [SMALL_STATE(2202)] = 146291, - [SMALL_STATE(2203)] = 146334, - [SMALL_STATE(2204)] = 146377, - [SMALL_STATE(2205)] = 146420, - [SMALL_STATE(2206)] = 146463, - [SMALL_STATE(2207)] = 146506, - [SMALL_STATE(2208)] = 146549, - [SMALL_STATE(2209)] = 146592, - [SMALL_STATE(2210)] = 146635, - [SMALL_STATE(2211)] = 146678, - [SMALL_STATE(2212)] = 146721, - [SMALL_STATE(2213)] = 146764, - [SMALL_STATE(2214)] = 146807, - [SMALL_STATE(2215)] = 146850, - [SMALL_STATE(2216)] = 146893, - [SMALL_STATE(2217)] = 146936, - [SMALL_STATE(2218)] = 146979, - [SMALL_STATE(2219)] = 147022, - [SMALL_STATE(2220)] = 147065, - [SMALL_STATE(2221)] = 147108, - [SMALL_STATE(2222)] = 147151, - [SMALL_STATE(2223)] = 147194, - [SMALL_STATE(2224)] = 147237, - [SMALL_STATE(2225)] = 147280, - [SMALL_STATE(2226)] = 147323, - [SMALL_STATE(2227)] = 147366, - [SMALL_STATE(2228)] = 147409, - [SMALL_STATE(2229)] = 147452, - [SMALL_STATE(2230)] = 147495, - [SMALL_STATE(2231)] = 147538, - [SMALL_STATE(2232)] = 147581, - [SMALL_STATE(2233)] = 147624, - [SMALL_STATE(2234)] = 147667, - [SMALL_STATE(2235)] = 147710, - [SMALL_STATE(2236)] = 147753, - [SMALL_STATE(2237)] = 147796, - [SMALL_STATE(2238)] = 147839, - [SMALL_STATE(2239)] = 147882, - [SMALL_STATE(2240)] = 147925, - [SMALL_STATE(2241)] = 147968, - [SMALL_STATE(2242)] = 148011, - [SMALL_STATE(2243)] = 148054, - [SMALL_STATE(2244)] = 148097, - [SMALL_STATE(2245)] = 148140, - [SMALL_STATE(2246)] = 148183, - [SMALL_STATE(2247)] = 148226, - [SMALL_STATE(2248)] = 148269, - [SMALL_STATE(2249)] = 148312, - [SMALL_STATE(2250)] = 148355, - [SMALL_STATE(2251)] = 148398, - [SMALL_STATE(2252)] = 148441, - [SMALL_STATE(2253)] = 148484, - [SMALL_STATE(2254)] = 148527, - [SMALL_STATE(2255)] = 148570, - [SMALL_STATE(2256)] = 148613, - [SMALL_STATE(2257)] = 148656, - [SMALL_STATE(2258)] = 148699, - [SMALL_STATE(2259)] = 148742, - [SMALL_STATE(2260)] = 148785, - [SMALL_STATE(2261)] = 148828, - [SMALL_STATE(2262)] = 148871, - [SMALL_STATE(2263)] = 148914, - [SMALL_STATE(2264)] = 148957, - [SMALL_STATE(2265)] = 149000, - [SMALL_STATE(2266)] = 149043, - [SMALL_STATE(2267)] = 149086, - [SMALL_STATE(2268)] = 149129, - [SMALL_STATE(2269)] = 149172, - [SMALL_STATE(2270)] = 149215, - [SMALL_STATE(2271)] = 149258, - [SMALL_STATE(2272)] = 149301, - [SMALL_STATE(2273)] = 149344, - [SMALL_STATE(2274)] = 149387, - [SMALL_STATE(2275)] = 149430, - [SMALL_STATE(2276)] = 149473, - [SMALL_STATE(2277)] = 149516, - [SMALL_STATE(2278)] = 149559, - [SMALL_STATE(2279)] = 149602, - [SMALL_STATE(2280)] = 149645, - [SMALL_STATE(2281)] = 149688, - [SMALL_STATE(2282)] = 149731, - [SMALL_STATE(2283)] = 149774, - [SMALL_STATE(2284)] = 149817, - [SMALL_STATE(2285)] = 149860, - [SMALL_STATE(2286)] = 149903, - [SMALL_STATE(2287)] = 149946, - [SMALL_STATE(2288)] = 149989, - [SMALL_STATE(2289)] = 150032, - [SMALL_STATE(2290)] = 150075, - [SMALL_STATE(2291)] = 150118, - [SMALL_STATE(2292)] = 150161, - [SMALL_STATE(2293)] = 150204, - [SMALL_STATE(2294)] = 150247, - [SMALL_STATE(2295)] = 150290, - [SMALL_STATE(2296)] = 150333, - [SMALL_STATE(2297)] = 150376, - [SMALL_STATE(2298)] = 150419, - [SMALL_STATE(2299)] = 150462, - [SMALL_STATE(2300)] = 150505, - [SMALL_STATE(2301)] = 150548, - [SMALL_STATE(2302)] = 150591, - [SMALL_STATE(2303)] = 150634, - [SMALL_STATE(2304)] = 150677, - [SMALL_STATE(2305)] = 150720, - [SMALL_STATE(2306)] = 150763, - [SMALL_STATE(2307)] = 150806, - [SMALL_STATE(2308)] = 150849, - [SMALL_STATE(2309)] = 150892, - [SMALL_STATE(2310)] = 150935, - [SMALL_STATE(2311)] = 150978, - [SMALL_STATE(2312)] = 151021, - [SMALL_STATE(2313)] = 151064, - [SMALL_STATE(2314)] = 151107, - [SMALL_STATE(2315)] = 151150, - [SMALL_STATE(2316)] = 151193, - [SMALL_STATE(2317)] = 151236, - [SMALL_STATE(2318)] = 151279, - [SMALL_STATE(2319)] = 151322, - [SMALL_STATE(2320)] = 151365, - [SMALL_STATE(2321)] = 151408, - [SMALL_STATE(2322)] = 151451, - [SMALL_STATE(2323)] = 151494, - [SMALL_STATE(2324)] = 151537, - [SMALL_STATE(2325)] = 151580, - [SMALL_STATE(2326)] = 151623, - [SMALL_STATE(2327)] = 151666, - [SMALL_STATE(2328)] = 151709, - [SMALL_STATE(2329)] = 151752, - [SMALL_STATE(2330)] = 151795, - [SMALL_STATE(2331)] = 151838, - [SMALL_STATE(2332)] = 151881, - [SMALL_STATE(2333)] = 151924, - [SMALL_STATE(2334)] = 151967, - [SMALL_STATE(2335)] = 152010, - [SMALL_STATE(2336)] = 152053, - [SMALL_STATE(2337)] = 152096, - [SMALL_STATE(2338)] = 152139, - [SMALL_STATE(2339)] = 152182, - [SMALL_STATE(2340)] = 152225, - [SMALL_STATE(2341)] = 152268, - [SMALL_STATE(2342)] = 152311, - [SMALL_STATE(2343)] = 152354, - [SMALL_STATE(2344)] = 152397, - [SMALL_STATE(2345)] = 152440, - [SMALL_STATE(2346)] = 152483, - [SMALL_STATE(2347)] = 152526, - [SMALL_STATE(2348)] = 152569, - [SMALL_STATE(2349)] = 152612, - [SMALL_STATE(2350)] = 152655, - [SMALL_STATE(2351)] = 152698, - [SMALL_STATE(2352)] = 152741, - [SMALL_STATE(2353)] = 152784, - [SMALL_STATE(2354)] = 152827, - [SMALL_STATE(2355)] = 152870, - [SMALL_STATE(2356)] = 152913, - [SMALL_STATE(2357)] = 152956, - [SMALL_STATE(2358)] = 152999, - [SMALL_STATE(2359)] = 153042, - [SMALL_STATE(2360)] = 153085, - [SMALL_STATE(2361)] = 153128, - [SMALL_STATE(2362)] = 153171, - [SMALL_STATE(2363)] = 153214, - [SMALL_STATE(2364)] = 153257, - [SMALL_STATE(2365)] = 153300, - [SMALL_STATE(2366)] = 153343, - [SMALL_STATE(2367)] = 153386, - [SMALL_STATE(2368)] = 153429, - [SMALL_STATE(2369)] = 153472, - [SMALL_STATE(2370)] = 153515, - [SMALL_STATE(2371)] = 153558, - [SMALL_STATE(2372)] = 153601, - [SMALL_STATE(2373)] = 153644, - [SMALL_STATE(2374)] = 153687, - [SMALL_STATE(2375)] = 153730, - [SMALL_STATE(2376)] = 153773, - [SMALL_STATE(2377)] = 153816, - [SMALL_STATE(2378)] = 153859, - [SMALL_STATE(2379)] = 153902, - [SMALL_STATE(2380)] = 153945, - [SMALL_STATE(2381)] = 153988, - [SMALL_STATE(2382)] = 154031, - [SMALL_STATE(2383)] = 154074, - [SMALL_STATE(2384)] = 154117, - [SMALL_STATE(2385)] = 154160, - [SMALL_STATE(2386)] = 154203, - [SMALL_STATE(2387)] = 154246, - [SMALL_STATE(2388)] = 154289, - [SMALL_STATE(2389)] = 154332, - [SMALL_STATE(2390)] = 154375, - [SMALL_STATE(2391)] = 154418, - [SMALL_STATE(2392)] = 154461, - [SMALL_STATE(2393)] = 154504, - [SMALL_STATE(2394)] = 154547, - [SMALL_STATE(2395)] = 154590, - [SMALL_STATE(2396)] = 154633, - [SMALL_STATE(2397)] = 154676, - [SMALL_STATE(2398)] = 154719, - [SMALL_STATE(2399)] = 154762, - [SMALL_STATE(2400)] = 154805, - [SMALL_STATE(2401)] = 154848, - [SMALL_STATE(2402)] = 154891, - [SMALL_STATE(2403)] = 154934, - [SMALL_STATE(2404)] = 154977, - [SMALL_STATE(2405)] = 155020, - [SMALL_STATE(2406)] = 155063, - [SMALL_STATE(2407)] = 155106, - [SMALL_STATE(2408)] = 155149, - [SMALL_STATE(2409)] = 155192, - [SMALL_STATE(2410)] = 155235, - [SMALL_STATE(2411)] = 155278, - [SMALL_STATE(2412)] = 155321, - [SMALL_STATE(2413)] = 155364, - [SMALL_STATE(2414)] = 155407, - [SMALL_STATE(2415)] = 155450, - [SMALL_STATE(2416)] = 155493, - [SMALL_STATE(2417)] = 155536, - [SMALL_STATE(2418)] = 155579, - [SMALL_STATE(2419)] = 155622, - [SMALL_STATE(2420)] = 155665, - [SMALL_STATE(2421)] = 155708, - [SMALL_STATE(2422)] = 155751, - [SMALL_STATE(2423)] = 155794, - [SMALL_STATE(2424)] = 155837, - [SMALL_STATE(2425)] = 155880, - [SMALL_STATE(2426)] = 155923, - [SMALL_STATE(2427)] = 155966, - [SMALL_STATE(2428)] = 156009, - [SMALL_STATE(2429)] = 156052, - [SMALL_STATE(2430)] = 156095, - [SMALL_STATE(2431)] = 156138, - [SMALL_STATE(2432)] = 156181, - [SMALL_STATE(2433)] = 156224, - [SMALL_STATE(2434)] = 156267, - [SMALL_STATE(2435)] = 156310, - [SMALL_STATE(2436)] = 156353, - [SMALL_STATE(2437)] = 156396, - [SMALL_STATE(2438)] = 156439, - [SMALL_STATE(2439)] = 156482, - [SMALL_STATE(2440)] = 156525, - [SMALL_STATE(2441)] = 156564, - [SMALL_STATE(2442)] = 156607, - [SMALL_STATE(2443)] = 156650, - [SMALL_STATE(2444)] = 156693, - [SMALL_STATE(2445)] = 156736, - [SMALL_STATE(2446)] = 156779, - [SMALL_STATE(2447)] = 156822, - [SMALL_STATE(2448)] = 156865, - [SMALL_STATE(2449)] = 156908, - [SMALL_STATE(2450)] = 156951, - [SMALL_STATE(2451)] = 156994, - [SMALL_STATE(2452)] = 157037, - [SMALL_STATE(2453)] = 157080, - [SMALL_STATE(2454)] = 157123, - [SMALL_STATE(2455)] = 157166, - [SMALL_STATE(2456)] = 157209, - [SMALL_STATE(2457)] = 157252, - [SMALL_STATE(2458)] = 157295, - [SMALL_STATE(2459)] = 157338, - [SMALL_STATE(2460)] = 157381, - [SMALL_STATE(2461)] = 157424, - [SMALL_STATE(2462)] = 157467, - [SMALL_STATE(2463)] = 157510, - [SMALL_STATE(2464)] = 157553, - [SMALL_STATE(2465)] = 157596, - [SMALL_STATE(2466)] = 157639, - [SMALL_STATE(2467)] = 157682, - [SMALL_STATE(2468)] = 157725, - [SMALL_STATE(2469)] = 157768, - [SMALL_STATE(2470)] = 157811, - [SMALL_STATE(2471)] = 157854, - [SMALL_STATE(2472)] = 157897, - [SMALL_STATE(2473)] = 157940, - [SMALL_STATE(2474)] = 157983, - [SMALL_STATE(2475)] = 158026, - [SMALL_STATE(2476)] = 158069, - [SMALL_STATE(2477)] = 158112, - [SMALL_STATE(2478)] = 158155, - [SMALL_STATE(2479)] = 158198, - [SMALL_STATE(2480)] = 158241, - [SMALL_STATE(2481)] = 158284, - [SMALL_STATE(2482)] = 158327, - [SMALL_STATE(2483)] = 158370, - [SMALL_STATE(2484)] = 158413, - [SMALL_STATE(2485)] = 158456, - [SMALL_STATE(2486)] = 158499, - [SMALL_STATE(2487)] = 158542, - [SMALL_STATE(2488)] = 158585, - [SMALL_STATE(2489)] = 158628, - [SMALL_STATE(2490)] = 158671, - [SMALL_STATE(2491)] = 158714, - [SMALL_STATE(2492)] = 158757, - [SMALL_STATE(2493)] = 158800, - [SMALL_STATE(2494)] = 158843, - [SMALL_STATE(2495)] = 158886, - [SMALL_STATE(2496)] = 158929, - [SMALL_STATE(2497)] = 158970, - [SMALL_STATE(2498)] = 159011, - [SMALL_STATE(2499)] = 159048, - [SMALL_STATE(2500)] = 159091, - [SMALL_STATE(2501)] = 159132, - [SMALL_STATE(2502)] = 159169, - [SMALL_STATE(2503)] = 159212, - [SMALL_STATE(2504)] = 159255, - [SMALL_STATE(2505)] = 159292, - [SMALL_STATE(2506)] = 159329, - [SMALL_STATE(2507)] = 159372, - [SMALL_STATE(2508)] = 159415, - [SMALL_STATE(2509)] = 159458, - [SMALL_STATE(2510)] = 159501, - [SMALL_STATE(2511)] = 159544, - [SMALL_STATE(2512)] = 159581, - [SMALL_STATE(2513)] = 159624, - [SMALL_STATE(2514)] = 159661, - [SMALL_STATE(2515)] = 159698, - [SMALL_STATE(2516)] = 159735, - [SMALL_STATE(2517)] = 159772, - [SMALL_STATE(2518)] = 159815, - [SMALL_STATE(2519)] = 159858, - [SMALL_STATE(2520)] = 159901, - [SMALL_STATE(2521)] = 159944, - [SMALL_STATE(2522)] = 159987, - [SMALL_STATE(2523)] = 160030, - [SMALL_STATE(2524)] = 160067, - [SMALL_STATE(2525)] = 160110, - [SMALL_STATE(2526)] = 160153, - [SMALL_STATE(2527)] = 160196, - [SMALL_STATE(2528)] = 160239, - [SMALL_STATE(2529)] = 160282, - [SMALL_STATE(2530)] = 160319, - [SMALL_STATE(2531)] = 160362, - [SMALL_STATE(2532)] = 160399, - [SMALL_STATE(2533)] = 160436, - [SMALL_STATE(2534)] = 160479, - [SMALL_STATE(2535)] = 160522, - [SMALL_STATE(2536)] = 160565, - [SMALL_STATE(2537)] = 160608, - [SMALL_STATE(2538)] = 160645, - [SMALL_STATE(2539)] = 160688, - [SMALL_STATE(2540)] = 160731, - [SMALL_STATE(2541)] = 160774, - [SMALL_STATE(2542)] = 160817, - [SMALL_STATE(2543)] = 160854, - [SMALL_STATE(2544)] = 160897, - [SMALL_STATE(2545)] = 160934, - [SMALL_STATE(2546)] = 160971, - [SMALL_STATE(2547)] = 161008, - [SMALL_STATE(2548)] = 161051, - [SMALL_STATE(2549)] = 161088, - [SMALL_STATE(2550)] = 161131, - [SMALL_STATE(2551)] = 161168, + [SMALL_STATE(2047)] = 139632, + [SMALL_STATE(2048)] = 139675, + [SMALL_STATE(2049)] = 139718, + [SMALL_STATE(2050)] = 139761, + [SMALL_STATE(2051)] = 139802, + [SMALL_STATE(2052)] = 139845, + [SMALL_STATE(2053)] = 139888, + [SMALL_STATE(2054)] = 139931, + [SMALL_STATE(2055)] = 139974, + [SMALL_STATE(2056)] = 140017, + [SMALL_STATE(2057)] = 140060, + [SMALL_STATE(2058)] = 140103, + [SMALL_STATE(2059)] = 140146, + [SMALL_STATE(2060)] = 140189, + [SMALL_STATE(2061)] = 140232, + [SMALL_STATE(2062)] = 140275, + [SMALL_STATE(2063)] = 140318, + [SMALL_STATE(2064)] = 140361, + [SMALL_STATE(2065)] = 140404, + [SMALL_STATE(2066)] = 140447, + [SMALL_STATE(2067)] = 140490, + [SMALL_STATE(2068)] = 140533, + [SMALL_STATE(2069)] = 140570, + [SMALL_STATE(2070)] = 140613, + [SMALL_STATE(2071)] = 140656, + [SMALL_STATE(2072)] = 140699, + [SMALL_STATE(2073)] = 140742, + [SMALL_STATE(2074)] = 140785, + [SMALL_STATE(2075)] = 140828, + [SMALL_STATE(2076)] = 140871, + [SMALL_STATE(2077)] = 140908, + [SMALL_STATE(2078)] = 140951, + [SMALL_STATE(2079)] = 140994, + [SMALL_STATE(2080)] = 141037, + [SMALL_STATE(2081)] = 141080, + [SMALL_STATE(2082)] = 141123, + [SMALL_STATE(2083)] = 141166, + [SMALL_STATE(2084)] = 141209, + [SMALL_STATE(2085)] = 141252, + [SMALL_STATE(2086)] = 141295, + [SMALL_STATE(2087)] = 141332, + [SMALL_STATE(2088)] = 141375, + [SMALL_STATE(2089)] = 141418, + [SMALL_STATE(2090)] = 141461, + [SMALL_STATE(2091)] = 141504, + [SMALL_STATE(2092)] = 141547, + [SMALL_STATE(2093)] = 141590, + [SMALL_STATE(2094)] = 141633, + [SMALL_STATE(2095)] = 141676, + [SMALL_STATE(2096)] = 141715, + [SMALL_STATE(2097)] = 141758, + [SMALL_STATE(2098)] = 141801, + [SMALL_STATE(2099)] = 141838, + [SMALL_STATE(2100)] = 141875, + [SMALL_STATE(2101)] = 141912, + [SMALL_STATE(2102)] = 141955, + [SMALL_STATE(2103)] = 141992, + [SMALL_STATE(2104)] = 142029, + [SMALL_STATE(2105)] = 142072, + [SMALL_STATE(2106)] = 142115, + [SMALL_STATE(2107)] = 142156, + [SMALL_STATE(2108)] = 142199, + [SMALL_STATE(2109)] = 142236, + [SMALL_STATE(2110)] = 142279, + [SMALL_STATE(2111)] = 142322, + [SMALL_STATE(2112)] = 142365, + [SMALL_STATE(2113)] = 142406, + [SMALL_STATE(2114)] = 142449, + [SMALL_STATE(2115)] = 142492, + [SMALL_STATE(2116)] = 142535, + [SMALL_STATE(2117)] = 142572, + [SMALL_STATE(2118)] = 142615, + [SMALL_STATE(2119)] = 142658, + [SMALL_STATE(2120)] = 142695, + [SMALL_STATE(2121)] = 142738, + [SMALL_STATE(2122)] = 142781, + [SMALL_STATE(2123)] = 142824, + [SMALL_STATE(2124)] = 142861, + [SMALL_STATE(2125)] = 142904, + [SMALL_STATE(2126)] = 142947, + [SMALL_STATE(2127)] = 142990, + [SMALL_STATE(2128)] = 143033, + [SMALL_STATE(2129)] = 143076, + [SMALL_STATE(2130)] = 143119, + [SMALL_STATE(2131)] = 143162, + [SMALL_STATE(2132)] = 143205, + [SMALL_STATE(2133)] = 143248, + [SMALL_STATE(2134)] = 143291, + [SMALL_STATE(2135)] = 143328, + [SMALL_STATE(2136)] = 143371, + [SMALL_STATE(2137)] = 143414, + [SMALL_STATE(2138)] = 143457, + [SMALL_STATE(2139)] = 143500, + [SMALL_STATE(2140)] = 143543, + [SMALL_STATE(2141)] = 143586, + [SMALL_STATE(2142)] = 143629, + [SMALL_STATE(2143)] = 143672, + [SMALL_STATE(2144)] = 143715, + [SMALL_STATE(2145)] = 143752, + [SMALL_STATE(2146)] = 143789, + [SMALL_STATE(2147)] = 143832, + [SMALL_STATE(2148)] = 143875, + [SMALL_STATE(2149)] = 143918, + [SMALL_STATE(2150)] = 143955, + [SMALL_STATE(2151)] = 143998, + [SMALL_STATE(2152)] = 144035, + [SMALL_STATE(2153)] = 144078, + [SMALL_STATE(2154)] = 144121, + [SMALL_STATE(2155)] = 144164, + [SMALL_STATE(2156)] = 144207, + [SMALL_STATE(2157)] = 144250, + [SMALL_STATE(2158)] = 144293, + [SMALL_STATE(2159)] = 144336, + [SMALL_STATE(2160)] = 144379, + [SMALL_STATE(2161)] = 144422, + [SMALL_STATE(2162)] = 144465, + [SMALL_STATE(2163)] = 144508, + [SMALL_STATE(2164)] = 144551, + [SMALL_STATE(2165)] = 144594, + [SMALL_STATE(2166)] = 144637, + [SMALL_STATE(2167)] = 144680, + [SMALL_STATE(2168)] = 144723, + [SMALL_STATE(2169)] = 144766, + [SMALL_STATE(2170)] = 144809, + [SMALL_STATE(2171)] = 144852, + [SMALL_STATE(2172)] = 144895, + [SMALL_STATE(2173)] = 144938, + [SMALL_STATE(2174)] = 144981, + [SMALL_STATE(2175)] = 145024, + [SMALL_STATE(2176)] = 145067, + [SMALL_STATE(2177)] = 145110, + [SMALL_STATE(2178)] = 145147, + [SMALL_STATE(2179)] = 145190, + [SMALL_STATE(2180)] = 145233, + [SMALL_STATE(2181)] = 145276, + [SMALL_STATE(2182)] = 145319, + [SMALL_STATE(2183)] = 145362, + [SMALL_STATE(2184)] = 145405, + [SMALL_STATE(2185)] = 145448, + [SMALL_STATE(2186)] = 145491, + [SMALL_STATE(2187)] = 145534, + [SMALL_STATE(2188)] = 145577, + [SMALL_STATE(2189)] = 145620, + [SMALL_STATE(2190)] = 145663, + [SMALL_STATE(2191)] = 145706, + [SMALL_STATE(2192)] = 145749, + [SMALL_STATE(2193)] = 145792, + [SMALL_STATE(2194)] = 145835, + [SMALL_STATE(2195)] = 145878, + [SMALL_STATE(2196)] = 145921, + [SMALL_STATE(2197)] = 145964, + [SMALL_STATE(2198)] = 146007, + [SMALL_STATE(2199)] = 146050, + [SMALL_STATE(2200)] = 146093, + [SMALL_STATE(2201)] = 146136, + [SMALL_STATE(2202)] = 146179, + [SMALL_STATE(2203)] = 146222, + [SMALL_STATE(2204)] = 146265, + [SMALL_STATE(2205)] = 146308, + [SMALL_STATE(2206)] = 146351, + [SMALL_STATE(2207)] = 146394, + [SMALL_STATE(2208)] = 146437, + [SMALL_STATE(2209)] = 146480, + [SMALL_STATE(2210)] = 146523, + [SMALL_STATE(2211)] = 146566, + [SMALL_STATE(2212)] = 146609, + [SMALL_STATE(2213)] = 146652, + [SMALL_STATE(2214)] = 146695, + [SMALL_STATE(2215)] = 146738, + [SMALL_STATE(2216)] = 146781, + [SMALL_STATE(2217)] = 146824, + [SMALL_STATE(2218)] = 146867, + [SMALL_STATE(2219)] = 146910, + [SMALL_STATE(2220)] = 146953, + [SMALL_STATE(2221)] = 146996, + [SMALL_STATE(2222)] = 147039, + [SMALL_STATE(2223)] = 147082, + [SMALL_STATE(2224)] = 147125, + [SMALL_STATE(2225)] = 147168, + [SMALL_STATE(2226)] = 147211, + [SMALL_STATE(2227)] = 147254, + [SMALL_STATE(2228)] = 147297, + [SMALL_STATE(2229)] = 147340, + [SMALL_STATE(2230)] = 147383, + [SMALL_STATE(2231)] = 147426, + [SMALL_STATE(2232)] = 147469, + [SMALL_STATE(2233)] = 147512, + [SMALL_STATE(2234)] = 147555, + [SMALL_STATE(2235)] = 147598, + [SMALL_STATE(2236)] = 147641, + [SMALL_STATE(2237)] = 147684, + [SMALL_STATE(2238)] = 147727, + [SMALL_STATE(2239)] = 147770, + [SMALL_STATE(2240)] = 147813, + [SMALL_STATE(2241)] = 147856, + [SMALL_STATE(2242)] = 147899, + [SMALL_STATE(2243)] = 147942, + [SMALL_STATE(2244)] = 147985, + [SMALL_STATE(2245)] = 148028, + [SMALL_STATE(2246)] = 148071, + [SMALL_STATE(2247)] = 148114, + [SMALL_STATE(2248)] = 148157, + [SMALL_STATE(2249)] = 148200, + [SMALL_STATE(2250)] = 148243, + [SMALL_STATE(2251)] = 148286, + [SMALL_STATE(2252)] = 148329, + [SMALL_STATE(2253)] = 148372, + [SMALL_STATE(2254)] = 148415, + [SMALL_STATE(2255)] = 148458, + [SMALL_STATE(2256)] = 148501, + [SMALL_STATE(2257)] = 148544, + [SMALL_STATE(2258)] = 148587, + [SMALL_STATE(2259)] = 148630, + [SMALL_STATE(2260)] = 148673, + [SMALL_STATE(2261)] = 148716, + [SMALL_STATE(2262)] = 148759, + [SMALL_STATE(2263)] = 148802, + [SMALL_STATE(2264)] = 148845, + [SMALL_STATE(2265)] = 148888, + [SMALL_STATE(2266)] = 148931, + [SMALL_STATE(2267)] = 148974, + [SMALL_STATE(2268)] = 149017, + [SMALL_STATE(2269)] = 149060, + [SMALL_STATE(2270)] = 149103, + [SMALL_STATE(2271)] = 149146, + [SMALL_STATE(2272)] = 149189, + [SMALL_STATE(2273)] = 149232, + [SMALL_STATE(2274)] = 149275, + [SMALL_STATE(2275)] = 149318, + [SMALL_STATE(2276)] = 149361, + [SMALL_STATE(2277)] = 149404, + [SMALL_STATE(2278)] = 149447, + [SMALL_STATE(2279)] = 149490, + [SMALL_STATE(2280)] = 149533, + [SMALL_STATE(2281)] = 149576, + [SMALL_STATE(2282)] = 149619, + [SMALL_STATE(2283)] = 149662, + [SMALL_STATE(2284)] = 149705, + [SMALL_STATE(2285)] = 149748, + [SMALL_STATE(2286)] = 149791, + [SMALL_STATE(2287)] = 149834, + [SMALL_STATE(2288)] = 149877, + [SMALL_STATE(2289)] = 149920, + [SMALL_STATE(2290)] = 149963, + [SMALL_STATE(2291)] = 150006, + [SMALL_STATE(2292)] = 150049, + [SMALL_STATE(2293)] = 150092, + [SMALL_STATE(2294)] = 150135, + [SMALL_STATE(2295)] = 150178, + [SMALL_STATE(2296)] = 150221, + [SMALL_STATE(2297)] = 150264, + [SMALL_STATE(2298)] = 150307, + [SMALL_STATE(2299)] = 150350, + [SMALL_STATE(2300)] = 150393, + [SMALL_STATE(2301)] = 150436, + [SMALL_STATE(2302)] = 150479, + [SMALL_STATE(2303)] = 150522, + [SMALL_STATE(2304)] = 150565, + [SMALL_STATE(2305)] = 150608, + [SMALL_STATE(2306)] = 150651, + [SMALL_STATE(2307)] = 150694, + [SMALL_STATE(2308)] = 150737, + [SMALL_STATE(2309)] = 150780, + [SMALL_STATE(2310)] = 150823, + [SMALL_STATE(2311)] = 150860, + [SMALL_STATE(2312)] = 150903, + [SMALL_STATE(2313)] = 150946, + [SMALL_STATE(2314)] = 150989, + [SMALL_STATE(2315)] = 151032, + [SMALL_STATE(2316)] = 151075, + [SMALL_STATE(2317)] = 151118, + [SMALL_STATE(2318)] = 151161, + [SMALL_STATE(2319)] = 151204, + [SMALL_STATE(2320)] = 151247, + [SMALL_STATE(2321)] = 151290, + [SMALL_STATE(2322)] = 151333, + [SMALL_STATE(2323)] = 151376, + [SMALL_STATE(2324)] = 151419, + [SMALL_STATE(2325)] = 151462, + [SMALL_STATE(2326)] = 151505, + [SMALL_STATE(2327)] = 151548, + [SMALL_STATE(2328)] = 151591, + [SMALL_STATE(2329)] = 151634, + [SMALL_STATE(2330)] = 151677, + [SMALL_STATE(2331)] = 151720, + [SMALL_STATE(2332)] = 151763, + [SMALL_STATE(2333)] = 151806, + [SMALL_STATE(2334)] = 151849, + [SMALL_STATE(2335)] = 151892, + [SMALL_STATE(2336)] = 151935, + [SMALL_STATE(2337)] = 151978, + [SMALL_STATE(2338)] = 152021, + [SMALL_STATE(2339)] = 152064, + [SMALL_STATE(2340)] = 152107, + [SMALL_STATE(2341)] = 152150, + [SMALL_STATE(2342)] = 152193, + [SMALL_STATE(2343)] = 152236, + [SMALL_STATE(2344)] = 152273, + [SMALL_STATE(2345)] = 152316, + [SMALL_STATE(2346)] = 152359, + [SMALL_STATE(2347)] = 152402, + [SMALL_STATE(2348)] = 152445, + [SMALL_STATE(2349)] = 152488, + [SMALL_STATE(2350)] = 152531, + [SMALL_STATE(2351)] = 152574, + [SMALL_STATE(2352)] = 152617, + [SMALL_STATE(2353)] = 152660, + [SMALL_STATE(2354)] = 152703, + [SMALL_STATE(2355)] = 152746, + [SMALL_STATE(2356)] = 152789, + [SMALL_STATE(2357)] = 152832, + [SMALL_STATE(2358)] = 152875, + [SMALL_STATE(2359)] = 152918, + [SMALL_STATE(2360)] = 152961, + [SMALL_STATE(2361)] = 153004, + [SMALL_STATE(2362)] = 153047, + [SMALL_STATE(2363)] = 153090, + [SMALL_STATE(2364)] = 153133, + [SMALL_STATE(2365)] = 153176, + [SMALL_STATE(2366)] = 153219, + [SMALL_STATE(2367)] = 153262, + [SMALL_STATE(2368)] = 153305, + [SMALL_STATE(2369)] = 153348, + [SMALL_STATE(2370)] = 153391, + [SMALL_STATE(2371)] = 153434, + [SMALL_STATE(2372)] = 153477, + [SMALL_STATE(2373)] = 153520, + [SMALL_STATE(2374)] = 153563, + [SMALL_STATE(2375)] = 153606, + [SMALL_STATE(2376)] = 153649, + [SMALL_STATE(2377)] = 153686, + [SMALL_STATE(2378)] = 153729, + [SMALL_STATE(2379)] = 153772, + [SMALL_STATE(2380)] = 153815, + [SMALL_STATE(2381)] = 153858, + [SMALL_STATE(2382)] = 153901, + [SMALL_STATE(2383)] = 153944, + [SMALL_STATE(2384)] = 153987, + [SMALL_STATE(2385)] = 154030, + [SMALL_STATE(2386)] = 154073, + [SMALL_STATE(2387)] = 154116, + [SMALL_STATE(2388)] = 154159, + [SMALL_STATE(2389)] = 154202, + [SMALL_STATE(2390)] = 154245, + [SMALL_STATE(2391)] = 154288, + [SMALL_STATE(2392)] = 154331, + [SMALL_STATE(2393)] = 154374, + [SMALL_STATE(2394)] = 154417, + [SMALL_STATE(2395)] = 154460, + [SMALL_STATE(2396)] = 154503, + [SMALL_STATE(2397)] = 154546, + [SMALL_STATE(2398)] = 154589, + [SMALL_STATE(2399)] = 154632, + [SMALL_STATE(2400)] = 154675, + [SMALL_STATE(2401)] = 154718, + [SMALL_STATE(2402)] = 154761, + [SMALL_STATE(2403)] = 154804, + [SMALL_STATE(2404)] = 154847, + [SMALL_STATE(2405)] = 154890, + [SMALL_STATE(2406)] = 154933, + [SMALL_STATE(2407)] = 154976, + [SMALL_STATE(2408)] = 155019, + [SMALL_STATE(2409)] = 155062, + [SMALL_STATE(2410)] = 155105, + [SMALL_STATE(2411)] = 155148, + [SMALL_STATE(2412)] = 155191, + [SMALL_STATE(2413)] = 155234, + [SMALL_STATE(2414)] = 155277, + [SMALL_STATE(2415)] = 155320, + [SMALL_STATE(2416)] = 155363, + [SMALL_STATE(2417)] = 155406, + [SMALL_STATE(2418)] = 155449, + [SMALL_STATE(2419)] = 155492, + [SMALL_STATE(2420)] = 155535, + [SMALL_STATE(2421)] = 155578, + [SMALL_STATE(2422)] = 155621, + [SMALL_STATE(2423)] = 155664, + [SMALL_STATE(2424)] = 155707, + [SMALL_STATE(2425)] = 155750, + [SMALL_STATE(2426)] = 155793, + [SMALL_STATE(2427)] = 155836, + [SMALL_STATE(2428)] = 155879, + [SMALL_STATE(2429)] = 155922, + [SMALL_STATE(2430)] = 155965, + [SMALL_STATE(2431)] = 156008, + [SMALL_STATE(2432)] = 156051, + [SMALL_STATE(2433)] = 156094, + [SMALL_STATE(2434)] = 156137, + [SMALL_STATE(2435)] = 156180, + [SMALL_STATE(2436)] = 156223, + [SMALL_STATE(2437)] = 156266, + [SMALL_STATE(2438)] = 156309, + [SMALL_STATE(2439)] = 156352, + [SMALL_STATE(2440)] = 156395, + [SMALL_STATE(2441)] = 156438, + [SMALL_STATE(2442)] = 156481, + [SMALL_STATE(2443)] = 156524, + [SMALL_STATE(2444)] = 156567, + [SMALL_STATE(2445)] = 156610, + [SMALL_STATE(2446)] = 156653, + [SMALL_STATE(2447)] = 156696, + [SMALL_STATE(2448)] = 156739, + [SMALL_STATE(2449)] = 156782, + [SMALL_STATE(2450)] = 156825, + [SMALL_STATE(2451)] = 156868, + [SMALL_STATE(2452)] = 156911, + [SMALL_STATE(2453)] = 156954, + [SMALL_STATE(2454)] = 156997, + [SMALL_STATE(2455)] = 157040, + [SMALL_STATE(2456)] = 157083, + [SMALL_STATE(2457)] = 157126, + [SMALL_STATE(2458)] = 157169, + [SMALL_STATE(2459)] = 157212, + [SMALL_STATE(2460)] = 157255, + [SMALL_STATE(2461)] = 157298, + [SMALL_STATE(2462)] = 157341, + [SMALL_STATE(2463)] = 157384, + [SMALL_STATE(2464)] = 157427, + [SMALL_STATE(2465)] = 157470, + [SMALL_STATE(2466)] = 157513, + [SMALL_STATE(2467)] = 157556, + [SMALL_STATE(2468)] = 157599, + [SMALL_STATE(2469)] = 157642, + [SMALL_STATE(2470)] = 157685, + [SMALL_STATE(2471)] = 157728, + [SMALL_STATE(2472)] = 157771, + [SMALL_STATE(2473)] = 157814, + [SMALL_STATE(2474)] = 157857, + [SMALL_STATE(2475)] = 157900, + [SMALL_STATE(2476)] = 157943, + [SMALL_STATE(2477)] = 157986, + [SMALL_STATE(2478)] = 158029, + [SMALL_STATE(2479)] = 158072, + [SMALL_STATE(2480)] = 158115, + [SMALL_STATE(2481)] = 158158, + [SMALL_STATE(2482)] = 158201, + [SMALL_STATE(2483)] = 158244, + [SMALL_STATE(2484)] = 158287, + [SMALL_STATE(2485)] = 158330, + [SMALL_STATE(2486)] = 158373, + [SMALL_STATE(2487)] = 158416, + [SMALL_STATE(2488)] = 158459, + [SMALL_STATE(2489)] = 158502, + [SMALL_STATE(2490)] = 158545, + [SMALL_STATE(2491)] = 158588, + [SMALL_STATE(2492)] = 158625, + [SMALL_STATE(2493)] = 158668, + [SMALL_STATE(2494)] = 158711, + [SMALL_STATE(2495)] = 158754, + [SMALL_STATE(2496)] = 158797, + [SMALL_STATE(2497)] = 158840, + [SMALL_STATE(2498)] = 158883, + [SMALL_STATE(2499)] = 158926, + [SMALL_STATE(2500)] = 158969, + [SMALL_STATE(2501)] = 159012, + [SMALL_STATE(2502)] = 159055, + [SMALL_STATE(2503)] = 159098, + [SMALL_STATE(2504)] = 159141, + [SMALL_STATE(2505)] = 159184, + [SMALL_STATE(2506)] = 159227, + [SMALL_STATE(2507)] = 159270, + [SMALL_STATE(2508)] = 159313, + [SMALL_STATE(2509)] = 159356, + [SMALL_STATE(2510)] = 159399, + [SMALL_STATE(2511)] = 159442, + [SMALL_STATE(2512)] = 159485, + [SMALL_STATE(2513)] = 159528, + [SMALL_STATE(2514)] = 159571, + [SMALL_STATE(2515)] = 159614, + [SMALL_STATE(2516)] = 159657, + [SMALL_STATE(2517)] = 159700, + [SMALL_STATE(2518)] = 159743, + [SMALL_STATE(2519)] = 159786, + [SMALL_STATE(2520)] = 159829, + [SMALL_STATE(2521)] = 159872, + [SMALL_STATE(2522)] = 159915, + [SMALL_STATE(2523)] = 159958, + [SMALL_STATE(2524)] = 160001, + [SMALL_STATE(2525)] = 160044, + [SMALL_STATE(2526)] = 160087, + [SMALL_STATE(2527)] = 160130, + [SMALL_STATE(2528)] = 160173, + [SMALL_STATE(2529)] = 160216, + [SMALL_STATE(2530)] = 160259, + [SMALL_STATE(2531)] = 160302, + [SMALL_STATE(2532)] = 160345, + [SMALL_STATE(2533)] = 160388, + [SMALL_STATE(2534)] = 160431, + [SMALL_STATE(2535)] = 160474, + [SMALL_STATE(2536)] = 160517, + [SMALL_STATE(2537)] = 160560, + [SMALL_STATE(2538)] = 160603, + [SMALL_STATE(2539)] = 160646, + [SMALL_STATE(2540)] = 160689, + [SMALL_STATE(2541)] = 160732, + [SMALL_STATE(2542)] = 160775, + [SMALL_STATE(2543)] = 160818, + [SMALL_STATE(2544)] = 160861, + [SMALL_STATE(2545)] = 160904, + [SMALL_STATE(2546)] = 160947, + [SMALL_STATE(2547)] = 160990, + [SMALL_STATE(2548)] = 161033, + [SMALL_STATE(2549)] = 161076, + [SMALL_STATE(2550)] = 161119, + [SMALL_STATE(2551)] = 161162, [SMALL_STATE(2552)] = 161205, [SMALL_STATE(2553)] = 161241, [SMALL_STATE(2554)] = 161277, @@ -211341,19 +210913,19 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(2579)] = 162177, [SMALL_STATE(2580)] = 162213, [SMALL_STATE(2581)] = 162249, - [SMALL_STATE(2582)] = 162287, - [SMALL_STATE(2583)] = 162323, - [SMALL_STATE(2584)] = 162359, - [SMALL_STATE(2585)] = 162395, - [SMALL_STATE(2586)] = 162431, - [SMALL_STATE(2587)] = 162467, - [SMALL_STATE(2588)] = 162503, - [SMALL_STATE(2589)] = 162539, - [SMALL_STATE(2590)] = 162575, - [SMALL_STATE(2591)] = 162611, - [SMALL_STATE(2592)] = 162647, - [SMALL_STATE(2593)] = 162683, - [SMALL_STATE(2594)] = 162719, + [SMALL_STATE(2582)] = 162285, + [SMALL_STATE(2583)] = 162321, + [SMALL_STATE(2584)] = 162357, + [SMALL_STATE(2585)] = 162393, + [SMALL_STATE(2586)] = 162429, + [SMALL_STATE(2587)] = 162465, + [SMALL_STATE(2588)] = 162501, + [SMALL_STATE(2589)] = 162537, + [SMALL_STATE(2590)] = 162573, + [SMALL_STATE(2591)] = 162609, + [SMALL_STATE(2592)] = 162645, + [SMALL_STATE(2593)] = 162681, + [SMALL_STATE(2594)] = 162717, [SMALL_STATE(2595)] = 162755, [SMALL_STATE(2596)] = 162791, [SMALL_STATE(2597)] = 162827, @@ -211427,83 +210999,83 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(2665)] = 165323, [SMALL_STATE(2666)] = 165362, [SMALL_STATE(2667)] = 165401, - [SMALL_STATE(2668)] = 165438, - [SMALL_STATE(2669)] = 165477, + [SMALL_STATE(2668)] = 165440, + [SMALL_STATE(2669)] = 165479, [SMALL_STATE(2670)] = 165516, [SMALL_STATE(2671)] = 165555, [SMALL_STATE(2672)] = 165594, [SMALL_STATE(2673)] = 165633, [SMALL_STATE(2674)] = 165672, [SMALL_STATE(2675)] = 165706, - [SMALL_STATE(2676)] = 165740, - [SMALL_STATE(2677)] = 165774, - [SMALL_STATE(2678)] = 165808, - [SMALL_STATE(2679)] = 165842, - [SMALL_STATE(2680)] = 165876, + [SMALL_STATE(2676)] = 165758, + [SMALL_STATE(2677)] = 165792, + [SMALL_STATE(2678)] = 165826, + [SMALL_STATE(2679)] = 165860, + [SMALL_STATE(2680)] = 165894, [SMALL_STATE(2681)] = 165928, [SMALL_STATE(2682)] = 165962, [SMALL_STATE(2683)] = 166014, [SMALL_STATE(2684)] = 166066, [SMALL_STATE(2685)] = 166100, - [SMALL_STATE(2686)] = 166152, - [SMALL_STATE(2687)] = 166186, - [SMALL_STATE(2688)] = 166238, - [SMALL_STATE(2689)] = 166272, - [SMALL_STATE(2690)] = 166324, - [SMALL_STATE(2691)] = 166358, - [SMALL_STATE(2692)] = 166392, - [SMALL_STATE(2693)] = 166426, - [SMALL_STATE(2694)] = 166460, - [SMALL_STATE(2695)] = 166494, - [SMALL_STATE(2696)] = 166546, - [SMALL_STATE(2697)] = 166594, - [SMALL_STATE(2698)] = 166646, - [SMALL_STATE(2699)] = 166698, - [SMALL_STATE(2700)] = 166732, - [SMALL_STATE(2701)] = 166766, - [SMALL_STATE(2702)] = 166800, - [SMALL_STATE(2703)] = 166834, - [SMALL_STATE(2704)] = 166868, - [SMALL_STATE(2705)] = 166916, - [SMALL_STATE(2706)] = 166950, - [SMALL_STATE(2707)] = 166984, - [SMALL_STATE(2708)] = 167018, - [SMALL_STATE(2709)] = 167052, - [SMALL_STATE(2710)] = 167086, - [SMALL_STATE(2711)] = 167120, - [SMALL_STATE(2712)] = 167154, - [SMALL_STATE(2713)] = 167188, - [SMALL_STATE(2714)] = 167240, - [SMALL_STATE(2715)] = 167274, - [SMALL_STATE(2716)] = 167308, - [SMALL_STATE(2717)] = 167342, - [SMALL_STATE(2718)] = 167394, - [SMALL_STATE(2719)] = 167428, - [SMALL_STATE(2720)] = 167462, - [SMALL_STATE(2721)] = 167496, - [SMALL_STATE(2722)] = 167530, - [SMALL_STATE(2723)] = 167582, - [SMALL_STATE(2724)] = 167616, - [SMALL_STATE(2725)] = 167668, - [SMALL_STATE(2726)] = 167702, - [SMALL_STATE(2727)] = 167736, - [SMALL_STATE(2728)] = 167770, - [SMALL_STATE(2729)] = 167804, + [SMALL_STATE(2686)] = 166134, + [SMALL_STATE(2687)] = 166168, + [SMALL_STATE(2688)] = 166202, + [SMALL_STATE(2689)] = 166236, + [SMALL_STATE(2690)] = 166270, + [SMALL_STATE(2691)] = 166304, + [SMALL_STATE(2692)] = 166338, + [SMALL_STATE(2693)] = 166372, + [SMALL_STATE(2694)] = 166424, + [SMALL_STATE(2695)] = 166458, + [SMALL_STATE(2696)] = 166492, + [SMALL_STATE(2697)] = 166526, + [SMALL_STATE(2698)] = 166560, + [SMALL_STATE(2699)] = 166594, + [SMALL_STATE(2700)] = 166628, + [SMALL_STATE(2701)] = 166662, + [SMALL_STATE(2702)] = 166714, + [SMALL_STATE(2703)] = 166748, + [SMALL_STATE(2704)] = 166782, + [SMALL_STATE(2705)] = 166830, + [SMALL_STATE(2706)] = 166864, + [SMALL_STATE(2707)] = 166898, + [SMALL_STATE(2708)] = 166932, + [SMALL_STATE(2709)] = 166966, + [SMALL_STATE(2710)] = 167000, + [SMALL_STATE(2711)] = 167034, + [SMALL_STATE(2712)] = 167068, + [SMALL_STATE(2713)] = 167102, + [SMALL_STATE(2714)] = 167136, + [SMALL_STATE(2715)] = 167188, + [SMALL_STATE(2716)] = 167240, + [SMALL_STATE(2717)] = 167274, + [SMALL_STATE(2718)] = 167308, + [SMALL_STATE(2719)] = 167360, + [SMALL_STATE(2720)] = 167412, + [SMALL_STATE(2721)] = 167446, + [SMALL_STATE(2722)] = 167498, + [SMALL_STATE(2723)] = 167550, + [SMALL_STATE(2724)] = 167602, + [SMALL_STATE(2725)] = 167654, + [SMALL_STATE(2726)] = 167688, + [SMALL_STATE(2727)] = 167722, + [SMALL_STATE(2728)] = 167756, + [SMALL_STATE(2729)] = 167790, [SMALL_STATE(2730)] = 167838, - [SMALL_STATE(2731)] = 167872, - [SMALL_STATE(2732)] = 167906, - [SMALL_STATE(2733)] = 167940, + [SMALL_STATE(2731)] = 167890, + [SMALL_STATE(2732)] = 167924, + [SMALL_STATE(2733)] = 167958, [SMALL_STATE(2734)] = 167992, [SMALL_STATE(2735)] = 168044, - [SMALL_STATE(2736)] = 168078, - [SMALL_STATE(2737)] = 168112, - [SMALL_STATE(2738)] = 168146, - [SMALL_STATE(2739)] = 168180, - [SMALL_STATE(2740)] = 168214, - [SMALL_STATE(2741)] = 168248, - [SMALL_STATE(2742)] = 168282, - [SMALL_STATE(2743)] = 168334, - [SMALL_STATE(2744)] = 168386, + [SMALL_STATE(2736)] = 168096, + [SMALL_STATE(2737)] = 168130, + [SMALL_STATE(2738)] = 168164, + [SMALL_STATE(2739)] = 168198, + [SMALL_STATE(2740)] = 168250, + [SMALL_STATE(2741)] = 168284, + [SMALL_STATE(2742)] = 168318, + [SMALL_STATE(2743)] = 168352, + [SMALL_STATE(2744)] = 168404, [SMALL_STATE(2745)] = 168438, [SMALL_STATE(2746)] = 168472, [SMALL_STATE(2747)] = 168518, @@ -211511,22 +211083,22 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(2749)] = 168588, [SMALL_STATE(2750)] = 168619, [SMALL_STATE(2751)] = 168681, - [SMALL_STATE(2752)] = 168747, + [SMALL_STATE(2752)] = 168743, [SMALL_STATE(2753)] = 168809, - [SMALL_STATE(2754)] = 168875, - [SMALL_STATE(2755)] = 168941, - [SMALL_STATE(2756)] = 169003, + [SMALL_STATE(2754)] = 168871, + [SMALL_STATE(2755)] = 168937, + [SMALL_STATE(2756)] = 168999, [SMALL_STATE(2757)] = 169065, [SMALL_STATE(2758)] = 169127, - [SMALL_STATE(2759)] = 169189, - [SMALL_STATE(2760)] = 169251, + [SMALL_STATE(2759)] = 169193, + [SMALL_STATE(2760)] = 169255, [SMALL_STATE(2761)] = 169317, [SMALL_STATE(2762)] = 169379, [SMALL_STATE(2763)] = 169414, - [SMALL_STATE(2764)] = 169449, - [SMALL_STATE(2765)] = 169480, - [SMALL_STATE(2766)] = 169515, - [SMALL_STATE(2767)] = 169548, + [SMALL_STATE(2764)] = 169447, + [SMALL_STATE(2765)] = 169482, + [SMALL_STATE(2766)] = 169517, + [SMALL_STATE(2767)] = 169552, [SMALL_STATE(2768)] = 169583, [SMALL_STATE(2769)] = 169613, [SMALL_STATE(2770)] = 169643, @@ -211559,93 +211131,93 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(2797)] = 170453, [SMALL_STATE(2798)] = 170483, [SMALL_STATE(2799)] = 170513, - [SMALL_STATE(2800)] = 170542, - [SMALL_STATE(2801)] = 170571, - [SMALL_STATE(2802)] = 170600, - [SMALL_STATE(2803)] = 170629, - [SMALL_STATE(2804)] = 170658, - [SMALL_STATE(2805)] = 170721, - [SMALL_STATE(2806)] = 170750, - [SMALL_STATE(2807)] = 170779, - [SMALL_STATE(2808)] = 170808, - [SMALL_STATE(2809)] = 170871, - [SMALL_STATE(2810)] = 170900, - [SMALL_STATE(2811)] = 170963, - [SMALL_STATE(2812)] = 171026, - [SMALL_STATE(2813)] = 171055, - [SMALL_STATE(2814)] = 171118, - [SMALL_STATE(2815)] = 171147, - [SMALL_STATE(2816)] = 171210, - [SMALL_STATE(2817)] = 171239, - [SMALL_STATE(2818)] = 171268, - [SMALL_STATE(2819)] = 171297, - [SMALL_STATE(2820)] = 171326, - [SMALL_STATE(2821)] = 171355, - [SMALL_STATE(2822)] = 171384, - [SMALL_STATE(2823)] = 171413, - [SMALL_STATE(2824)] = 171476, - [SMALL_STATE(2825)] = 171505, - [SMALL_STATE(2826)] = 171534, - [SMALL_STATE(2827)] = 171563, - [SMALL_STATE(2828)] = 171626, - [SMALL_STATE(2829)] = 171689, - [SMALL_STATE(2830)] = 171718, - [SMALL_STATE(2831)] = 171747, - [SMALL_STATE(2832)] = 171776, - [SMALL_STATE(2833)] = 171839, - [SMALL_STATE(2834)] = 171902, - [SMALL_STATE(2835)] = 171965, - [SMALL_STATE(2836)] = 171994, - [SMALL_STATE(2837)] = 172023, - [SMALL_STATE(2838)] = 172052, - [SMALL_STATE(2839)] = 172081, + [SMALL_STATE(2800)] = 170576, + [SMALL_STATE(2801)] = 170605, + [SMALL_STATE(2802)] = 170634, + [SMALL_STATE(2803)] = 170663, + [SMALL_STATE(2804)] = 170726, + [SMALL_STATE(2805)] = 170789, + [SMALL_STATE(2806)] = 170818, + [SMALL_STATE(2807)] = 170847, + [SMALL_STATE(2808)] = 170876, + [SMALL_STATE(2809)] = 170939, + [SMALL_STATE(2810)] = 170968, + [SMALL_STATE(2811)] = 171031, + [SMALL_STATE(2812)] = 171060, + [SMALL_STATE(2813)] = 171123, + [SMALL_STATE(2814)] = 171152, + [SMALL_STATE(2815)] = 171215, + [SMALL_STATE(2816)] = 171244, + [SMALL_STATE(2817)] = 171273, + [SMALL_STATE(2818)] = 171336, + [SMALL_STATE(2819)] = 171399, + [SMALL_STATE(2820)] = 171428, + [SMALL_STATE(2821)] = 171457, + [SMALL_STATE(2822)] = 171486, + [SMALL_STATE(2823)] = 171515, + [SMALL_STATE(2824)] = 171544, + [SMALL_STATE(2825)] = 171607, + [SMALL_STATE(2826)] = 171636, + [SMALL_STATE(2827)] = 171665, + [SMALL_STATE(2828)] = 171694, + [SMALL_STATE(2829)] = 171723, + [SMALL_STATE(2830)] = 171752, + [SMALL_STATE(2831)] = 171815, + [SMALL_STATE(2832)] = 171844, + [SMALL_STATE(2833)] = 171907, + [SMALL_STATE(2834)] = 171936, + [SMALL_STATE(2835)] = 171999, + [SMALL_STATE(2836)] = 172028, + [SMALL_STATE(2837)] = 172057, + [SMALL_STATE(2838)] = 172086, + [SMALL_STATE(2839)] = 172115, [SMALL_STATE(2840)] = 172144, [SMALL_STATE(2841)] = 172207, - [SMALL_STATE(2842)] = 172270, + [SMALL_STATE(2842)] = 172236, [SMALL_STATE(2843)] = 172299, [SMALL_STATE(2844)] = 172328, [SMALL_STATE(2845)] = 172357, [SMALL_STATE(2846)] = 172386, - [SMALL_STATE(2847)] = 172437, - [SMALL_STATE(2848)] = 172488, - [SMALL_STATE(2849)] = 172531, - [SMALL_STATE(2850)] = 172582, + [SMALL_STATE(2847)] = 172435, + [SMALL_STATE(2848)] = 172478, + [SMALL_STATE(2849)] = 172529, + [SMALL_STATE(2850)] = 172580, [SMALL_STATE(2851)] = 172613, [SMALL_STATE(2852)] = 172664, - [SMALL_STATE(2853)] = 172707, - [SMALL_STATE(2854)] = 172740, - [SMALL_STATE(2855)] = 172789, - [SMALL_STATE(2856)] = 172840, - [SMALL_STATE(2857)] = 172871, - [SMALL_STATE(2858)] = 172922, - [SMALL_STATE(2859)] = 172955, - [SMALL_STATE(2860)] = 172988, - [SMALL_STATE(2861)] = 173039, - [SMALL_STATE(2862)] = 173090, - [SMALL_STATE(2863)] = 173141, - [SMALL_STATE(2864)] = 173192, - [SMALL_STATE(2865)] = 173243, - [SMALL_STATE(2866)] = 173294, - [SMALL_STATE(2867)] = 173345, - [SMALL_STATE(2868)] = 173396, - [SMALL_STATE(2869)] = 173429, - [SMALL_STATE(2870)] = 173462, - [SMALL_STATE(2871)] = 173511, - [SMALL_STATE(2872)] = 173562, + [SMALL_STATE(2853)] = 172715, + [SMALL_STATE(2854)] = 172748, + [SMALL_STATE(2855)] = 172799, + [SMALL_STATE(2856)] = 172850, + [SMALL_STATE(2857)] = 172901, + [SMALL_STATE(2858)] = 172952, + [SMALL_STATE(2859)] = 173003, + [SMALL_STATE(2860)] = 173054, + [SMALL_STATE(2861)] = 173087, + [SMALL_STATE(2862)] = 173138, + [SMALL_STATE(2863)] = 173189, + [SMALL_STATE(2864)] = 173240, + [SMALL_STATE(2865)] = 173291, + [SMALL_STATE(2866)] = 173340, + [SMALL_STATE(2867)] = 173371, + [SMALL_STATE(2868)] = 173402, + [SMALL_STATE(2869)] = 173435, + [SMALL_STATE(2870)] = 173486, + [SMALL_STATE(2871)] = 173537, + [SMALL_STATE(2872)] = 173570, [SMALL_STATE(2873)] = 173613, [SMALL_STATE(2874)] = 173643, [SMALL_STATE(2875)] = 173673, [SMALL_STATE(2876)] = 173703, - [SMALL_STATE(2877)] = 173740, - [SMALL_STATE(2878)] = 173765, - [SMALL_STATE(2879)] = 173790, - [SMALL_STATE(2880)] = 173815, - [SMALL_STATE(2881)] = 173840, - [SMALL_STATE(2882)] = 173865, - [SMALL_STATE(2883)] = 173890, - [SMALL_STATE(2884)] = 173915, - [SMALL_STATE(2885)] = 173940, - [SMALL_STATE(2886)] = 173965, + [SMALL_STATE(2877)] = 173730, + [SMALL_STATE(2878)] = 173755, + [SMALL_STATE(2879)] = 173792, + [SMALL_STATE(2880)] = 173817, + [SMALL_STATE(2881)] = 173842, + [SMALL_STATE(2882)] = 173867, + [SMALL_STATE(2883)] = 173892, + [SMALL_STATE(2884)] = 173917, + [SMALL_STATE(2885)] = 173942, + [SMALL_STATE(2886)] = 173967, [SMALL_STATE(2887)] = 173992, [SMALL_STATE(2888)] = 174017, [SMALL_STATE(2889)] = 174062, @@ -211660,92 +211232,92 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(2898)] = 174467, [SMALL_STATE(2899)] = 174512, [SMALL_STATE(2900)] = 174557, - [SMALL_STATE(2901)] = 174581, - [SMALL_STATE(2902)] = 174603, - [SMALL_STATE(2903)] = 174631, + [SMALL_STATE(2901)] = 174583, + [SMALL_STATE(2902)] = 174611, + [SMALL_STATE(2903)] = 174635, [SMALL_STATE(2904)] = 174657, [SMALL_STATE(2905)] = 174678, - [SMALL_STATE(2906)] = 174699, - [SMALL_STATE(2907)] = 174720, - [SMALL_STATE(2908)] = 174741, - [SMALL_STATE(2909)] = 174762, - [SMALL_STATE(2910)] = 174783, - [SMALL_STATE(2911)] = 174804, - [SMALL_STATE(2912)] = 174825, - [SMALL_STATE(2913)] = 174846, - [SMALL_STATE(2914)] = 174867, - [SMALL_STATE(2915)] = 174888, - [SMALL_STATE(2916)] = 174909, - [SMALL_STATE(2917)] = 174930, - [SMALL_STATE(2918)] = 174951, - [SMALL_STATE(2919)] = 174972, - [SMALL_STATE(2920)] = 174993, - [SMALL_STATE(2921)] = 175014, - [SMALL_STATE(2922)] = 175035, - [SMALL_STATE(2923)] = 175056, - [SMALL_STATE(2924)] = 175077, - [SMALL_STATE(2925)] = 175098, - [SMALL_STATE(2926)] = 175119, - [SMALL_STATE(2927)] = 175140, - [SMALL_STATE(2928)] = 175161, - [SMALL_STATE(2929)] = 175182, - [SMALL_STATE(2930)] = 175203, - [SMALL_STATE(2931)] = 175224, - [SMALL_STATE(2932)] = 175245, - [SMALL_STATE(2933)] = 175266, - [SMALL_STATE(2934)] = 175287, - [SMALL_STATE(2935)] = 175308, - [SMALL_STATE(2936)] = 175329, - [SMALL_STATE(2937)] = 175350, - [SMALL_STATE(2938)] = 175371, - [SMALL_STATE(2939)] = 175392, - [SMALL_STATE(2940)] = 175413, - [SMALL_STATE(2941)] = 175434, - [SMALL_STATE(2942)] = 175455, - [SMALL_STATE(2943)] = 175476, - [SMALL_STATE(2944)] = 175497, - [SMALL_STATE(2945)] = 175518, - [SMALL_STATE(2946)] = 175539, - [SMALL_STATE(2947)] = 175560, - [SMALL_STATE(2948)] = 175581, - [SMALL_STATE(2949)] = 175602, - [SMALL_STATE(2950)] = 175623, - [SMALL_STATE(2951)] = 175644, - [SMALL_STATE(2952)] = 175665, - [SMALL_STATE(2953)] = 175686, - [SMALL_STATE(2954)] = 175707, - [SMALL_STATE(2955)] = 175728, - [SMALL_STATE(2956)] = 175749, - [SMALL_STATE(2957)] = 175770, - [SMALL_STATE(2958)] = 175791, - [SMALL_STATE(2959)] = 175812, - [SMALL_STATE(2960)] = 175833, - [SMALL_STATE(2961)] = 175854, - [SMALL_STATE(2962)] = 175875, - [SMALL_STATE(2963)] = 175896, - [SMALL_STATE(2964)] = 175917, - [SMALL_STATE(2965)] = 175938, - [SMALL_STATE(2966)] = 175959, - [SMALL_STATE(2967)] = 175980, - [SMALL_STATE(2968)] = 176001, - [SMALL_STATE(2969)] = 176022, - [SMALL_STATE(2970)] = 176047, - [SMALL_STATE(2971)] = 176072, - [SMALL_STATE(2972)] = 176093, - [SMALL_STATE(2973)] = 176114, + [SMALL_STATE(2906)] = 174703, + [SMALL_STATE(2907)] = 174728, + [SMALL_STATE(2908)] = 174749, + [SMALL_STATE(2909)] = 174770, + [SMALL_STATE(2910)] = 174791, + [SMALL_STATE(2911)] = 174812, + [SMALL_STATE(2912)] = 174833, + [SMALL_STATE(2913)] = 174854, + [SMALL_STATE(2914)] = 174875, + [SMALL_STATE(2915)] = 174896, + [SMALL_STATE(2916)] = 174917, + [SMALL_STATE(2917)] = 174938, + [SMALL_STATE(2918)] = 174959, + [SMALL_STATE(2919)] = 174980, + [SMALL_STATE(2920)] = 175001, + [SMALL_STATE(2921)] = 175022, + [SMALL_STATE(2922)] = 175043, + [SMALL_STATE(2923)] = 175064, + [SMALL_STATE(2924)] = 175085, + [SMALL_STATE(2925)] = 175106, + [SMALL_STATE(2926)] = 175127, + [SMALL_STATE(2927)] = 175148, + [SMALL_STATE(2928)] = 175169, + [SMALL_STATE(2929)] = 175190, + [SMALL_STATE(2930)] = 175211, + [SMALL_STATE(2931)] = 175232, + [SMALL_STATE(2932)] = 175253, + [SMALL_STATE(2933)] = 175274, + [SMALL_STATE(2934)] = 175295, + [SMALL_STATE(2935)] = 175316, + [SMALL_STATE(2936)] = 175337, + [SMALL_STATE(2937)] = 175358, + [SMALL_STATE(2938)] = 175379, + [SMALL_STATE(2939)] = 175400, + [SMALL_STATE(2940)] = 175421, + [SMALL_STATE(2941)] = 175442, + [SMALL_STATE(2942)] = 175463, + [SMALL_STATE(2943)] = 175484, + [SMALL_STATE(2944)] = 175505, + [SMALL_STATE(2945)] = 175526, + [SMALL_STATE(2946)] = 175547, + [SMALL_STATE(2947)] = 175568, + [SMALL_STATE(2948)] = 175589, + [SMALL_STATE(2949)] = 175610, + [SMALL_STATE(2950)] = 175631, + [SMALL_STATE(2951)] = 175652, + [SMALL_STATE(2952)] = 175673, + [SMALL_STATE(2953)] = 175694, + [SMALL_STATE(2954)] = 175715, + [SMALL_STATE(2955)] = 175736, + [SMALL_STATE(2956)] = 175757, + [SMALL_STATE(2957)] = 175778, + [SMALL_STATE(2958)] = 175799, + [SMALL_STATE(2959)] = 175820, + [SMALL_STATE(2960)] = 175841, + [SMALL_STATE(2961)] = 175862, + [SMALL_STATE(2962)] = 175883, + [SMALL_STATE(2963)] = 175904, + [SMALL_STATE(2964)] = 175925, + [SMALL_STATE(2965)] = 175946, + [SMALL_STATE(2966)] = 175967, + [SMALL_STATE(2967)] = 175988, + [SMALL_STATE(2968)] = 176009, + [SMALL_STATE(2969)] = 176034, + [SMALL_STATE(2970)] = 176055, + [SMALL_STATE(2971)] = 176076, + [SMALL_STATE(2972)] = 176097, + [SMALL_STATE(2973)] = 176118, [SMALL_STATE(2974)] = 176139, - [SMALL_STATE(2975)] = 176164, - [SMALL_STATE(2976)] = 176185, - [SMALL_STATE(2977)] = 176206, - [SMALL_STATE(2978)] = 176227, - [SMALL_STATE(2979)] = 176248, - [SMALL_STATE(2980)] = 176269, - [SMALL_STATE(2981)] = 176290, - [SMALL_STATE(2982)] = 176311, - [SMALL_STATE(2983)] = 176336, - [SMALL_STATE(2984)] = 176357, - [SMALL_STATE(2985)] = 176378, - [SMALL_STATE(2986)] = 176399, + [SMALL_STATE(2975)] = 176160, + [SMALL_STATE(2976)] = 176181, + [SMALL_STATE(2977)] = 176202, + [SMALL_STATE(2978)] = 176223, + [SMALL_STATE(2979)] = 176244, + [SMALL_STATE(2980)] = 176265, + [SMALL_STATE(2981)] = 176286, + [SMALL_STATE(2982)] = 176313, + [SMALL_STATE(2983)] = 176334, + [SMALL_STATE(2984)] = 176359, + [SMALL_STATE(2985)] = 176384, + [SMALL_STATE(2986)] = 176405, [SMALL_STATE(2987)] = 176426, [SMALL_STATE(2988)] = 176447, [SMALL_STATE(2989)] = 176468, @@ -211761,429 +211333,429 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(2999)] = 176678, [SMALL_STATE(3000)] = 176698, [SMALL_STATE(3001)] = 176731, - [SMALL_STATE(3002)] = 176760, + [SMALL_STATE(3002)] = 176764, [SMALL_STATE(3003)] = 176793, [SMALL_STATE(3004)] = 176822, [SMALL_STATE(3005)] = 176851, [SMALL_STATE(3006)] = 176884, [SMALL_STATE(3007)] = 176913, - [SMALL_STATE(3008)] = 176942, - [SMALL_STATE(3009)] = 176971, - [SMALL_STATE(3010)] = 177004, + [SMALL_STATE(3008)] = 176946, + [SMALL_STATE(3009)] = 176979, + [SMALL_STATE(3010)] = 177008, [SMALL_STATE(3011)] = 177037, [SMALL_STATE(3012)] = 177066, [SMALL_STATE(3013)] = 177099, - [SMALL_STATE(3014)] = 177132, - [SMALL_STATE(3015)] = 177165, - [SMALL_STATE(3016)] = 177194, - [SMALL_STATE(3017)] = 177227, - [SMALL_STATE(3018)] = 177260, - [SMALL_STATE(3019)] = 177293, - [SMALL_STATE(3020)] = 177322, - [SMALL_STATE(3021)] = 177355, - [SMALL_STATE(3022)] = 177384, - [SMALL_STATE(3023)] = 177417, - [SMALL_STATE(3024)] = 177450, - [SMALL_STATE(3025)] = 177483, - [SMALL_STATE(3026)] = 177512, - [SMALL_STATE(3027)] = 177545, - [SMALL_STATE(3028)] = 177574, - [SMALL_STATE(3029)] = 177603, - [SMALL_STATE(3030)] = 177636, - [SMALL_STATE(3031)] = 177665, - [SMALL_STATE(3032)] = 177698, - [SMALL_STATE(3033)] = 177727, - [SMALL_STATE(3034)] = 177756, - [SMALL_STATE(3035)] = 177789, - [SMALL_STATE(3036)] = 177818, + [SMALL_STATE(3014)] = 177128, + [SMALL_STATE(3015)] = 177161, + [SMALL_STATE(3016)] = 177190, + [SMALL_STATE(3017)] = 177219, + [SMALL_STATE(3018)] = 177252, + [SMALL_STATE(3019)] = 177285, + [SMALL_STATE(3020)] = 177314, + [SMALL_STATE(3021)] = 177347, + [SMALL_STATE(3022)] = 177380, + [SMALL_STATE(3023)] = 177413, + [SMALL_STATE(3024)] = 177442, + [SMALL_STATE(3025)] = 177475, + [SMALL_STATE(3026)] = 177504, + [SMALL_STATE(3027)] = 177533, + [SMALL_STATE(3028)] = 177566, + [SMALL_STATE(3029)] = 177599, + [SMALL_STATE(3030)] = 177628, + [SMALL_STATE(3031)] = 177661, + [SMALL_STATE(3032)] = 177694, + [SMALL_STATE(3033)] = 177723, + [SMALL_STATE(3034)] = 177752, + [SMALL_STATE(3035)] = 177785, + [SMALL_STATE(3036)] = 177814, [SMALL_STATE(3037)] = 177847, [SMALL_STATE(3038)] = 177876, - [SMALL_STATE(3039)] = 177909, - [SMALL_STATE(3040)] = 177930, - [SMALL_STATE(3041)] = 177963, - [SMALL_STATE(3042)] = 177992, - [SMALL_STATE(3043)] = 178021, + [SMALL_STATE(3039)] = 177905, + [SMALL_STATE(3040)] = 177926, + [SMALL_STATE(3041)] = 177947, + [SMALL_STATE(3042)] = 177980, + [SMALL_STATE(3043)] = 178013, [SMALL_STATE(3044)] = 178042, - [SMALL_STATE(3045)] = 178063, - [SMALL_STATE(3046)] = 178096, - [SMALL_STATE(3047)] = 178125, - [SMALL_STATE(3048)] = 178158, - [SMALL_STATE(3049)] = 178191, - [SMALL_STATE(3050)] = 178224, - [SMALL_STATE(3051)] = 178253, - [SMALL_STATE(3052)] = 178282, + [SMALL_STATE(3045)] = 178075, + [SMALL_STATE(3046)] = 178104, + [SMALL_STATE(3047)] = 178133, + [SMALL_STATE(3048)] = 178154, + [SMALL_STATE(3049)] = 178183, + [SMALL_STATE(3050)] = 178212, + [SMALL_STATE(3051)] = 178245, + [SMALL_STATE(3052)] = 178278, [SMALL_STATE(3053)] = 178311, - [SMALL_STATE(3054)] = 178331, - [SMALL_STATE(3055)] = 178349, - [SMALL_STATE(3056)] = 178367, - [SMALL_STATE(3057)] = 178385, - [SMALL_STATE(3058)] = 178403, - [SMALL_STATE(3059)] = 178421, - [SMALL_STATE(3060)] = 178439, - [SMALL_STATE(3061)] = 178457, - [SMALL_STATE(3062)] = 178475, - [SMALL_STATE(3063)] = 178493, - [SMALL_STATE(3064)] = 178511, - [SMALL_STATE(3065)] = 178529, - [SMALL_STATE(3066)] = 178547, - [SMALL_STATE(3067)] = 178577, - [SMALL_STATE(3068)] = 178607, - [SMALL_STATE(3069)] = 178625, - [SMALL_STATE(3070)] = 178655, - [SMALL_STATE(3071)] = 178673, - [SMALL_STATE(3072)] = 178703, - [SMALL_STATE(3073)] = 178725, - [SMALL_STATE(3074)] = 178755, - [SMALL_STATE(3075)] = 178785, - [SMALL_STATE(3076)] = 178803, - [SMALL_STATE(3077)] = 178823, - [SMALL_STATE(3078)] = 178853, - [SMALL_STATE(3079)] = 178873, - [SMALL_STATE(3080)] = 178903, - [SMALL_STATE(3081)] = 178933, - [SMALL_STATE(3082)] = 178951, - [SMALL_STATE(3083)] = 178969, - [SMALL_STATE(3084)] = 178987, - [SMALL_STATE(3085)] = 179005, - [SMALL_STATE(3086)] = 179031, - [SMALL_STATE(3087)] = 179049, - [SMALL_STATE(3088)] = 179067, - [SMALL_STATE(3089)] = 179085, - [SMALL_STATE(3090)] = 179103, - [SMALL_STATE(3091)] = 179133, - [SMALL_STATE(3092)] = 179151, - [SMALL_STATE(3093)] = 179179, - [SMALL_STATE(3094)] = 179197, - [SMALL_STATE(3095)] = 179219, - [SMALL_STATE(3096)] = 179237, - [SMALL_STATE(3097)] = 179255, - [SMALL_STATE(3098)] = 179273, - [SMALL_STATE(3099)] = 179291, + [SMALL_STATE(3054)] = 178329, + [SMALL_STATE(3055)] = 178347, + [SMALL_STATE(3056)] = 178375, + [SMALL_STATE(3057)] = 178393, + [SMALL_STATE(3058)] = 178411, + [SMALL_STATE(3059)] = 178441, + [SMALL_STATE(3060)] = 178459, + [SMALL_STATE(3061)] = 178489, + [SMALL_STATE(3062)] = 178519, + [SMALL_STATE(3063)] = 178537, + [SMALL_STATE(3064)] = 178555, + [SMALL_STATE(3065)] = 178585, + [SMALL_STATE(3066)] = 178615, + [SMALL_STATE(3067)] = 178633, + [SMALL_STATE(3068)] = 178651, + [SMALL_STATE(3069)] = 178677, + [SMALL_STATE(3070)] = 178695, + [SMALL_STATE(3071)] = 178713, + [SMALL_STATE(3072)] = 178743, + [SMALL_STATE(3073)] = 178761, + [SMALL_STATE(3074)] = 178779, + [SMALL_STATE(3075)] = 178797, + [SMALL_STATE(3076)] = 178815, + [SMALL_STATE(3077)] = 178833, + [SMALL_STATE(3078)] = 178851, + [SMALL_STATE(3079)] = 178871, + [SMALL_STATE(3080)] = 178901, + [SMALL_STATE(3081)] = 178919, + [SMALL_STATE(3082)] = 178937, + [SMALL_STATE(3083)] = 178955, + [SMALL_STATE(3084)] = 178973, + [SMALL_STATE(3085)] = 178995, + [SMALL_STATE(3086)] = 179013, + [SMALL_STATE(3087)] = 179031, + [SMALL_STATE(3088)] = 179049, + [SMALL_STATE(3089)] = 179071, + [SMALL_STATE(3090)] = 179089, + [SMALL_STATE(3091)] = 179107, + [SMALL_STATE(3092)] = 179125, + [SMALL_STATE(3093)] = 179143, + [SMALL_STATE(3094)] = 179173, + [SMALL_STATE(3095)] = 179193, + [SMALL_STATE(3096)] = 179213, + [SMALL_STATE(3097)] = 179231, + [SMALL_STATE(3098)] = 179261, + [SMALL_STATE(3099)] = 179279, [SMALL_STATE(3100)] = 179309, - [SMALL_STATE(3101)] = 179327, + [SMALL_STATE(3101)] = 179339, [SMALL_STATE(3102)] = 179357, [SMALL_STATE(3103)] = 179375, [SMALL_STATE(3104)] = 179405, - [SMALL_STATE(3105)] = 179430, + [SMALL_STATE(3105)] = 179436, [SMALL_STATE(3106)] = 179461, - [SMALL_STATE(3107)] = 179492, + [SMALL_STATE(3107)] = 179486, [SMALL_STATE(3108)] = 179517, [SMALL_STATE(3109)] = 179539, [SMALL_STATE(3110)] = 179561, - [SMALL_STATE(3111)] = 179589, - [SMALL_STATE(3112)] = 179617, - [SMALL_STATE(3113)] = 179645, - [SMALL_STATE(3114)] = 179673, - [SMALL_STATE(3115)] = 179701, - [SMALL_STATE(3116)] = 179729, - [SMALL_STATE(3117)] = 179757, - [SMALL_STATE(3118)] = 179785, - [SMALL_STATE(3119)] = 179807, - [SMALL_STATE(3120)] = 179829, - [SMALL_STATE(3121)] = 179851, - [SMALL_STATE(3122)] = 179873, - [SMALL_STATE(3123)] = 179895, - [SMALL_STATE(3124)] = 179917, - [SMALL_STATE(3125)] = 179939, - [SMALL_STATE(3126)] = 179961, - [SMALL_STATE(3127)] = 179983, - [SMALL_STATE(3128)] = 180005, - [SMALL_STATE(3129)] = 180027, - [SMALL_STATE(3130)] = 180049, - [SMALL_STATE(3131)] = 180071, - [SMALL_STATE(3132)] = 180093, - [SMALL_STATE(3133)] = 180115, - [SMALL_STATE(3134)] = 180137, - [SMALL_STATE(3135)] = 180159, - [SMALL_STATE(3136)] = 180181, - [SMALL_STATE(3137)] = 180203, - [SMALL_STATE(3138)] = 180225, - [SMALL_STATE(3139)] = 180247, - [SMALL_STATE(3140)] = 180269, - [SMALL_STATE(3141)] = 180291, - [SMALL_STATE(3142)] = 180313, - [SMALL_STATE(3143)] = 180335, - [SMALL_STATE(3144)] = 180357, - [SMALL_STATE(3145)] = 180379, - [SMALL_STATE(3146)] = 180401, - [SMALL_STATE(3147)] = 180423, - [SMALL_STATE(3148)] = 180445, - [SMALL_STATE(3149)] = 180467, - [SMALL_STATE(3150)] = 180489, - [SMALL_STATE(3151)] = 180511, - [SMALL_STATE(3152)] = 180533, - [SMALL_STATE(3153)] = 180555, - [SMALL_STATE(3154)] = 180577, - [SMALL_STATE(3155)] = 180599, - [SMALL_STATE(3156)] = 180621, - [SMALL_STATE(3157)] = 180643, - [SMALL_STATE(3158)] = 180665, - [SMALL_STATE(3159)] = 180687, - [SMALL_STATE(3160)] = 180709, - [SMALL_STATE(3161)] = 180731, - [SMALL_STATE(3162)] = 180753, - [SMALL_STATE(3163)] = 180775, - [SMALL_STATE(3164)] = 180797, - [SMALL_STATE(3165)] = 180819, - [SMALL_STATE(3166)] = 180841, - [SMALL_STATE(3167)] = 180863, - [SMALL_STATE(3168)] = 180885, - [SMALL_STATE(3169)] = 180907, - [SMALL_STATE(3170)] = 180929, - [SMALL_STATE(3171)] = 180951, - [SMALL_STATE(3172)] = 180973, - [SMALL_STATE(3173)] = 180995, - [SMALL_STATE(3174)] = 181017, - [SMALL_STATE(3175)] = 181039, - [SMALL_STATE(3176)] = 181061, - [SMALL_STATE(3177)] = 181083, - [SMALL_STATE(3178)] = 181105, - [SMALL_STATE(3179)] = 181127, - [SMALL_STATE(3180)] = 181149, - [SMALL_STATE(3181)] = 181171, - [SMALL_STATE(3182)] = 181193, - [SMALL_STATE(3183)] = 181215, - [SMALL_STATE(3184)] = 181237, - [SMALL_STATE(3185)] = 181259, - [SMALL_STATE(3186)] = 181281, - [SMALL_STATE(3187)] = 181303, - [SMALL_STATE(3188)] = 181325, - [SMALL_STATE(3189)] = 181347, - [SMALL_STATE(3190)] = 181369, - [SMALL_STATE(3191)] = 181391, - [SMALL_STATE(3192)] = 181413, - [SMALL_STATE(3193)] = 181435, - [SMALL_STATE(3194)] = 181457, - [SMALL_STATE(3195)] = 181479, - [SMALL_STATE(3196)] = 181501, - [SMALL_STATE(3197)] = 181523, - [SMALL_STATE(3198)] = 181545, - [SMALL_STATE(3199)] = 181567, - [SMALL_STATE(3200)] = 181589, - [SMALL_STATE(3201)] = 181611, - [SMALL_STATE(3202)] = 181633, - [SMALL_STATE(3203)] = 181655, - [SMALL_STATE(3204)] = 181677, - [SMALL_STATE(3205)] = 181699, - [SMALL_STATE(3206)] = 181721, - [SMALL_STATE(3207)] = 181743, - [SMALL_STATE(3208)] = 181765, - [SMALL_STATE(3209)] = 181787, - [SMALL_STATE(3210)] = 181809, - [SMALL_STATE(3211)] = 181831, - [SMALL_STATE(3212)] = 181853, - [SMALL_STATE(3213)] = 181875, - [SMALL_STATE(3214)] = 181897, - [SMALL_STATE(3215)] = 181919, - [SMALL_STATE(3216)] = 181941, - [SMALL_STATE(3217)] = 181963, - [SMALL_STATE(3218)] = 181985, - [SMALL_STATE(3219)] = 182007, - [SMALL_STATE(3220)] = 182029, - [SMALL_STATE(3221)] = 182051, - [SMALL_STATE(3222)] = 182073, - [SMALL_STATE(3223)] = 182095, - [SMALL_STATE(3224)] = 182117, - [SMALL_STATE(3225)] = 182139, - [SMALL_STATE(3226)] = 182161, - [SMALL_STATE(3227)] = 182183, - [SMALL_STATE(3228)] = 182205, - [SMALL_STATE(3229)] = 182227, - [SMALL_STATE(3230)] = 182249, - [SMALL_STATE(3231)] = 182271, - [SMALL_STATE(3232)] = 182293, - [SMALL_STATE(3233)] = 182315, - [SMALL_STATE(3234)] = 182337, - [SMALL_STATE(3235)] = 182359, - [SMALL_STATE(3236)] = 182381, - [SMALL_STATE(3237)] = 182403, - [SMALL_STATE(3238)] = 182425, - [SMALL_STATE(3239)] = 182447, - [SMALL_STATE(3240)] = 182469, - [SMALL_STATE(3241)] = 182491, - [SMALL_STATE(3242)] = 182513, - [SMALL_STATE(3243)] = 182535, - [SMALL_STATE(3244)] = 182557, - [SMALL_STATE(3245)] = 182579, - [SMALL_STATE(3246)] = 182601, - [SMALL_STATE(3247)] = 182623, - [SMALL_STATE(3248)] = 182645, - [SMALL_STATE(3249)] = 182667, - [SMALL_STATE(3250)] = 182689, - [SMALL_STATE(3251)] = 182711, - [SMALL_STATE(3252)] = 182733, - [SMALL_STATE(3253)] = 182755, - [SMALL_STATE(3254)] = 182777, - [SMALL_STATE(3255)] = 182799, - [SMALL_STATE(3256)] = 182821, - [SMALL_STATE(3257)] = 182843, - [SMALL_STATE(3258)] = 182865, - [SMALL_STATE(3259)] = 182887, - [SMALL_STATE(3260)] = 182909, - [SMALL_STATE(3261)] = 182931, - [SMALL_STATE(3262)] = 182953, - [SMALL_STATE(3263)] = 182975, - [SMALL_STATE(3264)] = 182997, - [SMALL_STATE(3265)] = 183019, - [SMALL_STATE(3266)] = 183041, - [SMALL_STATE(3267)] = 183063, - [SMALL_STATE(3268)] = 183085, - [SMALL_STATE(3269)] = 183107, - [SMALL_STATE(3270)] = 183129, - [SMALL_STATE(3271)] = 183151, - [SMALL_STATE(3272)] = 183173, - [SMALL_STATE(3273)] = 183195, - [SMALL_STATE(3274)] = 183217, - [SMALL_STATE(3275)] = 183239, - [SMALL_STATE(3276)] = 183261, - [SMALL_STATE(3277)] = 183283, - [SMALL_STATE(3278)] = 183305, - [SMALL_STATE(3279)] = 183327, - [SMALL_STATE(3280)] = 183349, - [SMALL_STATE(3281)] = 183371, - [SMALL_STATE(3282)] = 183393, - [SMALL_STATE(3283)] = 183415, - [SMALL_STATE(3284)] = 183437, - [SMALL_STATE(3285)] = 183459, - [SMALL_STATE(3286)] = 183481, - [SMALL_STATE(3287)] = 183503, - [SMALL_STATE(3288)] = 183525, - [SMALL_STATE(3289)] = 183547, - [SMALL_STATE(3290)] = 183569, - [SMALL_STATE(3291)] = 183591, - [SMALL_STATE(3292)] = 183613, - [SMALL_STATE(3293)] = 183635, - [SMALL_STATE(3294)] = 183657, - [SMALL_STATE(3295)] = 183679, - [SMALL_STATE(3296)] = 183701, - [SMALL_STATE(3297)] = 183723, - [SMALL_STATE(3298)] = 183745, - [SMALL_STATE(3299)] = 183767, - [SMALL_STATE(3300)] = 183789, - [SMALL_STATE(3301)] = 183811, - [SMALL_STATE(3302)] = 183833, - [SMALL_STATE(3303)] = 183855, - [SMALL_STATE(3304)] = 183877, - [SMALL_STATE(3305)] = 183899, - [SMALL_STATE(3306)] = 183921, - [SMALL_STATE(3307)] = 183943, - [SMALL_STATE(3308)] = 183965, - [SMALL_STATE(3309)] = 183987, - [SMALL_STATE(3310)] = 184009, - [SMALL_STATE(3311)] = 184031, - [SMALL_STATE(3312)] = 184053, - [SMALL_STATE(3313)] = 184075, - [SMALL_STATE(3314)] = 184097, - [SMALL_STATE(3315)] = 184119, - [SMALL_STATE(3316)] = 184141, - [SMALL_STATE(3317)] = 184163, - [SMALL_STATE(3318)] = 184185, - [SMALL_STATE(3319)] = 184207, - [SMALL_STATE(3320)] = 184229, - [SMALL_STATE(3321)] = 184251, - [SMALL_STATE(3322)] = 184273, - [SMALL_STATE(3323)] = 184295, - [SMALL_STATE(3324)] = 184317, - [SMALL_STATE(3325)] = 184339, - [SMALL_STATE(3326)] = 184361, - [SMALL_STATE(3327)] = 184383, - [SMALL_STATE(3328)] = 184405, - [SMALL_STATE(3329)] = 184427, - [SMALL_STATE(3330)] = 184449, - [SMALL_STATE(3331)] = 184471, - [SMALL_STATE(3332)] = 184493, - [SMALL_STATE(3333)] = 184515, - [SMALL_STATE(3334)] = 184537, - [SMALL_STATE(3335)] = 184559, - [SMALL_STATE(3336)] = 184581, - [SMALL_STATE(3337)] = 184603, - [SMALL_STATE(3338)] = 184625, - [SMALL_STATE(3339)] = 184647, - [SMALL_STATE(3340)] = 184669, - [SMALL_STATE(3341)] = 184691, - [SMALL_STATE(3342)] = 184713, - [SMALL_STATE(3343)] = 184735, - [SMALL_STATE(3344)] = 184757, - [SMALL_STATE(3345)] = 184779, - [SMALL_STATE(3346)] = 184801, - [SMALL_STATE(3347)] = 184823, - [SMALL_STATE(3348)] = 184845, - [SMALL_STATE(3349)] = 184867, - [SMALL_STATE(3350)] = 184889, - [SMALL_STATE(3351)] = 184911, - [SMALL_STATE(3352)] = 184933, - [SMALL_STATE(3353)] = 184955, - [SMALL_STATE(3354)] = 184977, - [SMALL_STATE(3355)] = 184999, - [SMALL_STATE(3356)] = 185021, - [SMALL_STATE(3357)] = 185043, - [SMALL_STATE(3358)] = 185065, - [SMALL_STATE(3359)] = 185087, - [SMALL_STATE(3360)] = 185109, - [SMALL_STATE(3361)] = 185131, - [SMALL_STATE(3362)] = 185153, - [SMALL_STATE(3363)] = 185175, - [SMALL_STATE(3364)] = 185197, - [SMALL_STATE(3365)] = 185219, - [SMALL_STATE(3366)] = 185241, - [SMALL_STATE(3367)] = 185263, - [SMALL_STATE(3368)] = 185285, - [SMALL_STATE(3369)] = 185307, - [SMALL_STATE(3370)] = 185329, - [SMALL_STATE(3371)] = 185351, - [SMALL_STATE(3372)] = 185373, - [SMALL_STATE(3373)] = 185395, - [SMALL_STATE(3374)] = 185417, - [SMALL_STATE(3375)] = 185439, - [SMALL_STATE(3376)] = 185461, - [SMALL_STATE(3377)] = 185483, - [SMALL_STATE(3378)] = 185505, - [SMALL_STATE(3379)] = 185527, - [SMALL_STATE(3380)] = 185549, - [SMALL_STATE(3381)] = 185571, - [SMALL_STATE(3382)] = 185593, - [SMALL_STATE(3383)] = 185615, - [SMALL_STATE(3384)] = 185637, - [SMALL_STATE(3385)] = 185659, - [SMALL_STATE(3386)] = 185681, - [SMALL_STATE(3387)] = 185703, - [SMALL_STATE(3388)] = 185725, - [SMALL_STATE(3389)] = 185747, - [SMALL_STATE(3390)] = 185769, - [SMALL_STATE(3391)] = 185791, - [SMALL_STATE(3392)] = 185813, - [SMALL_STATE(3393)] = 185835, - [SMALL_STATE(3394)] = 185857, - [SMALL_STATE(3395)] = 185879, - [SMALL_STATE(3396)] = 185901, - [SMALL_STATE(3397)] = 185923, - [SMALL_STATE(3398)] = 185945, - [SMALL_STATE(3399)] = 185967, - [SMALL_STATE(3400)] = 185989, - [SMALL_STATE(3401)] = 186011, - [SMALL_STATE(3402)] = 186033, - [SMALL_STATE(3403)] = 186055, - [SMALL_STATE(3404)] = 186077, - [SMALL_STATE(3405)] = 186099, - [SMALL_STATE(3406)] = 186121, - [SMALL_STATE(3407)] = 186143, - [SMALL_STATE(3408)] = 186159, - [SMALL_STATE(3409)] = 186175, - [SMALL_STATE(3410)] = 186197, - [SMALL_STATE(3411)] = 186219, - [SMALL_STATE(3412)] = 186241, - [SMALL_STATE(3413)] = 186263, - [SMALL_STATE(3414)] = 186285, - [SMALL_STATE(3415)] = 186307, - [SMALL_STATE(3416)] = 186329, - [SMALL_STATE(3417)] = 186351, - [SMALL_STATE(3418)] = 186373, - [SMALL_STATE(3419)] = 186395, - [SMALL_STATE(3420)] = 186417, - [SMALL_STATE(3421)] = 186439, - [SMALL_STATE(3422)] = 186461, + [SMALL_STATE(3111)] = 179583, + [SMALL_STATE(3112)] = 179605, + [SMALL_STATE(3113)] = 179627, + [SMALL_STATE(3114)] = 179649, + [SMALL_STATE(3115)] = 179671, + [SMALL_STATE(3116)] = 179693, + [SMALL_STATE(3117)] = 179715, + [SMALL_STATE(3118)] = 179737, + [SMALL_STATE(3119)] = 179753, + [SMALL_STATE(3120)] = 179775, + [SMALL_STATE(3121)] = 179797, + [SMALL_STATE(3122)] = 179819, + [SMALL_STATE(3123)] = 179841, + [SMALL_STATE(3124)] = 179863, + [SMALL_STATE(3125)] = 179885, + [SMALL_STATE(3126)] = 179907, + [SMALL_STATE(3127)] = 179929, + [SMALL_STATE(3128)] = 179951, + [SMALL_STATE(3129)] = 179973, + [SMALL_STATE(3130)] = 179995, + [SMALL_STATE(3131)] = 180017, + [SMALL_STATE(3132)] = 180039, + [SMALL_STATE(3133)] = 180061, + [SMALL_STATE(3134)] = 180083, + [SMALL_STATE(3135)] = 180099, + [SMALL_STATE(3136)] = 180121, + [SMALL_STATE(3137)] = 180143, + [SMALL_STATE(3138)] = 180165, + [SMALL_STATE(3139)] = 180187, + [SMALL_STATE(3140)] = 180209, + [SMALL_STATE(3141)] = 180231, + [SMALL_STATE(3142)] = 180253, + [SMALL_STATE(3143)] = 180275, + [SMALL_STATE(3144)] = 180297, + [SMALL_STATE(3145)] = 180319, + [SMALL_STATE(3146)] = 180341, + [SMALL_STATE(3147)] = 180363, + [SMALL_STATE(3148)] = 180385, + [SMALL_STATE(3149)] = 180407, + [SMALL_STATE(3150)] = 180429, + [SMALL_STATE(3151)] = 180451, + [SMALL_STATE(3152)] = 180473, + [SMALL_STATE(3153)] = 180495, + [SMALL_STATE(3154)] = 180517, + [SMALL_STATE(3155)] = 180539, + [SMALL_STATE(3156)] = 180561, + [SMALL_STATE(3157)] = 180583, + [SMALL_STATE(3158)] = 180605, + [SMALL_STATE(3159)] = 180627, + [SMALL_STATE(3160)] = 180649, + [SMALL_STATE(3161)] = 180671, + [SMALL_STATE(3162)] = 180693, + [SMALL_STATE(3163)] = 180715, + [SMALL_STATE(3164)] = 180737, + [SMALL_STATE(3165)] = 180759, + [SMALL_STATE(3166)] = 180781, + [SMALL_STATE(3167)] = 180803, + [SMALL_STATE(3168)] = 180825, + [SMALL_STATE(3169)] = 180847, + [SMALL_STATE(3170)] = 180869, + [SMALL_STATE(3171)] = 180891, + [SMALL_STATE(3172)] = 180913, + [SMALL_STATE(3173)] = 180935, + [SMALL_STATE(3174)] = 180957, + [SMALL_STATE(3175)] = 180979, + [SMALL_STATE(3176)] = 181001, + [SMALL_STATE(3177)] = 181023, + [SMALL_STATE(3178)] = 181045, + [SMALL_STATE(3179)] = 181067, + [SMALL_STATE(3180)] = 181089, + [SMALL_STATE(3181)] = 181111, + [SMALL_STATE(3182)] = 181133, + [SMALL_STATE(3183)] = 181155, + [SMALL_STATE(3184)] = 181177, + [SMALL_STATE(3185)] = 181199, + [SMALL_STATE(3186)] = 181221, + [SMALL_STATE(3187)] = 181243, + [SMALL_STATE(3188)] = 181265, + [SMALL_STATE(3189)] = 181287, + [SMALL_STATE(3190)] = 181309, + [SMALL_STATE(3191)] = 181331, + [SMALL_STATE(3192)] = 181353, + [SMALL_STATE(3193)] = 181375, + [SMALL_STATE(3194)] = 181397, + [SMALL_STATE(3195)] = 181419, + [SMALL_STATE(3196)] = 181441, + [SMALL_STATE(3197)] = 181463, + [SMALL_STATE(3198)] = 181485, + [SMALL_STATE(3199)] = 181507, + [SMALL_STATE(3200)] = 181529, + [SMALL_STATE(3201)] = 181551, + [SMALL_STATE(3202)] = 181573, + [SMALL_STATE(3203)] = 181595, + [SMALL_STATE(3204)] = 181617, + [SMALL_STATE(3205)] = 181639, + [SMALL_STATE(3206)] = 181661, + [SMALL_STATE(3207)] = 181683, + [SMALL_STATE(3208)] = 181705, + [SMALL_STATE(3209)] = 181727, + [SMALL_STATE(3210)] = 181749, + [SMALL_STATE(3211)] = 181771, + [SMALL_STATE(3212)] = 181799, + [SMALL_STATE(3213)] = 181821, + [SMALL_STATE(3214)] = 181843, + [SMALL_STATE(3215)] = 181865, + [SMALL_STATE(3216)] = 181887, + [SMALL_STATE(3217)] = 181909, + [SMALL_STATE(3218)] = 181931, + [SMALL_STATE(3219)] = 181953, + [SMALL_STATE(3220)] = 181975, + [SMALL_STATE(3221)] = 181997, + [SMALL_STATE(3222)] = 182019, + [SMALL_STATE(3223)] = 182041, + [SMALL_STATE(3224)] = 182063, + [SMALL_STATE(3225)] = 182085, + [SMALL_STATE(3226)] = 182107, + [SMALL_STATE(3227)] = 182129, + [SMALL_STATE(3228)] = 182151, + [SMALL_STATE(3229)] = 182173, + [SMALL_STATE(3230)] = 182195, + [SMALL_STATE(3231)] = 182217, + [SMALL_STATE(3232)] = 182239, + [SMALL_STATE(3233)] = 182261, + [SMALL_STATE(3234)] = 182283, + [SMALL_STATE(3235)] = 182305, + [SMALL_STATE(3236)] = 182327, + [SMALL_STATE(3237)] = 182349, + [SMALL_STATE(3238)] = 182371, + [SMALL_STATE(3239)] = 182393, + [SMALL_STATE(3240)] = 182415, + [SMALL_STATE(3241)] = 182437, + [SMALL_STATE(3242)] = 182459, + [SMALL_STATE(3243)] = 182481, + [SMALL_STATE(3244)] = 182503, + [SMALL_STATE(3245)] = 182525, + [SMALL_STATE(3246)] = 182547, + [SMALL_STATE(3247)] = 182569, + [SMALL_STATE(3248)] = 182591, + [SMALL_STATE(3249)] = 182613, + [SMALL_STATE(3250)] = 182635, + [SMALL_STATE(3251)] = 182657, + [SMALL_STATE(3252)] = 182679, + [SMALL_STATE(3253)] = 182701, + [SMALL_STATE(3254)] = 182723, + [SMALL_STATE(3255)] = 182745, + [SMALL_STATE(3256)] = 182767, + [SMALL_STATE(3257)] = 182789, + [SMALL_STATE(3258)] = 182811, + [SMALL_STATE(3259)] = 182833, + [SMALL_STATE(3260)] = 182855, + [SMALL_STATE(3261)] = 182877, + [SMALL_STATE(3262)] = 182899, + [SMALL_STATE(3263)] = 182921, + [SMALL_STATE(3264)] = 182943, + [SMALL_STATE(3265)] = 182965, + [SMALL_STATE(3266)] = 182987, + [SMALL_STATE(3267)] = 183009, + [SMALL_STATE(3268)] = 183031, + [SMALL_STATE(3269)] = 183053, + [SMALL_STATE(3270)] = 183075, + [SMALL_STATE(3271)] = 183097, + [SMALL_STATE(3272)] = 183119, + [SMALL_STATE(3273)] = 183141, + [SMALL_STATE(3274)] = 183163, + [SMALL_STATE(3275)] = 183185, + [SMALL_STATE(3276)] = 183207, + [SMALL_STATE(3277)] = 183229, + [SMALL_STATE(3278)] = 183251, + [SMALL_STATE(3279)] = 183273, + [SMALL_STATE(3280)] = 183295, + [SMALL_STATE(3281)] = 183323, + [SMALL_STATE(3282)] = 183345, + [SMALL_STATE(3283)] = 183367, + [SMALL_STATE(3284)] = 183389, + [SMALL_STATE(3285)] = 183411, + [SMALL_STATE(3286)] = 183433, + [SMALL_STATE(3287)] = 183455, + [SMALL_STATE(3288)] = 183477, + [SMALL_STATE(3289)] = 183499, + [SMALL_STATE(3290)] = 183521, + [SMALL_STATE(3291)] = 183543, + [SMALL_STATE(3292)] = 183565, + [SMALL_STATE(3293)] = 183587, + [SMALL_STATE(3294)] = 183609, + [SMALL_STATE(3295)] = 183631, + [SMALL_STATE(3296)] = 183653, + [SMALL_STATE(3297)] = 183675, + [SMALL_STATE(3298)] = 183697, + [SMALL_STATE(3299)] = 183719, + [SMALL_STATE(3300)] = 183741, + [SMALL_STATE(3301)] = 183763, + [SMALL_STATE(3302)] = 183785, + [SMALL_STATE(3303)] = 183807, + [SMALL_STATE(3304)] = 183829, + [SMALL_STATE(3305)] = 183851, + [SMALL_STATE(3306)] = 183873, + [SMALL_STATE(3307)] = 183895, + [SMALL_STATE(3308)] = 183917, + [SMALL_STATE(3309)] = 183939, + [SMALL_STATE(3310)] = 183961, + [SMALL_STATE(3311)] = 183983, + [SMALL_STATE(3312)] = 184005, + [SMALL_STATE(3313)] = 184027, + [SMALL_STATE(3314)] = 184049, + [SMALL_STATE(3315)] = 184071, + [SMALL_STATE(3316)] = 184093, + [SMALL_STATE(3317)] = 184115, + [SMALL_STATE(3318)] = 184137, + [SMALL_STATE(3319)] = 184159, + [SMALL_STATE(3320)] = 184181, + [SMALL_STATE(3321)] = 184203, + [SMALL_STATE(3322)] = 184225, + [SMALL_STATE(3323)] = 184247, + [SMALL_STATE(3324)] = 184269, + [SMALL_STATE(3325)] = 184291, + [SMALL_STATE(3326)] = 184313, + [SMALL_STATE(3327)] = 184335, + [SMALL_STATE(3328)] = 184357, + [SMALL_STATE(3329)] = 184379, + [SMALL_STATE(3330)] = 184401, + [SMALL_STATE(3331)] = 184423, + [SMALL_STATE(3332)] = 184445, + [SMALL_STATE(3333)] = 184467, + [SMALL_STATE(3334)] = 184489, + [SMALL_STATE(3335)] = 184511, + [SMALL_STATE(3336)] = 184533, + [SMALL_STATE(3337)] = 184555, + [SMALL_STATE(3338)] = 184577, + [SMALL_STATE(3339)] = 184599, + [SMALL_STATE(3340)] = 184621, + [SMALL_STATE(3341)] = 184643, + [SMALL_STATE(3342)] = 184665, + [SMALL_STATE(3343)] = 184687, + [SMALL_STATE(3344)] = 184709, + [SMALL_STATE(3345)] = 184731, + [SMALL_STATE(3346)] = 184753, + [SMALL_STATE(3347)] = 184775, + [SMALL_STATE(3348)] = 184797, + [SMALL_STATE(3349)] = 184819, + [SMALL_STATE(3350)] = 184841, + [SMALL_STATE(3351)] = 184863, + [SMALL_STATE(3352)] = 184885, + [SMALL_STATE(3353)] = 184907, + [SMALL_STATE(3354)] = 184929, + [SMALL_STATE(3355)] = 184951, + [SMALL_STATE(3356)] = 184973, + [SMALL_STATE(3357)] = 184995, + [SMALL_STATE(3358)] = 185017, + [SMALL_STATE(3359)] = 185039, + [SMALL_STATE(3360)] = 185061, + [SMALL_STATE(3361)] = 185083, + [SMALL_STATE(3362)] = 185105, + [SMALL_STATE(3363)] = 185127, + [SMALL_STATE(3364)] = 185149, + [SMALL_STATE(3365)] = 185171, + [SMALL_STATE(3366)] = 185193, + [SMALL_STATE(3367)] = 185215, + [SMALL_STATE(3368)] = 185237, + [SMALL_STATE(3369)] = 185259, + [SMALL_STATE(3370)] = 185281, + [SMALL_STATE(3371)] = 185303, + [SMALL_STATE(3372)] = 185325, + [SMALL_STATE(3373)] = 185347, + [SMALL_STATE(3374)] = 185369, + [SMALL_STATE(3375)] = 185391, + [SMALL_STATE(3376)] = 185413, + [SMALL_STATE(3377)] = 185435, + [SMALL_STATE(3378)] = 185457, + [SMALL_STATE(3379)] = 185479, + [SMALL_STATE(3380)] = 185501, + [SMALL_STATE(3381)] = 185523, + [SMALL_STATE(3382)] = 185545, + [SMALL_STATE(3383)] = 185567, + [SMALL_STATE(3384)] = 185589, + [SMALL_STATE(3385)] = 185611, + [SMALL_STATE(3386)] = 185633, + [SMALL_STATE(3387)] = 185655, + [SMALL_STATE(3388)] = 185677, + [SMALL_STATE(3389)] = 185699, + [SMALL_STATE(3390)] = 185721, + [SMALL_STATE(3391)] = 185743, + [SMALL_STATE(3392)] = 185765, + [SMALL_STATE(3393)] = 185787, + [SMALL_STATE(3394)] = 185809, + [SMALL_STATE(3395)] = 185831, + [SMALL_STATE(3396)] = 185853, + [SMALL_STATE(3397)] = 185875, + [SMALL_STATE(3398)] = 185897, + [SMALL_STATE(3399)] = 185919, + [SMALL_STATE(3400)] = 185941, + [SMALL_STATE(3401)] = 185963, + [SMALL_STATE(3402)] = 185985, + [SMALL_STATE(3403)] = 186007, + [SMALL_STATE(3404)] = 186029, + [SMALL_STATE(3405)] = 186051, + [SMALL_STATE(3406)] = 186073, + [SMALL_STATE(3407)] = 186095, + [SMALL_STATE(3408)] = 186117, + [SMALL_STATE(3409)] = 186139, + [SMALL_STATE(3410)] = 186161, + [SMALL_STATE(3411)] = 186183, + [SMALL_STATE(3412)] = 186205, + [SMALL_STATE(3413)] = 186227, + [SMALL_STATE(3414)] = 186249, + [SMALL_STATE(3415)] = 186271, + [SMALL_STATE(3416)] = 186293, + [SMALL_STATE(3417)] = 186315, + [SMALL_STATE(3418)] = 186343, + [SMALL_STATE(3419)] = 186371, + [SMALL_STATE(3420)] = 186399, + [SMALL_STATE(3421)] = 186427, + [SMALL_STATE(3422)] = 186455, [SMALL_STATE(3423)] = 186483, - [SMALL_STATE(3424)] = 186505, + [SMALL_STATE(3424)] = 186511, [SMALL_STATE(3425)] = 186533, [SMALL_STATE(3426)] = 186552, [SMALL_STATE(3427)] = 186571, @@ -212677,98 +212249,98 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(3915)] = 195813, [SMALL_STATE(3916)] = 195831, [SMALL_STATE(3917)] = 195849, - [SMALL_STATE(3918)] = 195867, - [SMALL_STATE(3919)] = 195885, - [SMALL_STATE(3920)] = 195903, - [SMALL_STATE(3921)] = 195921, - [SMALL_STATE(3922)] = 195939, - [SMALL_STATE(3923)] = 195957, - [SMALL_STATE(3924)] = 195975, - [SMALL_STATE(3925)] = 195993, - [SMALL_STATE(3926)] = 196011, - [SMALL_STATE(3927)] = 196029, - [SMALL_STATE(3928)] = 196047, - [SMALL_STATE(3929)] = 196065, - [SMALL_STATE(3930)] = 196083, - [SMALL_STATE(3931)] = 196101, - [SMALL_STATE(3932)] = 196119, - [SMALL_STATE(3933)] = 196137, - [SMALL_STATE(3934)] = 196155, - [SMALL_STATE(3935)] = 196173, - [SMALL_STATE(3936)] = 196191, - [SMALL_STATE(3937)] = 196209, - [SMALL_STATE(3938)] = 196227, - [SMALL_STATE(3939)] = 196245, - [SMALL_STATE(3940)] = 196263, - [SMALL_STATE(3941)] = 196281, - [SMALL_STATE(3942)] = 196299, - [SMALL_STATE(3943)] = 196317, - [SMALL_STATE(3944)] = 196335, - [SMALL_STATE(3945)] = 196353, - [SMALL_STATE(3946)] = 196371, - [SMALL_STATE(3947)] = 196389, - [SMALL_STATE(3948)] = 196407, - [SMALL_STATE(3949)] = 196425, - [SMALL_STATE(3950)] = 196443, - [SMALL_STATE(3951)] = 196461, - [SMALL_STATE(3952)] = 196479, - [SMALL_STATE(3953)] = 196497, - [SMALL_STATE(3954)] = 196515, - [SMALL_STATE(3955)] = 196533, - [SMALL_STATE(3956)] = 196551, - [SMALL_STATE(3957)] = 196569, - [SMALL_STATE(3958)] = 196587, - [SMALL_STATE(3959)] = 196605, - [SMALL_STATE(3960)] = 196623, - [SMALL_STATE(3961)] = 196641, - [SMALL_STATE(3962)] = 196659, - [SMALL_STATE(3963)] = 196677, - [SMALL_STATE(3964)] = 196695, - [SMALL_STATE(3965)] = 196713, - [SMALL_STATE(3966)] = 196731, - [SMALL_STATE(3967)] = 196749, - [SMALL_STATE(3968)] = 196767, - [SMALL_STATE(3969)] = 196785, - [SMALL_STATE(3970)] = 196803, - [SMALL_STATE(3971)] = 196821, - [SMALL_STATE(3972)] = 196839, - [SMALL_STATE(3973)] = 196857, - [SMALL_STATE(3974)] = 196875, - [SMALL_STATE(3975)] = 196893, - [SMALL_STATE(3976)] = 196911, - [SMALL_STATE(3977)] = 196929, - [SMALL_STATE(3978)] = 196947, - [SMALL_STATE(3979)] = 196965, - [SMALL_STATE(3980)] = 196983, - [SMALL_STATE(3981)] = 197001, - [SMALL_STATE(3982)] = 197019, - [SMALL_STATE(3983)] = 197037, - [SMALL_STATE(3984)] = 197055, - [SMALL_STATE(3985)] = 197073, - [SMALL_STATE(3986)] = 197091, - [SMALL_STATE(3987)] = 197109, - [SMALL_STATE(3988)] = 197127, - [SMALL_STATE(3989)] = 197145, - [SMALL_STATE(3990)] = 197163, - [SMALL_STATE(3991)] = 197181, - [SMALL_STATE(3992)] = 197199, - [SMALL_STATE(3993)] = 197217, - [SMALL_STATE(3994)] = 197235, - [SMALL_STATE(3995)] = 197253, - [SMALL_STATE(3996)] = 197271, - [SMALL_STATE(3997)] = 197289, - [SMALL_STATE(3998)] = 197307, + [SMALL_STATE(3918)] = 195869, + [SMALL_STATE(3919)] = 195887, + [SMALL_STATE(3920)] = 195905, + [SMALL_STATE(3921)] = 195923, + [SMALL_STATE(3922)] = 195941, + [SMALL_STATE(3923)] = 195959, + [SMALL_STATE(3924)] = 195977, + [SMALL_STATE(3925)] = 195995, + [SMALL_STATE(3926)] = 196013, + [SMALL_STATE(3927)] = 196031, + [SMALL_STATE(3928)] = 196049, + [SMALL_STATE(3929)] = 196067, + [SMALL_STATE(3930)] = 196085, + [SMALL_STATE(3931)] = 196103, + [SMALL_STATE(3932)] = 196121, + [SMALL_STATE(3933)] = 196139, + [SMALL_STATE(3934)] = 196157, + [SMALL_STATE(3935)] = 196175, + [SMALL_STATE(3936)] = 196193, + [SMALL_STATE(3937)] = 196211, + [SMALL_STATE(3938)] = 196229, + [SMALL_STATE(3939)] = 196247, + [SMALL_STATE(3940)] = 196265, + [SMALL_STATE(3941)] = 196283, + [SMALL_STATE(3942)] = 196301, + [SMALL_STATE(3943)] = 196319, + [SMALL_STATE(3944)] = 196337, + [SMALL_STATE(3945)] = 196355, + [SMALL_STATE(3946)] = 196373, + [SMALL_STATE(3947)] = 196391, + [SMALL_STATE(3948)] = 196409, + [SMALL_STATE(3949)] = 196427, + [SMALL_STATE(3950)] = 196445, + [SMALL_STATE(3951)] = 196463, + [SMALL_STATE(3952)] = 196481, + [SMALL_STATE(3953)] = 196499, + [SMALL_STATE(3954)] = 196517, + [SMALL_STATE(3955)] = 196535, + [SMALL_STATE(3956)] = 196553, + [SMALL_STATE(3957)] = 196571, + [SMALL_STATE(3958)] = 196589, + [SMALL_STATE(3959)] = 196607, + [SMALL_STATE(3960)] = 196625, + [SMALL_STATE(3961)] = 196643, + [SMALL_STATE(3962)] = 196661, + [SMALL_STATE(3963)] = 196679, + [SMALL_STATE(3964)] = 196697, + [SMALL_STATE(3965)] = 196715, + [SMALL_STATE(3966)] = 196733, + [SMALL_STATE(3967)] = 196751, + [SMALL_STATE(3968)] = 196769, + [SMALL_STATE(3969)] = 196787, + [SMALL_STATE(3970)] = 196805, + [SMALL_STATE(3971)] = 196823, + [SMALL_STATE(3972)] = 196841, + [SMALL_STATE(3973)] = 196859, + [SMALL_STATE(3974)] = 196877, + [SMALL_STATE(3975)] = 196895, + [SMALL_STATE(3976)] = 196913, + [SMALL_STATE(3977)] = 196931, + [SMALL_STATE(3978)] = 196949, + [SMALL_STATE(3979)] = 196967, + [SMALL_STATE(3980)] = 196985, + [SMALL_STATE(3981)] = 197003, + [SMALL_STATE(3982)] = 197021, + [SMALL_STATE(3983)] = 197039, + [SMALL_STATE(3984)] = 197057, + [SMALL_STATE(3985)] = 197075, + [SMALL_STATE(3986)] = 197093, + [SMALL_STATE(3987)] = 197111, + [SMALL_STATE(3988)] = 197129, + [SMALL_STATE(3989)] = 197147, + [SMALL_STATE(3990)] = 197165, + [SMALL_STATE(3991)] = 197183, + [SMALL_STATE(3992)] = 197201, + [SMALL_STATE(3993)] = 197219, + [SMALL_STATE(3994)] = 197237, + [SMALL_STATE(3995)] = 197255, + [SMALL_STATE(3996)] = 197273, + [SMALL_STATE(3997)] = 197291, + [SMALL_STATE(3998)] = 197309, [SMALL_STATE(3999)] = 197327, [SMALL_STATE(4000)] = 197340, - [SMALL_STATE(4001)] = 197353, - [SMALL_STATE(4002)] = 197366, - [SMALL_STATE(4003)] = 197385, + [SMALL_STATE(4001)] = 197357, + [SMALL_STATE(4002)] = 197370, + [SMALL_STATE(4003)] = 197389, [SMALL_STATE(4004)] = 197402, [SMALL_STATE(4005)] = 197415, [SMALL_STATE(4006)] = 197428, [SMALL_STATE(4007)] = 197441, [SMALL_STATE(4008)] = 197454, - [SMALL_STATE(4009)] = 197471, + [SMALL_STATE(4009)] = 197467, [SMALL_STATE(4010)] = 197484, [SMALL_STATE(4011)] = 197497, [SMALL_STATE(4012)] = 197510, @@ -212930,5846 +212502,5850 @@ static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source, 0), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4116), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4116), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), + [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source, 0, 0, 0), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4110), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3943), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3981), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4155), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), - [59] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 84), REDUCE(sym_with_clause, 6, .production_id = 86), SHIFT(990), - [63] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 84), REDUCE(sym_with_clause, 6, .production_id = 86), SHIFT(638), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), - [73] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 84), REDUCE(sym_with_clause, 6, .production_id = 86), SHIFT(4029), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2440), - [83] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 84), REDUCE(sym_with_clause, 6, .production_id = 86), SHIFT(2758), - [87] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 84), REDUCE(sym_with_clause, 6, .production_id = 86), SHIFT(2757), - [91] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 84), REDUCE(sym_with_clause, 6, .production_id = 86), SHIFT(287), - [95] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 84), REDUCE(sym_with_clause, 6, .production_id = 86), - [98] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), - [100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3987), - [102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), - [104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), - [114] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 84), REDUCE(sym_with_clause, 6, .production_id = 86), SHIFT(2658), - [118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), - [120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 84), REDUCE(sym_with_clause, 6, .production_id = 86), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), - [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), - [131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 89), SHIFT(30), - [134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 89), SHIFT(638), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), - [143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 89), SHIFT(4058), - [146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4118), - [148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), - [150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), - [152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 89), SHIFT(2758), - [155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 89), SHIFT(2757), - [158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 89), SHIFT(285), - [161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 89), - [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3913), - [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), - [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), - [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 89), SHIFT(1131), - [182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 89), - [186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4153), - [188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), - [194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 68), SHIFT(15), - [197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 68), SHIFT(638), - [200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14), - [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 68), SHIFT(4046), - [205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 68), SHIFT(2758), - [208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 68), SHIFT(2757), - [211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 68), SHIFT(285), - [214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 68), - [216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 68), SHIFT(1119), - [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), - [221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 68), - [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 68), SHIFT(13), - [228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), - [230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 68), SHIFT(4072), - [233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 68), SHIFT(1116), - [236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), - [238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 52), SHIFT(990), - [243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 52), SHIFT(638), - [246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), - [248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 52), SHIFT(4054), - [251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 52), SHIFT(2758), - [254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 52), SHIFT(2757), - [257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 52), SHIFT(285), - [260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 52), - [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 52), SHIFT(1115), - [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), - [267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 52), - [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [271] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 66), REDUCE(sym_with_clause, 4, .production_id = 67), SHIFT(10), - [275] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 66), REDUCE(sym_with_clause, 4, .production_id = 67), SHIFT(638), - [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2503), - [281] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 66), REDUCE(sym_with_clause, 4, .production_id = 67), SHIFT(4066), - [285] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 66), REDUCE(sym_with_clause, 4, .production_id = 67), SHIFT(2758), - [289] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 66), REDUCE(sym_with_clause, 4, .production_id = 67), SHIFT(2757), - [293] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 66), REDUCE(sym_with_clause, 4, .production_id = 67), SHIFT(287), - [297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 66), REDUCE(sym_with_clause, 4, .production_id = 67), - [300] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 66), REDUCE(sym_with_clause, 4, .production_id = 67), SHIFT(2669), - [304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), - [306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 66), REDUCE(sym_with_clause, 4, .production_id = 67), - [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), - [311] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 66), REDUCE(sym_with_clause, 4, .production_id = 67), SHIFT(18), - [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2510), - [317] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 66), REDUCE(sym_with_clause, 4, .production_id = 67), SHIFT(4030), - [321] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 66), REDUCE(sym_with_clause, 4, .production_id = 67), SHIFT(2665), - [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), - [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), - [331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 52), SHIFT(4049), - [334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 52), SHIFT(1121), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [341] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 66), REDUCE(sym_with_clause, 5, .production_id = 67), SHIFT(990), - [345] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 66), REDUCE(sym_with_clause, 5, .production_id = 67), SHIFT(638), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), - [351] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 66), REDUCE(sym_with_clause, 5, .production_id = 67), SHIFT(4083), - [355] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 66), REDUCE(sym_with_clause, 5, .production_id = 67), SHIFT(2758), - [359] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 66), REDUCE(sym_with_clause, 5, .production_id = 67), SHIFT(2757), - [363] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 66), REDUCE(sym_with_clause, 5, .production_id = 67), SHIFT(287), - [367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 66), REDUCE(sym_with_clause, 5, .production_id = 67), - [370] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 66), REDUCE(sym_with_clause, 5, .production_id = 67), SHIFT(2655), - [374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 66), REDUCE(sym_with_clause, 5, .production_id = 67), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), - [381] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 84), REDUCE(sym_with_clause, 5, .production_id = 86), SHIFT(2), - [385] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 84), REDUCE(sym_with_clause, 5, .production_id = 86), SHIFT(638), - [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2392), - [391] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 84), REDUCE(sym_with_clause, 5, .production_id = 86), SHIFT(4095), - [395] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 84), REDUCE(sym_with_clause, 5, .production_id = 86), SHIFT(2758), - [399] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 84), REDUCE(sym_with_clause, 5, .production_id = 86), SHIFT(2757), - [403] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 84), REDUCE(sym_with_clause, 5, .production_id = 86), SHIFT(287), - [407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 84), REDUCE(sym_with_clause, 5, .production_id = 86), - [410] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 84), REDUCE(sym_with_clause, 5, .production_id = 86), SHIFT(2652), - [414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 84), REDUCE(sym_with_clause, 5, .production_id = 86), - [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), - [421] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 87), REDUCE(sym_with_clause, 5, .production_id = 88), SHIFT(16), - [425] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 87), REDUCE(sym_with_clause, 5, .production_id = 88), SHIFT(638), - [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), - [431] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 87), REDUCE(sym_with_clause, 5, .production_id = 88), SHIFT(4074), - [435] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 87), REDUCE(sym_with_clause, 5, .production_id = 88), SHIFT(2758), - [439] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 87), REDUCE(sym_with_clause, 5, .production_id = 88), SHIFT(2757), - [443] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 87), REDUCE(sym_with_clause, 5, .production_id = 88), SHIFT(287), - [447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 87), REDUCE(sym_with_clause, 5, .production_id = 88), - [450] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 87), REDUCE(sym_with_clause, 5, .production_id = 88), SHIFT(2661), - [454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 87), REDUCE(sym_with_clause, 5, .production_id = 88), - [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), - [461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 68), SHIFT(990), - [464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 68), SHIFT(638), - [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), - [469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 68), SHIFT(4071), - [472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 68), SHIFT(2758), - [475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 68), SHIFT(2757), - [478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 68), SHIFT(285), - [481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 68), - [483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 68), SHIFT(1125), - [486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 68), - [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [492] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 87), REDUCE(sym_with_clause, 5, .production_id = 88), SHIFT(22), - [496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), - [498] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 87), REDUCE(sym_with_clause, 5, .production_id = 88), SHIFT(4061), - [502] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 87), REDUCE(sym_with_clause, 5, .production_id = 88), SHIFT(2654), - [506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), - [510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), - [512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 68), SHIFT(4059), - [515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 68), SHIFT(1129), - [518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [522] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 87), REDUCE(sym_with_clause, 6, .production_id = 88), SHIFT(990), - [526] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 87), REDUCE(sym_with_clause, 6, .production_id = 88), SHIFT(638), - [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2276), - [532] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 87), REDUCE(sym_with_clause, 6, .production_id = 88), SHIFT(4035), - [536] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 87), REDUCE(sym_with_clause, 6, .production_id = 88), SHIFT(2758), - [540] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 87), REDUCE(sym_with_clause, 6, .production_id = 88), SHIFT(2757), - [544] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 87), REDUCE(sym_with_clause, 6, .production_id = 88), SHIFT(287), - [548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 87), REDUCE(sym_with_clause, 6, .production_id = 88), - [551] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 87), REDUCE(sym_with_clause, 6, .production_id = 88), SHIFT(2664), - [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), - [557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 87), REDUCE(sym_with_clause, 6, .production_id = 88), - [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), - [562] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 70), REDUCE(sym_with_clause, 5, .production_id = 72), SHIFT(990), - [566] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 70), REDUCE(sym_with_clause, 5, .production_id = 72), SHIFT(638), - [570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), - [572] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 70), REDUCE(sym_with_clause, 5, .production_id = 72), SHIFT(4043), - [576] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 70), REDUCE(sym_with_clause, 5, .production_id = 72), SHIFT(2758), - [580] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 70), REDUCE(sym_with_clause, 5, .production_id = 72), SHIFT(2757), - [584] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 70), REDUCE(sym_with_clause, 5, .production_id = 72), SHIFT(287), - [588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 70), REDUCE(sym_with_clause, 5, .production_id = 72), - [591] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 70), REDUCE(sym_with_clause, 5, .production_id = 72), SHIFT(2651), - [595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), - [597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 70), REDUCE(sym_with_clause, 5, .production_id = 72), - [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), - [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), - [604] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 66), REDUCE(sym_with_clause, 5, .production_id = 67), SHIFT(4092), - [608] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 66), REDUCE(sym_with_clause, 5, .production_id = 67), SHIFT(2653), - [612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), - [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), - [616] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 84), REDUCE(sym_with_clause, 5, .production_id = 86), SHIFT(34), - [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), - [622] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 84), REDUCE(sym_with_clause, 5, .production_id = 86), SHIFT(4084), - [626] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 84), REDUCE(sym_with_clause, 5, .production_id = 86), SHIFT(2673), - [630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), - [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_clause, 4, .production_id = 68), - [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), - [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), - [640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), - [642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_clause, 4, .production_id = 68), - [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4101), - [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), - [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), - [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), - [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3907), - [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), - [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), - [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4150), - [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), - [674] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 128), REDUCE(sym_with_clause, 8, .production_id = 130), SHIFT(990), - [678] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 128), REDUCE(sym_with_clause, 8, .production_id = 130), SHIFT(638), - [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), - [684] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 128), REDUCE(sym_with_clause, 8, .production_id = 130), SHIFT(4094), - [688] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 128), REDUCE(sym_with_clause, 8, .production_id = 130), SHIFT(2758), - [692] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 128), REDUCE(sym_with_clause, 8, .production_id = 130), SHIFT(2757), - [696] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 128), REDUCE(sym_with_clause, 8, .production_id = 130), SHIFT(287), - [700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 128), REDUCE(sym_with_clause, 8, .production_id = 130), - [703] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 128), REDUCE(sym_with_clause, 8, .production_id = 130), SHIFT(2668), - [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), - [709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 128), REDUCE(sym_with_clause, 8, .production_id = 130), - [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), - [716] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 87), REDUCE(sym_with_clause, 6, .production_id = 88), SHIFT(4057), - [720] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 87), REDUCE(sym_with_clause, 6, .production_id = 88), SHIFT(2670), - [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), - [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), - [728] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 107), REDUCE(sym_with_clause, 6, .production_id = 109), SHIFT(35), - [732] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 107), REDUCE(sym_with_clause, 6, .production_id = 109), SHIFT(638), - [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), - [738] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 107), REDUCE(sym_with_clause, 6, .production_id = 109), SHIFT(4044), - [742] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 107), REDUCE(sym_with_clause, 6, .production_id = 109), SHIFT(2758), - [746] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 107), REDUCE(sym_with_clause, 6, .production_id = 109), SHIFT(2757), - [750] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 107), REDUCE(sym_with_clause, 6, .production_id = 109), SHIFT(287), - [754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 107), REDUCE(sym_with_clause, 6, .production_id = 109), - [757] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 107), REDUCE(sym_with_clause, 6, .production_id = 109), SHIFT(2662), - [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), - [763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 107), REDUCE(sym_with_clause, 6, .production_id = 109), - [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), - [768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 52), SHIFT(9), - [771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 52), SHIFT(638), - [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), - [776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 3, .production_id = 52), SHIFT(4034), - [779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 52), SHIFT(2758), - [782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 52), SHIFT(2757), - [785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 52), SHIFT(285), - [788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 52), - [790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 3, .production_id = 52), SHIFT(1112), - [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), - [795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 3, .production_id = 52), - [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 40), SHIFT(990), - [802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 40), SHIFT(638), - [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), - [807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 3, .production_id = 40), SHIFT(4026), - [810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 40), SHIFT(2758), - [813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 40), SHIFT(2757), - [816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 40), SHIFT(285), - [819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 40), - [821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 3, .production_id = 40), SHIFT(1092), - [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), - [826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 3, .production_id = 40), - [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [830] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 54), REDUCE(sym_with_clause, 3, .production_id = 55), SHIFT(41), - [834] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 54), REDUCE(sym_with_clause, 3, .production_id = 55), SHIFT(638), - [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2430), - [840] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 3, .production_id = 54), REDUCE(sym_with_clause, 3, .production_id = 55), SHIFT(4027), - [844] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 54), REDUCE(sym_with_clause, 3, .production_id = 55), SHIFT(2758), - [848] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 54), REDUCE(sym_with_clause, 3, .production_id = 55), SHIFT(2757), - [852] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 54), REDUCE(sym_with_clause, 3, .production_id = 55), SHIFT(287), - [856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 54), REDUCE(sym_with_clause, 3, .production_id = 55), - [859] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 3, .production_id = 54), REDUCE(sym_with_clause, 3, .production_id = 55), SHIFT(2663), - [863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), - [865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 3, .production_id = 54), REDUCE(sym_with_clause, 3, .production_id = 55), - [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), - [870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(908), - [873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(742), - [876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(977), - [879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(994), - [882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(1114), - [885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(4101), - [888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(4101), - [891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3904), - [894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(1184), - [897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(2758), - [900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(2757), - [903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(284), - [906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), - [908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3047), - [911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3907), - [914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3937), - [917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(516), - [920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(515), - [923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(514), - [926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(575), - [929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(574), - [932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(1185), - [935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), - [937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(4150), - [940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(994), - [943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(659), - [946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3514), - [949] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 107), REDUCE(sym_with_clause, 6, .production_id = 109), SHIFT(36), - [953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), - [955] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 107), REDUCE(sym_with_clause, 6, .production_id = 109), SHIFT(4086), - [959] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 107), REDUCE(sym_with_clause, 6, .production_id = 109), SHIFT(2671), - [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), - [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), - [967] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 111), REDUCE(sym_with_clause, 6, .production_id = 112), SHIFT(39), - [971] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 111), REDUCE(sym_with_clause, 6, .production_id = 112), SHIFT(638), - [975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), - [977] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 111), REDUCE(sym_with_clause, 6, .production_id = 112), SHIFT(4089), - [981] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 111), REDUCE(sym_with_clause, 6, .production_id = 112), SHIFT(2758), - [985] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 111), REDUCE(sym_with_clause, 6, .production_id = 112), SHIFT(2757), - [989] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 111), REDUCE(sym_with_clause, 6, .production_id = 112), SHIFT(287), - [993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 111), REDUCE(sym_with_clause, 6, .production_id = 112), - [996] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 111), REDUCE(sym_with_clause, 6, .production_id = 112), SHIFT(2656), - [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), - [1002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 111), REDUCE(sym_with_clause, 6, .production_id = 112), - [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [1007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 89), SHIFT(990), - [1010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 89), SHIFT(638), - [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), - [1015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 89), SHIFT(4073), - [1018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 89), SHIFT(2758), - [1021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 89), SHIFT(2757), - [1024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 89), SHIFT(285), - [1027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 89), - [1029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 89), SHIFT(1044), - [1032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), - [1034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 89), - [1036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [1038] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 70), REDUCE(sym_with_clause, 4, .production_id = 72), SHIFT(17), - [1042] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 70), REDUCE(sym_with_clause, 4, .production_id = 72), SHIFT(638), - [1046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), - [1048] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 70), REDUCE(sym_with_clause, 4, .production_id = 72), SHIFT(4087), - [1052] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 70), REDUCE(sym_with_clause, 4, .production_id = 72), SHIFT(2758), - [1056] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 70), REDUCE(sym_with_clause, 4, .production_id = 72), SHIFT(2757), - [1060] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 70), REDUCE(sym_with_clause, 4, .production_id = 72), SHIFT(287), - [1064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 70), REDUCE(sym_with_clause, 4, .production_id = 72), - [1067] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 70), REDUCE(sym_with_clause, 4, .production_id = 72), SHIFT(2657), - [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), - [1073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 70), REDUCE(sym_with_clause, 4, .production_id = 72), - [1076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), - [1078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_clause, 3, .production_id = 52), - [1080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_clause, 3, .production_id = 52), - [1082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 52), SHIFT(6), - [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), - [1087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 3, .production_id = 52), SHIFT(4024), - [1090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 3, .production_id = 52), SHIFT(1089), - [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), - [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), - [1099] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 84), REDUCE(sym_with_clause, 6, .production_id = 86), SHIFT(4048), - [1103] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 84), REDUCE(sym_with_clause, 6, .production_id = 86), SHIFT(2649), - [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [1111] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 107), REDUCE(sym_with_clause, 7, .production_id = 109), SHIFT(990), - [1115] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 107), REDUCE(sym_with_clause, 7, .production_id = 109), SHIFT(638), - [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), - [1121] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 107), REDUCE(sym_with_clause, 7, .production_id = 109), SHIFT(4069), - [1125] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 107), REDUCE(sym_with_clause, 7, .production_id = 109), SHIFT(2758), - [1129] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 107), REDUCE(sym_with_clause, 7, .production_id = 109), SHIFT(2757), - [1133] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 107), REDUCE(sym_with_clause, 7, .production_id = 109), SHIFT(287), - [1137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 107), REDUCE(sym_with_clause, 7, .production_id = 109), - [1140] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 107), REDUCE(sym_with_clause, 7, .production_id = 109), SHIFT(2659), - [1144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [1146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 107), REDUCE(sym_with_clause, 7, .production_id = 109), - [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), - [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), - [1153] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 107), REDUCE(sym_with_clause, 7, .production_id = 109), SHIFT(4082), - [1157] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 107), REDUCE(sym_with_clause, 7, .production_id = 109), SHIFT(2660), - [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), - [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [1165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_clause, 2, .production_id = 40), - [1167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_clause, 2, .production_id = 40), - [1169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 2, .production_id = 40), SHIFT(25), - [1172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 2, .production_id = 40), SHIFT(638), - [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), - [1177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 2, .production_id = 40), SHIFT(4040), - [1180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 2, .production_id = 40), SHIFT(2758), - [1183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 2, .production_id = 40), SHIFT(2757), - [1186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 2, .production_id = 40), SHIFT(285), - [1189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 2, .production_id = 40), - [1191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 2, .production_id = 40), SHIFT(1128), - [1194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [1196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 2, .production_id = 40), - [1198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [1200] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 111), REDUCE(sym_with_clause, 7, .production_id = 112), SHIFT(990), - [1204] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 111), REDUCE(sym_with_clause, 7, .production_id = 112), SHIFT(638), - [1208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), - [1210] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 111), REDUCE(sym_with_clause, 7, .production_id = 112), SHIFT(4079), - [1214] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 111), REDUCE(sym_with_clause, 7, .production_id = 112), SHIFT(2758), - [1218] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 111), REDUCE(sym_with_clause, 7, .production_id = 112), SHIFT(2757), - [1222] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 111), REDUCE(sym_with_clause, 7, .production_id = 112), SHIFT(287), - [1226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 111), REDUCE(sym_with_clause, 7, .production_id = 112), - [1229] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 111), REDUCE(sym_with_clause, 7, .production_id = 112), SHIFT(2650), - [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), - [1235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 111), REDUCE(sym_with_clause, 7, .production_id = 112), - [1238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [1240] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 128), REDUCE(sym_with_clause, 7, .production_id = 130), SHIFT(21), - [1244] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 128), REDUCE(sym_with_clause, 7, .production_id = 130), SHIFT(638), - [1248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), - [1250] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 128), REDUCE(sym_with_clause, 7, .production_id = 130), SHIFT(4068), - [1254] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 128), REDUCE(sym_with_clause, 7, .production_id = 130), SHIFT(2758), - [1258] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 128), REDUCE(sym_with_clause, 7, .production_id = 130), SHIFT(2757), - [1262] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 128), REDUCE(sym_with_clause, 7, .production_id = 130), SHIFT(287), - [1266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 128), REDUCE(sym_with_clause, 7, .production_id = 130), - [1269] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 128), REDUCE(sym_with_clause, 7, .production_id = 130), SHIFT(2672), - [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), - [1275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 128), REDUCE(sym_with_clause, 7, .production_id = 130), - [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [1280] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 54), REDUCE(sym_with_clause, 4, .production_id = 55), SHIFT(990), - [1284] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 54), REDUCE(sym_with_clause, 4, .production_id = 55), SHIFT(638), - [1288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), - [1290] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 54), REDUCE(sym_with_clause, 4, .production_id = 55), SHIFT(4042), - [1294] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 54), REDUCE(sym_with_clause, 4, .production_id = 55), SHIFT(2758), - [1298] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 54), REDUCE(sym_with_clause, 4, .production_id = 55), SHIFT(2757), - [1302] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 54), REDUCE(sym_with_clause, 4, .production_id = 55), SHIFT(287), - [1306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 54), REDUCE(sym_with_clause, 4, .production_id = 55), - [1309] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 54), REDUCE(sym_with_clause, 4, .production_id = 55), SHIFT(2666), - [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), - [1315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 54), REDUCE(sym_with_clause, 4, .production_id = 55), - [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), - [1320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 67), SHIFT(204), - [1323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 67), SHIFT(631), - [1326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), - [1328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 67), SHIFT(4097), - [1331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 67), SHIFT(2758), - [1334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 67), SHIFT(2757), - [1337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 67), SHIFT(287), - [1340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 67), - [1342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 67), SHIFT(2496), - [1345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 67), - [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), - [1349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 86), SHIFT(61), - [1352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 86), SHIFT(631), - [1355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), - [1357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 86), SHIFT(4097), - [1360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 86), SHIFT(2758), - [1363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 86), SHIFT(2757), - [1366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 86), SHIFT(287), - [1369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 86), - [1371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 86), SHIFT(2496), - [1374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 86), - [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), - [1378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 130), SHIFT(995), - [1381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 130), SHIFT(631), - [1384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), - [1386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 12, .production_id = 130), SHIFT(4097), - [1389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 130), SHIFT(2758), - [1392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 130), SHIFT(2757), - [1395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 130), SHIFT(287), - [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 130), - [1400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 12, .production_id = 130), SHIFT(2496), - [1403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 12, .production_id = 130), - [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [1407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 89), SHIFT(995), - [1410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 89), SHIFT(631), - [1413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), - [1415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 89), SHIFT(4097), - [1418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 89), SHIFT(2758), - [1421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 89), SHIFT(2757), - [1424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 89), SHIFT(287), - [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 89), - [1429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 89), SHIFT(2496), - [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 89), - [1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), - [1436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 109), SHIFT(995), - [1439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 109), SHIFT(631), - [1442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), - [1444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 109), SHIFT(4097), - [1447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 109), SHIFT(2758), - [1450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 109), SHIFT(2757), - [1453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 109), SHIFT(287), - [1456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 109), - [1458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 109), SHIFT(2496), - [1461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 109), - [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), - [1465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 40), SHIFT(116), - [1468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 40), SHIFT(631), - [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), - [1473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 40), SHIFT(4097), - [1476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 40), SHIFT(2758), - [1479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 40), SHIFT(2757), - [1482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 40), SHIFT(287), - [1485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 40), - [1487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 40), SHIFT(2496), - [1490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 40), - [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), - [1494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 72), SHIFT(995), - [1497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 72), SHIFT(631), - [1500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), - [1502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 72), SHIFT(4097), - [1505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 72), SHIFT(2758), - [1508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 72), SHIFT(2757), - [1511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 72), SHIFT(287), - [1514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 72), - [1516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 72), SHIFT(2496), - [1519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 72), - [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [1523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 55), SHIFT(111), - [1526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 55), SHIFT(631), - [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), - [1531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 55), SHIFT(4097), - [1534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 55), SHIFT(2758), - [1537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 55), SHIFT(2757), - [1540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 55), SHIFT(287), - [1543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 55), - [1545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 55), SHIFT(2496), - [1548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 55), - [1550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), - [1552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 40), SHIFT(995), - [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), - [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), - [1559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 40), SHIFT(108), - [1562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2520), - [1564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), - [1566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 109), SHIFT(92), - [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2419), - [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), - [1573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 109), SHIFT(91), - [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), - [1578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), - [1580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 86), SHIFT(995), - [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), - [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [1587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 86), SHIFT(181), - [1590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), - [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [1598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), - [1600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2698), - [1602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2766), - [1604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2856), - [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4114), - [1608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), - [1610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2764), - [1612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [1614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), - [1616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3963), - [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), - [1620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [1628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), - [1630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), - [1632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), - [1634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [1636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4131), - [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), - [1640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), - [1644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2409), - [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), - [1648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 68), SHIFT(995), - [1651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 68), SHIFT(631), - [1654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2402), - [1656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 68), SHIFT(4097), - [1659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 68), SHIFT(2758), - [1662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 68), SHIFT(2757), - [1665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 68), SHIFT(287), - [1668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 68), - [1670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 68), SHIFT(2496), - [1673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 68), - [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), - [1677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 88), SHIFT(89), - [1680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 88), SHIFT(631), - [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393), - [1685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 88), SHIFT(4097), - [1688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 88), SHIFT(2758), - [1691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 88), SHIFT(2757), - [1694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 88), SHIFT(287), - [1697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 88), - [1699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 88), SHIFT(2496), - [1702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 88), - [1704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), - [1706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [1708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2697), - [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), - [1712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 86), SHIFT(995), - [1715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 86), SHIFT(631), - [1718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), - [1720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 10, .production_id = 86), SHIFT(4097), - [1723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 86), SHIFT(2758), - [1726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 86), SHIFT(2757), - [1729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 86), SHIFT(287), - [1732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 86), - [1734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 10, .production_id = 86), SHIFT(2496), - [1737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 10, .production_id = 86), - [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [1741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 88), SHIFT(995), - [1744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2391), - [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), - [1748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 88), SHIFT(995), - [1751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 88), SHIFT(631), - [1754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), - [1756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 10, .production_id = 88), SHIFT(4097), - [1759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 88), SHIFT(2758), - [1762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 88), SHIFT(2757), - [1765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 88), SHIFT(287), - [1768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 88), - [1770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 10, .production_id = 88), SHIFT(2496), - [1773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 10, .production_id = 88), - [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), - [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), - [1781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), - [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), - [1785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 109), SHIFT(995), - [1788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 109), SHIFT(631), - [1791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), - [1793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 10, .production_id = 109), SHIFT(4097), - [1796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 109), SHIFT(2758), - [1799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 109), SHIFT(2757), - [1802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 109), SHIFT(287), - [1805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 109), - [1807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 10, .production_id = 109), SHIFT(2496), - [1810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 10, .production_id = 109), - [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [1814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 52), SHIFT(76), - [1817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 52), SHIFT(631), - [1820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), - [1822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 52), SHIFT(4097), - [1825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 52), SHIFT(287), - [1828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 52), SHIFT(2496), - [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), - [1833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 109), SHIFT(71), - [1836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), - [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [1842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2744), - [1844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), - [1846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 52), SHIFT(123), - [1849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527), - [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), - [1853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), - [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [1857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 52), SHIFT(129), - [1860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 52), SHIFT(631), - [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), - [1865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 52), SHIFT(4097), - [1868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 52), SHIFT(2758), - [1871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 52), SHIFT(2757), - [1874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 52), SHIFT(287), - [1877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 52), - [1879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 52), SHIFT(2496), - [1882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 52), - [1884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), - [1886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 109), SHIFT(66), - [1889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), - [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), - [1893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), - [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), - [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), - [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), - [1901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 52), SHIFT(995), - [1904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2403), - [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), - [1908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 88), SHIFT(63), - [1911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), - [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), - [1915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 67), SHIFT(135), - [1918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 67), SHIFT(631), - [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), - [1923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 67), SHIFT(4097), - [1926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 67), SHIFT(2758), - [1929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 67), SHIFT(2757), - [1932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 67), SHIFT(287), - [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 67), - [1937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 67), SHIFT(2496), - [1940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 67), - [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), - [1944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), - [1946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [1948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 109), SHIFT(193), - [1951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), - [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), - [1955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), - [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), - [1959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 52), SHIFT(144), - [1962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), - [1964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), - [1966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 112), SHIFT(119), - [1969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 112), SHIFT(631), - [1972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), - [1974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 112), SHIFT(4097), - [1977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 112), SHIFT(2758), - [1980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 112), SHIFT(2757), - [1983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 112), SHIFT(287), - [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 112), - [1988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 112), SHIFT(2496), - [1991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 112), - [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), - [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), - [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), - [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), - [2003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 67), SHIFT(995), - [2006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 67), SHIFT(631), - [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2278), - [2011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 67), SHIFT(4097), - [2014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 67), SHIFT(2758), - [2017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 67), SHIFT(2757), - [2020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 67), SHIFT(287), - [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 67), - [2025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 67), SHIFT(2496), - [2028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 67), - [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), - [2032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 86), SHIFT(995), - [2035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 86), SHIFT(631), - [2038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2262), - [2040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 86), SHIFT(4097), - [2043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 86), SHIFT(2758), - [2046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 86), SHIFT(2757), - [2049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 86), SHIFT(287), - [2052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 86), - [2054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 86), SHIFT(2496), - [2057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 86), - [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), - [2061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 86), SHIFT(54), - [2064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), - [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), - [2068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), - [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [2072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 68), SHIFT(153), - [2075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 68), SHIFT(631), - [2078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), - [2080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 68), SHIFT(4097), - [2083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 68), SHIFT(287), - [2086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 68), SHIFT(2496), - [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), - [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), - [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), - [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [2099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 86), SHIFT(248), - [2102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), - [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), - [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [2108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2685), - [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), - [2112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), - [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), - [2116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 52), SHIFT(995), - [2119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 52), SHIFT(631), - [2122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), - [2124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 52), SHIFT(4097), - [2127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 52), SHIFT(2758), - [2130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 52), SHIFT(2757), - [2133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 52), SHIFT(287), - [2136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 52), - [2138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 52), SHIFT(2496), - [2141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 52), - [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), - [2145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 67), SHIFT(191), - [2148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 67), SHIFT(631), - [2151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), - [2153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 67), SHIFT(4097), - [2156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 67), SHIFT(2758), - [2159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 67), SHIFT(2757), - [2162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 67), SHIFT(287), - [2165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 67), - [2167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 67), SHIFT(2496), - [2170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 67), - [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [2174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 67), SHIFT(995), - [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), - [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), - [2181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), - [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [2185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 72), SHIFT(48), - [2188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 72), SHIFT(631), - [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), - [2193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 72), SHIFT(4097), - [2196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 72), SHIFT(2758), - [2199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 72), SHIFT(2757), - [2202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 72), SHIFT(287), - [2205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 72), - [2207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 72), SHIFT(2496), - [2210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 72), - [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), - [2214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 72), SHIFT(995), - [2217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2315), - [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), - [2221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 68), SHIFT(171), - [2224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), - [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), - [2228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 109), SHIFT(237), - [2231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), - [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [2235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 112), SHIFT(995), - [2238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 112), SHIFT(631), - [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), - [2243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 10, .production_id = 112), SHIFT(4097), - [2246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 112), SHIFT(2758), - [2249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 112), SHIFT(2757), - [2252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 112), SHIFT(287), - [2255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 112), - [2257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 10, .production_id = 112), SHIFT(2496), - [2260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 10, .production_id = 112), - [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), - [2264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 130), SHIFT(163), - [2267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 130), SHIFT(631), - [2270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), - [2272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 130), SHIFT(4097), - [2275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 130), SHIFT(2758), - [2278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 130), SHIFT(2757), - [2281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 130), SHIFT(287), - [2284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 130), - [2286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 130), SHIFT(2496), - [2289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 130), - [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), - [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), - [2297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 55), SHIFT(995), - [2300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 55), SHIFT(631), - [2303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), - [2305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 55), SHIFT(4097), - [2308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 55), SHIFT(2758), - [2311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 55), SHIFT(2757), - [2314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 55), SHIFT(287), - [2317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 55), - [2319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 55), SHIFT(2496), - [2322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 55), - [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), - [2326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 40), SHIFT(995), - [2329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 40), SHIFT(631), - [2332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), - [2334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 40), SHIFT(4097), - [2337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 40), SHIFT(2758), - [2340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 40), SHIFT(2757), - [2343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 40), SHIFT(287), - [2346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 40), - [2348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 40), SHIFT(2496), - [2351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 40), - [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), - [2355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 40), SHIFT(194), - [2358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), - [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), - [2362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 55), SHIFT(198), - [2365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 55), SHIFT(631), - [2368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), - [2370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 55), SHIFT(4097), - [2373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 55), SHIFT(2758), - [2376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 55), SHIFT(2757), - [2379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 55), SHIFT(287), - [2382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 55), - [2384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 55), SHIFT(2496), - [2387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 55), - [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), - [2391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 55), SHIFT(995), - [2394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), - [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [2398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 55), SHIFT(202), - [2401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2366), - [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), - [2405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 130), SHIFT(151), - [2408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 130), SHIFT(631), - [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), - [2413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 130), SHIFT(4097), - [2416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 130), SHIFT(2758), - [2419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 130), SHIFT(2757), - [2422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 130), SHIFT(287), - [2425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 130), - [2427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 130), SHIFT(2496), - [2430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 130), - [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), - [2434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 89), SHIFT(995), - [2437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 89), SHIFT(631), - [2440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), - [2442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 89), SHIFT(4097), - [2445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 89), SHIFT(2758), - [2448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 89), SHIFT(2757), - [2451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 89), SHIFT(287), - [2454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 89), - [2456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 89), SHIFT(2496), - [2459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 89), - [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [2463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 40), SHIFT(205), - [2466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), - [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [2470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2362), - [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [2474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 72), SHIFT(211), - [2477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 72), SHIFT(631), - [2480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), - [2482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 72), SHIFT(4097), - [2485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 72), SHIFT(2758), - [2488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 72), SHIFT(2757), - [2491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 72), SHIFT(287), - [2494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 72), - [2496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 72), SHIFT(2496), - [2499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 72), - [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), - [2503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 89), SHIFT(178), - [2506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), - [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), - [2510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2310), - [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), - [2514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 112), SHIFT(220), - [2517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 112), SHIFT(631), - [2520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2313), - [2522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 112), SHIFT(4097), - [2525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 112), SHIFT(2758), - [2528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 112), SHIFT(2757), - [2531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 112), SHIFT(287), - [2534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 112), - [2536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 112), SHIFT(2496), - [2539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 112), - [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), - [2543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 112), SHIFT(995), - [2546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), - [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), - [2550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 52), SHIFT(213), - [2553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), - [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), - [2557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), - [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), - [2561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 67), SHIFT(222), - [2564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2351), - [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [2568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 112), SHIFT(246), - [2571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2312), - [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), - [2575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 112), SHIFT(228), - [2578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2413), - [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), - [2582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 52), SHIFT(235), - [2585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), - [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [2589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 89), SHIFT(995), - [2592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 89), SHIFT(631), - [2595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), - [2597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 10, .production_id = 89), SHIFT(4097), - [2600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 89), SHIFT(2758), - [2603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 89), SHIFT(2757), - [2606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 89), SHIFT(287), - [2609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 89), - [2611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 10, .production_id = 89), SHIFT(2496), - [2614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 10, .production_id = 89), - [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [2618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 52), SHIFT(995), - [2621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 52), SHIFT(631), - [2624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), - [2626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 52), SHIFT(4097), - [2629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 52), SHIFT(2758), - [2632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 52), SHIFT(2757), - [2635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 52), SHIFT(287), - [2638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 52), - [2640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 52), SHIFT(2496), - [2643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 52), - [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), - [2647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 52), SHIFT(251), - [2650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2302), - [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [2654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 67), SHIFT(252), - [2657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), - [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), - [2661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 89), SHIFT(45), - [2664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), - [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [2668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), - [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [2672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 109), SHIFT(46), - [2675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 109), SHIFT(631), - [2678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), - [2680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 109), SHIFT(4097), - [2683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 109), SHIFT(2758), - [2686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 109), SHIFT(2757), - [2689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 109), SHIFT(287), - [2692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 109), - [2694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 109), SHIFT(2496), - [2697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 109), - [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), - [2701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 67), SHIFT(995), - [2704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), - [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), - [2708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 67), SHIFT(256), - [2711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), - [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), - [2715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 109), SHIFT(995), - [2718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2250), - [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), - [2722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 1), SHIFT(916), - [2725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 1), SHIFT(742), - [2728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), - [2730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), - [2732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), - [2734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_clause, 1), SHIFT(4098), - [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), - [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), - [2741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), - [2743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 1), SHIFT(2758), - [2746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 1), SHIFT(2757), - [2749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 1), SHIFT(288), - [2752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 1), - [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), - [2756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3900), - [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), - [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [2768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), - [2770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_clause, 1), SHIFT(1485), - [2773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 1), - [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), - [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), - [2783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 109), SHIFT(57), - [2786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2286), - [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), - [2790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 52), SHIFT(257), - [2793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2294), - [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), - [2797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 68), SHIFT(58), - [2800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 68), SHIFT(631), - [2803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), - [2805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 68), SHIFT(4097), - [2808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 68), SHIFT(2758), - [2811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 68), SHIFT(2757), - [2814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 68), SHIFT(287), - [2817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 68), - [2819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 68), SHIFT(2496), - [2822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 68), - [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), - [2826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 68), SHIFT(995), - [2829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), - [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), - [2833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 88), SHIFT(995), - [2836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 88), SHIFT(631), - [2839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), - [2841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 88), SHIFT(4097), - [2844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 88), SHIFT(2758), - [2847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 88), SHIFT(2757), - [2850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 88), SHIFT(287), - [2853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 88), - [2855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 88), SHIFT(2496), - [2858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 88), - [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), - [2862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), - [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), - [2866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 88), SHIFT(62), - [2869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2339), - [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [2873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 88), SHIFT(64), - [2876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2349), - [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [2880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), - [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), - [2884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 86), SHIFT(263), - [2887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 86), SHIFT(631), - [2890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2290), - [2892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 86), SHIFT(4097), - [2895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 86), SHIFT(2758), - [2898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 86), SHIFT(2757), - [2901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 86), SHIFT(287), - [2904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 86), - [2906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 86), SHIFT(2496), - [2909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 86), - [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), - [2913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2385), - [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), - [2917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 109), SHIFT(65), - [2920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2415), - [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), - [2924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 130), SHIFT(995), - [2927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), - [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [2931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 68), SHIFT(267), - [2934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 68), SHIFT(631), - [2937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2284), - [2939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 68), SHIFT(4097), - [2942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 68), SHIFT(2758), - [2945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 68), SHIFT(2757), - [2948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 68), SHIFT(287), - [2951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 68), - [2953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 68), SHIFT(2496), - [2956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 68), - [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [2960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 68), SHIFT(995), - [2963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), - [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [2967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 88), SHIFT(266), - [2970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 88), SHIFT(631), - [2973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), - [2975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 88), SHIFT(4097), - [2978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 88), SHIFT(2758), - [2981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 88), SHIFT(2757), - [2984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 88), SHIFT(287), - [2987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 88), - [2989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 88), SHIFT(2496), - [2992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 88), - [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), - [2996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 130), SHIFT(995), - [2999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 130), SHIFT(631), - [3002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), - [3004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 10, .production_id = 130), SHIFT(4097), - [3007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 130), SHIFT(2758), - [3010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 130), SHIFT(2757), - [3013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 130), SHIFT(287), - [3016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 130), - [3018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 10, .production_id = 130), SHIFT(2496), - [3021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 10, .production_id = 130), - [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), - [3025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), - [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [3029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 109), SHIFT(74), - [3032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2436), - [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), - [3036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 68), SHIFT(259), - [3039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), - [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), - [3043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 130), SHIFT(253), - [3046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2324), - [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), - [3050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 55), SHIFT(995), - [3053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 55), SHIFT(631), - [3056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), - [3058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 55), SHIFT(4097), - [3061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 55), SHIFT(2758), - [3064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 55), SHIFT(2757), - [3067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 55), SHIFT(287), - [3070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 55), - [3072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 55), SHIFT(2496), - [3075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 55), - [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), - [3079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 130), SHIFT(155), - [3082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), - [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [3086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 130), SHIFT(236), - [3089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), - [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), - [3093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2375), - [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [3097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 89), SHIFT(128), - [3100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), - [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [3104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 40), SHIFT(50), - [3107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 40), SHIFT(631), - [3110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2429), - [3112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 3, .production_id = 40), SHIFT(4097), - [3115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 40), SHIFT(287), - [3118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 3, .production_id = 40), SHIFT(2496), - [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), - [3123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2446), - [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), - [3127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2450), - [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), - [3131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 88), SHIFT(79), - [3134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2457), - [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), - [3138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2414), - [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), - [3142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 68), SHIFT(250), - [3145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), - [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [3149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), - [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), - [3153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 88), SHIFT(81), - [3156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2459), - [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), - [3160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), - [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), - [3164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2470), - [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), - [3168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 88), SHIFT(243), - [3171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2265), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [3175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2476), - [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), - [3179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 86), SHIFT(84), - [3182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), - [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), - [3186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), - [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), - [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [3192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), - [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), - [3196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 68), SHIFT(239), - [3199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), - [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), - [3203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2442), - [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), - [3207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 86), SHIFT(85), - [3210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), - [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), - [3214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425), - [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), - [3218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2499), - [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), - [3222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 67), SHIFT(86), - [3225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2489), - [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), - [3229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2490), - [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [3233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2492), - [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), - [3237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 86), SHIFT(87), - [3240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 86), SHIFT(631), - [3243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2507), - [3245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 86), SHIFT(4097), - [3248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 86), SHIFT(2758), - [3251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 86), SHIFT(2757), - [3254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 86), SHIFT(287), - [3257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 86), - [3259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 86), SHIFT(2496), - [3262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 86), - [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), - [3266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 86), SHIFT(995), - [3269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), - [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), - [3273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 86), SHIFT(95), - [3276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2512), - [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), - [3280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), - [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [3284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 89), SHIFT(232), - [3287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 89), SHIFT(631), - [3290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), - [3292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 89), SHIFT(4097), - [3295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 89), SHIFT(287), - [3298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 89), SHIFT(2496), - [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), - [3303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 109), SHIFT(995), - [3306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 109), SHIFT(631), - [3309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2451), - [3311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 11, .production_id = 109), SHIFT(4097), - [3314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 109), SHIFT(2758), - [3317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 109), SHIFT(2757), - [3320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 109), SHIFT(287), - [3323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 109), - [3325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 11, .production_id = 109), SHIFT(2496), - [3328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 11, .production_id = 109), - [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), - [3332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 40), SHIFT(995), - [3335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 40), SHIFT(631), - [3338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), - [3340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 40), SHIFT(4097), - [3343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 40), SHIFT(2758), - [3346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 40), SHIFT(2757), - [3349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 40), SHIFT(287), - [3352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 40), - [3354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 40), SHIFT(2496), - [3357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 40), - [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), - [3361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 52), SHIFT(96), - [3364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 52), SHIFT(631), - [3367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2518), - [3369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 52), SHIFT(4097), - [3372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 52), SHIFT(2758), - [3375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 52), SHIFT(2757), - [3378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 52), SHIFT(287), - [3381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 52), - [3383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 52), SHIFT(2496), - [3386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 52), - [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), - [3390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 52), SHIFT(995), - [3393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), - [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), - [3397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 67), SHIFT(995), - [3400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 67), SHIFT(631), - [3403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), - [3405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 67), SHIFT(4097), - [3408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 67), SHIFT(2758), - [3411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 67), SHIFT(2757), - [3414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 67), SHIFT(287), - [3417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 67), - [3419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 67), SHIFT(2496), - [3422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 67), - [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), - [3426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 55), SHIFT(995), - [3429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 55), SHIFT(631), - [3432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), - [3434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 55), SHIFT(4097), - [3437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 55), SHIFT(2758), - [3440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 55), SHIFT(2757), - [3443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 55), SHIFT(287), - [3446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 55), - [3448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 55), SHIFT(2496), - [3451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 55), - [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), - [3455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 55), SHIFT(160), - [3458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), - [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [3462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 55), SHIFT(169), - [3465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), - [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), - [3469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 67), SHIFT(98), - [3472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), - [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), - [3476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), - [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), - [3480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 67), SHIFT(99), - [3483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538), - [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), - [3487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2539), - [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [3491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), - [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), - [3495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 40), SHIFT(219), - [3498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), - [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), - [3502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3), SHIFT(410), - [3505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3), SHIFT(742), - [3508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), - [3510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_clause, 3), SHIFT(4098), - [3513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3), SHIFT(2758), - [3516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3), SHIFT(2757), - [3519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3), SHIFT(288), - [3522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 3), - [3524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_clause, 3), SHIFT(1485), - [3527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 3), - [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [3531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 72), SHIFT(217), - [3534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 72), SHIFT(631), - [3537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), - [3539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 72), SHIFT(4097), - [3542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 72), SHIFT(2758), - [3545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 72), SHIFT(2757), - [3548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 72), SHIFT(287), - [3551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 72), - [3553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 72), SHIFT(2496), - [3556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 72), - [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), - [3560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), - [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), - [3564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 72), SHIFT(995), - [3567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 72), SHIFT(631), - [3570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), - [3572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 72), SHIFT(4097), - [3575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 72), SHIFT(2758), - [3578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 72), SHIFT(2757), - [3581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 72), SHIFT(287), - [3584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 72), - [3586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 72), SHIFT(2496), - [3589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 72), - [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), - [3593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 72), SHIFT(995), - [3596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), - [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), - [3600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 72), SHIFT(210), - [3603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), - [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), - [3607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), - [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), - [3611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 52), SHIFT(209), - [3614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), - [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), - [3618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 72), SHIFT(101), - [3621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2474), - [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), - [3625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 72), SHIFT(106), - [3628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2471), - [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), - [3632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2464), - [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), - [3636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 2), SHIFT(829), - [3639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 2), SHIFT(742), - [3642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), - [3644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_clause, 2), SHIFT(4098), - [3647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 2), SHIFT(2758), - [3650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 2), SHIFT(2757), - [3653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 2), SHIFT(288), - [3656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 2), - [3658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_clause, 2), SHIFT(1485), - [3661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 2), - [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [3665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 40), SHIFT(995), - [3668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 40), SHIFT(631), - [3671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2437), - [3673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 40), SHIFT(4097), - [3676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 40), SHIFT(2758), - [3679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 40), SHIFT(2757), - [3682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 40), SHIFT(287), - [3685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 40), - [3687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 40), SHIFT(2496), - [3690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 40), - [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), - [3694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 112), SHIFT(995), - [3697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), - [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), - [3701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 55), SHIFT(107), - [3704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2416), - [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), - [3708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2223), - [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [3712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 68), SHIFT(75), - [3715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), - [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), - [3719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 130), SHIFT(44), - [3722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 130), SHIFT(631), - [3725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), - [3727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 11, .production_id = 130), SHIFT(4097), - [3730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 130), SHIFT(2758), - [3733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 130), SHIFT(2757), - [3736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 130), SHIFT(287), - [3739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 130), - [3741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 11, .production_id = 130), SHIFT(2496), - [3744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 11, .production_id = 130), - [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [3748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 89), SHIFT(114), - [3751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 89), SHIFT(631), - [3754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), - [3756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 89), SHIFT(4097), - [3759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 89), SHIFT(2758), - [3762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 89), SHIFT(2757), - [3765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 89), SHIFT(287), - [3768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 89), - [3770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 89), SHIFT(2496), - [3773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 89), - [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [3777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 67), SHIFT(197), - [3780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), - [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), - [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [3786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), - [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), - [3790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), - [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [3796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), - [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), - [3800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 52), SHIFT(196), - [3803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), - [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [3807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 112), SHIFT(121), - [3810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 112), SHIFT(631), - [3813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), - [3815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 112), SHIFT(4097), - [3818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 112), SHIFT(2758), - [3821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 112), SHIFT(2757), - [3824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 112), SHIFT(287), - [3827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 112), - [3829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 112), SHIFT(2496), - [3832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 112), - [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), - [3836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 89), SHIFT(995), - [3839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), - [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), - [3843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 89), SHIFT(133), - [3846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2441), - [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), - [3850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 112), SHIFT(104), - [3853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), - [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [3857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), - [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), - [3861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 130), SHIFT(995), - [3864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), - [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [3868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2461), - [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), - [3872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 109), SHIFT(137), - [3875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 109), SHIFT(631), - [3878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), - [3880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 109), SHIFT(4097), - [3883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 109), SHIFT(2758), - [3886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 109), SHIFT(2757), - [3889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 109), SHIFT(287), - [3892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 109), - [3894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 109), SHIFT(2496), - [3897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 109), - [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [3901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 68), SHIFT(995), - [3904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 68), SHIFT(631), - [3907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), - [3909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 68), SHIFT(4097), - [3912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 68), SHIFT(2758), - [3915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 68), SHIFT(2757), - [3918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 68), SHIFT(287), - [3921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 68), - [3923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 68), SHIFT(2496), - [3926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 68), - [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [3930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 68), SHIFT(142), - [3933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), - [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [3937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 86), SHIFT(189), - [3940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2215), - [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [3944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 88), SHIFT(143), - [3947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 88), SHIFT(631), - [3950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), - [3952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 88), SHIFT(4097), - [3955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 88), SHIFT(2758), - [3958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 88), SHIFT(2757), - [3961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 88), SHIFT(287), - [3964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 88), - [3966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 88), SHIFT(2496), - [3969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 88), - [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [3973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 88), SHIFT(995), - [3976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), - [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [3980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 88), SHIFT(147), - [3983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), - [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [3987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 68), SHIFT(149), - [3990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), - [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), - [3994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 112), SHIFT(995), - [3997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 112), SHIFT(631), - [4000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2467), - [4002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 11, .production_id = 112), SHIFT(4097), - [4005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 112), SHIFT(2758), - [4008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 112), SHIFT(2757), - [4011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 112), SHIFT(287), - [4014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 112), - [4016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 11, .production_id = 112), SHIFT(2496), - [4019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 11, .production_id = 112), - [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), - [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [4025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2733), - [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), - [4029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), - [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), - [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [4035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734), - [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), - [4039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), - [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [4043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), - [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), - [4047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2188), - [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [4051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), - [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [4055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 67), SHIFT(187), - [4058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), - [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [4062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 67), SHIFT(186), - [4065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), - [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [4069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), - [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), - [4073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), - [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [4077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 109), SHIFT(156), - [4080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), - [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [4084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), - [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [4088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 52), SHIFT(184), - [4091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), - [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [4095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 68), SHIFT(166), - [4098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), - [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [4102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 86), SHIFT(183), - [4105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), - [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [4109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), - [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [4113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 88), SHIFT(167), - [4116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), - [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), - [4120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 86), SHIFT(176), - [4123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), - [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [4127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), - [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), - [4131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), - [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [4135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 88), SHIFT(173), - [4138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), - [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), - [4142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 68), SHIFT(174), - [4145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), - [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), - [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [4151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2722), - [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), - [4155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), - [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), - [4159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2743), - [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), - [4163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2724), - [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), - [4167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2683), - [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), - [4171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), - [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), - [4175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2742), - [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), - [4179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2680), - [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), - [4183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2682), - [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), - [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), + [59] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 88), SHIFT(990), + [62] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 88), SHIFT(948), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), + [71] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, 0, 88), SHIFT(4022), + [74] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), + [76] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), + [78] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), + [80] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 88), SHIFT(2753), + [83] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 88), SHIFT(2757), + [86] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 88), SHIFT(285), + [89] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 88), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3966), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), + [107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, 0, 88), SHIFT(1014), + [110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 6, 0, 88), + [114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4139), + [116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3863), + [122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_clause, 3, 0, 51), + [124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), + [126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), + [128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), + [130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_clause, 3, 0, 51), + [132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4102), + [134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), + [136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), + [138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), + [140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3944), + [142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), + [144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), + [154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4151), + [156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), + [162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_clause, 2, 0, 39), + [164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_clause, 2, 0, 39), + [166] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 3, 0, 53), REDUCE(sym_with_clause, 3, 0, 54), SHIFT(14), + [170] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 3, 0, 53), REDUCE(sym_with_clause, 3, 0, 54), SHIFT(948), + [174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), + [176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), + [178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2594), + [180] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 3, 0, 53), REDUCE(sym_with_clause, 3, 0, 54), SHIFT(4047), + [184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4116), + [186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), + [188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), + [190] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 3, 0, 53), REDUCE(sym_with_clause, 3, 0, 54), SHIFT(2753), + [194] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 3, 0, 53), REDUCE(sym_with_clause, 3, 0, 54), SHIFT(2757), + [198] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 3, 0, 53), REDUCE(sym_with_clause, 3, 0, 54), SHIFT(282), + [202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, 0, 53), REDUCE(sym_with_clause, 3, 0, 54), + [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), + [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3991), + [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), + [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), + [221] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 3, 0, 53), REDUCE(sym_with_clause, 3, 0, 54), SHIFT(2651), + [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), + [227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 3, 0, 53), REDUCE(sym_with_clause, 3, 0, 54), + [230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4153), + [232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), + [238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, 0, 39), SHIFT(990), + [241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, 0, 39), SHIFT(948), + [244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15), + [246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 3, 0, 39), SHIFT(4092), + [249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, 0, 39), SHIFT(2753), + [252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, 0, 39), SHIFT(2757), + [255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, 0, 39), SHIFT(285), + [258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3, 0, 39), + [260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 3, 0, 39), SHIFT(1005), + [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), + [265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 3, 0, 39), + [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, 0, 51), SHIFT(17), + [272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, 0, 51), SHIFT(948), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16), + [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 3, 0, 51), SHIFT(4031), + [280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, 0, 51), SHIFT(2753), + [283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, 0, 51), SHIFT(2757), + [286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, 0, 51), SHIFT(285), + [289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3, 0, 51), + [291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 3, 0, 51), SHIFT(1009), + [294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 3, 0, 51), + [298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, 0, 14), SHIFT_REPEAT(896), + [303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, 0, 14), SHIFT_REPEAT(465), + [306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, 0, 14), SHIFT_REPEAT(981), + [309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, 0, 14), SHIFT_REPEAT(995), + [312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, 0, 14), SHIFT_REPEAT(1016), + [315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, 0, 14), SHIFT_REPEAT(4102), + [318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, 0, 14), SHIFT_REPEAT(4102), + [321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, 0, 14), SHIFT_REPEAT(3943), + [324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, 0, 14), SHIFT_REPEAT(1193), + [327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, 0, 14), SHIFT_REPEAT(2753), + [330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, 0, 14), SHIFT_REPEAT(2757), + [333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, 0, 14), SHIFT_REPEAT(286), + [336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, 0, 14), + [338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, 0, 14), SHIFT_REPEAT(3031), + [341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, 0, 14), SHIFT_REPEAT(3944), + [344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, 0, 14), SHIFT_REPEAT(3956), + [347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, 0, 14), SHIFT_REPEAT(674), + [350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, 0, 14), SHIFT_REPEAT(675), + [353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, 0, 14), SHIFT_REPEAT(676), + [356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, 0, 14), SHIFT_REPEAT(648), + [359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, 0, 14), SHIFT_REPEAT(649), + [362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, 0, 14), SHIFT_REPEAT(1135), + [365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, 0, 14), + [367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, 0, 14), SHIFT_REPEAT(4151), + [370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, 0, 14), SHIFT_REPEAT(995), + [373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, 0, 14), SHIFT_REPEAT(936), + [376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, 0, 14), SHIFT_REPEAT(3869), + [379] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 65), REDUCE(sym_with_clause, 4, 0, 66), SHIFT(41), + [383] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 65), REDUCE(sym_with_clause, 4, 0, 66), SHIFT(948), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2520), + [389] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 4, 0, 65), REDUCE(sym_with_clause, 4, 0, 66), SHIFT(4038), + [393] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 65), REDUCE(sym_with_clause, 4, 0, 66), SHIFT(2753), + [397] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 65), REDUCE(sym_with_clause, 4, 0, 66), SHIFT(2757), + [401] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 65), REDUCE(sym_with_clause, 4, 0, 66), SHIFT(282), + [405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 65), REDUCE(sym_with_clause, 4, 0, 66), + [408] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 4, 0, 65), REDUCE(sym_with_clause, 4, 0, 66), SHIFT(2654), + [412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), + [414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, 0, 65), REDUCE(sym_with_clause, 4, 0, 66), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 51), SHIFT(990), + [422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 51), SHIFT(948), + [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), + [427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, 0, 51), SHIFT(4071), + [430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 51), SHIFT(2753), + [433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 51), SHIFT(2757), + [436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 51), SHIFT(285), + [439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 51), + [441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, 0, 51), SHIFT(1026), + [444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), + [446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 4, 0, 51), + [448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 67), SHIFT(21), + [453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 67), SHIFT(948), + [456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), + [458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, 0, 67), SHIFT(4077), + [461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 67), SHIFT(2753), + [464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 67), SHIFT(2757), + [467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 67), SHIFT(285), + [470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 67), + [472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, 0, 67), SHIFT(1032), + [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), + [477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 4, 0, 67), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 67), SHIFT(23), + [484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), + [486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, 0, 67), SHIFT(4042), + [489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, 0, 67), SHIFT(1049), + [492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), + [494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_clause, 4, 0, 67), + [498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_clause, 4, 0, 67), + [500] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 53), REDUCE(sym_with_clause, 4, 0, 54), SHIFT(990), + [504] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 53), REDUCE(sym_with_clause, 4, 0, 54), SHIFT(948), + [508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), + [510] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 4, 0, 53), REDUCE(sym_with_clause, 4, 0, 54), SHIFT(4056), + [514] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 53), REDUCE(sym_with_clause, 4, 0, 54), SHIFT(2753), + [518] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 53), REDUCE(sym_with_clause, 4, 0, 54), SHIFT(2757), + [522] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 53), REDUCE(sym_with_clause, 4, 0, 54), SHIFT(282), + [526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 53), REDUCE(sym_with_clause, 4, 0, 54), + [529] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 4, 0, 53), REDUCE(sym_with_clause, 4, 0, 54), SHIFT(2662), + [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), + [535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, 0, 53), REDUCE(sym_with_clause, 4, 0, 54), + [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), + [540] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 69), REDUCE(sym_with_clause, 4, 0, 71), SHIFT(25), + [544] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 69), REDUCE(sym_with_clause, 4, 0, 71), SHIFT(948), + [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2539), + [550] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 4, 0, 69), REDUCE(sym_with_clause, 4, 0, 71), SHIFT(4072), + [554] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 69), REDUCE(sym_with_clause, 4, 0, 71), SHIFT(2753), + [558] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 69), REDUCE(sym_with_clause, 4, 0, 71), SHIFT(2757), + [562] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 69), REDUCE(sym_with_clause, 4, 0, 71), SHIFT(282), + [566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 69), REDUCE(sym_with_clause, 4, 0, 71), + [569] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 4, 0, 69), REDUCE(sym_with_clause, 4, 0, 71), SHIFT(2649), + [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), + [575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, 0, 69), REDUCE(sym_with_clause, 4, 0, 71), + [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [580] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 65), REDUCE(sym_with_clause, 4, 0, 66), SHIFT(26), + [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), + [586] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 4, 0, 65), REDUCE(sym_with_clause, 4, 0, 66), SHIFT(4090), + [590] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 4, 0, 65), REDUCE(sym_with_clause, 4, 0, 66), SHIFT(2668), + [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), + [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), + [600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, 0, 51), SHIFT(4053), + [603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, 0, 51), SHIFT(1073), + [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), + [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 2, 0, 39), SHIFT(6), + [613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 2, 0, 39), SHIFT(948), + [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5), + [618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 2, 0, 39), SHIFT(4044), + [621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 2, 0, 39), SHIFT(2753), + [624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 2, 0, 39), SHIFT(2757), + [627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 2, 0, 39), SHIFT(285), + [630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 2, 0, 39), + [632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 2, 0, 39), SHIFT(1004), + [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 2, 0, 39), + [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [641] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 83), REDUCE(sym_with_clause, 5, 0, 85), SHIFT(28), + [645] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 83), REDUCE(sym_with_clause, 5, 0, 85), SHIFT(948), + [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), + [651] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 5, 0, 83), REDUCE(sym_with_clause, 5, 0, 85), SHIFT(4075), + [655] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 83), REDUCE(sym_with_clause, 5, 0, 85), SHIFT(2753), + [659] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 83), REDUCE(sym_with_clause, 5, 0, 85), SHIFT(2757), + [663] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 83), REDUCE(sym_with_clause, 5, 0, 85), SHIFT(282), + [667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 83), REDUCE(sym_with_clause, 5, 0, 85), + [670] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 5, 0, 83), REDUCE(sym_with_clause, 5, 0, 85), SHIFT(2671), + [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), + [676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, 0, 83), REDUCE(sym_with_clause, 5, 0, 85), + [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [681] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 86), REDUCE(sym_with_clause, 5, 0, 87), SHIFT(29), + [685] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 86), REDUCE(sym_with_clause, 5, 0, 87), SHIFT(948), + [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), + [691] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 5, 0, 86), REDUCE(sym_with_clause, 5, 0, 87), SHIFT(4051), + [695] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 86), REDUCE(sym_with_clause, 5, 0, 87), SHIFT(2753), + [699] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 86), REDUCE(sym_with_clause, 5, 0, 87), SHIFT(2757), + [703] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 86), REDUCE(sym_with_clause, 5, 0, 87), SHIFT(282), + [707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 86), REDUCE(sym_with_clause, 5, 0, 87), + [710] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 5, 0, 86), REDUCE(sym_with_clause, 5, 0, 87), SHIFT(2667), + [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), + [716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, 0, 86), REDUCE(sym_with_clause, 5, 0, 87), + [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 67), SHIFT(990), + [724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 67), SHIFT(948), + [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), + [729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, 0, 67), SHIFT(4060), + [732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 67), SHIFT(2753), + [735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 67), SHIFT(2757), + [738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 67), SHIFT(285), + [741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 67), + [743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, 0, 67), SHIFT(1019), + [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), + [748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 5, 0, 67), + [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [752] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 86), REDUCE(sym_with_clause, 5, 0, 87), SHIFT(31), + [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), + [758] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 5, 0, 86), REDUCE(sym_with_clause, 5, 0, 87), SHIFT(4079), + [762] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 5, 0, 86), REDUCE(sym_with_clause, 5, 0, 87), SHIFT(2661), + [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), + [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), + [772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, 0, 67), SHIFT(4040), + [775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, 0, 67), SHIFT(1083), + [778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), + [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 88), SHIFT(2), + [785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 88), SHIFT(948), + [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), + [790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, 0, 88), SHIFT(4078), + [793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 88), SHIFT(2753), + [796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 88), SHIFT(2757), + [799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 88), SHIFT(285), + [802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 88), + [804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, 0, 88), SHIFT(1052), + [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), + [809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 5, 0, 88), + [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [813] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 69), REDUCE(sym_with_clause, 5, 0, 71), SHIFT(990), + [817] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 69), REDUCE(sym_with_clause, 5, 0, 71), SHIFT(948), + [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2506), + [823] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 5, 0, 69), REDUCE(sym_with_clause, 5, 0, 71), SHIFT(4096), + [827] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 69), REDUCE(sym_with_clause, 5, 0, 71), SHIFT(2753), + [831] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 69), REDUCE(sym_with_clause, 5, 0, 71), SHIFT(2757), + [835] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 69), REDUCE(sym_with_clause, 5, 0, 71), SHIFT(282), + [839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 69), REDUCE(sym_with_clause, 5, 0, 71), + [842] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 5, 0, 69), REDUCE(sym_with_clause, 5, 0, 71), SHIFT(2659), + [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), + [848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, 0, 69), REDUCE(sym_with_clause, 5, 0, 71), + [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), + [853] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 65), REDUCE(sym_with_clause, 5, 0, 66), SHIFT(990), + [857] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 65), REDUCE(sym_with_clause, 5, 0, 66), SHIFT(948), + [861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), + [863] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 5, 0, 65), REDUCE(sym_with_clause, 5, 0, 66), SHIFT(4037), + [867] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 65), REDUCE(sym_with_clause, 5, 0, 66), SHIFT(2753), + [871] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 65), REDUCE(sym_with_clause, 5, 0, 66), SHIFT(2757), + [875] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 65), REDUCE(sym_with_clause, 5, 0, 66), SHIFT(282), + [879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 65), REDUCE(sym_with_clause, 5, 0, 66), + [882] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 5, 0, 65), REDUCE(sym_with_clause, 5, 0, 66), SHIFT(2670), + [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), + [888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, 0, 65), REDUCE(sym_with_clause, 5, 0, 66), + [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), + [893] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 83), REDUCE(sym_with_clause, 5, 0, 85), SHIFT(35), + [897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), + [899] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 5, 0, 83), REDUCE(sym_with_clause, 5, 0, 85), SHIFT(4062), + [903] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 5, 0, 83), REDUCE(sym_with_clause, 5, 0, 85), SHIFT(2672), + [907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), + [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [911] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 83), REDUCE(sym_with_clause, 6, 0, 85), SHIFT(990), + [915] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 83), REDUCE(sym_with_clause, 6, 0, 85), SHIFT(948), + [919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), + [921] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 6, 0, 83), REDUCE(sym_with_clause, 6, 0, 85), SHIFT(4045), + [925] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 83), REDUCE(sym_with_clause, 6, 0, 85), SHIFT(2753), + [929] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 83), REDUCE(sym_with_clause, 6, 0, 85), SHIFT(2757), + [933] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 83), REDUCE(sym_with_clause, 6, 0, 85), SHIFT(282), + [937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 83), REDUCE(sym_with_clause, 6, 0, 85), + [940] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 6, 0, 83), REDUCE(sym_with_clause, 6, 0, 85), SHIFT(2663), + [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), + [946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, 0, 83), REDUCE(sym_with_clause, 6, 0, 85), + [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), + [951] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 86), REDUCE(sym_with_clause, 6, 0, 87), SHIFT(990), + [955] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 86), REDUCE(sym_with_clause, 6, 0, 87), SHIFT(948), + [959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), + [961] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 6, 0, 86), REDUCE(sym_with_clause, 6, 0, 87), SHIFT(4082), + [965] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 86), REDUCE(sym_with_clause, 6, 0, 87), SHIFT(2753), + [969] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 86), REDUCE(sym_with_clause, 6, 0, 87), SHIFT(2757), + [973] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 86), REDUCE(sym_with_clause, 6, 0, 87), SHIFT(282), + [977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 86), REDUCE(sym_with_clause, 6, 0, 87), + [980] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 6, 0, 86), REDUCE(sym_with_clause, 6, 0, 87), SHIFT(2665), + [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), + [986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, 0, 86), REDUCE(sym_with_clause, 6, 0, 87), + [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [991] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 106), REDUCE(sym_with_clause, 6, 0, 108), SHIFT(36), + [995] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 106), REDUCE(sym_with_clause, 6, 0, 108), SHIFT(948), + [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), + [1001] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 6, 0, 106), REDUCE(sym_with_clause, 6, 0, 108), SHIFT(4065), + [1005] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 106), REDUCE(sym_with_clause, 6, 0, 108), SHIFT(2753), + [1009] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 106), REDUCE(sym_with_clause, 6, 0, 108), SHIFT(2757), + [1013] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 106), REDUCE(sym_with_clause, 6, 0, 108), SHIFT(282), + [1017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 106), REDUCE(sym_with_clause, 6, 0, 108), + [1020] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 6, 0, 106), REDUCE(sym_with_clause, 6, 0, 108), SHIFT(2666), + [1024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [1026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, 0, 106), REDUCE(sym_with_clause, 6, 0, 108), + [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), + [1033] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 6, 0, 86), REDUCE(sym_with_clause, 6, 0, 87), SHIFT(4061), + [1037] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 6, 0, 86), REDUCE(sym_with_clause, 6, 0, 87), SHIFT(2656), + [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [1045] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 106), REDUCE(sym_with_clause, 6, 0, 108), SHIFT(37), + [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), + [1051] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 6, 0, 106), REDUCE(sym_with_clause, 6, 0, 108), SHIFT(4028), + [1055] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 6, 0, 106), REDUCE(sym_with_clause, 6, 0, 108), SHIFT(2652), + [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), + [1063] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 110), REDUCE(sym_with_clause, 6, 0, 111), SHIFT(38), + [1067] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 110), REDUCE(sym_with_clause, 6, 0, 111), SHIFT(948), + [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), + [1073] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 6, 0, 110), REDUCE(sym_with_clause, 6, 0, 111), SHIFT(4054), + [1077] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 110), REDUCE(sym_with_clause, 6, 0, 111), SHIFT(2753), + [1081] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 110), REDUCE(sym_with_clause, 6, 0, 111), SHIFT(2757), + [1085] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 110), REDUCE(sym_with_clause, 6, 0, 111), SHIFT(282), + [1089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 110), REDUCE(sym_with_clause, 6, 0, 111), + [1092] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 6, 0, 110), REDUCE(sym_with_clause, 6, 0, 111), SHIFT(2657), + [1096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [1098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, 0, 110), REDUCE(sym_with_clause, 6, 0, 111), + [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [1103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, 0, 51), SHIFT(10), + [1106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), + [1108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 3, 0, 51), SHIFT(4039), + [1111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 3, 0, 51), SHIFT(1070), + [1114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), + [1116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [1118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2276), + [1120] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 6, 0, 83), REDUCE(sym_with_clause, 6, 0, 85), SHIFT(4025), + [1124] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 6, 0, 83), REDUCE(sym_with_clause, 6, 0, 85), SHIFT(2658), + [1128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [1130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), + [1132] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 106), REDUCE(sym_with_clause, 7, 0, 108), SHIFT(990), + [1136] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 106), REDUCE(sym_with_clause, 7, 0, 108), SHIFT(948), + [1140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2545), + [1142] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 7, 0, 106), REDUCE(sym_with_clause, 7, 0, 108), SHIFT(4070), + [1146] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 106), REDUCE(sym_with_clause, 7, 0, 108), SHIFT(2753), + [1150] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 106), REDUCE(sym_with_clause, 7, 0, 108), SHIFT(2757), + [1154] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 106), REDUCE(sym_with_clause, 7, 0, 108), SHIFT(282), + [1158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 106), REDUCE(sym_with_clause, 7, 0, 108), + [1161] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 7, 0, 106), REDUCE(sym_with_clause, 7, 0, 108), SHIFT(2655), + [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [1167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, 0, 106), REDUCE(sym_with_clause, 7, 0, 108), + [1170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), + [1172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), + [1174] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 7, 0, 106), REDUCE(sym_with_clause, 7, 0, 108), SHIFT(4035), + [1178] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 7, 0, 106), REDUCE(sym_with_clause, 7, 0, 108), SHIFT(2653), + [1182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [1184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [1186] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 110), REDUCE(sym_with_clause, 7, 0, 111), SHIFT(990), + [1190] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 110), REDUCE(sym_with_clause, 7, 0, 111), SHIFT(948), + [1194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), + [1196] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 7, 0, 110), REDUCE(sym_with_clause, 7, 0, 111), SHIFT(4086), + [1200] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 110), REDUCE(sym_with_clause, 7, 0, 111), SHIFT(2753), + [1204] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 110), REDUCE(sym_with_clause, 7, 0, 111), SHIFT(2757), + [1208] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 110), REDUCE(sym_with_clause, 7, 0, 111), SHIFT(282), + [1212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 110), REDUCE(sym_with_clause, 7, 0, 111), + [1215] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 7, 0, 110), REDUCE(sym_with_clause, 7, 0, 111), SHIFT(2660), + [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [1221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, 0, 110), REDUCE(sym_with_clause, 7, 0, 111), + [1224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [1226] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 127), REDUCE(sym_with_clause, 7, 0, 129), SHIFT(40), + [1230] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 127), REDUCE(sym_with_clause, 7, 0, 129), SHIFT(948), + [1234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), + [1236] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 7, 0, 127), REDUCE(sym_with_clause, 7, 0, 129), SHIFT(4089), + [1240] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 127), REDUCE(sym_with_clause, 7, 0, 129), SHIFT(2753), + [1244] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 127), REDUCE(sym_with_clause, 7, 0, 129), SHIFT(2757), + [1248] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 127), REDUCE(sym_with_clause, 7, 0, 129), SHIFT(282), + [1252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 127), REDUCE(sym_with_clause, 7, 0, 129), + [1255] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 7, 0, 127), REDUCE(sym_with_clause, 7, 0, 129), SHIFT(2664), + [1259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [1261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, 0, 127), REDUCE(sym_with_clause, 7, 0, 129), + [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [1266] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 127), REDUCE(sym_with_clause, 8, 0, 129), SHIFT(990), + [1270] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 127), REDUCE(sym_with_clause, 8, 0, 129), SHIFT(948), + [1274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), + [1276] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 8, 0, 127), REDUCE(sym_with_clause, 8, 0, 129), SHIFT(4024), + [1280] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 127), REDUCE(sym_with_clause, 8, 0, 129), SHIFT(2753), + [1284] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 127), REDUCE(sym_with_clause, 8, 0, 129), SHIFT(2757), + [1288] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 127), REDUCE(sym_with_clause, 8, 0, 129), SHIFT(282), + [1292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 127), REDUCE(sym_with_clause, 8, 0, 129), + [1295] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 8, 0, 127), REDUCE(sym_with_clause, 8, 0, 129), SHIFT(2650), + [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), + [1301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, 0, 127), REDUCE(sym_with_clause, 8, 0, 129), + [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), + [1306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), + [1308] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 5, 0, 65), REDUCE(sym_with_clause, 5, 0, 66), SHIFT(4081), + [1312] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 5, 0, 65), REDUCE(sym_with_clause, 5, 0, 66), SHIFT(2673), + [1316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), + [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [1320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 88), SHIFT(994), + [1323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 88), SHIFT(955), + [1326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), + [1328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 10, 0, 88), SHIFT(4116), + [1331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 88), SHIFT(2753), + [1334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 88), SHIFT(2757), + [1337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 88), SHIFT(282), + [1340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 88), + [1342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 10, 0, 88), SHIFT(2106), + [1345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 10, 0, 88), + [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), + [1349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, 0, 129), SHIFT(994), + [1352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, 0, 129), SHIFT(955), + [1355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2489), + [1357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 12, 0, 129), SHIFT(4116), + [1360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, 0, 129), SHIFT(2753), + [1363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, 0, 129), SHIFT(2757), + [1366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, 0, 129), SHIFT(282), + [1369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 12, 0, 129), + [1371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 12, 0, 129), SHIFT(2106), + [1374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 12, 0, 129), + [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), + [1378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 51), SHIFT(70), + [1381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 51), SHIFT(955), + [1384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), + [1386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, 0, 51), SHIFT(4116), + [1389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 51), SHIFT(2753), + [1392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 51), SHIFT(2757), + [1395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 51), SHIFT(282), + [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 51), + [1400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, 0, 51), SHIFT(2106), + [1403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 5, 0, 51), + [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [1407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 51), SHIFT(994), + [1410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), + [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), + [1414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 66), SHIFT(73), + [1417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 66), SHIFT(955), + [1420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), + [1422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, 0, 66), SHIFT(4116), + [1425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 66), SHIFT(2753), + [1428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 66), SHIFT(2757), + [1431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 66), SHIFT(282), + [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 66), + [1436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, 0, 66), SHIFT(2106), + [1439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 5, 0, 66), + [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [1443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 51), SHIFT(76), + [1446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), + [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [1450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [1454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), + [1456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2735), + [1458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2763), + [1460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2867), + [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4107), + [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), + [1466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2767), + [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), + [1472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3979), + [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), + [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [1484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), + [1486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2762), + [1488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), + [1490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4142), + [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), + [1496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), + [1500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 67), SHIFT(80), + [1503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 67), SHIFT(955), + [1506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), + [1508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, 0, 67), SHIFT(4116), + [1511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 67), SHIFT(282), + [1514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, 0, 67), SHIFT(2106), + [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2683), + [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), + [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2693), + [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), + [1531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 67), SHIFT(86), + [1534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), + [1536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [1538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [1540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2715), + [1542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), + [1544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 51), SHIFT(45), + [1547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 51), SHIFT(955), + [1550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2518), + [1552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, 0, 51), SHIFT(4116), + [1555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 51), SHIFT(282), + [1558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, 0, 51), SHIFT(2106), + [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [1563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 39), SHIFT(994), + [1566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 39), SHIFT(955), + [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), + [1571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, 0, 39), SHIFT(4116), + [1574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 39), SHIFT(2753), + [1577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 39), SHIFT(2757), + [1580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 39), SHIFT(282), + [1583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 39), + [1585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, 0, 39), SHIFT(2106), + [1588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 5, 0, 39), + [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), + [1592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 39), SHIFT(92), + [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), + [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [1599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 54), SHIFT(93), + [1602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 54), SHIFT(955), + [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), + [1607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, 0, 54), SHIFT(4116), + [1610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 54), SHIFT(2753), + [1613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 54), SHIFT(2757), + [1616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 54), SHIFT(282), + [1619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 54), + [1621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, 0, 54), SHIFT(2106), + [1624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 5, 0, 54), + [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [1628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 54), SHIFT(994), + [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), + [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), + [1635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 54), SHIFT(96), + [1638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2339), + [1640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [1642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 39), SHIFT(97), + [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2363), + [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), + [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2375), + [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [1653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 71), SHIFT(100), + [1656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 71), SHIFT(955), + [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2448), + [1661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, 0, 71), SHIFT(4116), + [1664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 71), SHIFT(2753), + [1667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 71), SHIFT(2757), + [1670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 71), SHIFT(282), + [1673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 71), + [1675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, 0, 71), SHIFT(2106), + [1678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 5, 0, 71), + [1680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), + [1682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 2, 0, 0), SHIFT(941), + [1685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 2, 0, 0), SHIFT(465), + [1688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), + [1690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), + [1692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), + [1694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_clause, 2, 0, 0), SHIFT(4117), + [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4117), + [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), + [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), + [1703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 2, 0, 0), SHIFT(2753), + [1706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 2, 0, 0), SHIFT(2757), + [1709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 2, 0, 0), SHIFT(284), + [1712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 2, 0, 0), + [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), + [1716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3927), + [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), + [1720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [1724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [1728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), + [1730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_clause, 2, 0, 0), SHIFT(1287), + [1733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 2, 0, 0), + [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), + [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), + [1743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 51), SHIFT(102), + [1746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2511), + [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), + [1750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2522), + [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), + [1754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 66), SHIFT(105), + [1757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), + [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), + [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), + [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), + [1767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 51), SHIFT(108), + [1770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), + [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), + [1774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3, 0, 0), SHIFT(819), + [1777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3, 0, 0), SHIFT(465), + [1780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), + [1782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_clause, 3, 0, 0), SHIFT(4117), + [1785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3, 0, 0), SHIFT(2753), + [1788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3, 0, 0), SHIFT(2757), + [1791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3, 0, 0), SHIFT(284), + [1794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 3, 0, 0), + [1796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_clause, 3, 0, 0), SHIFT(1287), + [1799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 3, 0, 0), + [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [1803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 51), SHIFT(994), + [1806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 51), SHIFT(955), + [1809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), + [1811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, 0, 51), SHIFT(4116), + [1814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 51), SHIFT(2753), + [1817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 51), SHIFT(2757), + [1820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 51), SHIFT(282), + [1823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 51), + [1825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, 0, 51), SHIFT(2106), + [1828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 6, 0, 51), + [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [1832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 51), SHIFT(111), + [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), + [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [1839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 66), SHIFT(112), + [1842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 66), SHIFT(955), + [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), + [1847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, 0, 66), SHIFT(4116), + [1850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 66), SHIFT(2753), + [1853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 66), SHIFT(2757), + [1856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 66), SHIFT(282), + [1859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 66), + [1861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, 0, 66), SHIFT(2106), + [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 6, 0, 66), + [1866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [1868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 66), SHIFT(994), + [1871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), + [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [1875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 66), SHIFT(115), + [1878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), + [1880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [1882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 51), SHIFT(116), + [1885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), + [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [1889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), + [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [1893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 85), SHIFT(119), + [1896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 85), SHIFT(955), + [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), + [1901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, 0, 85), SHIFT(4116), + [1904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 85), SHIFT(2753), + [1907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 85), SHIFT(2757), + [1910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 85), SHIFT(282), + [1913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 85), + [1915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, 0, 85), SHIFT(2106), + [1918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 6, 0, 85), + [1920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [1924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2723), + [1926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), + [1928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 67), SHIFT(121), + [1931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 67), SHIFT(955), + [1934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), + [1936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, 0, 67), SHIFT(4116), + [1939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 67), SHIFT(2753), + [1942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 67), SHIFT(2757), + [1945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 67), SHIFT(282), + [1948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 67), + [1950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, 0, 67), SHIFT(2106), + [1953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 6, 0, 67), + [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [1957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 67), SHIFT(994), + [1960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), + [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), + [1964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 87), SHIFT(124), + [1967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 87), SHIFT(955), + [1970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), + [1972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, 0, 87), SHIFT(4116), + [1975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 87), SHIFT(2753), + [1978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 87), SHIFT(2757), + [1981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 87), SHIFT(282), + [1984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 87), + [1986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, 0, 87), SHIFT(2106), + [1989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 6, 0, 87), + [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2724), + [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), + [1999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 67), SHIFT(127), + [2002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), + [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [2008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2675), + [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), + [2012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 67), SHIFT(130), + [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), + [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), + [2019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), + [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [2023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 87), SHIFT(133), + [2026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), + [2028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), + [2030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 67), SHIFT(136), + [2033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), + [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [2037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 88), SHIFT(140), + [2040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 88), SHIFT(955), + [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), + [2045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, 0, 88), SHIFT(4116), + [2048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 88), SHIFT(282), + [2051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, 0, 88), SHIFT(2106), + [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [2056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 39), SHIFT(55), + [2059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 39), SHIFT(955), + [2062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), + [2064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, 0, 39), SHIFT(4116), + [2067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 39), SHIFT(2753), + [2070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 39), SHIFT(2757), + [2073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 39), SHIFT(282), + [2076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 39), + [2078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, 0, 39), SHIFT(2106), + [2081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 4, 0, 39), + [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [2085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 39), SHIFT(994), + [2088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), + [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), + [2092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 39), SHIFT(994), + [2095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 39), SHIFT(955), + [2098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), + [2100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, 0, 39), SHIFT(4116), + [2103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 39), SHIFT(2753), + [2106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 39), SHIFT(2757), + [2109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 39), SHIFT(282), + [2112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 39), + [2114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, 0, 39), SHIFT(2106), + [2117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 6, 0, 39), + [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [2121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 54), SHIFT(994), + [2124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 54), SHIFT(955), + [2127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), + [2129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, 0, 54), SHIFT(4116), + [2132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 54), SHIFT(2753), + [2135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 54), SHIFT(2757), + [2138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 54), SHIFT(282), + [2141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 54), + [2143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, 0, 54), SHIFT(2106), + [2146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 6, 0, 54), + [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [2150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 54), SHIFT(144), + [2153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), + [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [2157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 54), SHIFT(145), + [2160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), + [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [2164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), + [2166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [2168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), + [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [2172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 39), SHIFT(147), + [2175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), + [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), + [2179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 71), SHIFT(148), + [2182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 71), SHIFT(955), + [2185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), + [2187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, 0, 71), SHIFT(4116), + [2190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 71), SHIFT(2753), + [2193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 71), SHIFT(2757), + [2196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 71), SHIFT(282), + [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 71), + [2201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, 0, 71), SHIFT(2106), + [2204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 6, 0, 71), + [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [2208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 71), SHIFT(994), + [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), + [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), + [2215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 71), SHIFT(151), + [2218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), + [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), + [2222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), + [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [2226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 51), SHIFT(152), + [2229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), + [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [2233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 66), SHIFT(153), + [2236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), + [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [2240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), + [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [2244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 66), SHIFT(156), + [2247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), + [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [2251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 51), SHIFT(157), + [2254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), + [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [2258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), + [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [2262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 85), SHIFT(160), + [2265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), + [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), + [2269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 54), SHIFT(58), + [2272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 54), SHIFT(955), + [2275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), + [2277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, 0, 54), SHIFT(4116), + [2280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 54), SHIFT(2753), + [2283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 54), SHIFT(2757), + [2286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 54), SHIFT(282), + [2289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 54), + [2291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, 0, 54), SHIFT(2106), + [2294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 4, 0, 54), + [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [2298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 51), SHIFT(994), + [2301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 51), SHIFT(955), + [2304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), + [2306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, 0, 51), SHIFT(4116), + [2309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 51), SHIFT(2753), + [2312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 51), SHIFT(2757), + [2315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 51), SHIFT(282), + [2318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 51), + [2320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, 0, 51), SHIFT(2106), + [2323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 7, 0, 51), + [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), + [2327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 66), SHIFT(994), + [2330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 66), SHIFT(955), + [2333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2496), + [2335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, 0, 66), SHIFT(4116), + [2338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 66), SHIFT(2753), + [2341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 66), SHIFT(2757), + [2344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 66), SHIFT(282), + [2347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 66), + [2349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, 0, 66), SHIFT(2106), + [2352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 7, 0, 66), + [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [2356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 66), SHIFT(162), + [2359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2497), + [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [2363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 66), SHIFT(163), + [2366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2499), + [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), + [2370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), + [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [2374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2504), + [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), + [2378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 51), SHIFT(269), + [2381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2505), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [2385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 85), SHIFT(165), + [2388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 85), SHIFT(955), + [2391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), + [2393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, 0, 85), SHIFT(4116), + [2396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 85), SHIFT(2753), + [2399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 85), SHIFT(2757), + [2402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 85), SHIFT(282), + [2405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 85), + [2407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, 0, 85), SHIFT(2106), + [2410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 7, 0, 85), + [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [2414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 85), SHIFT(994), + [2417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2510), + [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [2421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 85), SHIFT(168), + [2424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2512), + [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), + [2428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 67), SHIFT(994), + [2431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 67), SHIFT(955), + [2434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), + [2436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, 0, 67), SHIFT(4116), + [2439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 67), SHIFT(2753), + [2442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 67), SHIFT(2757), + [2445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 67), SHIFT(282), + [2448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 67), + [2450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, 0, 67), SHIFT(2106), + [2453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 7, 0, 67), + [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), + [2457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 67), SHIFT(169), + [2460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2517), + [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [2464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 87), SHIFT(170), + [2467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 87), SHIFT(955), + [2470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2521), + [2472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, 0, 87), SHIFT(4116), + [2475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 87), SHIFT(2753), + [2478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 87), SHIFT(2757), + [2481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 87), SHIFT(282), + [2484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 87), + [2486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, 0, 87), SHIFT(2106), + [2489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 7, 0, 87), + [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [2493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 87), SHIFT(994), + [2496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), + [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), + [2500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 87), SHIFT(173), + [2503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), + [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), + [2507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 67), SHIFT(174), + [2510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2535), + [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [2514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), + [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [2518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 108), SHIFT(177), + [2521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 108), SHIFT(955), + [2524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2542), + [2526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, 0, 108), SHIFT(4116), + [2529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 108), SHIFT(2753), + [2532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 108), SHIFT(2757), + [2535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 108), SHIFT(282), + [2538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 108), + [2540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, 0, 108), SHIFT(2106), + [2543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 7, 0, 108), + [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [2549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2743), + [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), + [2553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2548), + [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), + [2557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 67), SHIFT(179), + [2560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), + [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), + [2564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 87), SHIFT(180), + [2567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), + [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [2571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), + [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [2575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 87), SHIFT(183), + [2578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), + [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [2582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 67), SHIFT(184), + [2585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), + [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [2589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), + [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [2593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 108), SHIFT(187), + [2596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), + [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [2600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 39), SHIFT(61), + [2603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), + [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), + [2607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 88), SHIFT(189), + [2610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 88), SHIFT(955), + [2613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), + [2615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, 0, 88), SHIFT(4116), + [2618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 88), SHIFT(2753), + [2621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 88), SHIFT(2757), + [2624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 88), SHIFT(282), + [2627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 88), + [2629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, 0, 88), SHIFT(2106), + [2632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 7, 0, 88), + [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [2636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 88), SHIFT(994), + [2639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), + [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [2643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 111), SHIFT(192), + [2646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 111), SHIFT(955), + [2649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), + [2651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, 0, 111), SHIFT(4116), + [2654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 111), SHIFT(2753), + [2657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 111), SHIFT(2757), + [2660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 111), SHIFT(282), + [2663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 111), + [2665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, 0, 111), SHIFT(2106), + [2668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 7, 0, 111), + [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [2672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 88), SHIFT(195), + [2675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), + [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [2679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 51), SHIFT(65), + [2682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), + [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), + [2686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 54), SHIFT(994), + [2689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 54), SHIFT(955), + [2692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), + [2694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, 0, 54), SHIFT(4116), + [2697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 54), SHIFT(2753), + [2700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 54), SHIFT(2757), + [2703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 54), SHIFT(282), + [2706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 54), + [2708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, 0, 54), SHIFT(2106), + [2711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 7, 0, 54), + [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [2715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), + [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [2719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 54), SHIFT(198), + [2722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), + [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [2726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 39), SHIFT(994), + [2729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 39), SHIFT(955), + [2732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), + [2734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, 0, 39), SHIFT(4116), + [2737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 39), SHIFT(2753), + [2740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 39), SHIFT(2757), + [2743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 39), SHIFT(282), + [2746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 39), + [2748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, 0, 39), SHIFT(2106), + [2751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 7, 0, 39), + [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [2755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 71), SHIFT(994), + [2758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 71), SHIFT(955), + [2761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), + [2763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, 0, 71), SHIFT(4116), + [2766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 71), SHIFT(2753), + [2769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 71), SHIFT(2757), + [2772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 71), SHIFT(282), + [2775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 71), + [2777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, 0, 71), SHIFT(2106), + [2780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 7, 0, 71), + [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [2784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 71), SHIFT(199), + [2787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), + [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [2791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 71), SHIFT(200), + [2794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), + [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [2798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), + [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [2802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), + [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [2806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), + [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), + [2810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 66), SHIFT(202), + [2813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), + [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [2817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 66), SHIFT(203), + [2820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), + [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [2824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), + [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), + [2828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), + [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [2832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 51), SHIFT(205), + [2835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), + [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [2839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 85), SHIFT(206), + [2842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), + [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [2846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), + [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [2850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 85), SHIFT(209), + [2853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), + [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [2857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 66), SHIFT(994), + [2860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 66), SHIFT(955), + [2863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), + [2865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, 0, 66), SHIFT(4116), + [2868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 66), SHIFT(2753), + [2871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 66), SHIFT(2757), + [2874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 66), SHIFT(282), + [2877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 66), + [2879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, 0, 66), SHIFT(2106), + [2882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 8, 0, 66), + [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [2886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), + [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [2890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 66), SHIFT(210), + [2893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), + [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [2897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 85), SHIFT(994), + [2900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 85), SHIFT(955), + [2903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), + [2905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, 0, 85), SHIFT(4116), + [2908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 85), SHIFT(2753), + [2911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 85), SHIFT(2757), + [2914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 85), SHIFT(282), + [2917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 85), + [2919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, 0, 85), SHIFT(2106), + [2922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 8, 0, 85), + [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [2926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 85), SHIFT(211), + [2929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), + [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), + [2933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 85), SHIFT(212), + [2936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), + [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [2940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), + [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), + [2944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 67), SHIFT(994), + [2947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 67), SHIFT(955), + [2950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2223), + [2952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, 0, 67), SHIFT(4116), + [2955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 67), SHIFT(2753), + [2958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 67), SHIFT(2757), + [2961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 67), SHIFT(282), + [2964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 67), + [2966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, 0, 67), SHIFT(2106), + [2969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 8, 0, 67), + [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [2973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 87), SHIFT(994), + [2976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 87), SHIFT(955), + [2979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), + [2981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, 0, 87), SHIFT(4116), + [2984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 87), SHIFT(2753), + [2987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 87), SHIFT(2757), + [2990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 87), SHIFT(282), + [2993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 87), + [2995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, 0, 87), SHIFT(2106), + [2998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 8, 0, 87), + [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), + [3002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 87), SHIFT(214), + [3005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), + [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [3009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 87), SHIFT(215), + [3012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), + [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), + [3016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), + [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), + [3020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), + [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), + [3024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 67), SHIFT(217), + [3027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), + [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [3031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 108), SHIFT(218), + [3034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 108), SHIFT(955), + [3037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), + [3039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, 0, 108), SHIFT(4116), + [3042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 108), SHIFT(2753), + [3045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 108), SHIFT(2757), + [3048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 108), SHIFT(282), + [3051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 108), + [3053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, 0, 108), SHIFT(2106), + [3056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 8, 0, 108), + [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), + [3060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 108), SHIFT(994), + [3063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), + [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), + [3067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 108), SHIFT(221), + [3070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), + [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), + [3074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), + [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), + [3078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), + [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [3082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 87), SHIFT(222), + [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), + [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [3089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 87), SHIFT(223), + [3092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), + [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [3096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), + [3100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), + [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), + [3104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 67), SHIFT(225), + [3107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), + [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), + [3111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 108), SHIFT(226), + [3114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), + [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), + [3118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), + [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), + [3122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 108), SHIFT(229), + [3125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), + [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), + [3129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 88), SHIFT(994), + [3132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 88), SHIFT(955), + [3135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), + [3137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, 0, 88), SHIFT(4116), + [3140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 88), SHIFT(2753), + [3143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 88), SHIFT(2757), + [3146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 88), SHIFT(282), + [3149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 88), + [3151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, 0, 88), SHIFT(2106), + [3154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 8, 0, 88), + [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [3158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 88), SHIFT(230), + [3161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2264), + [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), + [3165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 111), SHIFT(231), + [3168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 111), SHIFT(955), + [3171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), + [3173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, 0, 111), SHIFT(4116), + [3176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 111), SHIFT(2753), + [3179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 111), SHIFT(2757), + [3182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 111), SHIFT(282), + [3185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 111), + [3187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, 0, 111), SHIFT(2106), + [3190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 8, 0, 111), + [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [3194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 111), SHIFT(994), + [3197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), + [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), + [3201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 111), SHIFT(234), + [3204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), + [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), + [3208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 88), SHIFT(235), + [3211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2273), + [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), + [3215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), + [3219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 129), SHIFT(238), + [3222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 129), SHIFT(955), + [3225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2277), + [3227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, 0, 129), SHIFT(4116), + [3230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 129), SHIFT(2753), + [3233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 129), SHIFT(2757), + [3236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 129), SHIFT(282), + [3239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 129), + [3241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, 0, 129), SHIFT(2106), + [3244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 8, 0, 129), + [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), + [3248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, 0, 39), SHIFT(91), + [3251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, 0, 39), SHIFT(955), + [3254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), + [3256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 3, 0, 39), SHIFT(4116), + [3259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, 0, 39), SHIFT(282), + [3262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 3, 0, 39), SHIFT(2106), + [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), + [3267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 54), SHIFT(994), + [3270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 54), SHIFT(955), + [3273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2284), + [3275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, 0, 54), SHIFT(4116), + [3278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 54), SHIFT(2753), + [3281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 54), SHIFT(2757), + [3284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 54), SHIFT(282), + [3287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 54), + [3289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, 0, 54), SHIFT(2106), + [3292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 8, 0, 54), + [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), + [3296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 71), SHIFT(994), + [3299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 71), SHIFT(955), + [3302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), + [3304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, 0, 71), SHIFT(4116), + [3307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 71), SHIFT(2753), + [3310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 71), SHIFT(2757), + [3313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 71), SHIFT(282), + [3316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 71), + [3318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, 0, 71), SHIFT(2106), + [3321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 8, 0, 71), + [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), + [3325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2290), + [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), + [3329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 71), SHIFT(240), + [3332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2291), + [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [3336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), + [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), + [3340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), + [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [3344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 66), SHIFT(241), + [3347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), + [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), + [3351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 51), SHIFT(994), + [3354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 51), SHIFT(955), + [3357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), + [3359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, 0, 51), SHIFT(4116), + [3362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 51), SHIFT(2753), + [3365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 51), SHIFT(2757), + [3368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 51), SHIFT(282), + [3371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 51), + [3373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, 0, 51), SHIFT(2106), + [3376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 8, 0, 51), + [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), + [3380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), + [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), + [3384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 85), SHIFT(242), + [3387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), + [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), + [3391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 85), SHIFT(243), + [3394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), + [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), + [3398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2312), + [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [3402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 66), SHIFT(994), + [3405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 66), SHIFT(955), + [3408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2316), + [3410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, 0, 66), SHIFT(4116), + [3413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 66), SHIFT(2753), + [3416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 66), SHIFT(2757), + [3419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 66), SHIFT(282), + [3422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 66), + [3424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, 0, 66), SHIFT(2106), + [3427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 9, 0, 66), + [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), + [3431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 85), SHIFT(994), + [3434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 85), SHIFT(955), + [3437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), + [3439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, 0, 85), SHIFT(4116), + [3442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 85), SHIFT(2753), + [3445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 85), SHIFT(2757), + [3448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 85), SHIFT(282), + [3451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 85), + [3453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, 0, 85), SHIFT(2106), + [3456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 9, 0, 85), + [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), + [3460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), + [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [3464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 85), SHIFT(245), + [3467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), + [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [3471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 87), SHIFT(994), + [3474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 87), SHIFT(955), + [3477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), + [3479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, 0, 87), SHIFT(4116), + [3482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 87), SHIFT(2753), + [3485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 87), SHIFT(2757), + [3488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 87), SHIFT(282), + [3491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 87), + [3493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, 0, 87), SHIFT(2106), + [3496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 9, 0, 87), + [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), + [3500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), + [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [3504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 87), SHIFT(246), + [3507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2331), + [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [3511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 67), SHIFT(994), + [3514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 67), SHIFT(955), + [3517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), + [3519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, 0, 67), SHIFT(4116), + [3522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 67), SHIFT(2753), + [3525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 67), SHIFT(2757), + [3528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 67), SHIFT(282), + [3531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 67), + [3533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, 0, 67), SHIFT(2106), + [3536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 9, 0, 67), + [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [3540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 108), SHIFT(994), + [3543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 108), SHIFT(955), + [3546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), + [3548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, 0, 108), SHIFT(4116), + [3551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 108), SHIFT(2753), + [3554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 108), SHIFT(2757), + [3557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 108), SHIFT(282), + [3560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 108), + [3562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, 0, 108), SHIFT(2106), + [3565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 9, 0, 108), + [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), + [3569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 108), SHIFT(247), + [3572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2338), + [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [3576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 108), SHIFT(248), + [3579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2341), + [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), + [3583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), + [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [3587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2349), + [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), + [3591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2351), + [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), + [3595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 87), SHIFT(250), + [3598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), + [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [3602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), + [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [3606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), + [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [3610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 108), SHIFT(251), + [3613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), + [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), + [3617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 108), SHIFT(252), + [3620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2362), + [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [3624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2366), + [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [3628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 88), SHIFT(994), + [3631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 88), SHIFT(955), + [3634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2369), + [3636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, 0, 88), SHIFT(4116), + [3639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 88), SHIFT(2753), + [3642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 88), SHIFT(2757), + [3645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 88), SHIFT(282), + [3648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 88), + [3650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, 0, 88), SHIFT(2106), + [3653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 9, 0, 88), + [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), + [3657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 111), SHIFT(994), + [3660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 111), SHIFT(955), + [3663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), + [3665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, 0, 111), SHIFT(4116), + [3668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 111), SHIFT(2753), + [3671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 111), SHIFT(2757), + [3674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 111), SHIFT(282), + [3677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 111), + [3679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, 0, 111), SHIFT(2106), + [3682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 9, 0, 111), + [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), + [3686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 111), SHIFT(254), + [3689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), + [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), + [3693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 111), SHIFT(255), + [3696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), + [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), + [3700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), + [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), + [3704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), + [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), + [3708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 88), SHIFT(42), + [3711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), + [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [3715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 129), SHIFT(258), + [3718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 129), SHIFT(955), + [3721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), + [3723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, 0, 129), SHIFT(4116), + [3726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 129), SHIFT(2753), + [3729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 129), SHIFT(2757), + [3732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 129), SHIFT(282), + [3735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 129), + [3737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, 0, 129), SHIFT(2106), + [3740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 9, 0, 129), + [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [3744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 129), SHIFT(994), + [3747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2385), + [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [3751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 129), SHIFT(261), + [3754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2386), + [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [3758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 71), SHIFT(994), + [3761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 71), SHIFT(955), + [3764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2392), + [3766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, 0, 71), SHIFT(4116), + [3769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 71), SHIFT(2753), + [3772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 71), SHIFT(2757), + [3775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 71), SHIFT(282), + [3778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 71), + [3780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, 0, 71), SHIFT(2106), + [3783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 9, 0, 71), + [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [3787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), + [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), + [3791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2400), + [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [3795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2402), + [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [3799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 85), SHIFT(262), + [3802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2403), + [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [3806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 85), SHIFT(994), + [3809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 85), SHIFT(955), + [3812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2409), + [3814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 10, 0, 85), SHIFT(4116), + [3817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 85), SHIFT(2753), + [3820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 85), SHIFT(2757), + [3823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 85), SHIFT(282), + [3826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 85), + [3828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 10, 0, 85), SHIFT(2106), + [3831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 10, 0, 85), + [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), + [3835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 87), SHIFT(994), + [3838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 87), SHIFT(955), + [3841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2413), + [3843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 10, 0, 87), SHIFT(4116), + [3846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 87), SHIFT(2753), + [3849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 87), SHIFT(2757), + [3852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 87), SHIFT(282), + [3855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 87), + [3857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 10, 0, 87), SHIFT(2106), + [3860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 10, 0, 87), + [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [3864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 108), SHIFT(994), + [3867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 108), SHIFT(955), + [3870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2417), + [3872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 10, 0, 108), SHIFT(4116), + [3875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 108), SHIFT(2753), + [3878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 108), SHIFT(2757), + [3881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 108), SHIFT(282), + [3884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 108), + [3886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 10, 0, 108), SHIFT(2106), + [3889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 10, 0, 108), + [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), + [3893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2419), + [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), + [3897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 108), SHIFT(263), + [3900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420), + [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [3904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425), + [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), + [3908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2429), + [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [3912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2431), + [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), + [3916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 108), SHIFT(264), + [3919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2432), + [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), + [3923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 111), SHIFT(994), + [3926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 111), SHIFT(955), + [3929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2437), + [3931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 10, 0, 111), SHIFT(4116), + [3934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 111), SHIFT(2753), + [3937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 111), SHIFT(2757), + [3940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 111), SHIFT(282), + [3943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 111), + [3945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 10, 0, 111), SHIFT(2106), + [3948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 10, 0, 111), + [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), + [3952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2439), + [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), + [3956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 111), SHIFT(265), + [3959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2440), + [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), + [3963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 1, 0, 0), SHIFT(887), + [3966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 1, 0, 0), SHIFT(465), + [3969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), + [3971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_clause, 1, 0, 0), SHIFT(4117), + [3974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 1, 0, 0), SHIFT(2753), + [3977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 1, 0, 0), SHIFT(2757), + [3980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 1, 0, 0), SHIFT(284), + [3983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 1, 0, 0), + [3985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_clause, 1, 0, 0), SHIFT(1287), + [3988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 1, 0, 0), + [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [3992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 129), SHIFT(994), + [3995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 129), SHIFT(955), + [3998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2446), + [4000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 10, 0, 129), SHIFT(4116), + [4003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 129), SHIFT(2753), + [4006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 129), SHIFT(2757), + [4009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 129), SHIFT(282), + [4012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 129), + [4014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 10, 0, 129), SHIFT(2106), + [4017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 10, 0, 129), + [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), + [4021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 129), SHIFT(266), + [4024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2447), + [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), + [4028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 129), SHIFT(267), + [4031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2450), + [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), + [4035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), + [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [4039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2458), + [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), + [4043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, 0, 108), SHIFT(994), + [4046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, 0, 108), SHIFT(955), + [4049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2464), + [4051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 11, 0, 108), SHIFT(4116), + [4054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, 0, 108), SHIFT(2753), + [4057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, 0, 108), SHIFT(2757), + [4060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, 0, 108), SHIFT(282), + [4063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, 0, 108), + [4065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 11, 0, 108), SHIFT(2106), + [4068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 11, 0, 108), + [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), + [4072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2469), + [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [4076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, 0, 111), SHIFT(994), + [4079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, 0, 111), SHIFT(955), + [4082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), + [4084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 11, 0, 111), SHIFT(4116), + [4087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, 0, 111), SHIFT(2753), + [4090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, 0, 111), SHIFT(2757), + [4093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, 0, 111), SHIFT(282), + [4096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, 0, 111), + [4098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 11, 0, 111), SHIFT(2106), + [4101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 11, 0, 111), + [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [4105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, 0, 129), SHIFT(994), + [4108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, 0, 129), SHIFT(955), + [4111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2477), + [4113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 11, 0, 129), SHIFT(4116), + [4116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, 0, 129), SHIFT(2753), + [4119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, 0, 129), SHIFT(2757), + [4122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, 0, 129), SHIFT(282), + [4125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, 0, 129), + [4127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 11, 0, 129), SHIFT(2106), + [4130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 11, 0, 129), + [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [4134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2479), + [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [4138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, 0, 129), SHIFT(43), + [4141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), + [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [4145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), + [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), + [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [4151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734), + [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), + [4155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2718), + [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), + [4159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2730), + [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), + [4163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2682), + [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), + [4167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2721), + [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), + [4171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2701), + [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), + [4175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), + [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), + [4179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2722), + [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), + [4183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2739), + [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), + [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), [4191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), - [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), - [4195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), - [4197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), - [4199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), - [4201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2870), + [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [4195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), + [4197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), + [4199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), + [4201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2846), [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [4209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), - [4211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), - [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [4217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), - [4219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), - [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [4225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), - [4227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), - [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), - [4233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), - [4235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), - [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [4241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), - [4243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), - [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [4249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), - [4251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), - [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), - [4257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), - [4259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), - [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), - [4265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), - [4267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), - [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [4273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), - [4275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), - [4277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 29), SHIFT_REPEAT(289), - [4280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 29), SHIFT_REPEAT(742), - [4283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 29), SHIFT_REPEAT(988), - [4286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 29), SHIFT_REPEAT(1978), - [4289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 29), SHIFT_REPEAT(1873), - [4292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 29), SHIFT_REPEAT(4116), - [4295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 29), SHIFT_REPEAT(4116), - [4298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 29), SHIFT_REPEAT(3936), - [4301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 29), SHIFT_REPEAT(1884), - [4304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2758), - [4307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2757), - [4310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 29), SHIFT_REPEAT(282), - [4313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 29), - [4315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 29), SHIFT_REPEAT(3026), - [4318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 29), SHIFT_REPEAT(3943), - [4321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 29), SHIFT_REPEAT(3946), - [4324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 29), SHIFT_REPEAT(453), - [4327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 29), SHIFT_REPEAT(457), - [4330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 29), SHIFT_REPEAT(517), - [4333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 29), SHIFT_REPEAT(518), - [4336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 29), SHIFT_REPEAT(521), - [4339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 29), SHIFT_REPEAT(1768), - [4342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 29), SHIFT_REPEAT(4155), - [4345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 29), SHIFT_REPEAT(1978), - [4348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 29), SHIFT_REPEAT(538), - [4351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 29), SHIFT_REPEAT(3775), - [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), + [4209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), + [4211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), + [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [4217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), + [4219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), + [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [4225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), + [4227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), + [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), + [4233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), + [4235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), + [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [4241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), + [4243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), + [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [4249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), + [4251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), + [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [4257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), + [4259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), + [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), + [4265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), + [4267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), + [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [4273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), + [4275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), + [4277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, 0, 28), SHIFT_REPEAT(289), + [4280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, 0, 28), SHIFT_REPEAT(465), + [4283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, 0, 28), SHIFT_REPEAT(987), + [4286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, 0, 28), SHIFT_REPEAT(1978), + [4289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, 0, 28), SHIFT_REPEAT(1857), + [4292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, 0, 28), SHIFT_REPEAT(4110), + [4295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, 0, 28), SHIFT_REPEAT(4110), + [4298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, 0, 28), SHIFT_REPEAT(3890), + [4301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, 0, 28), SHIFT_REPEAT(1767), + [4304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, 0, 28), SHIFT_REPEAT(2753), + [4307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, 0, 28), SHIFT_REPEAT(2757), + [4310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, 0, 28), SHIFT_REPEAT(279), + [4313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, 0, 28), + [4315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, 0, 28), SHIFT_REPEAT(3000), + [4318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, 0, 28), SHIFT_REPEAT(3981), + [4321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, 0, 28), SHIFT_REPEAT(3893), + [4324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, 0, 28), SHIFT_REPEAT(424), + [4327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, 0, 28), SHIFT_REPEAT(441), + [4330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, 0, 28), SHIFT_REPEAT(870), + [4333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, 0, 28), SHIFT_REPEAT(884), + [4336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, 0, 28), SHIFT_REPEAT(944), + [4339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, 0, 28), SHIFT_REPEAT(1886), + [4342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, 0, 28), SHIFT_REPEAT(4162), + [4345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, 0, 28), SHIFT_REPEAT(1978), + [4348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, 0, 28), SHIFT_REPEAT(420), + [4351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, 0, 28), SHIFT_REPEAT(3713), + [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), - [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), - [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), - [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), - [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), - [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [4410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4101), - [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [4414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), - [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), - [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), - [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), - [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), - [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), - [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), - [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), - [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), - [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), - [4448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source, 1, .production_id = 1), - [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), - [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), - [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), - [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), - [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), - [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), - [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), - [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), + [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), + [4372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source, 1, 0, 1), + [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [4378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4102), + [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [4382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), + [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), + [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), + [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), + [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), + [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), + [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), + [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), + [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), + [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), + [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), + [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), + [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), + [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), + [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), + [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), + [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), - [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), - [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), - [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), - [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [4586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), - [4588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(375), - [4591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(742), - [4594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(988), - [4597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(1991), - [4600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(1873), - [4603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(4116), - [4606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(4116), - [4609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3936), - [4612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(1884), - [4615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(2758), - [4618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(2757), - [4621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(282), - [4624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3026), - [4627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3943), - [4630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3946), - [4633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(453), - [4636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(457), - [4639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(517), - [4642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(518), - [4645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(521), - [4648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(1768), - [4651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(4155), - [4654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(1991), - [4657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(538), - [4660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3775), - [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), - [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), - [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), - [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), - [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), - [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), - [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), - [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), - [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), - [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), - [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), - [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [4747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), - [4749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), - [4751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), - [4753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4112), - [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4112), - [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), - [4759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), - [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), - [4765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3945), - [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), - [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [4777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), - [4779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), - [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), - [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), - [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [4791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), - [4793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4098), - [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [4797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), - [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [4803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), - [4805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2589), - [4807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3408), - [4809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4097), - [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), - [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [4823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), - [4825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2496), - [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), - [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [4831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2590), - [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), - [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [4837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2571), - [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), - [4841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), - [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [4845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), - [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), - [4849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), - [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), - [4853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), - [4855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4118), - [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [4859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), - [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [4863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), - [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [4869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), - [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), - [4873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2701), - [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), - [4877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2602), - [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), - [4881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2703), - [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), - [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [4887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), - [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), - [4891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2688), - [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), - [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [4897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2623), - [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), - [4901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), - [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), - [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [4907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2626), - [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), - [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [4913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2633), - [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), - [4917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), - [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), - [4921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), - [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), - [4925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2638), - [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), - [4929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), - [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [4933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2640), - [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), - [4937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), - [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [4941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2641), - [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), - [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [4947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), - [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [4953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), - [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [4957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), - [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [4963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2584), - [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), - [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [4969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), - [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [4973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), - [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [4979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2505), - [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), - [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [4985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), - [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [4991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2504), - [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), - [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [4997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), - [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), - [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [5003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), - [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), - [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [5009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), - [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), - [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [5015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), - [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), - [5019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2552), - [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), - [5023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), - [5025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2997), - [5027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3407), - [5029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4103), - [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4103), - [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), - [5035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3060), - [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), - [5039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3934), - [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), - [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [5051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), - [5053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3053), - [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4123), - [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), - [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), - [5063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2564), - [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), - [5067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2998), - [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), - [5071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), - [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [5075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [5081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), - [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), - [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [5087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2919), - [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), - [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [5093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), - [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [5099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), - [5101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4114), - [5103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2767), - [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [5107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), - [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), - [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [5113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), - [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [5119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), - [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [5125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2739), - [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), - [5129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2908), - [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), - [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [5135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2910), - [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), - [5139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2677), - [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), - [5143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2920), - [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), - [5147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2925), - [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), - [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [5153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2690), - [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), - [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [5159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2971), - [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), - [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [5165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2980), - [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), - [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [5171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2727), - [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), - [5175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), - [5177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3070), - [5179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2900), - [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), - [5185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3958), - [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), - [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [5197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), - [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), - [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [5203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2961), - [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), - [5207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2960), - [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), - [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [5213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2905), - [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), - [5217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2950), - [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), - [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [5223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3081), - [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), - [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [5229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2944), - [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), - [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [5235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2948), - [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), - [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [5241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2963), - [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), - [5245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3100), - [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), - [5249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3097), - [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), - [5253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2977), - [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), - [5257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2979), - [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), - [5261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2981), - [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), - [5265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), - [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [5271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3062), - [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), - [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [5277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3061), - [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), - [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [5283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), - [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), - [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [5289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2936), - [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), - [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [5295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2935), - [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), - [5299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), - [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [5303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), - [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [5309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), - [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [5313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), - [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [5319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), - [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [5323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), - [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [5327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), - [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [5333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), - [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [5339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), - [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [5343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2537), - [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), - [5347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), - [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [5351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), - [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [5357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), - [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [5361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), - [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [5369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), - [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [5375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), - [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [5381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), - [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [5385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), - [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [5389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), - [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [5393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), - [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [5397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), - [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [5407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), - [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [5413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), - [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [5419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), - [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [5425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), - [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [5431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), - [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [5435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), - [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [5441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), - [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [5447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), - [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [5453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), - [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [5457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), - [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [5463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), - [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [5469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), - [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [5473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), - [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [5479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2788), - [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), - [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [5485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), - [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [5489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), - [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [5495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2787), - [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), - [5499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), - [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [5503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2782), - [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), - [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [5509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), - [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [5515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), - [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [5519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), - [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [5523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), - [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [5529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), - [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [5535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), - [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [5539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), - [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [5543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), - [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [5547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), - [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [5551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), - [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [5555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2775), - [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), - [5559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), - [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [5563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), - [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), - [5567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), - [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [5573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), - [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [5579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), - [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [5583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), - [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [5589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2796), - [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), - [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [5595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), - [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), - [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [5601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), - [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [5607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2772), - [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), - [5611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), - [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [5617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), - [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [5621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), - [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [5627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), - [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [5633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), - [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [5639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), - [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [5645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), - [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [5649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), - [5651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [5653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), - [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [5657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), - [5659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [5661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), - [5663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [5665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [5667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [5669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), - [5671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [5673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [5675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), - [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [5679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), - [5681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [5683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [5685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), - [5687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [5689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), - [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [5693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), - [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [5697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3098), - [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), - [5701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), - [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [5705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [5707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), - [5709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [5713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), - [5715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [5717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), - [5719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), - [5721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [5723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), - [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [5729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), - [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [5735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), - [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [5741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), - [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [5747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [5749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [5753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), - [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [5757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), - [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [5761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), - [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [5765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), - [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [5771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), - [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [5775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), - [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [5779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), - [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [5785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), - [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [5791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), - [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [5795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), - [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [5799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), - [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [5803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), - [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [5809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), - [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [5815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), - [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [5821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), - [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [5825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), - [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [5829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), - [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [5833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), - [5835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [5837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), - [5839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [5841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), - [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [5847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), - [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [5851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [5853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), - [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [5857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), - [5859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [5861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), - [5863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), - [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [5867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2702), - [5869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), - [5871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [5873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), - [5875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [5879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2699), - [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), - [5883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), - [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [5889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), - [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [5893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2694), - [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), - [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [5899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2692), - [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), - [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [5905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), - [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [5911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), - [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [5915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2712), - [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), - [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [5921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), - [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [5925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), - [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [5931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2691), - [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), - [5935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), - [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [5939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), - [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [5943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), - [5945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [5947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), - [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [5951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2511), - [5953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), - [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [5957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), - [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [5961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [5963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), - [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [5969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), - [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [5975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), - [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [5981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), - [5983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [5987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [5989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [5991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), - [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [5995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [5997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), - [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [6001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), - [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [6005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), - [6007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [6011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), - [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [6017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), - [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [6021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), - [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [6025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [6027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), - [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [6031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [6033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), - [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [6039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), - [6041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4111), - [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4111), - [6045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), - [6047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2836), - [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [6051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3970), - [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), - [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [6057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [6061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [6063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), - [6065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3043), - [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [6069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [6071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [6073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [6075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2800), - [6077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), - [6079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), - [6081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [6083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [6085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2801), - [6087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), - [6089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2829), - [6091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), - [6093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), - [6095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [6099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), - [6101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [6103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [6105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), - [6107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [6109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2822), - [6111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), - [6113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), - [6115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [6117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2830), - [6119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), - [6121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [6123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [6125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [6127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [6129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2799), - [6131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), - [6133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [6135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), - [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [6141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [6143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), - [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), - [6147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2837), - [6149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), - [6151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [6153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [6155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), - [6157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [6159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [6161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), - [6163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [6165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [6167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), - [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [6171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [6173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), - [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [6179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), - [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [6183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [6189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), - [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [6193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), - [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [6197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), - [6199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [6201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), - [6203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [6205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), - [6207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [6209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [6211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), - [6213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), - [6215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), - [6217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4107), - [6219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4107), - [6221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), - [6223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), - [6225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [6227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), - [6229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3911), - [6231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), - [6233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [6235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [6237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [6239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [6241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), - [6243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), - [6245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4164), - [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [6249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), - [6253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), - [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [6257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), - [6259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [6263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), - [6265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), - [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [6269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), - [6271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [6275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), - [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [6281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), - [6283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [6287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), - [6289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [6293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), - [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [6299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), - [6301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [6305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), - [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [6311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), - [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [6315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), - [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [6319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), - [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [6325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), - [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [6329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), - [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [6333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), - [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [6337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), - [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [6341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), - [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [6345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), - [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [6349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), - [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [6353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), - [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [6357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), - [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [6361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [6363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), - [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [6367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [6369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), - [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [6375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), - [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [6381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), - [6383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [6385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [6387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), - [6389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [6391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), - [6393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [6395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [6397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), - [6399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [6401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [6403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), - [6405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [6407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), - [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [6411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [6413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), - [6415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [6417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [6419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), - [6421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [6423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), - [6425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [6427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [6429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), - [6431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [6433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [6435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), - [6437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [6439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [6441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), - [6443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), - [6445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), - [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [6449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), - [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [6455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), - [6457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [6459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), - [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [6465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), - [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [6469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), - [6471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [6473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), - [6475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [6477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [6479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), - [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), - [6483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), - [6485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [6487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [6489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), - [6491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [6495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), - [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [6501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), - [6503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [6505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [6507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), - [6509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), - [6511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), - [6513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [6515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [6517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), - [6519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [6521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [6523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), - [6525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), - [6527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [6529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), - [6531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), - [6533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), - [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [6537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), - [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [6543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), - [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [6553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), - [6555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [6561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), - [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [6565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), - [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [6571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2720), - [6573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), - [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [6577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), - [6579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [6581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [6583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), - [6585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2999), - [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), - [6589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [6591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [6593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [6597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), - [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [6601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2675), - [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), - [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [6607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2745), - [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), - [6611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), - [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [6617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2723), - [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), - [6621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [6623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), - [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [6627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2729), - [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), - [6631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), - [6633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [6637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2831), - [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), - [6641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5), - [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [6647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [6649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), - [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [6653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2674), - [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), - [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [6659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2740), - [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), - [6663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [6665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2737), - [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), - [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [6673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), - [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [6677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2693), - [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), - [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [6683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2700), - [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), - [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [6689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), - [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [6693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [6695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2735), - [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), - [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [6701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), - [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [6705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2711), - [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), - [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [6711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), - [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [6719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), - [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [6725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), - [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [6737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), - [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [6743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), - [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [6749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), - [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [6761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3089), - [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), - [6765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), - [6767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [6773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), - [6775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [6779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), - [6781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2886), - [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), - [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), - [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [6795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), - [6797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2873), - [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [6801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), - [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [6809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), - [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [6813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), - [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [6819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), - [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [6825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), - [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [6831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), - [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [6835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [6837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), - [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [6843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), - [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [6847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), - [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [6855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), - [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [6867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), - [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [6875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), - [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [6879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), - [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [6883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), - [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [6889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), - [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [6895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), - [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [6901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), - [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [6905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), - [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [6909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), - [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [6913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), - [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [6919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), - [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [6925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), - [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [6931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), - [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [6935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), - [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [6941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), - [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [6947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2498), - [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), - [6951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), - [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [6957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), - [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [6965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), - [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [6969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), - [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [6975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), - [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [6979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), - [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [6983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), - [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [6987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), - [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [6993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), - [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [6999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), - [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [7003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), - [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [7009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), - [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [7021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), - [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [7025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2736), - [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), - [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [7033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2725), - [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), - [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [7039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2708), - [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), - [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [7045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2718), - [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), - [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [7051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2741), - [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), - [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [7057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2738), - [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), - [7061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2715), - [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), - [7065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), - [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), - [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [7071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), - [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [7075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), - [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [7081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), - [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [7087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2754), - [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), - [7091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), - [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [7095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), - [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [7099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), - [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [7103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [7109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728), - [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), - [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [7115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), - [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [7121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), - [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [7125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), - [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [7129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), - [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [7137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2730), - [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), - [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [7143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2731), - [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), - [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [7149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), - [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [7155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), - [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [7163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), - [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), - [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [7171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), - [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [7177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), - [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [7187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), - [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [7195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), - [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [7199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), - [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [7203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), - [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [7207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), - [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [7213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), - [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [7217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [7221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [7223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), - [7225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [7229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), - [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [7235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), - [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [7241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), - [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [7247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), - [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [7253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2686), - [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), - [7257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), - [7259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [7261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), - [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), - [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [7267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2678), - [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), - [7271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [7275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2676), - [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), - [7279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2891), - [7281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3001), - [7283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), - [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), + [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), + [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), + [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), + [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), + [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), + [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), + [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), + [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), + [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), + [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), + [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), + [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), + [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), + [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), + [4644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, 0, 14), + [4646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, 0, 14), SHIFT_REPEAT(395), + [4649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, 0, 14), SHIFT_REPEAT(465), + [4652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, 0, 14), SHIFT_REPEAT(987), + [4655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, 0, 14), SHIFT_REPEAT(2013), + [4658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, 0, 14), SHIFT_REPEAT(1857), + [4661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, 0, 14), SHIFT_REPEAT(4110), + [4664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, 0, 14), SHIFT_REPEAT(4110), + [4667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, 0, 14), SHIFT_REPEAT(3890), + [4670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, 0, 14), SHIFT_REPEAT(1767), + [4673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, 0, 14), SHIFT_REPEAT(2753), + [4676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, 0, 14), SHIFT_REPEAT(2757), + [4679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, 0, 14), SHIFT_REPEAT(279), + [4682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, 0, 14), SHIFT_REPEAT(3000), + [4685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, 0, 14), SHIFT_REPEAT(3981), + [4688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, 0, 14), SHIFT_REPEAT(3893), + [4691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, 0, 14), SHIFT_REPEAT(424), + [4694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, 0, 14), SHIFT_REPEAT(441), + [4697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, 0, 14), SHIFT_REPEAT(870), + [4700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, 0, 14), SHIFT_REPEAT(884), + [4703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, 0, 14), SHIFT_REPEAT(944), + [4706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, 0, 14), SHIFT_REPEAT(1886), + [4709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, 0, 14), SHIFT_REPEAT(4162), + [4712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, 0, 14), SHIFT_REPEAT(2013), + [4715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, 0, 14), SHIFT_REPEAT(420), + [4718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, 0, 14), SHIFT_REPEAT(3713), + [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [4747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), + [4749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4098), + [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [4753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), + [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [4759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), + [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [4765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2686), + [4767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4116), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [4771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), + [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), + [4775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2697), + [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), + [4779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2711), + [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), + [4783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2690), + [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), + [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [4789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), + [4791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4117), + [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [4795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [4801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), + [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [4807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), + [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [4813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), + [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [4819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), + [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), + [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [4825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2708), + [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), + [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [4831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), + [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), + [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [4837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), + [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), + [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [4843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), + [4845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), + [4847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), + [4849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4103), + [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4103), + [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), + [4855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), + [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), + [4861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3905), + [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), + [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [4873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), + [4875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), + [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4137), + [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), + [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [4887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), + [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [4893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), + [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [4897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), + [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [4903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), + [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [4909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), + [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [4915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2745), + [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), + [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [4921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2733), + [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), + [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [4927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2677), + [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), + [4931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), + [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [4935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), + [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [4941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2680), + [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), + [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [4947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2700), + [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), + [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [4953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), + [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [4957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2736), + [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), + [4961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2737), + [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), + [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [4967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2738), + [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), + [4971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2740), + [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), + [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [4977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2741), + [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), + [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [4983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2744), + [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), + [4987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2676), + [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), + [4991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), + [4993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2758), + [4995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2902), + [4997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4097), + [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), + [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), + [5003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3080), + [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), + [5009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3932), + [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), + [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [5019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3078), + [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4147), + [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), + [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), + [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [5031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), + [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [5037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), + [5039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2976), + [5041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4099), + [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4099), + [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), + [5047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2825), + [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [5051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3939), + [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), + [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [5063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), + [5065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3039), + [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), + [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [5073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2907), + [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), + [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [5079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2964), + [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), + [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [5085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2820), + [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), + [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [5091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2831), + [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), + [5095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2815), + [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), + [5099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2922), + [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), + [5103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), + [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), + [5107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2963), + [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), + [5111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2828), + [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), + [5115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2829), + [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), + [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [5121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2966), + [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), + [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [5127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2970), + [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), + [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [5133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2971), + [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), + [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [5139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2837), + [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), + [5143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2987), + [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), + [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [5149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2989), + [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), + [5153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2992), + [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), + [5157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2993), + [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), + [5161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2845), + [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), + [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [5167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2996), + [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), + [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [5173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2952), + [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), + [5177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2908), + [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), + [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [5183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), + [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [5189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2911), + [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), + [5193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2913), + [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), + [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [5199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2914), + [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), + [5203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2918), + [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), + [5207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2919), + [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), + [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [5213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), + [5215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), + [5217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), + [5219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4111), + [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4111), + [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), + [5225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), + [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), + [5231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3924), + [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3930), + [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [5243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [5245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), + [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4119), + [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), + [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [5257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), + [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [5263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), + [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [5269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), + [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [5275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), + [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [5279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), + [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [5283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), + [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [5287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), + [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [5291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), + [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [5295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), + [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [5299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), + [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [5305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), + [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [5311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), + [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [5317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), + [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [5323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), + [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [5327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), + [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [5333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), + [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [5337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), + [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [5341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), + [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [5345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), + [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [5351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), + [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [5357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), + [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [5361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), + [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [5365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), + [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [5371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), + [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [5375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), + [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [5381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), + [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [5385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), + [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [5389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), + [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [5397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), + [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [5405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), + [5407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), + [5409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2999), + [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), + [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [5421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [5429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), + [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [5433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), + [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [5437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), + [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [5451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), + [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [5459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2910), + [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), + [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [5473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), + [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [5479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), + [5481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2876), + [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), + [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), + [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [5495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [5497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2874), + [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [5503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), + [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [5507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), + [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [5511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), + [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [5517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), + [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [5523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), + [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [5531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), + [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [5537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), + [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [5541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), + [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [5545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), + [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [5551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), + [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [5557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), + [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [5561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), + [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [5565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), + [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [5571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), + [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [5575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), + [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [5581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), + [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [5587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), + [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [5593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), + [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [5599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), + [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [5605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), + [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [5611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), + [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [5615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), + [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [5619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), + [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [5623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), + [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [5627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), + [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [5631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), + [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [5635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), + [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [5641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), + [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [5647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), + [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [5651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [5653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), + [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [5659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), + [5661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [5663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), + [5665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [5667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [5669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), + [5671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [5673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), + [5675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [5677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), + [5679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [5681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2491), + [5683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [5685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [5687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), + [5689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [5693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), + [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [5697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), + [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [5701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), + [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [5705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [5707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), + [5709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [5711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), + [5713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [5715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [5717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), + [5719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [5721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), + [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [5725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), + [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [5729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [5731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2612), + [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), + [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [5737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2613), + [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), + [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [5743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2620), + [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), + [5747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [5749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), + [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [5755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), + [5757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [5759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), + [5761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3134), + [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), + [5765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3955), + [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), + [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [5777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), + [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [5781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2586), + [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), + [5785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), + [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), + [5789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2588), + [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), + [5793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), + [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [5797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), + [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [5803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2591), + [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), + [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [5809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2593), + [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), + [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [5815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2596), + [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), + [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [5821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), + [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [5825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2602), + [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), + [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [5831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), + [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), + [5835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2605), + [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), + [5839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2606), + [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), + [5843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), + [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [5847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [5849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), + [5851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), + [5853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [5855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), + [5857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), + [5859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2614), + [5861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), + [5863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2616), + [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), + [5867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [5869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2617), + [5871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), + [5873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2618), + [5875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), + [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [5879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2619), + [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), + [5883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2624), + [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), + [5887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2625), + [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), + [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [5893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), + [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [5899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), + [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [5905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), + [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [5911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), + [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [5917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), + [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [5921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), + [5923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3118), + [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), + [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [5935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), + [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [5939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), + [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [5943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), + [5945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [5947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), + [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [5951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), + [5953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [5955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), + [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [5961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), + [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [5967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), + [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [5973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), + [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [5979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), + [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [5983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [5989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), + [5991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [5993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), + [5995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [5997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), + [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [6001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), + [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [6007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), + [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [6013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), + [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [6017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), + [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [6021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), + [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [6025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [6027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), + [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [6031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), + [6033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [6037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), + [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [6041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), + [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [6045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), + [6047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [6051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), + [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [6057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), + [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [6061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [6063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), + [6065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [6069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), + [6071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [6073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [6075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), + [6077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [6079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3092), + [6081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), + [6083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), + [6085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [6087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), + [6089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [6091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), + [6093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [6095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), + [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [6099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), + [6101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [6103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [6105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), + [6107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [6109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [6111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), + [6113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [6115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [6117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), + [6119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [6121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [6123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), + [6125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [6127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), + [6129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [6131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [6133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), + [6135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [6137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), + [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [6141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), + [6143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [6145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), + [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [6149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [6151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), + [6153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [6157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), + [6159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [6161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), + [6163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [6165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), + [6167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [6171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), + [6173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [6175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), + [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [6181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), + [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [6185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), + [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [6189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), + [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [6193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [6195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), + [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [6199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [6201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), + [6203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [6207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), + [6209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [6211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [6213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [6215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), + [6217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [6219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), + [6221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [6223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), + [6225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [6227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), + [6229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [6231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [6233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), + [6235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [6237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [6239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), + [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [6243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [6245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), + [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [6249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [6251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), + [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [6257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), + [6259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [6261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), + [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [6265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), + [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [6271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), + [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [6277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), + [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [6281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), + [6283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [6285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), + [6287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [6289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [6291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), + [6293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [6295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), + [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [6299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [6301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), + [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [6305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), + [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [6309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), + [6311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [6315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [6319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [6321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3070), + [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), + [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [6327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3090), + [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), + [6331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), + [6333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [6335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3075), + [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), + [6339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3053), + [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), + [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [6345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [6351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3102), + [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), + [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [6357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3085), + [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), + [6361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [6367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [6369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [6379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), + [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [6383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [6385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [6387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [6389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [6391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [6393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [6395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [6397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [6399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [6401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [6403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4107), + [6405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2764), + [6407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [6411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [6413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2780), + [6415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), + [6417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [6419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2781), + [6421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), + [6423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2795), + [6425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), + [6427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2768), + [6429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), + [6431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2777), + [6433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), + [6435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [6437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [6439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [6443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2769), + [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), + [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [6449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), + [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), + [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [6457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [6463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), + [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [6469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), + [6471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [6473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [6475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), + [6477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [6479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [6481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), + [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [6485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [6487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), + [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [6491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), + [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [6495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), + [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [6499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), + [6501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [6503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), + [6505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [6507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), + [6509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [6511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [6513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), + [6515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [6517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [6519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), + [6521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [6523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [6525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), + [6527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [6529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [6531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), + [6533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [6535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), + [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [6541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), + [6543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [6545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), + [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [6549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), + [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [6553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), + [6555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [6559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), + [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [6565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), + [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [6569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), + [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [6573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), + [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [6577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [6579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), + [6581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [6583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), + [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [6589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), + [6591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [6593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), + [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [6597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), + [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [6601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [6603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2838), + [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), + [6607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), + [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [6611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [6613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), + [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [6617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), + [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [6621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), + [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [6627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), + [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [6633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), + [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [6637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2725), + [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), + [6641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2726), + [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), + [6645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2727), + [6647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), + [6649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), + [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [6653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), + [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [6657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728), + [6659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), + [6661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), + [6663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [6667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), + [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [6673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), + [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [6679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), + [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [6683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), + [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [6689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), + [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [6693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [6695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), + [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [6701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), + [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [6705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), + [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [6715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), + [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [6719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), + [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [6725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [6731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), + [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [6737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), + [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [6741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), + [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [6745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), + [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [6749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [6755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2742), + [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), + [6759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2678), + [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), + [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [6765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), + [6767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), + [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [6773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2703), + [6775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), + [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [6779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), + [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [6785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), + [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [6789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), + [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [6795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), + [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [6801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [6807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2754), + [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), + [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [6813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(34), + [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [6817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [6821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), + [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [6829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2712), + [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), + [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [6835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), + [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), + [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [6841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), + [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [6847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2720), + [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), + [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [6853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [6859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), + [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), + [6863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2702), + [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), + [6867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), + [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [6873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [6879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), + [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [6883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), + [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), + [6887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), + [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), + [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [6893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), + [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), + [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [6899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), + [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [6903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), + [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [6907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), + [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [6913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), + [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [6919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), + [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [6923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), + [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [6929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [6935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), + [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [6939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), + [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [6943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2681), + [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), + [6947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), + [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [6951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), + [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [6955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), + [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [6963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), + [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [6967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), + [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), + [6971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2685), + [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), + [6975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), + [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [6981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), + [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [6987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), + [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [6991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2698), + [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), + [6995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), + [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [6999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), + [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [7003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), + [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [7011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3082), + [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), + [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [7017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), + [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [7023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), + [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [7029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), + [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [7035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), + [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [7041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2674), + [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), + [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [7047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), + [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), + [7051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), + [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [7055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), + [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [7061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2688), + [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), + [7065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2691), + [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), + [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [7071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2692), + [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), + [7075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2694), + [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), + [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [7081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), + [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [7087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), + [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), + [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [7093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), + [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [7097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), + [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [7103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), + [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [7109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [7113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), + [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [7117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), + [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [7121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), + [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [7125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [7133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), + [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [7137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2679), + [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), + [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [7143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), + [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [7149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), + [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [7153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), + [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [7159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), + [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [7165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), + [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [7169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), + [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [7173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), + [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [7179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), + [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [7185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), + [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [7189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), + [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [7195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), + [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [7201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), + [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [7205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [7209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), + [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [7215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2790), + [7217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), + [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [7221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), + [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [7225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), + [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [7229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [7231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), + [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [7237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), + [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [7241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), + [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [7245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), + [7247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [7251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), + [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [7255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), + [7257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [7259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [7261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), + [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [7267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), + [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [7271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), + [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [7275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [7279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2898), + [7281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3035), + [7283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), + [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), [7291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2897), - [7293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3046), - [7295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), - [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [7303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2889), - [7305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3007), - [7307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2923), - [7309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), - [7311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [7313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), - [7315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2893), - [7317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3041), - [7319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2616), - [7321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), - [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [7325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), - [7327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2898), - [7329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3021), - [7331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2888), - [7333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3035), - [7335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2894), - [7337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3036), - [7339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), - [7341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [7343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [7345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [7347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2896), - [7349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3015), - [7351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), - [7353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [7355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [7357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [7359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2892), - [7361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3051), - [7363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), - [7365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [7367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [7371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2890), - [7373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3003), - [7375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2895), - [7377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3033), - [7379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), - [7381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [7383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [7387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2899), - [7389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3028), - [7391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), - [7393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [7395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [7397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [7399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(990), - [7402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(638), - [7405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dis_expr_repeat1, 2), - [7407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), - [7409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 1), - [7411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 1), - [7413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 40), SHIFT_REPEAT(993), - [7416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 40), SHIFT_REPEAT(631), - [7419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 40), - [7421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 40), - [7423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 3, .production_id = 40), - [7425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 3, .production_id = 40), - [7427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 1, .production_id = 1), SHIFT_REPEAT(991), - [7430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 1, .production_id = 1), SHIFT_REPEAT(631), - [7433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 1, .production_id = 1), - [7435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 1, .production_id = 1), - [7437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(995), - [7440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(631), - [7443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_num_lit, 1), - [7445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_num_lit, 1), - [7447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), - [7449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_str_lit, 2), - [7451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_str_lit, 2), - [7453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__form, 2), - [7455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__form, 2), - [7457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoting_lit, 3, .production_id = 19), - [7459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoting_lit, 3, .production_id = 19), - [7461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquote_splicing_lit, 3, .production_id = 19), - [7463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquote_splicing_lit, 3, .production_id = 19), - [7465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_syn_quoting_lit, 3, .production_id = 19), - [7467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_syn_quoting_lit, 3, .production_id = 19), - [7469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoting_lit, 3, .production_id = 19), - [7471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoting_lit, 3, .production_id = 19), - [7473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_quoting_lit, 3, .production_id = 19), - [7475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_quoting_lit, 3, .production_id = 19), - [7477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splicing_read_cond_lit, 3, .production_id = 30), - [7479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splicing_read_cond_lit, 3, .production_id = 30), - [7481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_read_cond_lit, 3, .production_id = 30), - [7483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_read_cond_lit, 3, .production_id = 30), - [7485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_list_lit, 3, .production_id = 28), - [7487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_list_lit, 3, .production_id = 28), - [7489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 4, .production_id = 49), - [7491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 4, .production_id = 49), - [7493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_macro, 5, .production_id = 51), - [7495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_macro, 5, .production_id = 51), - [7497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun, 3, .production_id = 25), - [7499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun, 3, .production_id = 25), - [7501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_macro, 3, .production_id = 25), - [7503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_macro, 3, .production_id = 25), - [7505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_str_lit, 3), - [7507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_str_lit, 3), - [7509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_vec_lit, 3, .production_id = 9), - [7511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_vec_lit, 3, .production_id = 9), - [7513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_set_lit, 3, .production_id = 22), - [7515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_set_lit, 3, .production_id = 22), - [7517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun, 5, .production_id = 51), - [7519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun, 5, .production_id = 51), - [7521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__form, 3, .production_id = 21), - [7523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__form, 3, .production_id = 21), - [7525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_vec_lit, 2, .production_id = 9), - [7527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_vec_lit, 2, .production_id = 9), - [7529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun, 5, .production_id = 56), - [7531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun, 5, .production_id = 56), - [7533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dis_expr, 3, .production_id = 19), - [7535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dis_expr, 3, .production_id = 19), - [7537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 5, .production_id = 60), - [7539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 5, .production_id = 60), - [7541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_lit, 2, .production_id = 17), - [7543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_lit, 2, .production_id = 17), - [7545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_lit, 2, .production_id = 16), - [7547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_lit, 2, .production_id = 16), - [7549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 5, .production_id = 61), - [7551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 5, .production_id = 61), - [7553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 5, .production_id = 62), - [7555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 5, .production_id = 62), - [7557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 5, .production_id = 63), - [7559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 5, .production_id = 63), - [7561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_macro, 6, .production_id = 64), - [7563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_macro, 6, .production_id = 64), - [7565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path_lit, 2, .production_id = 14), - [7567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path_lit, 2, .production_id = 14), - [7569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun, 6, .production_id = 73), - [7571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun, 6, .production_id = 73), - [7573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 6, .production_id = 61), - [7575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 6, .production_id = 61), - [7577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 6, .production_id = 78), - [7579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 6, .production_id = 78), - [7581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoting_lit, 2, .production_id = 7), - [7583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoting_lit, 2, .production_id = 7), - [7585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 6, .production_id = 79), - [7587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 6, .production_id = 79), - [7589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 6, .production_id = 80), - [7591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 6, .production_id = 80), - [7593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquote_splicing_lit, 2, .production_id = 7), - [7595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquote_splicing_lit, 2, .production_id = 7), - [7597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 6, .production_id = 81), - [7599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 6, .production_id = 81), - [7601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_syn_quoting_lit, 2, .production_id = 7), - [7603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_syn_quoting_lit, 2, .production_id = 7), - [7605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_macro, 7, .production_id = 94), - [7607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_macro, 7, .production_id = 94), - [7609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 7, .production_id = 78), - [7611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 7, .production_id = 78), - [7613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoting_lit, 2, .production_id = 7), - [7615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoting_lit, 2, .production_id = 7), - [7617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_lit, 1), - [7619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_lit, 1), - [7621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4088), - [7624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4108), - [7626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 7, .production_id = 79), - [7628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 7, .production_id = 79), - [7630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_quoting_lit, 2, .production_id = 7), - [7632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_quoting_lit, 2, .production_id = 7), - [7634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splicing_read_cond_lit, 2, .production_id = 13), - [7636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splicing_read_cond_lit, 2, .production_id = 13), - [7638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 7, .production_id = 98), - [7640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 7, .production_id = 98), - [7642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_read_cond_lit, 2, .production_id = 13), - [7644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_read_cond_lit, 2, .production_id = 13), - [7646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_list_lit, 2, .production_id = 11), - [7648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_list_lit, 2, .production_id = 11), - [7650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_set_lit, 4, .production_id = 36), - [7652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_set_lit, 4, .production_id = 36), - [7654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 3, .production_id = 32), - [7656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 3, .production_id = 32), - [7658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kwd_lit, 2), - [7660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kwd_lit, 2), - [7662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kwd_symbol, 1), - [7664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kwd_symbol, 1), - [7666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_num_lit, 2), - [7668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_num_lit, 2), - [7670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 7, .production_id = 99), - [7672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 7, .production_id = 99), - [7674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4108), - [7676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquote_splicing_lit, 4, .production_id = 48), - [7678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquote_splicing_lit, 4, .production_id = 48), - [7680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 7, .production_id = 81), - [7682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 7, .production_id = 81), - [7684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_lit, 2), - [7686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_lit, 2), - [7688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_lit, 3, .production_id = 31), - [7690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_lit, 3, .production_id = 31), - [7692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 7, .production_id = 100), - [7694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 7, .production_id = 100), - [7696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 7, .production_id = 101), - [7698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 7, .production_id = 101), - [7700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dis_expr, 2, .production_id = 7), - [7702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dis_expr, 2, .production_id = 7), - [7704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_lit, 1, .production_id = 6), - [7706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_lit, 1, .production_id = 6), - [7708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_lit, 1, .production_id = 5), - [7710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_lit, 1, .production_id = 5), - [7712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_read_cond_lit, 3, .production_id = 33), - [7714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_read_cond_lit, 3, .production_id = 33), - [7716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__form, 1), - [7718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__form, 1), - [7720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 8, .production_id = 98), - [7722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 8, .production_id = 98), - [7724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splicing_read_cond_lit, 3, .production_id = 33), - [7726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splicing_read_cond_lit, 3, .production_id = 33), - [7728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 8, .production_id = 99), - [7730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 8, .production_id = 99), - [7732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 8, .production_id = 117), - [7734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 8, .production_id = 117), - [7736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 8, .production_id = 100), - [7738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 8, .production_id = 100), - [7740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sym_lit, 1), - [7742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sym_lit, 1), - [7744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 8, .production_id = 101), - [7746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 8, .production_id = 101), - [7748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 8, .production_id = 118), - [7750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 8, .production_id = 118), - [7752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 8, .production_id = 119), - [7754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 8, .production_id = 119), - [7756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4067), - [7759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_quoting_lit, 3, .production_id = 34), - [7761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_quoting_lit, 3, .production_id = 34), - [7763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4093), - [7766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoting_lit, 4, .production_id = 48), - [7768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoting_lit, 4, .production_id = 48), - [7770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 9, .production_id = 117), - [7772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 9, .production_id = 117), - [7774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 9, .production_id = 118), - [7776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 9, .production_id = 118), - [7778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 9, .production_id = 119), - [7780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 9, .production_id = 119), - [7782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoting_lit, 3, .production_id = 34), - [7784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoting_lit, 3, .production_id = 34), - [7786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 9, .production_id = 134), - [7788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 9, .production_id = 134), - [7790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_quoting_lit, 4, .production_id = 48), - [7792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_quoting_lit, 4, .production_id = 48), - [7794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 10, .production_id = 134), - [7796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 10, .production_id = 134), - [7798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4047), - [7801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquote_splicing_lit, 3, .production_id = 34), - [7803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquote_splicing_lit, 3, .production_id = 34), - [7805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), - [7807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4091), - [7810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4077), - [7813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splicing_read_cond_lit, 4, .production_id = 47), - [7815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splicing_read_cond_lit, 4, .production_id = 47), - [7817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_read_cond_lit, 4, .production_id = 47), - [7819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_read_cond_lit, 4, .production_id = 47), - [7821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4064), - [7824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 4, .production_id = 46), - [7826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 4, .production_id = 46), - [7828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4085), - [7831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 4, .production_id = 45), - [7833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 4, .production_id = 45), - [7835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun, 4, .production_id = 44), - [7837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun, 4, .production_id = 44), - [7839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun, 4, .production_id = 41), - [7841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun, 4, .production_id = 41), - [7843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4041), - [7846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__form, 4, .production_id = 35), - [7848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__form, 4, .production_id = 35), - [7850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_macro, 4, .production_id = 41), - [7852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_macro, 4, .production_id = 41), - [7854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4031), - [7857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4062), - [7860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_str_lit, 4), - [7862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_str_lit, 4), - [7864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4090), - [7867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(1147), - [7870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(673), - [7873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4106), - [7875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4106), - [7877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 83), SHIFT(2746), - [7880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 83), SHIFT(550), - [7883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 83), SHIFT(2881), - [7886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 83), - [7888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 83), SHIFT(4146), - [7891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 5, .production_id = 83), - [7893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 65), SHIFT(2746), - [7896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 65), SHIFT(550), - [7899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 65), SHIFT(2881), - [7902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 65), - [7904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 65), SHIFT(4146), - [7907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 4, .production_id = 65), - [7909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 102), SHIFT(2746), - [7912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 102), SHIFT(550), - [7915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 102), SHIFT(2881), - [7918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 102), - [7920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 102), SHIFT(4146), - [7923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 6, .production_id = 102), - [7925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 103), SHIFT(2746), - [7928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 103), SHIFT(550), - [7931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 103), SHIFT(2881), - [7934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 103), - [7936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 103), SHIFT(4146), - [7939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 6, .production_id = 103), - [7941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 90), SHIFT(2746), - [7944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 90), SHIFT(550), - [7947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 90), SHIFT(2881), - [7950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 90), - [7952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 90), SHIFT(4146), - [7955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 5, .production_id = 90), - [7957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 82), SHIFT(2746), - [7960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 82), SHIFT(550), - [7963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 82), SHIFT(2881), - [7966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 82), - [7968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 82), SHIFT(4146), - [7971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 5, .production_id = 82), - [7973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 110), SHIFT(2746), - [7976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 110), SHIFT(550), - [7979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 110), SHIFT(2881), - [7982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 110), - [7984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 110), SHIFT(4146), - [7987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 6, .production_id = 110), - [7989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 7, .production_id = 120), SHIFT(2746), - [7992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 7, .production_id = 120), SHIFT(550), - [7995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 7, .production_id = 120), SHIFT(2881), - [7998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 7, .production_id = 120), - [8000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 7, .production_id = 120), SHIFT(4146), - [8003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 7, .production_id = 120), - [8005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 53), SHIFT(2746), - [8008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 53), SHIFT(550), - [8011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 53), SHIFT(2881), - [8014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 53), - [8016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 53), SHIFT(4146), - [8019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 3, .production_id = 53), - [8021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 8, .production_id = 141), SHIFT(2746), - [8024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 8, .production_id = 141), SHIFT(550), - [8027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 8, .production_id = 141), SHIFT(2881), - [8030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 8, .production_id = 141), - [8032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 8, .production_id = 141), SHIFT(4146), - [8035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 8, .production_id = 141), - [8037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 7, .production_id = 127), SHIFT(2746), - [8040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 7, .production_id = 127), SHIFT(550), - [8043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 7, .production_id = 127), SHIFT(2881), - [8046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 7, .production_id = 127), - [8048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 7, .production_id = 127), SHIFT(4146), - [8051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 7, .production_id = 127), - [8053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 69), SHIFT(2746), - [8056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 69), SHIFT(550), - [8059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 69), SHIFT(2881), - [8062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 69), - [8064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 69), SHIFT(4146), - [8067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 4, .production_id = 69), - [8069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(2746), - [8072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(550), - [8075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(2881), - [8078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_clause_repeat1, 2, .production_id = 15), - [8080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(4146), - [8083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(2038), - [8086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(2038), - [8089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_clause_repeat1, 2, .production_id = 15), - [8091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), - [8093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [8095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [8097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), - [8099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), - [8101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), - [8103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [8105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4156), - [8107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), - [8109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [8111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [8113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [8115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [8117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [8119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [8121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [8123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), - [8125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [8127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [8129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [8131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [8133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [8135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [8137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [8139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [8141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [8143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [8145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [8147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [8149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), - [8151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [8153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), - [8155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), - [8157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [8159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [8161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), - [8163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [8165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), - [8167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [8169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [8171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [8173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [8175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [8177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [8179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [8181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [8183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [8185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [8187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [8189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [8191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [8193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [8195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [8197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [8199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [8201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [8203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [8205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [8207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [8209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [8211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [8213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [8215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [8217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [8219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [8221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [8223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), - [8225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [8227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), - [8229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), - [8231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [8233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [8235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [8237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [8239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), - [8241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), - [8243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [8245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), - [8247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), - [8249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [8251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [8253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [8255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [8257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [8259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [8261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), - [8263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(1345), - [8266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(942), - [8269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(2848), - [8272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(2755), - [8275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(2759), - [8278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(287), - [8281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), - [8283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(4156), - [8286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(2041), - [8289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(891), - [8292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(138), - [8295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(895), - [8298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(346), - [8301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(900), - [8304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(901), - [8307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(902), - [8310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(2679), - [8313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(903), - [8316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [8318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [8320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [8322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [8324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [8326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [8328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [8330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [8332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [8334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), - [8336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [8338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), - [8340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), - [8342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [8344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [8346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), - [8348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [8350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), - [8352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [8354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [8356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [8358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4100), - [8360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), - [8362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), - [8364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4102), - [8366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4102), - [8368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_part, 2, .production_id = 40), - [8370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_part, 2, .production_id = 40), - [8372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_part, 3, .production_id = 52), - [8374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_part, 3, .production_id = 52), - [8376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_part, 4, .production_id = 68), - [8378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_part, 4, .production_id = 68), - [8380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_clause_repeat1, 1, .production_id = 1), - [8382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_clause_repeat1, 1, .production_id = 1), - [8384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 1), - [8386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 1), - [8388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4160), - [8390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), - [8392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4128), - [8394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), - [8396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4139), - [8398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), - [8400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4159), - [8402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), - [8404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4140), - [8406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), - [8408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4133), - [8410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), - [8412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4127), - [8414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), - [8416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4135), - [8418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), - [8420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4162), - [8422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), - [8424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4151), - [8426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), - [8428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), - [8430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4110), - [8432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), - [8434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2667), - [8436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), - [8438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), - [8440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), - [8442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), - [8444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4149), - [8446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), - [8448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), - [8450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), + [7293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3049), + [7295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2988), + [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), + [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), + [7303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2894), + [7305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3006), + [7307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2891), + [7309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3016), + [7311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), + [7313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [7315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [7317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [7319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2896), + [7321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3025), + [7323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), + [7325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [7327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [7329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [7331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2889), + [7333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3011), + [7335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), + [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [7339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [7341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [7343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2895), + [7345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3003), + [7347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), + [7349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [7353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [7355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2893), + [7357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3045), + [7359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2595), + [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), + [7363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [7365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), + [7367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2892), + [7369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3019), + [7371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2888), + [7373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3046), + [7375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), + [7377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [7379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [7381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [7383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2890), + [7385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3038), + [7387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), + [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [7393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [7395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2899), + [7397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3029), + [7399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(990), + [7402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(948), + [7405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dis_expr_repeat1, 2, 0, 0), + [7407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2, 0, 0), + [7409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, 0, 1), + [7411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, 0, 1), + [7413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, 0, 39), SHIFT_REPEAT(993), + [7416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, 0, 39), SHIFT_REPEAT(955), + [7419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, 0, 39), + [7421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, 0, 39), + [7423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 3, 0, 39), + [7425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 3, 0, 39), + [7427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(994), + [7430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(955), + [7433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 1, 0, 1), SHIFT_REPEAT(991), + [7436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 1, 0, 1), SHIFT_REPEAT(955), + [7439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 1, 0, 1), + [7441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 1, 0, 1), + [7443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_num_lit, 1, 0, 0), + [7445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_num_lit, 1, 0, 0), + [7447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), + [7449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_macro, 4, 0, 40), + [7451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_macro, 4, 0, 40), + [7453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__form, 2, 0, 0), + [7455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__form, 2, 0, 0), + [7457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_lit, 2, 0, 0), + [7459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_lit, 2, 0, 0), + [7461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4118), + [7463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4118), + [7465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_vec_lit, 2, 0, 9), + [7467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_vec_lit, 2, 0, 9), + [7469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_num_lit, 2, 0, 0), + [7471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_num_lit, 2, 0, 0), + [7473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kwd_symbol, 1, 0, 0), + [7475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kwd_symbol, 1, 0, 0), + [7477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_lit, 1, 0, 0), + [7479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_lit, 1, 0, 0), + [7481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1, 0, 0), SHIFT(4076), + [7484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1, 0, 0), SHIFT(4068), + [7487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kwd_lit, 2, 0, 0), + [7489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kwd_lit, 2, 0, 0), + [7491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_str_lit, 2, 0, 0), + [7493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_str_lit, 2, 0, 0), + [7495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_list_lit, 2, 0, 11), + [7497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_list_lit, 2, 0, 11), + [7499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1, 0, 0), SHIFT(4057), + [7502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_read_cond_lit, 2, 0, 13), + [7504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_read_cond_lit, 2, 0, 13), + [7506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splicing_read_cond_lit, 2, 0, 13), + [7508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splicing_read_cond_lit, 2, 0, 13), + [7510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_quoting_lit, 2, 0, 7), + [7512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_quoting_lit, 2, 0, 7), + [7514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1, 0, 0), SHIFT(4087), + [7517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoting_lit, 2, 0, 7), + [7519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoting_lit, 2, 0, 7), + [7521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), + [7523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_syn_quoting_lit, 2, 0, 7), + [7525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_syn_quoting_lit, 2, 0, 7), + [7527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquote_splicing_lit, 2, 0, 7), + [7529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquote_splicing_lit, 2, 0, 7), + [7531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1, 0, 0), SHIFT(4091), + [7534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoting_lit, 2, 0, 7), + [7536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoting_lit, 2, 0, 7), + [7538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path_lit, 2, 0, 9), + [7540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path_lit, 2, 0, 9), + [7542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_lit, 2, 0, 15), + [7544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_lit, 2, 0, 15), + [7546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_lit, 2, 0, 16), + [7548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_lit, 2, 0, 16), + [7550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dis_expr, 3, 0, 18), + [7552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dis_expr, 3, 0, 18), + [7554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 10, 0, 133), + [7556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 10, 0, 133), + [7558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1, 0, 0), SHIFT(4027), + [7561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__form, 3, 0, 20), + [7563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__form, 3, 0, 20), + [7565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_set_lit, 3, 0, 21), + [7567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_set_lit, 3, 0, 21), + [7569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_vec_lit, 3, 0, 9), + [7571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_vec_lit, 3, 0, 9), + [7573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1, 0, 0), SHIFT(4058), + [7576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_str_lit, 3, 0, 0), + [7578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_str_lit, 3, 0, 0), + [7580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_macro, 3, 0, 24), + [7582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_macro, 3, 0, 24), + [7584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun, 3, 0, 24), + [7586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun, 3, 0, 24), + [7588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_list_lit, 3, 0, 27), + [7590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_list_lit, 3, 0, 27), + [7592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_read_cond_lit, 3, 0, 29), + [7594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_read_cond_lit, 3, 0, 29), + [7596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splicing_read_cond_lit, 3, 0, 29), + [7598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splicing_read_cond_lit, 3, 0, 29), + [7600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_quoting_lit, 3, 0, 18), + [7602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_quoting_lit, 3, 0, 18), + [7604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoting_lit, 3, 0, 18), + [7606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoting_lit, 3, 0, 18), + [7608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_syn_quoting_lit, 3, 0, 18), + [7610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_syn_quoting_lit, 3, 0, 18), + [7612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquote_splicing_lit, 3, 0, 18), + [7614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquote_splicing_lit, 3, 0, 18), + [7616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoting_lit, 3, 0, 18), + [7618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoting_lit, 3, 0, 18), + [7620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_lit, 3, 0, 30), + [7622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_lit, 3, 0, 30), + [7624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 3, 0, 31), + [7626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 3, 0, 31), + [7628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 9, 0, 117), + [7630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 9, 0, 117), + [7632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_read_cond_lit, 3, 0, 32), + [7634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_read_cond_lit, 3, 0, 32), + [7636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splicing_read_cond_lit, 3, 0, 32), + [7638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splicing_read_cond_lit, 3, 0, 32), + [7640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1, 0, 0), SHIFT(4059), + [7643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sym_lit, 1, 0, 0), + [7645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sym_lit, 1, 0, 0), + [7647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_quoting_lit, 3, 0, 33), + [7649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_quoting_lit, 3, 0, 33), + [7651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1, 0, 0), SHIFT(4041), + [7654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoting_lit, 3, 0, 33), + [7656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoting_lit, 3, 0, 33), + [7658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquote_splicing_lit, 3, 0, 33), + [7660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquote_splicing_lit, 3, 0, 33), + [7662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__form, 4, 0, 34), + [7664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__form, 4, 0, 34), + [7666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_set_lit, 4, 0, 35), + [7668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_set_lit, 4, 0, 35), + [7670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 9, 0, 133), + [7672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 9, 0, 133), + [7674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_str_lit, 4, 0, 0), + [7676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_str_lit, 4, 0, 0), + [7678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun, 4, 0, 40), + [7680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun, 4, 0, 40), + [7682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun, 4, 0, 43), + [7684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun, 4, 0, 43), + [7686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 4, 0, 44), + [7688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 4, 0, 44), + [7690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 4, 0, 45), + [7692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 4, 0, 45), + [7694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_read_cond_lit, 4, 0, 46), + [7696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_read_cond_lit, 4, 0, 46), + [7698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splicing_read_cond_lit, 4, 0, 46), + [7700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splicing_read_cond_lit, 4, 0, 46), + [7702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_quoting_lit, 4, 0, 47), + [7704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_quoting_lit, 4, 0, 47), + [7706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoting_lit, 4, 0, 47), + [7708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoting_lit, 4, 0, 47), + [7710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquote_splicing_lit, 4, 0, 47), + [7712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquote_splicing_lit, 4, 0, 47), + [7714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 9, 0, 118), + [7716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 9, 0, 118), + [7718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1, 0, 0), SHIFT(4063), + [7721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 4, 0, 48), + [7723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 4, 0, 48), + [7725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_macro, 5, 0, 50), + [7727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_macro, 5, 0, 50), + [7729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1, 0, 0), SHIFT(4088), + [7732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun, 5, 0, 50), + [7734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun, 5, 0, 50), + [7736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun, 5, 0, 55), + [7738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun, 5, 0, 55), + [7740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 5, 0, 59), + [7742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 5, 0, 59), + [7744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 5, 0, 60), + [7746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 5, 0, 60), + [7748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 5, 0, 61), + [7750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 5, 0, 61), + [7752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 5, 0, 62), + [7754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 5, 0, 62), + [7756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1, 0, 0), SHIFT(4080), + [7759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_macro, 6, 0, 63), + [7761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_macro, 6, 0, 63), + [7763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun, 6, 0, 72), + [7765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun, 6, 0, 72), + [7767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 6, 0, 60), + [7769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 6, 0, 60), + [7771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 6, 0, 77), + [7773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 6, 0, 77), + [7775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 6, 0, 78), + [7777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 6, 0, 78), + [7779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 6, 0, 79), + [7781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 6, 0, 79), + [7783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 6, 0, 80), + [7785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 6, 0, 80), + [7787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_macro, 7, 0, 93), + [7789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_macro, 7, 0, 93), + [7791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 7, 0, 77), + [7793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 7, 0, 77), + [7795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 7, 0, 78), + [7797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 7, 0, 78), + [7799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 7, 0, 97), + [7801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 7, 0, 97), + [7803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 7, 0, 98), + [7805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 7, 0, 98), + [7807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 7, 0, 80), + [7809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 7, 0, 80), + [7811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 7, 0, 99), + [7813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 7, 0, 99), + [7815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__form, 1, 0, 0), + [7817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__form, 1, 0, 0), + [7819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 7, 0, 100), + [7821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 7, 0, 100), + [7823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 8, 0, 97), + [7825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 8, 0, 97), + [7827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_lit, 1, 0, 5), + [7829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_lit, 1, 0, 5), + [7831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 8, 0, 98), + [7833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 8, 0, 98), + [7835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 8, 0, 116), + [7837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 8, 0, 116), + [7839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 8, 0, 99), + [7841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 8, 0, 99), + [7843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 8, 0, 100), + [7845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 8, 0, 100), + [7847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 8, 0, 117), + [7849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 8, 0, 117), + [7851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_lit, 1, 0, 6), + [7853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_lit, 1, 0, 6), + [7855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 8, 0, 118), + [7857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 8, 0, 118), + [7859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dis_expr, 2, 0, 7), + [7861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dis_expr, 2, 0, 7), + [7863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 9, 0, 116), + [7865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 9, 0, 116), + [7867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(1134), + [7870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(934), + [7873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4108), + [7875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4108), + [7877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 4, 0, 64), SHIFT(2746), + [7880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 4, 0, 64), SHIFT(962), + [7883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 4, 0, 64), SHIFT(2882), + [7886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, 0, 64), + [7888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 4, 0, 64), SHIFT(4133), + [7891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 4, 0, 64), + [7893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, 0, 101), SHIFT(2746), + [7896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, 0, 101), SHIFT(962), + [7899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, 0, 101), SHIFT(2882), + [7902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 6, 0, 101), + [7904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, 0, 101), SHIFT(4133), + [7907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 6, 0, 101), + [7909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, 0, 82), SHIFT(2746), + [7912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, 0, 82), SHIFT(962), + [7915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, 0, 82), SHIFT(2882), + [7918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 5, 0, 82), + [7920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, 0, 82), SHIFT(4133), + [7923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 5, 0, 82), + [7925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 4, 0, 68), SHIFT(2746), + [7928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 4, 0, 68), SHIFT(962), + [7931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 4, 0, 68), SHIFT(2882), + [7934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, 0, 68), + [7936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 4, 0, 68), SHIFT(4133), + [7939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 4, 0, 68), + [7941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 7, 0, 119), SHIFT(2746), + [7944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 7, 0, 119), SHIFT(962), + [7947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 7, 0, 119), SHIFT(2882), + [7950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 7, 0, 119), + [7952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 7, 0, 119), SHIFT(4133), + [7955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 7, 0, 119), + [7957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, 0, 89), SHIFT(2746), + [7960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, 0, 89), SHIFT(962), + [7963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, 0, 89), SHIFT(2882), + [7966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 5, 0, 89), + [7968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, 0, 89), SHIFT(4133), + [7971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 5, 0, 89), + [7973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, 0, 81), SHIFT(2746), + [7976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, 0, 81), SHIFT(962), + [7979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, 0, 81), SHIFT(2882), + [7982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 5, 0, 81), + [7984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, 0, 81), SHIFT(4133), + [7987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 5, 0, 81), + [7989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, 0, 102), SHIFT(2746), + [7992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, 0, 102), SHIFT(962), + [7995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, 0, 102), SHIFT(2882), + [7998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 6, 0, 102), + [8000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, 0, 102), SHIFT(4133), + [8003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 6, 0, 102), + [8005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 8, 0, 140), SHIFT(2746), + [8008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 8, 0, 140), SHIFT(962), + [8011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 8, 0, 140), SHIFT(2882), + [8014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 8, 0, 140), + [8016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 8, 0, 140), SHIFT(4133), + [8019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 8, 0, 140), + [8021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3, 0, 52), SHIFT(2746), + [8024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3, 0, 52), SHIFT(962), + [8027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3, 0, 52), SHIFT(2882), + [8030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 3, 0, 52), + [8032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3, 0, 52), SHIFT(4133), + [8035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 3, 0, 52), + [8037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, 0, 109), SHIFT(2746), + [8040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, 0, 109), SHIFT(962), + [8043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, 0, 109), SHIFT(2882), + [8046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 6, 0, 109), + [8048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, 0, 109), SHIFT(4133), + [8051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 6, 0, 109), + [8053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_clause_repeat1, 2, 0, 14), SHIFT_REPEAT(2746), + [8056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_clause_repeat1, 2, 0, 14), SHIFT_REPEAT(962), + [8059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_clause_repeat1, 2, 0, 14), SHIFT_REPEAT(2882), + [8062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_clause_repeat1, 2, 0, 14), + [8064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_clause_repeat1, 2, 0, 14), SHIFT_REPEAT(4133), + [8067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_clause_repeat1, 2, 0, 14), SHIFT_REPEAT(2041), + [8070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_clause_repeat1, 2, 0, 14), SHIFT_REPEAT(2041), + [8073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_clause_repeat1, 2, 0, 14), + [8075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 7, 0, 126), SHIFT(2746), + [8078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 7, 0, 126), SHIFT(962), + [8081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 7, 0, 126), SHIFT(2882), + [8084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 7, 0, 126), + [8086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 7, 0, 126), SHIFT(4133), + [8089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 7, 0, 126), + [8091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), + [8093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [8095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [8097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), + [8099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), + [8101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), + [8103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), + [8105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), + [8107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [8109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [8111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [8113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [8115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [8117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [8119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [8121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [8123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), + [8125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [8127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [8129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [8131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4115), + [8133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), + [8135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [8137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [8139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [8141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [8143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [8145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [8147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), + [8149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), + [8151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [8153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [8155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), + [8157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [8159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), + [8161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [8163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [8165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [8167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [8169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [8171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [8173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [8175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [8177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [8179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [8181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [8183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), + [8185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [8187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [8189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [8191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [8193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [8195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [8197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [8199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [8201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [8203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [8205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [8207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [8209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), + [8211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), + [8213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [8215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [8217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), + [8219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), + [8221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [8223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), + [8225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [8227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [8229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [8231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [8233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [8235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [8237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [8239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [8241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [8243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [8245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [8247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [8249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [8251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [8253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [8255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [8257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [8259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [8261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [8263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [8265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [8267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [8269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2, 0, 0), SHIFT_REPEAT(1464), + [8272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2, 0, 0), SHIFT_REPEAT(873), + [8275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2, 0, 0), SHIFT_REPEAT(2847), + [8278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2, 0, 0), SHIFT_REPEAT(2759), + [8281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2, 0, 0), SHIFT_REPEAT(2760), + [8284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2, 0, 0), SHIFT_REPEAT(282), + [8287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2, 0, 0), + [8289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2, 0, 0), SHIFT_REPEAT(4154), + [8292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2, 0, 0), SHIFT_REPEAT(2037), + [8295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2, 0, 0), SHIFT_REPEAT(421), + [8298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2, 0, 0), SHIFT_REPEAT(257), + [8301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2, 0, 0), SHIFT_REPEAT(423), + [8304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2, 0, 0), SHIFT_REPEAT(297), + [8307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2, 0, 0), SHIFT_REPEAT(425), + [8310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2, 0, 0), SHIFT_REPEAT(427), + [8313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2, 0, 0), SHIFT_REPEAT(430), + [8316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2, 0, 0), SHIFT_REPEAT(2731), + [8319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2, 0, 0), SHIFT_REPEAT(431), + [8322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [8324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [8326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [8328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [8330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [8332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [8334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), + [8336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), + [8338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [8340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [8342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), + [8344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), + [8346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [8348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), + [8350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [8352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [8354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [8356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [8358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [8360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [8362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4114), + [8364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4114), + [8366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), + [8368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_part, 4, 0, 67), + [8370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_part, 4, 0, 67), + [8372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_part, 3, 0, 51), + [8374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_part, 3, 0, 51), + [8376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_clause_repeat1, 1, 0, 1), + [8378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_clause_repeat1, 1, 0, 1), + [8380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_part, 2, 0, 39), + [8382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_part, 2, 0, 39), + [8384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 1, 0, 0), + [8386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 1, 0, 0), + [8388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4128), + [8390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), + [8392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4123), + [8394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), + [8396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4121), + [8398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), + [8400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4134), + [8402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), + [8404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4124), + [8406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), + [8408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4127), + [8410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), + [8412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4150), + [8414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), + [8416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4126), + [8418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), + [8420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4141), + [8422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), + [8424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4160), + [8426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), + [8428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), + [8430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4105), + [8432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), + [8434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2669), + [8436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), + [8438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2749), + [8440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), + [8442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), + [8444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), + [8446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), + [8448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), + [8450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), [8452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), - [8454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [8456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [8458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), - [8460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), - [8462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), - [8464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [8466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [8468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [8470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [8472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), - [8474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [8476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), - [8478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [8480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [8482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), - [8484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), - [8486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [8488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [8490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [8492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4105), - [8494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), - [8496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), - [8498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(1967), - [8501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(742), - [8504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 1, .production_id = 12), - [8506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 1, .production_id = 12), - [8508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 2, .production_id = 26), - [8510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 2, .production_id = 26), - [8512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 7, .production_id = 116), - [8514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 7, .production_id = 116), - [8516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 2, .production_id = 27), - [8518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 2, .production_id = 27), - [8520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 6, .production_id = 95), - [8522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 6, .production_id = 95), - [8524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3874), - [8526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3868), - [8528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3843), - [8530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3817), - [8532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3790), - [8534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 1, .production_id = 1), - [8536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 1, .production_id = 1), - [8538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3749), - [8540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 3, .production_id = 42), - [8542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 3, .production_id = 42), - [8544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3757), - [8546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 6, .production_id = 96), - [8548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 6, .production_id = 96), - [8550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 3, .production_id = 43), - [8552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 3, .production_id = 43), - [8554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3778), - [8556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 6, .production_id = 97), - [8558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 6, .production_id = 97), - [8560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 4, .production_id = 57), - [8562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 4, .production_id = 57), - [8564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 3, .production_id = 27), - [8566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 3, .production_id = 27), - [8568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 5, .production_id = 74), - [8570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 5, .production_id = 74), - [8572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3855), - [8574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 5, .production_id = 75), - [8576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 5, .production_id = 75), - [8578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3767), - [8580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 5, .production_id = 76), - [8582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 5, .production_id = 76), - [8584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 5, .production_id = 77), - [8586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 5, .production_id = 77), - [8588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 4, .production_id = 59), - [8590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 4, .production_id = 59), - [8592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 4, .production_id = 58), - [8594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 4, .production_id = 58), - [8596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_accumulation_clause, 2, .production_id = 40), SHIFT(3104), - [8599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_accumulation_clause, 2, .production_id = 40), SHIFT(871), - [8602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_accumulation_clause, 2, .production_id = 40), SHIFT(4132), - [8605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 2, .production_id = 40), - [8607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_accumulation_clause, 2, .production_id = 40), SHIFT(4143), - [8610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [8612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_verb, 2), - [8614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accumulation_verb, 2), - [8616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_accumulation_clause, 3, .production_id = 52), SHIFT(3107), - [8619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_accumulation_clause, 3, .production_id = 52), SHIFT(871), - [8622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_accumulation_clause, 3, .production_id = 52), SHIFT(4119), - [8625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 3, .production_id = 52), - [8627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_accumulation_clause, 3, .production_id = 52), SHIFT(4129), - [8630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [8632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause_word, 1), - [8634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause_word, 1), - [8636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_verb, 3), - [8638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accumulation_verb, 3), - [8640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_keyword, 3), - [8642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_keyword, 3), - [8644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_verb, 1), - [8646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accumulation_verb, 1), - [8648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause_word, 2), - [8650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause_word, 2), - [8652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_keyword, 1), - [8654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_keyword, 1), - [8656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause_word, 3), - [8658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause_word, 3), - [8660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 140), SHIFT(2426), - [8663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 140), SHIFT(942), - [8666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 140), - [8668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 170), SHIFT(2456), - [8671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 170), SHIFT(942), - [8674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 170), - [8676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 176), SHIFT(2139), - [8679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 176), SHIFT(942), - [8682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 176), - [8684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 142), SHIFT(2088), - [8687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 142), SHIFT(942), - [8690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 142), - [8692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 176), SHIFT(2133), - [8695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 170), SHIFT(2455), - [8698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 163), SHIFT(2145), - [8701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 163), SHIFT(942), - [8704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 163), - [8706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 170), SHIFT(2453), - [8709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 162), SHIFT(2145), - [8712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 162), SHIFT(942), - [8715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 162), - [8717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 169), SHIFT(2452), - [8720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 169), SHIFT(942), - [8723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 169), - [8725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 161), SHIFT(2145), - [8728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 161), SHIFT(942), - [8731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 161), - [8733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 143), SHIFT(2195), - [8736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 143), SHIFT(942), - [8739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 143), - [8741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 154), SHIFT(2119), - [8744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 154), SHIFT(942), - [8747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 154), - [8749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 170), SHIFT(2449), - [8752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 170), SHIFT(2448), - [8755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 153), SHIFT(2357), - [8758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 153), SHIFT(942), - [8761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 153), - [8763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 173), SHIFT(2145), - [8766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 173), SHIFT(942), - [8769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 173), - [8771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 129), SHIFT(2145), - [8774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 129), SHIFT(942), - [8777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 129), - [8779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 143), SHIFT(2332), - [8782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 170), SHIFT(2445), - [8785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 169), SHIFT(2317), - [8788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 168), SHIFT(2145), - [8791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 168), SHIFT(942), - [8794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 168), - [8796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 168), SHIFT(2443), - [8799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 168), SHIFT(942), - [8802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 168), - [8804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 142), SHIFT(2154), - [8807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 128), SHIFT(2145), - [8810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 128), SHIFT(942), - [8813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 128), - [8815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 160), SHIFT(2145), - [8818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 160), SHIFT(942), - [8821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 160), - [8823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 159), SHIFT(2145), - [8826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 159), SHIFT(942), - [8829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 159), - [8831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 150), SHIFT(2145), - [8834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 150), SHIFT(942), - [8837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 150), - [8839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 142), SHIFT(2145), - [8842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 142), SHIFT(942), - [8845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 142), - [8847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 160), SHIFT(2438), - [8850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 160), SHIFT(942), - [8853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 160), - [8855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 160), SHIFT(2435), - [8858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 160), SHIFT(2433), - [8861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 149), SHIFT(2145), - [8864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 149), SHIFT(942), - [8867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 149), - [8869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 159), SHIFT(2428), - [8872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 159), SHIFT(942), - [8875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 159), - [8877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 148), SHIFT(2145), - [8880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 148), SHIFT(942), - [8883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 148), - [8885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 167), SHIFT(2417), - [8888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 167), SHIFT(942), - [8891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 167), - [8893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 158), SHIFT(2145), - [8896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 158), SHIFT(942), - [8899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 158), - [8901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 157), SHIFT(2145), - [8904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 157), SHIFT(942), - [8907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 157), - [8909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 156), SHIFT(2145), - [8912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 156), SHIFT(942), - [8915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 156), - [8917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 154), SHIFT(2115), - [8920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 166), SHIFT(2333), - [8923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 166), SHIFT(942), - [8926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 166), - [8928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 13, .production_id = 174), SHIFT(2145), - [8931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 13, .production_id = 174), SHIFT(942), - [8934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 13, .production_id = 174), - [8936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 166), SHIFT(2327), - [8939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 156), SHIFT(2111), - [8942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 156), SHIFT(942), - [8945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 156), - [8947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 144), SHIFT(2145), - [8950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 144), SHIFT(942), - [8953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 144), - [8955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 166), SHIFT(2322), - [8958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 154), SHIFT(2145), - [8961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 154), SHIFT(942), - [8964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 154), - [8966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 13, .production_id = 175), SHIFT(2145), - [8969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 13, .production_id = 175), SHIFT(942), - [8972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 13, .production_id = 175), - [8974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 164), SHIFT(2319), - [8977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 164), SHIFT(942), - [8980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 164), - [8982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 164), SHIFT(2194), - [8985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 165), SHIFT(2314), - [8988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 165), SHIFT(942), - [8991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 165), - [8993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 155), SHIFT(2145), - [8996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 155), SHIFT(942), - [8999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 155), - [9001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 13, .production_id = 176), SHIFT(2145), - [9004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 13, .production_id = 176), SHIFT(942), - [9007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 13, .production_id = 176), - [9009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 156), SHIFT(2105), - [9012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 165), SHIFT(2309), - [9015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 145), SHIFT(2145), - [9018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 145), SHIFT(942), - [9021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 145), - [9023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 165), SHIFT(2203), - [9026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 165), SHIFT(2200), - [9029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 164), SHIFT(2199), - [9032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 124), SHIFT(2145), - [9035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 124), SHIFT(942), - [9038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 124), - [9040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 140), SHIFT(2167), - [9043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 13, .production_id = 177), SHIFT(2136), - [9046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 13, .production_id = 177), SHIFT(942), - [9049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 13, .production_id = 177), - [9051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 14, .production_id = 177), SHIFT(2145), - [9054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 14, .production_id = 177), SHIFT(942), - [9057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 14, .production_id = 177), - [9059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 126), SHIFT(2145), - [9062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 126), SHIFT(942), - [9065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 126), - [9067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 140), SHIFT(2253), - [9070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 138), SHIFT(2263), - [9073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 138), SHIFT(942), - [9076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 138), - [9078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 138), SHIFT(2277), - [9081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 125), SHIFT(2145), - [9084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 125), SHIFT(942), - [9087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 125), - [9089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 139), SHIFT(2337), - [9092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 139), SHIFT(942), - [9095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 139), - [9097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(2145), - [9100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(942), - [9103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 139), SHIFT(2348), - [9106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 139), SHIFT(2380), - [9109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 138), SHIFT(2406), - [9112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 138), SHIFT(2408), - [9115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 140), SHIFT(2410), - [9118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 154), SHIFT(2432), - [9121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 176), SHIFT(2122), - [9124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 154), SHIFT(2424), - [9127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 138), SHIFT(2439), - [9130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 138), SHIFT(2447), - [9133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 139), SHIFT(2454), - [9136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 139), SHIFT(2458), - [9139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 140), SHIFT(2145), - [9142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 140), SHIFT(942), - [9145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 140), - [9147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 139), SHIFT(2462), - [9150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 129), SHIFT(2069), - [9153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 129), SHIFT(942), - [9156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 129), - [9158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 138), SHIFT(2472), - [9161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 138), SHIFT(2475), - [9164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 123), SHIFT(2145), - [9167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 123), SHIFT(942), - [9170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 123), - [9172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 137), SHIFT(2477), - [9175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 137), SHIFT(942), - [9178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 137), - [9180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 153), SHIFT(2422), - [9183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 137), SHIFT(2481), - [9186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 137), SHIFT(2485), - [9189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 121), SHIFT(2145), - [9192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 121), SHIFT(942), - [9195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 121), - [9197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 135), SHIFT(2486), - [9200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 135), SHIFT(942), - [9203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 135), - [9205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 135), SHIFT(2487), - [9208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 136), SHIFT(2488), - [9211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 136), SHIFT(942), - [9214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 136), - [9216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 122), SHIFT(2145), - [9219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 122), SHIFT(942), - [9222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 122), - [9224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 136), SHIFT(2491), - [9227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 136), SHIFT(2493), - [9230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 136), SHIFT(2494), - [9233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 135), SHIFT(2495), - [9236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 136), SHIFT(2145), - [9239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 136), SHIFT(942), - [9242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 136), - [9244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 164), SHIFT(2145), - [9247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 164), SHIFT(942), - [9250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 164), - [9252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 143), SHIFT(2145), - [9255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 143), SHIFT(942), - [9258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 143), - [9260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 144), SHIFT(2113), - [9263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 144), SHIFT(942), - [9266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 144), - [9268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 148), SHIFT(2099), - [9271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 148), SHIFT(942), - [9274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 148), - [9276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 165), SHIFT(2145), - [9279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 165), SHIFT(942), - [9282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 165), - [9284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 131), SHIFT(2145), - [9287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 131), SHIFT(942), - [9290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 131), - [9292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 132), SHIFT(2145), - [9295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 132), SHIFT(942), - [9298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 132), - [9300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 148), SHIFT(2098), - [9303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 148), SHIFT(2097), - [9306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 135), SHIFT(2145), - [9309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 135), SHIFT(942), - [9312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 135), - [9314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 123), SHIFT(2483), - [9317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 123), SHIFT(942), - [9320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 123), - [9322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 149), SHIFT(2095), - [9325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 149), SHIFT(942), - [9328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 149), - [9330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 137), SHIFT(2145), - [9333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 137), SHIFT(942), - [9336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 137), - [9338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 106), SHIFT(2145), - [9341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 106), SHIFT(942), - [9344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 106), - [9346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 123), SHIFT(2509), - [9349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 150), SHIFT(2094), - [9352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 150), SHIFT(942), - [9355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 150), - [9357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 121), SHIFT(2506), - [9360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 121), SHIFT(942), - [9363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 121), - [9365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 104), SHIFT(2145), - [9368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 104), SHIFT(942), - [9371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 104), - [9373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 121), SHIFT(2521), - [9376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 105), SHIFT(2145), - [9379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 105), SHIFT(942), - [9382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 105), - [9384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 122), SHIFT(2526), - [9387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 122), SHIFT(942), - [9390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 122), - [9392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 150), SHIFT(2093), - [9395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 122), SHIFT(2533), - [9398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 122), SHIFT(2540), - [9401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 121), SHIFT(2547), - [9404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 121), SHIFT(2549), - [9407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 115), SHIFT(2145), - [9410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 115), SHIFT(942), - [9413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 115), - [9415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 133), SHIFT(2479), - [9418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 133), SHIFT(942), - [9421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 133), - [9423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 157), SHIFT(2104), - [9426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 157), SHIFT(942), - [9429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 157), - [9431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 133), SHIFT(2473), - [9434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 133), SHIFT(2517), - [9437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 113), SHIFT(2145), - [9440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 113), SHIFT(942), - [9443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 113), - [9445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 131), SHIFT(2434), - [9448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 131), SHIFT(942), - [9451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 131), - [9453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 131), SHIFT(2431), - [9456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 132), SHIFT(2427), - [9459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 132), SHIFT(942), - [9462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 132), - [9464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 114), SHIFT(2145), - [9467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 114), SHIFT(942), - [9470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 114), - [9472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 132), SHIFT(2411), - [9475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 132), SHIFT(2331), - [9478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 132), SHIFT(2202), - [9481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 131), SHIFT(2201), - [9484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 153), SHIFT(2418), - [9487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 150), SHIFT(2091), - [9490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 128), SHIFT(2082), - [9493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 128), SHIFT(942), - [9496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 128), - [9498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 147), SHIFT(2145), - [9501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 147), SHIFT(942), - [9504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 147), - [9506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 126), SHIFT(2137), - [9509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 126), SHIFT(942), - [9512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 126), - [9514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 158), SHIFT(2101), - [9517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 158), SHIFT(942), - [9520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 158), - [9522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 105), SHIFT(2220), - [9525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 105), SHIFT(942), - [9528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 105), - [9530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 124), SHIFT(2141), - [9533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 124), SHIFT(942), - [9536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 124), - [9538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 125), SHIFT(2143), - [9541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 125), SHIFT(942), - [9544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 125), - [9546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 150), SHIFT(2087), - [9549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 138), SHIFT(2145), - [9552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 138), SHIFT(942), - [9555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 138), - [9557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 108), SHIFT(2145), - [9560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 108), SHIFT(942), - [9563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 108), - [9565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 125), SHIFT(2147), - [9568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 124), SHIFT(2149), - [9571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 107), SHIFT(2145), - [9574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 107), SHIFT(942), - [9577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 107), - [9579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 124), SHIFT(2152), - [9582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 151), SHIFT(2399), - [9585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 151), SHIFT(942), - [9588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 151), - [9590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 126), SHIFT(2156), - [9593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 124), SHIFT(2160), - [9596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 151), SHIFT(2398), - [9599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 125), SHIFT(2162), - [9602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 159), SHIFT(2086), - [9605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 125), SHIFT(2166), - [9608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 152), SHIFT(2396), - [9611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 152), SHIFT(942), - [9614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 152), - [9616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 124), SHIFT(2132), - [9619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 124), SHIFT(2172), - [9622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 123), SHIFT(2173), - [9625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 153), SHIFT(2407), - [9628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 123), SHIFT(2177), - [9631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 121), SHIFT(2179), - [9634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 121), SHIFT(2182), - [9637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 122), SHIFT(2184), - [9640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 122), SHIFT(2186), - [9643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 122), SHIFT(2189), - [9646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 121), SHIFT(2191), - [9649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 121), SHIFT(2192), - [9652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 160), SHIFT(2085), - [9655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 171), SHIFT(2463), - [9658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 171), SHIFT(942), - [9661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 171), - [9663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 160), SHIFT(2084), - [9666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 171), SHIFT(2465), - [9669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 160), SHIFT(2083), - [9672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 171), SHIFT(2466), - [9675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 155), SHIFT(2121), - [9678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 155), SHIFT(942), - [9681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 155), - [9683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 158), SHIFT(2102), - [9686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 169), SHIFT(2145), - [9689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 169), SHIFT(942), - [9692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 169), - [9694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 151), SHIFT(2145), - [9697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 151), SHIFT(942), - [9700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 151), - [9702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 172), SHIFT(2468), - [9705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 172), SHIFT(942), - [9708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 172), - [9710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 152), SHIFT(2145), - [9713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 152), SHIFT(942), - [9716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 152), - [9718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 166), SHIFT(2145), - [9721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 166), SHIFT(942), - [9724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 166), - [9726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 173), SHIFT(2469), - [9729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 173), SHIFT(942), - [9732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 173), - [9734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 173), SHIFT(2484), - [9737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 161), SHIFT(2078), - [9740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 161), SHIFT(942), - [9743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 161), - [9745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 173), SHIFT(2131), - [9748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 155), SHIFT(2125), - [9751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 161), SHIFT(2077), - [9754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 161), SHIFT(2076), - [9757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 139), SHIFT(2145), - [9760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 139), SHIFT(942), - [9763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 139), - [9765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 152), SHIFT(2389), - [9768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 106), SHIFT(2214), - [9771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 106), SHIFT(942), - [9774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 106), - [9776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 162), SHIFT(2074), - [9779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 162), SHIFT(942), - [9782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 162), - [9784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 153), SHIFT(2145), - [9787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 153), SHIFT(942), - [9790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 153), - [9792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 104), SHIFT(2218), - [9795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 104), SHIFT(942), - [9798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 104), - [9800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 163), SHIFT(2073), - [9803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 163), SHIFT(942), - [9806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 163), - [9808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 163), SHIFT(2072), - [9811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 152), SHIFT(2386), - [9814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 85), SHIFT(2145), - [9817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 85), SHIFT(942), - [9820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 85), - [9822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 105), SHIFT(2224), - [9825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 158), SHIFT(2103), - [9828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 104), SHIFT(2226), - [9831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 84), SHIFT(2145), - [9834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 84), SHIFT(942), - [9837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 84), - [9839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 104), SHIFT(2229), - [9842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 115), SHIFT(2230), - [9845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 115), SHIFT(942), - [9848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 115), - [9850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 163), SHIFT(2068), - [9853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 93), SHIFT(2145), - [9856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 93), SHIFT(942), - [9859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 93), - [9861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 115), SHIFT(2234), - [9864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 113), SHIFT(2236), - [9867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 113), SHIFT(942), - [9870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 113), - [9872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 91), SHIFT(2145), - [9875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 91), SHIFT(942), - [9878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 91), - [9880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 113), SHIFT(2239), - [9883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 92), SHIFT(2145), - [9886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 92), SHIFT(942), - [9889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 92), - [9891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 114), SHIFT(2241), - [9894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 114), SHIFT(942), - [9897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 114), - [9899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 114), SHIFT(2243), - [9902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 114), SHIFT(2246), - [9905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 113), SHIFT(2248), - [9908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 113), SHIFT(2249), - [9911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 173), SHIFT(2067), - [9914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 152), SHIFT(2384), - [9917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 108), SHIFT(2264), - [9920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 108), SHIFT(942), - [9923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 108), - [9925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 145), SHIFT(2126), - [9928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 145), SHIFT(942), - [9931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 145), - [9933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 107), SHIFT(2268), - [9936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 107), SHIFT(942), - [9939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 107), - [9941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 163), SHIFT(2062), - [9944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 151), SHIFT(2383), - [9947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 108), SHIFT(2279), - [9950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 161), SHIFT(2061), - [9953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 107), SHIFT(2283), - [9956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 161), SHIFT(2060), - [9959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 106), SHIFT(2289), - [9962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 161), SHIFT(2058), - [9965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 146), SHIFT(2145), - [9968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 146), SHIFT(942), - [9971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 146), - [9973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 104), SHIFT(2293), - [9976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 105), SHIFT(2295), - [9979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 105), SHIFT(2299), - [9982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 162), SHIFT(2056), - [9985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 104), SHIFT(2301), - [9988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 104), SHIFT(2304), - [9991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 163), SHIFT(2055), - [9994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 163), SHIFT(2054), - [9997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 155), SHIFT(2129), - [10000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 145), SHIFT(2421), - [10003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 153), SHIFT(2376), - [10006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 145), SHIFT(2420), - [10009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 167), SHIFT(2145), - [10012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 167), SHIFT(942), - [10015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 167), - [10017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 163), SHIFT(2052), - [10020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 163), SHIFT(2197), - [10023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 150), SHIFT(2288), - [10026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 70), SHIFT(2522), - [10029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 70), SHIFT(942), - [10032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 70), - [10034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 71), SHIFT(2535), - [10037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 71), SHIFT(942), - [10040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 71), - [10042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 153), SHIFT(2344), - [10045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 146), SHIFT(2394), - [10048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 146), SHIFT(942), - [10051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 146), - [10053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 142), SHIFT(2164), - [10056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 168), SHIFT(2079), - [10059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 151), SHIFT(2341), - [10062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 170), SHIFT(2145), - [10065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 170), SHIFT(942), - [10068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 170), - [10070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 151), SHIFT(2340), - [10073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 152), SHIFT(2338), - [10076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 174), SHIFT(2108), - [10079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 174), SHIFT(942), - [10082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 174), - [10084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 152), SHIFT(2329), - [10087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 152), SHIFT(2325), - [10090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 152), SHIFT(2321), - [10093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 174), SHIFT(2109), - [10096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 171), SHIFT(2145), - [10099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 171), SHIFT(942), - [10102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 171), - [10104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 147), SHIFT(2367), - [10107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 147), SHIFT(942), - [10110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 147), - [10112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 175), SHIFT(2116), - [10115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 175), SHIFT(942), - [10118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 175), - [10120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 172), SHIFT(2145), - [10123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 172), SHIFT(942), - [10126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 172), - [10128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 151), SHIFT(2318), - [10131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 147), SHIFT(2361), - [10134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 133), SHIFT(2145), - [10137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 133), SHIFT(942), - [10140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 133), - [10142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 147), SHIFT(2336), - [10145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 150), SHIFT(2316), - [10148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 150), SHIFT(2306), - [10151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 147), SHIFT(2255), - [10154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 150), SHIFT(2291), - [10157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 148), SHIFT(2273), - [10160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 148), SHIFT(2272), - [10163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 148), SHIFT(2266), - [10166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4099), - [10168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4099), - [10170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 149), SHIFT(2287), - [10173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 84), SHIFT(2404), - [10176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 84), SHIFT(942), - [10179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 84), - [10181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 85), SHIFT(2400), - [10184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 85), SHIFT(942), - [10187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 85), - [10189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 137), SHIFT(2260), - [10192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 137), SHIFT(2251), - [10195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 85), SHIFT(2350), - [10198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 137), SHIFT(2213), - [10201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 135), SHIFT(2210), - [10204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 135), SHIFT(2209), - [10207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 91), SHIFT(2374), - [10210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 91), SHIFT(942), - [10213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 91), - [10215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 70), SHIFT(2145), - [10218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 70), SHIFT(942), - [10221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 70), - [10223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 91), SHIFT(2371), - [10226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 136), SHIFT(2208), - [10229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 84), SHIFT(2354), - [10232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 136), SHIFT(2204), - [10235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 93), SHIFT(2359), - [10238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 93), SHIFT(942), - [10241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 93), - [10243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 92), SHIFT(2369), - [10246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 92), SHIFT(942), - [10249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 92), - [10251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 71), SHIFT(2145), - [10254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 71), SHIFT(942), - [10257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 71), - [10259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 92), SHIFT(2365), - [10262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 136), SHIFT(2193), - [10265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 136), SHIFT(2297), - [10268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 135), SHIFT(2207), - [10271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 91), SHIFT(2363), - [10274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), - [10276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4053), - [10279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4039), - [10282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4070), - [10285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4028), - [10288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4060), - [10291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4055), - [10294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4025), - [10297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4065), - [10300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4050), - [10303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4078), - [10306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4045), - [10309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4075), - [10312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4032), - [10315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4022), - [10318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4063), - [10321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4096), - [10324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4023), - [10327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4052), - [10330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_prefix_parameters, 1), - [10332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_prefix_parameters, 1), - [10334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4051), - [10337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4081), - [10340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4033), - [10343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4036), - [10346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4037), - [10349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4056), - [10352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 7, .production_id = 131), - [10354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 4, .production_id = 68), - [10356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 8, .production_id = 146), - [10358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 5, .production_id = 91), - [10360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 8, .production_id = 135), - [10362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 1), - [10364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), - [10366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [10368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), - [10370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4146), - [10372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_clause, 1), - [10374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 5, .production_id = 89), - [10376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 6, .production_id = 104), - [10378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 7, .production_id = 121), - [10380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 6, .production_id = 113), - [10382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), - [10384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_clause, 5, .production_id = 89), - [10386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_clause, 5, .production_id = 89), - [10388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_clause, 3, .production_id = 52), - [10390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_termination_clause, 4, .production_id = 68), - [10392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_clause, 2, .production_id = 40), - [10394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_clause, 4, .production_id = 68), - [10396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_clause, 4, .production_id = 68), - [10398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_clause, 3, .production_id = 52), - [10400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 4, .production_id = 70), - [10402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_clause, 2, .production_id = 40), - [10404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_termination_clause, 5, .production_id = 89), - [10406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 2), - [10408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 3, .production_id = 52), - [10410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 3), - [10412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 5, .production_id = 84), - [10414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_termination_clause, 3, .production_id = 52), - [10416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_termination_clause, 2, .production_id = 40), - [10418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 2, .production_id = 40), - [10420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 9, .production_id = 149), + [8454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [8456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), + [8458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), + [8460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), + [8462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [8464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [8466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [8468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), + [8470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [8472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [8474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [8476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [8478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), + [8480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [8482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), + [8484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [8486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [8488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), + [8490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [8492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4109), + [8494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4109), + [8496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), + [8498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(1974), + [8501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(465), + [8504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 1, 0, 12), + [8506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 1, 0, 12), + [8508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 5, 0, 75), + [8510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 5, 0, 75), + [8512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 4, 0, 56), + [8514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 4, 0, 56), + [8516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 2, 0, 25), + [8518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 2, 0, 25), + [8520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 2, 0, 26), + [8522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 2, 0, 26), + [8524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 6, 0, 94), + [8526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 6, 0, 94), + [8528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 6, 0, 95), + [8530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 6, 0, 95), + [8532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 6, 0, 96), + [8534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 6, 0, 96), + [8536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 4, 0, 57), + [8538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 4, 0, 57), + [8540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 5, 0, 73), + [8542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 5, 0, 73), + [8544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 5, 0, 74), + [8546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 5, 0, 74), + [8548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 3, 0, 42), + [8550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 3, 0, 42), + [8552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 5, 0, 76), + [8554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 5, 0, 76), + [8556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 4, 0, 58), + [8558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 4, 0, 58), + [8560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 1, 0, 1), + [8562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 1, 0, 1), + [8564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 3, 0, 41), + [8566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 3, 0, 41), + [8568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 7, 0, 115), + [8570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 7, 0, 115), + [8572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3653), + [8574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 3, 0, 26), + [8576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 3, 0, 26), + [8578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3651), + [8580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3658), + [8582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3682), + [8584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3705), + [8586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3712), + [8588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3718), + [8590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3736), + [8592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3759), + [8594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3768), + [8596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_accumulation_clause, 3, 0, 51), SHIFT(3106), + [8599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_accumulation_clause, 3, 0, 51), SHIFT(902), + [8602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_accumulation_clause, 3, 0, 51), SHIFT(4138), + [8605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 3, 0, 51), + [8607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_accumulation_clause, 3, 0, 51), SHIFT(4144), + [8610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [8612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_accumulation_clause, 2, 0, 39), SHIFT(3105), + [8615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_accumulation_clause, 2, 0, 39), SHIFT(902), + [8618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_accumulation_clause, 2, 0, 39), SHIFT(4152), + [8621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 2, 0, 39), + [8623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_accumulation_clause, 2, 0, 39), SHIFT(4132), + [8626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [8628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_verb, 1, 0, 0), + [8630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accumulation_verb, 1, 0, 0), + [8632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause_word, 2, 0, 0), + [8634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause_word, 2, 0, 0), + [8636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause_word, 3, 0, 0), + [8638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause_word, 3, 0, 0), + [8640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_verb, 3, 0, 0), + [8642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accumulation_verb, 3, 0, 0), + [8644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause_word, 1, 0, 0), + [8646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause_word, 1, 0, 0), + [8648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_keyword, 3, 0, 0), + [8650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_keyword, 3, 0, 0), + [8652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_verb, 2, 0, 0), + [8654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accumulation_verb, 2, 0, 0), + [8656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_keyword, 1, 0, 0), + [8658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_keyword, 1, 0, 0), + [8660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 151), SHIFT(2348), + [8663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 151), SHIFT(873), + [8666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 151), + [8668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 105), SHIFT(2265), + [8671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 105), SHIFT(873), + [8674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 105), + [8676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 104), SHIFT(2127), + [8679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 104), SHIFT(873), + [8682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 104), + [8684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 124), SHIFT(2538), + [8687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 124), SHIFT(873), + [8690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 124), + [8692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 138), SHIFT(2248), + [8695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 138), SHIFT(873), + [8698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 138), + [8700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4100), + [8702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), + [8704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 138), SHIFT(2250), + [8707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 137), SHIFT(2252), + [8710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 137), SHIFT(873), + [8713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 137), + [8715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 123), SHIFT(2538), + [8718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 123), SHIFT(873), + [8721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 123), + [8723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 137), SHIFT(2256), + [8726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 139), SHIFT(2258), + [8729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 139), SHIFT(873), + [8732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 139), + [8734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 125), SHIFT(2538), + [8737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 125), SHIFT(873), + [8740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 125), + [8742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 139), SHIFT(2261), + [8745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 141), SHIFT(2262), + [8748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 141), SHIFT(873), + [8751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 141), + [8753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 127), SHIFT(2538), + [8756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 127), SHIFT(873), + [8759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 127), + [8761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 141), SHIFT(2266), + [8764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 142), SHIFT(2269), + [8767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 142), SHIFT(873), + [8770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 142), + [8772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 128), SHIFT(2538), + [8775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 128), SHIFT(873), + [8778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 128), + [8780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 142), SHIFT(2272), + [8783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 84), SHIFT(2538), + [8786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 84), SHIFT(873), + [8789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 84), + [8791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 141), SHIFT(2274), + [8794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 143), SHIFT(2278), + [8797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 143), SHIFT(873), + [8800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 143), + [8802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 130), SHIFT(2538), + [8805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 130), SHIFT(873), + [8808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 130), + [8810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 131), SHIFT(2538), + [8813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 131), SHIFT(873), + [8816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 131), + [8818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 144), SHIFT(2281), + [8821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 144), SHIFT(873), + [8824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 144), + [8826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 144), SHIFT(2282), + [8829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 144), SHIFT(2283), + [8832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 145), SHIFT(2285), + [8835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 145), SHIFT(873), + [8838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 145), + [8840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 132), SHIFT(2538), + [8843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 132), SHIFT(873), + [8846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 132), + [8848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 146), SHIFT(2286), + [8851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 146), SHIFT(873), + [8854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 146), + [8856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 146), SHIFT(2287), + [8859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 146), SHIFT(2289), + [8862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 146), SHIFT(2292), + [8865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 120), SHIFT(2538), + [8868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 120), SHIFT(873), + [8871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 120), + [8873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 134), SHIFT(2293), + [8876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 134), SHIFT(873), + [8879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 134), + [8881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 121), SHIFT(2538), + [8884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 121), SHIFT(873), + [8887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 121), + [8889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 135), SHIFT(2294), + [8892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 135), SHIFT(873), + [8895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 135), + [8897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 135), SHIFT(2295), + [8900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 135), SHIFT(2297), + [8903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 104), SHIFT(2130), + [8906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 103), SHIFT(2135), + [8909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 103), SHIFT(873), + [8912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 103), + [8914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 105), SHIFT(2141), + [8917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 135), SHIFT(2300), + [8920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 106), SHIFT(2146), + [8923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 106), SHIFT(873), + [8926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 106), + [8928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 134), SHIFT(2301), + [8931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 134), SHIFT(2302), + [8934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 107), SHIFT(2150), + [8937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 107), SHIFT(873), + [8940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 107), + [8942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 136), SHIFT(2304), + [8945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 136), SHIFT(873), + [8948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 136), + [8950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 103), SHIFT(2538), + [8953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 103), SHIFT(873), + [8956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 103), + [8958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 120), SHIFT(2492), + [8961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 120), SHIFT(873), + [8964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 120), + [8966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 120), SHIFT(2493), + [8969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 121), SHIFT(2495), + [8972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 121), SHIFT(873), + [8975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 121), + [8977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 106), SHIFT(2158), + [8980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 104), SHIFT(2538), + [8983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 104), SHIFT(873), + [8986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 104), + [8988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 121), SHIFT(2498), + [8991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 121), SHIFT(2501), + [8994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 120), SHIFT(2503), + [8997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 122), SHIFT(2538), + [9000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 122), SHIFT(873), + [9003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 122), + [9005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 136), SHIFT(2307), + [9008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 120), SHIFT(2507), + [9011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 136), SHIFT(2311), + [9014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 107), SHIFT(2162), + [9017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 122), SHIFT(2509), + [9020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 122), SHIFT(873), + [9023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 122), + [9025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 105), SHIFT(2538), + [9028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 105), SHIFT(873), + [9031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 105), + [9033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 122), SHIFT(2514), + [9036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 123), SHIFT(2515), + [9039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 123), SHIFT(873), + [9042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 123), + [9044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 106), SHIFT(2538), + [9047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 106), SHIFT(873), + [9050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 106), + [9052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 123), SHIFT(2519), + [9055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 124), SHIFT(2524), + [9058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 124), SHIFT(873), + [9061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 124), + [9063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 107), SHIFT(2538), + [9066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 107), SHIFT(873), + [9069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 107), + [9071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 124), SHIFT(2533), + [9074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 123), SHIFT(2537), + [9077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 103), SHIFT(2120), + [9080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 125), SHIFT(2543), + [9083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 125), SHIFT(873), + [9086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 125), + [9088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 123), SHIFT(2547), + [9091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 90), SHIFT(2538), + [9094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 90), SHIFT(873), + [9097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 90), + [9099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 123), SHIFT(2550), + [9102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 124), SHIFT(2048), + [9105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 112), SHIFT(2169), + [9108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 112), SHIFT(873), + [9111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 112), + [9113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 124), SHIFT(2052), + [9116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 123), SHIFT(2054), + [9119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 125), SHIFT(2057), + [9122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 112), SHIFT(2170), + [9125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 127), SHIFT(2060), + [9128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 127), SHIFT(873), + [9131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 127), + [9133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 128), SHIFT(2063), + [9136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 128), SHIFT(873), + [9139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 128), + [9141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 112), SHIFT(2538), + [9144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 112), SHIFT(873), + [9147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 112), + [9149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 130), SHIFT(2069), + [9152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 130), SHIFT(873), + [9155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 130), + [9157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 113), SHIFT(2538), + [9160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 113), SHIFT(873), + [9163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 113), + [9165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 131), SHIFT(2070), + [9168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 131), SHIFT(873), + [9171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 131), + [9173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 131), SHIFT(2071), + [9176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 131), SHIFT(2073), + [9179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 131), SHIFT(2077), + [9182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 130), SHIFT(2078), + [9185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 130), SHIFT(2079), + [9188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 132), SHIFT(2081), + [9191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 132), SHIFT(873), + [9194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 132), + [9196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 114), SHIFT(2538), + [9199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 114), SHIFT(873), + [9202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 114), + [9204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 132), SHIFT(2084), + [9207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 132), SHIFT(2087), + [9210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 120), SHIFT(2089), + [9213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 120), SHIFT(2090), + [9216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 121), SHIFT(2092), + [9219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 121), SHIFT(2096), + [9222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 121), SHIFT(2101), + [9225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 120), SHIFT(2111), + [9228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 113), SHIFT(2172), + [9231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 113), SHIFT(873), + [9234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 113), + [9236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 134), SHIFT(2538), + [9239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 134), SHIFT(873), + [9242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 134), + [9244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 135), SHIFT(2538), + [9247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 135), SHIFT(873), + [9250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 135), + [9252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 147), SHIFT(2313), + [9255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 147), SHIFT(873), + [9258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 147), + [9260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 147), SHIFT(2314), + [9263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 147), SHIFT(2315), + [9266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 148), SHIFT(2317), + [9269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 148), SHIFT(873), + [9272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 148), + [9274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 136), SHIFT(2538), + [9277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 136), SHIFT(873), + [9280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 136), + [9282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 149), SHIFT(2318), + [9285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 149), SHIFT(873), + [9288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 149), + [9290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 149), SHIFT(2319), + [9293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 149), SHIFT(2321), + [9296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 120), SHIFT(2117), + [9299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 149), SHIFT(2324), + [9302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 137), SHIFT(2538), + [9305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 137), SHIFT(873), + [9308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 137), + [9310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 150), SHIFT(2551), + [9313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 150), SHIFT(873), + [9316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 150), + [9318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 138), SHIFT(2538), + [9321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 138), SHIFT(873), + [9324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 138), + [9326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 151), SHIFT(2326), + [9329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 151), SHIFT(2327), + [9332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 83), SHIFT(2538), + [9335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 83), SHIFT(873), + [9338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 83), + [9340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 151), SHIFT(2329), + [9343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 122), SHIFT(2132), + [9346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 151), SHIFT(2332), + [9349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 150), SHIFT(2333), + [9352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 150), SHIFT(2334), + [9355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 152), SHIFT(2336), + [9358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 152), SHIFT(873), + [9361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 152), + [9363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 139), SHIFT(2538), + [9366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 139), SHIFT(873), + [9369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 139), + [9371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 152), SHIFT(2340), + [9374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 152), SHIFT(2344), + [9377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 150), SHIFT(2346), + [9380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 151), SHIFT(2347), + [9383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 84), SHIFT(2527), + [9386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 84), SHIFT(873), + [9389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 84), + [9391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 151), SHIFT(2350), + [9394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 151), SHIFT(2353), + [9397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 150), SHIFT(2354), + [9400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 150), SHIFT(2355), + [9403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 103), SHIFT(2124), + [9406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 152), SHIFT(2357), + [9409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 152), SHIFT(2361), + [9412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 152), SHIFT(2365), + [9415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 141), SHIFT(2538), + [9418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 141), SHIFT(873), + [9421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 141), + [9423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 153), SHIFT(2367), + [9426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 153), SHIFT(873), + [9429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 153), + [9431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 153), SHIFT(2368), + [9434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 154), SHIFT(2370), + [9437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 154), SHIFT(873), + [9440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 154), + [9442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 91), SHIFT(2538), + [9445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 91), SHIFT(873), + [9448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 91), + [9450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 142), SHIFT(2538), + [9453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 142), SHIFT(873), + [9456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 142), + [9458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 154), SHIFT(2373), + [9461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 154), SHIFT(2377), + [9464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 153), SHIFT(2379), + [9467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 153), SHIFT(2382), + [9470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, 0, 122), SHIFT(2138), + [9473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 155), SHIFT(2384), + [9476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 155), SHIFT(873), + [9479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 155), + [9481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 143), SHIFT(2538), + [9484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 143), SHIFT(873), + [9487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 143), + [9489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 113), SHIFT(2175), + [9492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 155), SHIFT(2387), + [9495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 144), SHIFT(2538), + [9498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 144), SHIFT(873), + [9501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 144), + [9503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 156), SHIFT(2388), + [9506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 156), SHIFT(873), + [9509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 156), + [9511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 145), SHIFT(2538), + [9514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 145), SHIFT(873), + [9517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 145), + [9519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 146), SHIFT(2538), + [9522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 146), SHIFT(873), + [9525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 146), + [9527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 157), SHIFT(2389), + [9530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 157), SHIFT(873), + [9533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 157), + [9535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 157), SHIFT(2390), + [9538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 157), SHIFT(2391), + [9541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 147), SHIFT(2393), + [9544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 147), SHIFT(2394), + [9547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 147), SHIFT(2395), + [9550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 148), SHIFT(2397), + [9553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 149), SHIFT(2398), + [9556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 149), SHIFT(2399), + [9559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 149), SHIFT(2401), + [9562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 69), SHIFT(2529), + [9565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 69), SHIFT(873), + [9568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 69), + [9570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, 0, 149), SHIFT(2404), + [9573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 147), SHIFT(2538), + [9576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 147), SHIFT(873), + [9579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 147), + [9581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 158), SHIFT(2405), + [9584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 158), SHIFT(873), + [9587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 158), + [9589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 148), SHIFT(2538), + [9592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 148), SHIFT(873), + [9595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 148), + [9597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 149), SHIFT(2538), + [9600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 149), SHIFT(873), + [9603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 149), + [9605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 159), SHIFT(2406), + [9608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 159), SHIFT(873), + [9611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 159), + [9613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 159), SHIFT(2407), + [9616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 159), SHIFT(2408), + [9619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 138), SHIFT(2245), + [9622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 151), SHIFT(2538), + [9625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 151), SHIFT(873), + [9628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 151), + [9630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 160), SHIFT(2410), + [9633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 160), SHIFT(873), + [9636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 160), + [9638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 160), SHIFT(2411), + [9641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 160), SHIFT(2412), + [9644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 150), SHIFT(2538), + [9647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 150), SHIFT(873), + [9650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 150), + [9652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 161), SHIFT(2414), + [9655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 161), SHIFT(873), + [9658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 161), + [9660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 152), SHIFT(2538), + [9663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 152), SHIFT(873), + [9666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 152), + [9668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 162), SHIFT(2415), + [9671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 162), SHIFT(873), + [9674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 162), + [9676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 162), SHIFT(2416), + [9679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 113), SHIFT(2178), + [9682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 162), SHIFT(2418), + [9685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 70), SHIFT(2532), + [9688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 70), SHIFT(873), + [9691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 70), + [9693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 162), SHIFT(2421), + [9696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 160), SHIFT(2422), + [9699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 160), SHIFT(2423), + [9702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 160), SHIFT(2424), + [9705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 161), SHIFT(2426), + [9708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 162), SHIFT(2427), + [9711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 162), SHIFT(2428), + [9714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 162), SHIFT(2430), + [9717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 112), SHIFT(2180), + [9720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 162), SHIFT(2433), + [9723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 153), SHIFT(2538), + [9726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 153), SHIFT(873), + [9729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 153), + [9731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 163), SHIFT(2434), + [9734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 163), SHIFT(873), + [9737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 163), + [9739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 154), SHIFT(2538), + [9742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 154), SHIFT(873), + [9745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 154), + [9747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 164), SHIFT(2435), + [9750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 164), SHIFT(873), + [9753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 164), + [9755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 164), SHIFT(2436), + [9758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 164), SHIFT(2438), + [9761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 112), SHIFT(2183), + [9764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 164), SHIFT(2441), + [9767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 163), SHIFT(2442), + [9770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 163), SHIFT(2443), + [9773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 165), SHIFT(2445), + [9776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 165), SHIFT(873), + [9779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 165), + [9781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 155), SHIFT(2538), + [9784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 155), SHIFT(873), + [9787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 155), + [9789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 165), SHIFT(2449), + [9792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 165), SHIFT(2451), + [9795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 156), SHIFT(2538), + [9798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 156), SHIFT(873), + [9801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 156), + [9803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 157), SHIFT(2538), + [9806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 157), SHIFT(873), + [9809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 157), + [9811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 166), SHIFT(2453), + [9814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 166), SHIFT(873), + [9817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 166), + [9819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 158), SHIFT(2454), + [9822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 159), SHIFT(2455), + [9825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 159), SHIFT(2456), + [9828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, 0, 159), SHIFT(2457), + [9831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, 0, 158), SHIFT(2538), + [9834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, 0, 158), SHIFT(873), + [9837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, 0, 158), + [9839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, 0, 159), SHIFT(2538), + [9842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, 0, 159), SHIFT(873), + [9845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, 0, 159), + [9847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, 0, 167), SHIFT(2459), + [9850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, 0, 167), SHIFT(873), + [9853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, 0, 167), + [9855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, 0, 160), SHIFT(2538), + [9858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, 0, 160), SHIFT(873), + [9861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, 0, 160), + [9863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, 0, 168), SHIFT(2460), + [9866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, 0, 168), SHIFT(873), + [9869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, 0, 168), + [9871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, 0, 161), SHIFT(2538), + [9874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, 0, 161), SHIFT(873), + [9877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, 0, 161), + [9879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, 0, 162), SHIFT(2538), + [9882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, 0, 162), SHIFT(873), + [9885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, 0, 162), + [9887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, 0, 169), SHIFT(2461), + [9890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, 0, 169), SHIFT(873), + [9893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, 0, 169), + [9895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, 0, 169), SHIFT(2462), + [9898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, 0, 169), SHIFT(2463), + [9901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, 0, 168), SHIFT(2465), + [9904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, 0, 169), SHIFT(2466), + [9907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, 0, 169), SHIFT(2467), + [9910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, 0, 169), SHIFT(2468), + [9913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, 0, 163), SHIFT(2538), + [9916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, 0, 163), SHIFT(873), + [9919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, 0, 163), + [9921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, 0, 164), SHIFT(2538), + [9924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, 0, 164), SHIFT(873), + [9927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, 0, 164), + [9929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, 0, 170), SHIFT(2470), + [9932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, 0, 170), SHIFT(873), + [9935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, 0, 170), + [9937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, 0, 170), SHIFT(2471), + [9940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, 0, 170), SHIFT(2472), + [9943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, 0, 171), SHIFT(2474), + [9946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, 0, 171), SHIFT(873), + [9949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, 0, 171), + [9951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, 0, 165), SHIFT(2538), + [9954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, 0, 165), SHIFT(873), + [9957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, 0, 165), + [9959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, 0, 172), SHIFT(2475), + [9962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, 0, 172), SHIFT(873), + [9965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, 0, 172), + [9967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, 0, 172), SHIFT(2476), + [9970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 114), SHIFT(2185), + [9973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 114), SHIFT(873), + [9976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 114), + [9978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, 0, 172), SHIFT(2478), + [9981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, 0, 172), SHIFT(2481), + [9984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, 0, 166), SHIFT(2538), + [9987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, 0, 166), SHIFT(873), + [9990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, 0, 166), + [9992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, 0, 167), SHIFT(2482), + [9995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, 0, 167), SHIFT(2538), + [9998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, 0, 167), SHIFT(873), + [10001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 12, 0, 167), + [10003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, 0, 168), SHIFT(2538), + [10006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, 0, 168), SHIFT(873), + [10009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 12, 0, 168), + [10011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, 0, 169), SHIFT(2538), + [10014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, 0, 169), SHIFT(873), + [10017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 12, 0, 169), + [10019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, 0, 173), SHIFT(2483), + [10022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, 0, 173), SHIFT(873), + [10025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 12, 0, 173), + [10027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, 0, 173), SHIFT(2484), + [10030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, 0, 170), SHIFT(2538), + [10033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, 0, 170), SHIFT(873), + [10036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 12, 0, 170), + [10038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, 0, 174), SHIFT(2485), + [10041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, 0, 174), SHIFT(873), + [10044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 12, 0, 174), + [10046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, 0, 171), SHIFT(2538), + [10049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, 0, 171), SHIFT(873), + [10052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 12, 0, 171), + [10054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, 0, 172), SHIFT(2538), + [10057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, 0, 172), SHIFT(873), + [10060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 12, 0, 172), + [10062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, 0, 175), SHIFT(2486), + [10065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, 0, 175), SHIFT(873), + [10068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 12, 0, 175), + [10070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, 0, 175), SHIFT(2487), + [10073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, 0, 175), SHIFT(2488), + [10076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 13, 0, 173), SHIFT(2538), + [10079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 13, 0, 173), SHIFT(873), + [10082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 13, 0, 173), + [10084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 13, 0, 174), SHIFT(2538), + [10087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 13, 0, 174), SHIFT(873), + [10090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 13, 0, 174), + [10092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 13, 0, 175), SHIFT(2538), + [10095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 13, 0, 175), SHIFT(873), + [10098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 13, 0, 175), + [10100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 13, 0, 176), SHIFT(2490), + [10103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 13, 0, 176), SHIFT(873), + [10106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 13, 0, 176), + [10108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 14, 0, 176), SHIFT(2538), + [10111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 14, 0, 176), SHIFT(873), + [10114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 14, 0, 176), + [10116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 134), SHIFT(2201), + [10119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 135), SHIFT(2202), + [10122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 135), SHIFT(2203), + [10125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 135), SHIFT(2205), + [10128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 92), SHIFT(2538), + [10131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 92), SHIFT(873), + [10134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 92), + [10136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 135), SHIFT(2208), + [10139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 134), SHIFT(2209), + [10142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 134), SHIFT(2210), + [10145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 114), SHIFT(2188), + [10148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 136), SHIFT(2212), + [10151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 136), SHIFT(2216), + [10154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 103), SHIFT(2189), + [10157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 136), SHIFT(2219), + [10160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 137), SHIFT(2221), + [10163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 137), SHIFT(2222), + [10166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 83), SHIFT(2227), + [10169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 83), SHIFT(873), + [10172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 83), + [10174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 84), SHIFT(2065), + [10177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 138), SHIFT(2224), + [10180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 103), SHIFT(2192), + [10183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 104), SHIFT(2194), + [10186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 138), SHIFT(2228), + [10189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 90), SHIFT(2157), + [10192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 90), SHIFT(873), + [10195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 90), + [10197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 138), SHIFT(2231), + [10200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 69), SHIFT(2538), + [10203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 69), SHIFT(873), + [10206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 69), + [10208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 90), SHIFT(2196), + [10211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 91), SHIFT(2268), + [10214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 91), SHIFT(873), + [10217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 91), + [10219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 70), SHIFT(2538), + [10222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 70), SHIFT(873), + [10225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 70), + [10227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 91), SHIFT(2360), + [10230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 137), SHIFT(2233), + [10233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 90), SHIFT(2364), + [10236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(2538), + [10239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(873), + [10242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 92), SHIFT(2500), + [10245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 92), SHIFT(873), + [10248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 92), + [10250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 137), SHIFT(2236), + [10253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 83), SHIFT(2513), + [10256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 139), SHIFT(2238), + [10259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 104), SHIFT(2198), + [10262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 139), SHIFT(2241), + [10265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, 0, 103), SHIFT(2215), + [10268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 137), SHIFT(2242), + [10271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, 0, 137), SHIFT(2243), + [10274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), + [10276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1, 0, 0), SHIFT(4036), + [10279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1, 0, 0), SHIFT(4083), + [10282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1, 0, 0), SHIFT(4030), + [10285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1, 0, 0), SHIFT(4032), + [10288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1, 0, 0), SHIFT(4084), + [10291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1, 0, 0), SHIFT(4029), + [10294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1, 0, 0), SHIFT(4052), + [10297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1, 0, 0), SHIFT(4085), + [10300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1, 0, 0), SHIFT(4050), + [10303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1, 0, 0), SHIFT(4069), + [10306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1, 0, 0), SHIFT(4074), + [10309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1, 0, 0), SHIFT(4046), + [10312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1, 0, 0), SHIFT(4026), + [10315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1, 0, 0), SHIFT(4049), + [10318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1, 0, 0), SHIFT(4055), + [10321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1, 0, 0), SHIFT(4095), + [10324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1, 0, 0), SHIFT(4073), + [10327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1, 0, 0), SHIFT(4033), + [10330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1, 0, 0), SHIFT(4023), + [10333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1, 0, 0), SHIFT(4067), + [10336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_prefix_parameters, 1, 0, 0), + [10338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_prefix_parameters, 1, 0, 0), + [10340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1, 0, 0), SHIFT(4048), + [10343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1, 0, 0), SHIFT(4034), + [10346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1, 0, 0), SHIFT(4094), + [10349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1, 0, 0), SHIFT(4066), + [10352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 6, 0, 112), + [10354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), + [10356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [10358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), + [10360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4133), + [10362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 7, 0, 120), + [10364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_clause, 2, 0, 39), + [10366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 5, 0, 90), + [10368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 9, 0, 148), + [10370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 2, 0, 39), + [10372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_clause, 3, 0, 51), + [10374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_clause, 3, 0, 51), + [10376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 3, 0, 51), + [10378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_clause, 4, 0, 67), + [10380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_termination_clause, 4, 0, 67), + [10382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 6, 0, 103), + [10384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_clause, 1, 0, 0), + [10386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_clause, 4, 0, 67), + [10388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_termination_clause, 3, 0, 51), + [10390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 3, 0, 0), + [10392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_termination_clause, 2, 0, 39), + [10394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 8, 0, 145), + [10396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 5, 0, 83), + [10398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), + [10400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 8, 0, 134), + [10402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 4, 0, 67), + [10404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 2, 0, 0), + [10406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_clause, 5, 0, 88), + [10408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_clause, 5, 0, 88), + [10410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 5, 0, 88), + [10412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_termination_clause, 5, 0, 88), + [10414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 1, 0, 0), + [10416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 4, 0, 69), + [10418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 7, 0, 130), + [10420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_clause, 2, 0, 39), [10422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), - [10424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(2747), - [10427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(550), - [10430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_modifiers, 1), - [10432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_modifiers, 2), - [10434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), - [10436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [10438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [10440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [10442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), - [10444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), - [10446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [10448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), - [10450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [10452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), - [10454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), - [10456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), - [10458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), - [10460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), - [10462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), - [10464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), - [10466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), - [10468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4117), - [10470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4117), - [10472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(2850), - [10475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), - [10477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4148), - [10479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3931), - [10481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3918), - [10483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [10485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [10487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [10489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [10491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [10493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), - [10495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), - [10497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4142), - [10499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3938), - [10501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), - [10503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [10505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [10507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [10509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [10511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [10513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), - [10515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), - [10517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4138), - [10519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3975), - [10521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), - [10523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [10525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [10527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [10529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [10531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), - [10533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), - [10535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [10537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [10539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [10541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [10543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [10545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4141), - [10547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3887), - [10549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), - [10551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [10553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [10555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [10557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [10559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [10561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), - [10563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), - [10565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3941), - [10567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), - [10569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [10571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [10573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [10575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [10577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [10579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3956), - [10581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), - [10583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [10585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [10587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [10589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [10591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [10593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4120), - [10595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3917), - [10597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), - [10599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [10601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [10603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [10605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [10607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [10609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), - [10611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), - [10613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4144), - [10615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3909), - [10617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), - [10619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [10621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [10623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [10625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [10627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [10629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), - [10631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), - [10633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4121), - [10635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), - [10637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [10639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [10641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [10643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [10645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [10647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), - [10649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), - [10651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4161), - [10653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3906), - [10655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), - [10657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [10659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [10661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [10663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [10665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [10667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), - [10669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), - [10671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [10673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [10675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [10677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [10679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [10681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [10683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3954), - [10685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), - [10687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [10689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [10691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [10693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [10695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [10697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4154), - [10699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3988), - [10701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), - [10703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [10705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [10707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [10709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [10711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [10713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), - [10715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), - [10717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), - [10719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [10721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), - [10723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [10725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [10727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [10729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [10731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [10733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [10735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [10737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [10739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), - [10741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [10743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), - [10745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), - [10747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [10749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [10751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [10753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [10755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [10757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [10759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [10761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [10763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [10765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), - [10767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [10769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(2853), - [10772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(953), - [10775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), - [10777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), - [10779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [10781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), - [10783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), - [10785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [10787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__metadata_lit, 1, .production_id = 3), - [10789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__metadata_lit, 1, .production_id = 3), - [10791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), - [10793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__metadata_lit, 1, .production_id = 4), - [10795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__metadata_lit, 1, .production_id = 4), - [10797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), - [10799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), - [10801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), - [10803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), - [10805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), - [10807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__metadata_lit, 2, .production_id = 3), - [10809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__metadata_lit, 2, .production_id = 3), - [10811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__metadata_lit, 2, .production_id = 4), - [10813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__metadata_lit, 2, .production_id = 4), - [10815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), - [10817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), - [10819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4109), - [10821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4109), - [10823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_lit_repeat1, 2, .production_id = 18), - [10825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_lit_repeat1, 2, .production_id = 18), SHIFT_REPEAT(2758), - [10828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_lit_repeat1, 2, .production_id = 18), SHIFT_REPEAT(2757), - [10831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_lit_repeat1, 2, .production_id = 18), - [10833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_old_meta_lit, 2, .production_id = 10), - [10835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_old_meta_lit, 2, .production_id = 10), - [10837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_map_lit, 3, .production_id = 28), - [10839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_map_lit, 3, .production_id = 28), - [10841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_lit, 1, .production_id = 5), - [10843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_lit, 1, .production_id = 5), - [10845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_map_lit, 2, .production_id = 11), - [10847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_map_lit, 2, .production_id = 11), - [10849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_lit, 3, .production_id = 24), - [10851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_lit, 3, .production_id = 24), - [10853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_lit, 2, .production_id = 16), - [10855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_lit, 2, .production_id = 16), - [10857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_old_meta_lit, 3, .production_id = 24), - [10859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_old_meta_lit, 3, .production_id = 24), - [10861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [10863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_lit, 2, .production_id = 10), - [10865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_lit, 2, .production_id = 10), - [10867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), - [10869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), - [10871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), - [10873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), - [10875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), - [10877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), - [10879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), - [10881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), - [10883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), - [10885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), - [10887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), + [10424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(2747), + [10427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(962), + [10430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_modifiers, 2, 0, 0), + [10432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_modifiers, 1, 0, 0), + [10434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), + [10436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [10438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [10440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [10442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), + [10444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), + [10446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), + [10448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), + [10450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [10452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), + [10454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [10456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), + [10458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), + [10460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), + [10462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), + [10464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), + [10466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), + [10468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1, 0, 0), SHIFT(2866), + [10471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), + [10473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), + [10475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4113), + [10477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4130), + [10479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3894), + [10481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), + [10483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [10485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [10487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [10489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [10491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [10493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), + [10495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), + [10497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4120), + [10499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3891), + [10501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), + [10503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [10505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [10507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [10509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [10511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [10513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), + [10515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), + [10517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4145), + [10519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3976), + [10521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), + [10523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [10525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [10527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [10529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [10531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [10533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), + [10535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), + [10537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4155), + [10539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3935), + [10541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), + [10543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [10545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [10547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [10549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [10551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [10553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3859), + [10555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3860), + [10557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4164), + [10559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3949), + [10561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), + [10563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [10565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [10567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [10569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [10571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [10573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), + [10575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), + [10577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4163), + [10579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3898), + [10581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), + [10583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [10585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [10587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [10589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [10591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [10593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), + [10595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), + [10597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4161), + [10599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3972), + [10601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), + [10603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [10605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [10607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [10609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [10611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [10613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), + [10615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), + [10617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [10619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [10621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [10623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [10625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [10627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3912), + [10629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3918), + [10631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [10633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [10635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [10637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [10639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [10641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [10643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [10645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [10647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [10649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [10651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4149), + [10653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3988), + [10655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), + [10657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [10659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [10661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [10663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [10665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [10667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), + [10669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), + [10671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4131), + [10673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3910), + [10675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), + [10677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [10679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [10681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [10683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [10685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [10687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), + [10689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), + [10691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3968), + [10693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), + [10695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [10697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [10699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [10701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [10703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [10705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), + [10707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [10709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [10711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [10713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [10715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [10717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), + [10719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [10721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [10723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [10725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [10727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [10729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [10731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [10733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [10735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [10737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), + [10739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [10741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), + [10743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), + [10745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [10747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__metadata_lit, 2, 0, 3), + [10749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__metadata_lit, 2, 0, 3), + [10751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), + [10753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), + [10755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__metadata_lit, 2, 0, 4), + [10757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__metadata_lit, 2, 0, 4), + [10759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), + [10761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), + [10763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), + [10765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), + [10767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__metadata_lit, 1, 0, 4), + [10769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__metadata_lit, 1, 0, 4), + [10771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), + [10773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), + [10775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [10777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2782), + [10779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), + [10781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [10783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(2868), + [10786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(859), + [10789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), + [10791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), + [10793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), + [10795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__metadata_lit, 1, 0, 3), + [10797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__metadata_lit, 1, 0, 3), + [10799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [10801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [10803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [10805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [10807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [10809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [10811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [10813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [10815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), + [10817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [10819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4101), + [10821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4101), + [10823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [10825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_lit, 3, 0, 23), + [10827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_lit, 3, 0, 23), + [10829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_lit_repeat1, 2, 0, 17), + [10831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_lit_repeat1, 2, 0, 17), SHIFT_REPEAT(2753), + [10834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_lit_repeat1, 2, 0, 17), SHIFT_REPEAT(2757), + [10837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_lit_repeat1, 2, 0, 17), + [10839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_old_meta_lit, 3, 0, 23), + [10841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_old_meta_lit, 3, 0, 23), + [10843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_lit, 2, 0, 15), + [10845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_lit, 2, 0, 15), + [10847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_lit, 2, 0, 10), + [10849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_lit, 2, 0, 10), + [10851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_old_meta_lit, 2, 0, 10), + [10853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_old_meta_lit, 2, 0, 10), + [10855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_map_lit, 3, 0, 27), + [10857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_map_lit, 3, 0, 27), + [10859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_lit, 1, 0, 5), + [10861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_lit, 1, 0, 5), + [10863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_map_lit, 2, 0, 11), + [10865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_map_lit, 2, 0, 11), + [10867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), + [10869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), + [10871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), + [10873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), + [10875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), + [10877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), + [10879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), + [10881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), + [10883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), + [10885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), + [10887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), [10889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), - [10891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2913), - [10893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_lit_repeat1, 1, .production_id = 2), - [10895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_lit_repeat1, 1, .production_id = 2), - [10897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(2902), - [10900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(779), - [10903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(2903), - [10906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(887), - [10909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__format_token, 2), - [10911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__format_token, 2), - [10913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), - [10915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [10917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), - [10919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), - [10921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__format_token, 1, .production_id = 23), - [10923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__format_token, 1, .production_id = 23), - [10925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_format_modifiers_repeat1, 1), - [10927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_modifiers_repeat1, 1), - [10929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), - [10931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), - [10933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(2986), - [10936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(823), - [10939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [10941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_dimension, 1), - [10943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), - [10945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), - [10947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [10949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), - [10951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [10953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), - [10955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_lit_repeat1, 2, .production_id = 18), SHIFT_REPEAT(2755), - [10958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_lit_repeat1, 2, .production_id = 18), SHIFT_REPEAT(2759), - [10961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), - [10963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), - [10965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [10967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), - [10969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4115), - [10971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), - [10973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [10975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [10977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [10979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4104), - [10981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), - [10983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(3072), - [10986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(910), - [10989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_modifiers_repeat1, 2), SHIFT_REPEAT(2976), - [10992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_modifiers_repeat1, 2), - [10994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_modifiers_repeat1, 2), SHIFT_REPEAT(4149), - [10997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_modifiers_repeat1, 2), SHIFT_REPEAT(3085), - [11000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_format_modifiers_repeat1, 2), - [11002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2749), - [11004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), - [11006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), - [11008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), - [11010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(3094), - [11013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(871), - [11016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), - [11018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [11020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4137), - [11022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4134), - [11024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [11026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), - [11028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), - [11030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4130), - [11032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4152), - [11034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [11036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), - [11038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), - [11040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), - [11042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), - [11044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), - [11046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), - [11048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), - [11050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), - [11052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), - [11054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), - [11056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), - [11058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), - [11060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), - [11062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), - [11064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), - [11066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), - [11068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), - [11070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), - [11072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), - [11074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), - [11076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), - [11078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), - [11080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), - [11082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), - [11084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), - [11086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), - [11088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), - [11090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), - [11092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), - [11094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), - [11096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), - [11098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), - [11100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), - [11102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), - [11104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), - [11106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), - [11108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), - [11110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), - [11112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), - [11114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), - [11116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), - [11118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), - [11120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), - [11122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), - [11124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), - [11126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), - [11128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), - [11130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), - [11132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), - [11134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), - [11136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), - [11138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), - [11140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), - [11142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), - [11144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), - [11146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), - [11148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), - [11150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), - [11152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), - [11154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), - [11156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), - [11158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), - [11160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), - [11162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), - [11164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), - [11166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), - [11168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), - [11170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), - [11172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), - [11174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), - [11176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), - [11178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), - [11180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), - [11182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), - [11184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), - [11186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), - [11188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), - [11190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), - [11192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), - [11194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), - [11196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), - [11198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), - [11200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), - [11202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), - [11204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), - [11206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), - [11208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), - [11210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), - [11212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), - [11214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), - [11216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), - [11218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), - [11220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), - [11222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), - [11224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), - [11226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), - [11228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), - [11230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), - [11232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), + [10891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(2900), + [10894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(846), + [10897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(2901), + [10900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(818), + [10903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2995), + [10905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_lit_repeat1, 1, 0, 2), + [10907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_lit_repeat1, 1, 0, 2), + [10909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), + [10911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [10913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__format_token, 1, 0, 22), + [10915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__format_token, 1, 0, 22), + [10917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_format_modifiers_repeat1, 1, 0, 0), + [10919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_modifiers_repeat1, 1, 0, 0), + [10921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), + [10923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), + [10925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__format_token, 2, 0, 0), + [10927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__format_token, 2, 0, 0), + [10929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(2981), + [10932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(917), + [10935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), + [10937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), + [10939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [10941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [10943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_dimension, 1, 0, 0), + [10945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_lit_repeat1, 2, 0, 17), SHIFT_REPEAT(2759), + [10948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_lit_repeat1, 2, 0, 17), SHIFT_REPEAT(2760), + [10951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [10953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [10955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), + [10957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), + [10959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [10961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), + [10963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), + [10965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), + [10967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [10969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), + [10971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4106), + [10973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4106), + [10975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), + [10977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [10979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), + [10981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), + [10983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), + [10985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), + [10987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2939), + [10990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_modifiers_repeat1, 2, 0, 0), + [10992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(4135), + [10995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(3068), + [10998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_format_modifiers_repeat1, 2, 0, 0), + [11000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4104), + [11002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), + [11004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(3084), + [11007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(890), + [11010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(3088), + [11013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(902), + [11016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), + [11018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), + [11020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [11022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4146), + [11024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4140), + [11026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [11028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), + [11030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4156), + [11032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [11034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), + [11036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), + [11038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), + [11040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), + [11042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), + [11044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), + [11046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), + [11048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), + [11050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), + [11052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), + [11054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), + [11056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), + [11058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), + [11060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), + [11062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), + [11064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), + [11066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), + [11068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), + [11070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), + [11072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), + [11074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), + [11076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), + [11078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), + [11080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), + [11082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), + [11084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), + [11086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), + [11088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), + [11090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), + [11092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), + [11094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), + [11096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), + [11098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), + [11100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), + [11102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), + [11104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), + [11106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), + [11108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), + [11110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), + [11112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), + [11114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), + [11116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), + [11118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), + [11120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), + [11122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), + [11124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), + [11126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), + [11128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), + [11130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), + [11132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), + [11134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), + [11136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), + [11138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), + [11140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), + [11142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), + [11144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), + [11146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), + [11148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), + [11150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), + [11152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), + [11154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), + [11156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), + [11158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), + [11160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), + [11162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), + [11164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), + [11166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), + [11168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), + [11170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), + [11172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), + [11174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), + [11176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), + [11178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), + [11180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), + [11182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), + [11184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), + [11186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), + [11188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), + [11190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), + [11192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), + [11194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), + [11196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), + [11198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), + [11200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), + [11202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), + [11204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), + [11206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), + [11208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), + [11210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), + [11212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), + [11214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), + [11216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), + [11218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), + [11220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), + [11222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), + [11224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), + [11226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), + [11228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), + [11230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), + [11232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), [11234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), [11236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), - [11238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), - [11240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), - [11242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), - [11244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), - [11246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), - [11248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), - [11250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), - [11252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), - [11254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), - [11256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), - [11258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), - [11260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), - [11262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), - [11264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), - [11266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), - [11268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), - [11270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), - [11272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), - [11274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), - [11276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), - [11278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), - [11280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), - [11282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), - [11284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), - [11286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), - [11288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), - [11290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), - [11292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), - [11294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), - [11296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), - [11298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), - [11300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), - [11302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), - [11304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), - [11306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), - [11308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), + [11238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), + [11240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), + [11242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), + [11244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), + [11246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), + [11248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), + [11250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), + [11252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), + [11254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), + [11256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), + [11258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), + [11260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), + [11262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), + [11264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), + [11266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), + [11268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), + [11270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), + [11272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), + [11274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), + [11276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), + [11278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), + [11280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), + [11282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), + [11284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), + [11286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), + [11288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), + [11290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), + [11292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), + [11294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), + [11296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), + [11298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), + [11300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), + [11302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), + [11304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), + [11306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), + [11308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), [11310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), - [11312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), - [11314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), - [11316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), - [11318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), - [11320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), - [11322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), - [11324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), - [11326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), - [11328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), - [11330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), + [11312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), + [11314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), + [11316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), + [11318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), + [11320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), + [11322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), + [11324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), + [11326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), + [11328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), + [11330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), [11332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), - [11334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), - [11336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), - [11338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), - [11340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), - [11342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), - [11344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), - [11346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [11348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), - [11350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [11352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), - [11354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [11356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [11358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), - [11360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), - [11362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), - [11364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), - [11366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), - [11368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), - [11370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), - [11372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), - [11374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [11376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [11378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), - [11380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), - [11382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), - [11384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), - [11386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), - [11388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [11390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [11392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), - [11394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), - [11396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), - [11398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [11400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [11402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), - [11404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), - [11406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), - [11408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), - [11410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), - [11412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [11414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), - [11416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [11418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [11420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), - [11422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [11424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), - [11426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), - [11428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [11430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), - [11432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [11434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), - [11436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [11334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), + [11336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), + [11338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), + [11340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), + [11342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), + [11344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), + [11346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), + [11348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [11350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), + [11352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [11354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), + [11356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), + [11358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [11360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), + [11362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [11364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), + [11366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [11368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3830), + [11370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [11372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), + [11374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), + [11376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), + [11378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [11380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), + [11382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [11384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), + [11386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), + [11388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), + [11390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), + [11392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), + [11394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [11396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), + [11398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [11400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), + [11402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [11404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), + [11406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [11408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), + [11410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [11412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), + [11414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), + [11416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [11418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [11420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), + [11422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [11424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), + [11426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [11428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [11430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), + [11432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [11434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), + [11436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), [11438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), - [11440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [11442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), - [11444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [11446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), - [11448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [11450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [11452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), - [11454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [11456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), - [11458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [11460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [11462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), - [11464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [11466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), - [11468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [11470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), - [11472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [11474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [11476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), - [11478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [11480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), - [11482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [11484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), - [11486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [11488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [11490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [11492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), - [11494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [11496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [11498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [11500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), - [11502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [11504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [11506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), - [11508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [11510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), - [11512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [11514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [11516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [11518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), - [11520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [11522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [11524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), - [11526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [11528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), - [11530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [11532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [11534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [11536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [11538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [11540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), - [11542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [11544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [11546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [11548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [11550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), - [11552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [11554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [11556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [11558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), - [11560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), - [11562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), - [11564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), - [11566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), - [11568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), - [11570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), - [11572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), - [11574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), - [11576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), - [11578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), - [11580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), - [11582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), - [11584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), - [11586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), - [11588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), - [11590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), - [11592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), - [11594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [11596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), - [11598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), - [11600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), - [11602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), - [11604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), - [11606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), - [11608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), - [11610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), - [11612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), - [11614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), - [11616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), - [11618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), - [11620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), - [11622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), - [11624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), - [11626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), - [11628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), - [11630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), - [11632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), - [11634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), - [11636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), - [11638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), - [11640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), - [11642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), - [11644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [11646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [11648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [11650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), - [11652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), - [11654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [11656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), - [11658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), - [11660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), - [11662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), - [11664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), - [11666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), - [11668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [11670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), - [11672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), - [11674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), - [11676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), - [11678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [11680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), - [11682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), - [11684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), - [11686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), - [11688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), - [11690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), - [11692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), - [11694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), - [11696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), - [11698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), - [11700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [11702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), - [11704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), - [11706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), - [11708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), - [11710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), - [11712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), - [11714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [11716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), - [11718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [11720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), - [11722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [11724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), - [11726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [11728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), - [11730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [11732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), - [11734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [11736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [11738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), - [11740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [11742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), - [11744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [11746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [11748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), - [11750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [11752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), - [11754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [11756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), - [11758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [11760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [11762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), - [11764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [11766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), - [11768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [11770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), - [11772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [11774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [11776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [11778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), - [11780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [11782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [11784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [11786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), - [11788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [11790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [11792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), - [11794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [11796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), - [11798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [11800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [11802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [11804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), - [11806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [11808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [11810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), - [11812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [11814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), - [11816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [11818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [11820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [11822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [11824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [11826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), - [11828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [11830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [11832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [11834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [11836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), - [11838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [11840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [11842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [11844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), - [11846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [11848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), - [11850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), - [11852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), - [11854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), - [11856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), - [11858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), - [11860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), - [11862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), - [11864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), - [11866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), - [11868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), - [11870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), - [11872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), - [11874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), - [11876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), - [11878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), - [11880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), - [11882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), - [11884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), - [11886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), - [11888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), - [11890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), - [11892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), - [11894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), - [11896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), - [11898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), - [11900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), - [11902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), - [11904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), - [11906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), - [11908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [11910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), - [11912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [11914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), - [11916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), - [11918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [11920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [11922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [11924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), - [11926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), - [11928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [11930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [11932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), - [11934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [11936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), - [11938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [11940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [11942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [11944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), - [11946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [11948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [11950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [11952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [11954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), - [11956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [11958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [11960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [11962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), - [11964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [11966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), - [11968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [11970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), - [11972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [11974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [11976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), - [11978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [11980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), - [11982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [11984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), - [11986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [11988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), - [11990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [11992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), - [11994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [11996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [11998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [12000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), - [12002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [12004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), - [12006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [12008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), - [12010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [12012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), - [12014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [12016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), - [12018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [12020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [12022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [12024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), - [12026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [12028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), - [12030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [12032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [12034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), - [12036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [12038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), - [12040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [12042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), - [12044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [12046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), - [12048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [12050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), - [12052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [12054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), - [12056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [12058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [12060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [12062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), - [12064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [12066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [12068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [12070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), - [12072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [12074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [12076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), - [12078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [12080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), - [12082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [12084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [12086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [11440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [11442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [11444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), + [11446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [11448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), + [11450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [11452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), + [11454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [11456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [11458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [11460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), + [11462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [11464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [11466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [11468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), + [11470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [11472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [11474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), + [11476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [11478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), + [11480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [11482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [11484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [11486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), + [11488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [11490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [11492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), + [11494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [11496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), + [11498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [11500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [11502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [11504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [11506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [11508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), + [11510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [11512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [11514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [11516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [11518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), + [11520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [11522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [11524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [11526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), + [11528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), + [11530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), + [11532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), + [11534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), + [11536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), + [11538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), + [11540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), + [11542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), + [11544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), + [11546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), + [11548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), + [11550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), + [11552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), + [11554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), + [11556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), + [11558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), + [11560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), + [11562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), + [11564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), + [11566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), + [11568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), + [11570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), + [11572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), + [11574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), + [11576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), + [11578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), + [11580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), + [11582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), + [11584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), + [11586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), + [11588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), + [11590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), + [11592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), + [11594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), + [11596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), + [11598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), + [11600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), + [11602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), + [11604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), + [11606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), + [11608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), + [11610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), + [11612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), + [11614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), + [11616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), + [11618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), + [11620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), + [11622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), + [11624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [11626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), + [11628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [11630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), + [11632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), + [11634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [11636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), + [11638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [11640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), + [11642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [11644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), + [11646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [11648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), + [11650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [11652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), + [11654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [11656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [11658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), + [11660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [11662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), + [11664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [11666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [11668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), + [11670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [11672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), + [11674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [11676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), + [11678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [11680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [11682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), + [11684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [11686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), + [11688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [11690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), + [11692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [11694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [11696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [11698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), + [11700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [11702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [11704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [11706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), + [11708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [11710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [11712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), + [11714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [11716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), + [11718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [11720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [11722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [11724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), + [11726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [11728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [11730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), + [11732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [11734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), + [11736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [11738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [11740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [11742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [11744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [11746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), + [11748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [11750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [11752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [11754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [11756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), + [11758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [11760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [11762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [11764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), + [11766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), + [11768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), + [11770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), + [11772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [11774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), + [11776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [11778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), + [11780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), + [11782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [11784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), + [11786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [11788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), + [11790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [11792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [11794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [11796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), + [11798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [11800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), + [11802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [11804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), + [11806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [11808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), + [11810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [11812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [11814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), + [11816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [11818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [11820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), + [11822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [11824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), + [11826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [11828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), + [11830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [11832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [11834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [11836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [11838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), + [11840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [11842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), + [11844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [11846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [11848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), + [11850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [11852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), + [11854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [11856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), + [11858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [11860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [11862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), + [11864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [11866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), + [11868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [11870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), + [11872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [11874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [11876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [11878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), + [11880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [11882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [11884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [11886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), + [11888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [11890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [11892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), + [11894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [11896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), + [11898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [11900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [11902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [11904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), + [11906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [11908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [11910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), + [11912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [11914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), + [11916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [11918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [11920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [11922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [11924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [11926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), + [11928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [11930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [11932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [11934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [11936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), + [11938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [11940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [11942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [11944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [11946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), + [11948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [11950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [11952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), + [11954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [11956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), + [11958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [11960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), + [11962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), + [11964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [11966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [11968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), + [11970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [11972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), + [11974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [11976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [11978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), + [11980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [11982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), + [11984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [11986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), + [11988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [11990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), + [11992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [11994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [11996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [11998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), + [12000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [12002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), + [12004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [12006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [12008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), + [12010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [12012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), + [12014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [12016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), + [12018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [12020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [12022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), + [12024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [12026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), + [12028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [12030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), + [12032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [12034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), + [12036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), + [12038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [12040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), + [12042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), + [12044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [12046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [12048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [12050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), + [12052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [12054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), + [12056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [12058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), + [12060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [12062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), + [12064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [12066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), + [12068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [12070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), + [12072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [12074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [12076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [12078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), + [12080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [12082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), + [12084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [12086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), [12088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), - [12090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [12092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [12094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), - [12096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [12098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), - [12100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [12102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [12104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [12106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [12108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [12110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), - [12112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [12114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [12116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [12118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [12120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), - [12122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [12124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [12126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [12128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [12130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), - [12132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [12134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), - [12136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [12138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), - [12140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [12142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [12144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [12146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), - [12148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [12150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [12152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [12154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), - [12156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [12158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [12160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), - [12162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [12164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [12166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), - [12168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [12170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), - [12172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [12174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), - [12176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [12178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), - [12180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [12182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), - [12184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [12186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [12188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), - [12190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), - [12192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), - [12194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [12196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), - [12198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [12200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), - [12202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [12204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), - [12206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), - [12208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), - [12210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [12212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), - [12214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), - [12216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), - [12218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [12220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [12222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), - [12224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [12226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [12228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [12230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), - [12232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [12234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [12236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [12238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), - [12240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [12242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [12244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), - [12246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [12248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), - [12250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [12252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [12254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [12256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [12258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), - [12260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [12262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [12264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [12266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), - [12268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [12270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), - [12272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [12274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [12276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [12278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [12280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [12282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), - [12284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), - [12286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [12288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), - [12290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [12292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [12294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [12296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), - [12298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [12300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [12302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [12304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), - [12306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [12308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), - [12310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [12312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [12314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), - [12316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [12318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), - [12320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), - [12322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [12324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), - [12326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [12328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), - [12330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [12332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), - [12334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [12336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [12338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), - [12340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [12342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), - [12344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), - [12346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [12348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), - [12350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [12352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [12354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), - [12356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [12358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), - [12360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [12362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), - [12364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), - [12366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [12368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), - [12370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [12372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [12374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), - [12376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [12378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), - [12380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [12382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), - [12384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [12386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), - [12388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [12390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [12392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), - [12394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [12396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), - [12398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), - [12400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), - [12402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), - [12404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), - [12406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), - [12408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), - [12410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), - [12412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), - [12414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), - [12416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), - [12418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), - [12420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [12422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), - [12424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), - [12426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), - [12428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), - [12430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), - [12432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), - [12434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), - [12436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [12438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), - [12440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), - [12442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [12444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), - [12446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [12448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), - [12450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), - [12452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [12454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [12456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [12458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), - [12460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [12462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [12464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [12466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [12468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [12470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), - [12472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [12474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), - [12476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [12478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [12480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), - [12482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [12484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [12486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [12488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), - [12490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [12492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), - [12494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [12496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [12498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), - [12500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [12502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [12504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [12506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), - [12508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [12510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), - [12512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), - [12514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), - [12516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), - [12518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), - [12520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), - [12522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [12524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), - [12526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), - [12528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [12530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), - [12532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [12534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), - [12536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [12538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), - [12540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [12542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [12544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), - [12546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [12548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), - [12550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [12552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), - [12554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [12556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [12558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), - [12560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [12562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), - [12564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [12566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), - [12568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [12570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [12572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), - [12574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [12576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), - [12578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [12580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), - [12582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [12584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3832), - [12586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [12588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [12590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [12592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [12594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), - [12596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), - [12598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), - [12600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), - [12602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), - [12604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), - [12606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), - [12608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), - [12610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [12612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), - [12614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), - [12616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), - [12618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), - [12620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), - [12622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), - [12624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), - [12626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), - [12628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), - [12630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), - [12632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), - [12634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), - [12636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), - [12638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), - [12640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), - [12642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), - [12644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), - [12646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), - [12648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [12650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), - [12652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), - [12654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [12656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), - [12658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), - [12660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), - [12662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), - [12664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), - [12666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), - [12668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), - [12670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), - [12672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), - [12674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), - [12676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), - [12678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3882), - [12680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), - [12682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), - [12684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), - [12686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), - [12688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), - [12690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), - [12692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), - [12694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), - [12696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), - [12698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [12700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), - [12702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [12704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), - [12706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), - [12708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), - [12710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), - [12712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), - [12714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), - [12716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), - [12718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), - [12720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), - [12722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), - [12724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), - [12726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), - [12728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), - [12730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [12732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [12734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), - [12736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), - [12738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [12740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), - [12742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [12744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_str_lit_repeat1, 2), - [12746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_str_lit_repeat1, 2), SHIFT_REPEAT(3902), - [12749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_str_lit_repeat1, 2), SHIFT_REPEAT(1766), - [12752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), - [12754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [12756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), - [12758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [12760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), - [12762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), - [12764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3886), - [12766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), - [12768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), - [12770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [12772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), - [12774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [12776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3929), - [12778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [12780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), - [12782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), - [12784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [12786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [12788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), - [12790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), + [12090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [12092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), + [12094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [12096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), + [12098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [12100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [12102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), + [12104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [12106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), + [12108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [12110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), + [12112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [12114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [12116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [12118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), + [12120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [12122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [12124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [12126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [12128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), + [12130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [12132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), + [12134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [12136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [12138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), + [12140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [12142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), + [12144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [12146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [12148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [12150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), + [12152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [12154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [12156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), + [12158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [12160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), + [12162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [12164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [12166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [12168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [12170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [12172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), + [12174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [12176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [12178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [12180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [12182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), + [12184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [12186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [12188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [12190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), + [12192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3832), + [12194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [12196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [12198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), + [12200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [12202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), + [12204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [12206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [12208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [12210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), + [12212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), + [12214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), + [12216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [12218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), + [12220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), + [12222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), + [12224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [12226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [12228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), + [12230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), + [12232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [12234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), + [12236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), + [12238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), + [12240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), + [12242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), + [12244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), + [12246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), + [12248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), + [12250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), + [12252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), + [12254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), + [12256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), + [12258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), + [12260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), + [12262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), + [12264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), + [12266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), + [12268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), + [12270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), + [12272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [12274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), + [12276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), + [12278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), + [12280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), + [12282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), + [12284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), + [12286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [12288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), + [12290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), + [12292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [12294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), + [12296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), + [12298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), + [12300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), + [12302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), + [12304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), + [12306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), + [12308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), + [12310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), + [12312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), + [12314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), + [12316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), + [12318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), + [12320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757), + [12322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), + [12324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), + [12326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), + [12328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), + [12330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), + [12332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), + [12334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), + [12336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), + [12338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), + [12340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [12342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), + [12344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), + [12346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), + [12348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), + [12350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), + [12352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), + [12354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), + [12356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), + [12358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [12360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), + [12362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), + [12364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), + [12366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), + [12368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [12370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [12372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), + [12374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [12376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), + [12378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), + [12380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [12382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), + [12384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [12386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [12388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), + [12390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [12392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [12394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [12396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [12398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [12400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), + [12402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [12404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [12406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), + [12408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [12410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [12412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), + [12414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [12416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [12418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), + [12420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [12422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3788), + [12424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [12426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), + [12428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [12430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), + [12432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [12434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [12436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [12438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), + [12440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [12442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), + [12444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [12446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [12448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), + [12450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [12452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [12454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), + [12456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [12458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), + [12460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [12462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [12464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), + [12466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [12468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), + [12470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [12472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), + [12474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [12476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [12478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [12480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), + [12482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [12484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [12486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [12488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), + [12490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [12492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), + [12494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [12496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [12498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), + [12500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [12502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), + [12504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [12506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [12508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [12510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), + [12512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [12514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [12516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), + [12518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [12520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), + [12522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [12524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [12526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [12528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [12530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), + [12532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [12534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [12536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), + [12538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [12540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [12542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [12544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [12546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), + [12548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [12550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [12552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [12554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [12556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [12558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [12560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [12562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [12564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), + [12566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), + [12568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), + [12570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), + [12572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), + [12574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), + [12576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), + [12578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), + [12580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), + [12582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), + [12584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), + [12586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), + [12588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), + [12590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), + [12592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), + [12594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), + [12596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), + [12598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), + [12600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), + [12602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), + [12604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), + [12606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), + [12608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), + [12610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), + [12612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), + [12614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), + [12616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), + [12618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), + [12620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), + [12622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), + [12624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), + [12626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), + [12628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), + [12630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), + [12632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), + [12634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), + [12636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), + [12638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), + [12640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), + [12642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), + [12644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), + [12646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), + [12648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), + [12650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), + [12652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), + [12654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), + [12656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), + [12658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), + [12660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), + [12662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), + [12664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3868), + [12666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), + [12668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), + [12670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), + [12672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), + [12674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), + [12676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), + [12678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), + [12680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), + [12682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), + [12684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), + [12686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), + [12688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), + [12690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), + [12692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), + [12694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), + [12696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), + [12698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), + [12700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), + [12702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), + [12704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), + [12706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), + [12708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [12710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), + [12712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [12714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [12716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [12718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), + [12720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), + [12722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), + [12724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [12726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [12728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), + [12730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [12732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), + [12734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), + [12736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), + [12738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), + [12740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), + [12742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), + [12744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), + [12746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [12748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), + [12750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), + [12752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), + [12754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), + [12756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), + [12758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), + [12760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), + [12762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), + [12764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [12766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), + [12768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [12770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), + [12772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), + [12774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [12776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), + [12778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [12780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), + [12782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), + [12784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), + [12786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [12788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), + [12790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), [12792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), - [12794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [12796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), - [12798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), - [12800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), - [12802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [12804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), - [12806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [12808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), - [12810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), - [12812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [12814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3927), - [12816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), - [12818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [12820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), - [12822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), - [12824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), - [12826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), - [12828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), - [12830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [12832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), - [12834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), - [12836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [12838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), - [12840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), - [12842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), - [12844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), - [12846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), - [12848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), - [12850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), - [12852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), - [12854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), - [12856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [12858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), - [12860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [12862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [12864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3930), - [12866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [12868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), - [12870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), - [12872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [12874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), - [12876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), - [12878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), - [12880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3972), - [12882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), - [12884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), - [12886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), - [12888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), - [12890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [12892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), - [12894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), - [12896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [12898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), - [12900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [12902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [12904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [12906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [12908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [12910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), - [12912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4012), - [12914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__sym_lit_without_slash, 1, .production_id = 37), - [12916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sym_lit_without_slash, 1, .production_id = 37), - [12918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), - [12920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [12922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [12924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [12926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [12928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__sym_lit_without_slash_repeat1, 2), - [12930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__sym_lit_without_slash_repeat1, 2), - [12932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sym_lit_without_slash_repeat1, 2), SHIFT_REPEAT(4012), - [12935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [12937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [12939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [12941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__sym_lit_without_slash_repeat1, 1), - [12943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__sym_lit_without_slash_repeat1, 1), - [12945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_directive_type, 3, .production_id = 50), - [12947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_directive_type, 2, .production_id = 39), - [12949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_directive_type, 3), - [12951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 4), - [12953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_directive_type, 1), - [12955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 3), - [12957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_directive_type, 2), - [12959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 2), - [12961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_directive_type, 2, .production_id = 38), - [12963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), - [12965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), - [12967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), - [12969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), - [12971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [12973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), - [12975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2606), - [12977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), - [12979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [12981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [12983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), - [12985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), - [12987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [12989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), - [12991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), - [12993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [12995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), - [12997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [12999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_read_cond_lit_repeat1, 2), SHIFT_REPEAT(4038), - [13002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_read_cond_lit_repeat1, 2), - [13004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), - [13006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), - [13008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), - [13010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [13012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), - [13014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [13016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), - [13018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [13020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), - [13022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), - [13024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), - [13026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), - [13028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), - [13030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), - [13032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), - [13034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), - [13036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [13038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), - [13040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [13042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), - [13044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), - [13046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), - [13048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), - [13050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [13052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [13054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), - [13056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), - [13058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), - [13060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), - [13062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), - [13064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), - [13066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), - [13068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), - [13070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [13072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), - [13074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [13076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), - [13078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4080), - [13080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), - [13082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), - [13084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [13086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), - [13088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), - [13090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), - [13092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), - [13094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), - [13096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [13098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [13100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [13102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [13104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [13106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), - [13108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), - [13110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), - [13112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [13114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), - [13116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), - [13118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), - [13120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), - [13122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), - [13124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [13126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), - [13128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [13130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [13132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [13134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), - [13136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [13138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [13140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [13142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [13144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), - [13146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [13148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), - [13150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [13152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), - [13154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [13156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [13158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [13160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), - [13162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), - [13164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [13166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [13168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), - [13170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), - [13172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4122), - [13174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [13176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [13178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [13180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), - [13182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), - [13184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), - [13186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), - [13188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [13190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4009), - [13192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), - [13194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4145), - [13196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [13198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), - [13200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [13202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2939), - [13204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [13206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), - [13208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4147), - [13210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [13212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [13214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), - [13216] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [13218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__package_lit_without_slash, 3, .production_id = 31), - [13220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), - [13222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4010), - [13224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), - [13226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [13228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [12794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), + [12796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), + [12798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), + [12800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [12802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), + [12804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [12806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), + [12808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [12810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), + [12812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [12814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [12816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), + [12818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), + [12820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), + [12822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), + [12824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [12826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), + [12828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), + [12830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [12832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), + [12834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [12836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_str_lit_repeat1, 2, 0, 0), + [12838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_str_lit_repeat1, 2, 0, 0), SHIFT_REPEAT(3963), + [12841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_str_lit_repeat1, 2, 0, 0), SHIFT_REPEAT(1766), + [12844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [12846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), + [12848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [12850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), + [12852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), + [12854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), + [12856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3929), + [12858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), + [12860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), + [12862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), + [12864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), + [12866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [12868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), + [12870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [12872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), + [12874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), + [12876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), + [12878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [12880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [12882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [12884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), + [12886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), + [12888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), + [12890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), + [12892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [12894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3886), + [12896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), + [12898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [12900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), + [12902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [12904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [12906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__sym_lit_without_slash, 1, 0, 36), + [12908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sym_lit_without_slash, 1, 0, 36), + [12910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), + [12912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [12914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4112), + [12916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4012), + [12918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [12920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [12922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [12924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [12926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [12928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [12930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__sym_lit_without_slash_repeat1, 2, 0, 0), + [12932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__sym_lit_without_slash_repeat1, 2, 0, 0), + [12934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sym_lit_without_slash_repeat1, 2, 0, 0), SHIFT_REPEAT(4012), + [12937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [12939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [12941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__sym_lit_without_slash_repeat1, 1, 0, 0), + [12943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__sym_lit_without_slash_repeat1, 1, 0, 0), + [12945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_directive_type, 2, 0, 0), + [12947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 3, 0, 0), + [12949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_directive_type, 1, 0, 0), + [12951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_directive_type, 2, 0, 37), + [12953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_directive_type, 3, 0, 0), + [12955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_directive_type, 3, 0, 49), + [12957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_directive_type, 2, 0, 38), + [12959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 2, 0, 0), + [12961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 4, 0, 0), + [12963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), + [12965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), + [12967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [12969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), + [12971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), + [12973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [12975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [12977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), + [12979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), + [12981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), + [12983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), + [12985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), + [12987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), + [12989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), + [12991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [12993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), + [12995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [12997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [12999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), + [13001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), + [13003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [13005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [13007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), + [13009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4093), + [13011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), + [13013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), + [13015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), + [13017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [13019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), + [13021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), + [13023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [13025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [13027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), + [13029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), + [13031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), + [13033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), + [13035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [13037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), + [13039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), + [13041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), + [13043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), + [13045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), + [13047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), + [13049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [13051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [13053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), + [13055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_read_cond_lit_repeat1, 2, 0, 0), SHIFT_REPEAT(4064), + [13058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_read_cond_lit_repeat1, 2, 0, 0), + [13060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [13062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [13064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [13066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), + [13068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), + [13070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [13072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), + [13074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), + [13076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [13078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [13080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), + [13082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), + [13084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), + [13086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [13088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), + [13090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [13092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), + [13094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [13096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), + [13098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), + [13100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), + [13102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), + [13104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), + [13106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [13108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), + [13110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), + [13112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [13114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [13116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [13118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), + [13120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [13122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), + [13124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [13126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), + [13128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [13130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [13132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [13134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [13136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), + [13138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [13140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [13142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [13144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), + [13146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [13148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [13150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), + [13152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [13154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [13156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [13158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), + [13160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [13162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), + [13164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), + [13166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [13168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), + [13170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4010), + [13172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), + [13174] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [13176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4122), + [13178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), + [13180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), + [13182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2973), + [13184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [13186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [13188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [13190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [13192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4148), + [13194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), + [13196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [13198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [13200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), + [13202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [13204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), + [13206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [13208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), + [13210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [13212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [13214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), + [13216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), + [13218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4143), + [13220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), + [13222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [13224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__package_lit_without_slash, 3, 0, 30), + [13226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), + [13228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), }; #ifdef __cplusplus extern "C" { #endif -#ifdef _WIN32 -#define extern __declspec(dllexport) +#ifdef TREE_SITTER_HIDE_SYMBOLS +#define TS_PUBLIC +#elif defined(_WIN32) +#define TS_PUBLIC __declspec(dllexport) +#else +#define TS_PUBLIC __attribute__((visibility("default"))) #endif -extern const TSLanguage *tree_sitter_commonlisp(void) { +TS_PUBLIC const TSLanguage *tree_sitter_commonlisp(void) { static const TSLanguage language = { .version = LANGUAGE_VERSION, .symbol_count = SYMBOL_COUNT, diff --git a/src/tree_sitter/alloc.h b/src/tree_sitter/alloc.h index 1f4466d75..1abdd1201 100644 --- a/src/tree_sitter/alloc.h +++ b/src/tree_sitter/alloc.h @@ -12,10 +12,10 @@ extern "C" { // 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 *); +extern void *(*ts_current_malloc)(size_t size); +extern void *(*ts_current_calloc)(size_t count, size_t size); +extern void *(*ts_current_realloc)(void *ptr, size_t size); +extern void (*ts_current_free)(void *ptr); #ifndef ts_malloc #define ts_malloc ts_current_malloc diff --git a/src/tree_sitter/array.h b/src/tree_sitter/array.h index 15a3b233b..a17a574f0 100644 --- a/src/tree_sitter/array.h +++ b/src/tree_sitter/array.h @@ -14,6 +14,7 @@ extern "C" { #include #ifdef _MSC_VER +#pragma warning(push) #pragma warning(disable : 4101) #elif defined(__GNUC__) || defined(__clang__) #pragma GCC diagnostic push @@ -278,7 +279,7 @@ static inline void _array__splice(Array *self, size_t element_size, #define _compare_int(a, b) ((int)*(a) - (int)(b)) #ifdef _MSC_VER -#pragma warning(default : 4101) +#pragma warning(pop) #elif defined(__GNUC__) || defined(__clang__) #pragma GCC diagnostic pop #endif diff --git a/src/tree_sitter/parser.h b/src/tree_sitter/parser.h index 2b14ac104..799f599bd 100644 --- a/src/tree_sitter/parser.h +++ b/src/tree_sitter/parser.h @@ -13,9 +13,8 @@ extern "C" { #define ts_builtin_sym_end 0 #define TREE_SITTER_SERIALIZATION_BUFFER_SIZE 1024 -typedef uint16_t TSStateId; - #ifndef TREE_SITTER_API_H_ +typedef uint16_t TSStateId; typedef uint16_t TSSymbol; typedef uint16_t TSFieldId; typedef struct TSLanguage TSLanguage; @@ -48,6 +47,7 @@ struct TSLexer { uint32_t (*get_column)(TSLexer *); bool (*is_at_included_range_start)(const TSLexer *); bool (*eof)(const TSLexer *); + void (*log)(const TSLexer *, const char *, ...); }; typedef enum { @@ -87,6 +87,11 @@ typedef union { } entry; } TSParseActionEntry; +typedef struct { + int32_t start; + int32_t end; +} TSCharacterRange; + struct TSLanguage { uint32_t version; uint32_t symbol_count; @@ -126,13 +131,38 @@ struct TSLanguage { 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; \ @@ -148,6 +178,17 @@ struct TSLanguage { 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; \ @@ -166,7 +207,7 @@ struct TSLanguage { * Parse Table Macros */ -#define SMALL_STATE(id) id - LARGE_STATE_COUNT +#define SMALL_STATE(id) ((id) - LARGE_STATE_COUNT) #define STATE(id) id @@ -176,7 +217,7 @@ struct TSLanguage { {{ \ .shift = { \ .type = TSParseActionTypeShift, \ - .state = state_value \ + .state = (state_value) \ } \ }} @@ -184,7 +225,7 @@ struct TSLanguage { {{ \ .shift = { \ .type = TSParseActionTypeShift, \ - .state = state_value, \ + .state = (state_value), \ .repetition = true \ } \ }} @@ -197,14 +238,15 @@ struct TSLanguage { } \ }} -#define REDUCE(symbol_val, child_count_val, ...) \ - {{ \ - .reduce = { \ - .type = TSParseActionTypeReduce, \ - .symbol = symbol_val, \ - .child_count = child_count_val, \ - __VA_ARGS__ \ - }, \ +#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() \